[poppler] poppler/qt: poppler-fontinfo.cc,NONE,1.1
Albert Astals Cid
aacid at freedesktop.org
Sat Dec 3 14:28:48 PST 2005
Update of /cvs/poppler/poppler/qt
In directory gabe:/tmp/cvs-serv9481/qt
Added Files:
poppler-fontinfo.cc
Log Message:
Add the font retrieveing on the qt3 backend also, based on a patch by Wilfried Huss
--- NEW FILE: poppler-fontinfo.cc ---
/* poppler-qt.h: qt interface to poppler
* Copyright (C) 2005, Net Integration Technologies, Inc.
* Copyright (C) 2005, Tobias Koening
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "poppler-qt.h"
namespace Poppler {
class FontInfoData
{
public:
QString fontName;
bool isEmbedded;
bool isSubset;
FontInfo::Type type;
};
FontInfo::FontInfo( const QString &fontName, const bool isEmbedded, const bool isSubset, Type type )
{
data = new FontInfoData();
data->fontName = fontName;
data->isEmbedded = isEmbedded;
data->isSubset = isSubset;
data->type = type;
}
FontInfo::FontInfo()
{
data = new FontInfoData();
data->isEmbedded = false;
data->isSubset = false;
data->type = unknown;
}
FontInfo::~FontInfo()
{
delete data;
}
const QString &FontInfo::name() const
{
return data->fontName;
}
bool FontInfo::isEmbedded() const
{
return data->isEmbedded;
}
bool FontInfo::isSubset() const
{
return data->isSubset;
}
FontInfo::Type FontInfo::type() const
{
return data->type;
}
}
More information about the poppler
mailing list