1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#ifndef QPLATFORMFONTDATABASE_QPA_H
#define QPLATFORMFONTDATABASE_QPA_H
#include <QtCore/qconfig.h>
#include <QtCore/QString>
#include <QtCore/QStringList>
#include <QtCore/QList>
#include <QtGui/QFontDatabase>
#include <QtGui/private/qfont_p.h>
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
class QWritingSystemsPrivate;
class Q_GUI_EXPORT QSupportedWritingSystems
{
public:
QSupportedWritingSystems();
QSupportedWritingSystems(const QSupportedWritingSystems &other);
QSupportedWritingSystems &operator=(const QSupportedWritingSystems &other);
~QSupportedWritingSystems();
void setSupported(QFontDatabase::WritingSystem, bool supported = true);
bool supported(QFontDatabase::WritingSystem) const;
private:
void detach();
QWritingSystemsPrivate *d;
friend Q_GUI_EXPORT bool operator==(const QSupportedWritingSystems &, const QSupportedWritingSystems &);
friend Q_GUI_EXPORT bool operator!=(const QSupportedWritingSystems &, const QSupportedWritingSystems &);
};
Q_GUI_EXPORT bool operator==(const QSupportedWritingSystems &, const QSupportedWritingSystems &);
Q_GUI_EXPORT bool operator!=(const QSupportedWritingSystems &, const QSupportedWritingSystems &);
class QFontRequestPrivate;
class Q_GUI_EXPORT QPlatformFontDatabase
{
public:
virtual void populateFontDatabase();
virtual QFontEngine *fontEngine(const QFontDef &fontDef, QUnicodeTables::Script script, void *handle);
virtual QStringList fallbacksForFamily(const QString family, const QFont::Style &style, const QUnicodeTables::Script &script) const;
virtual QStringList addApplicationFont(const QByteArray &fontData, const QString &fileName);
virtual void releaseHandle(void *handle);
virtual QString fontDir() const;
//callback
static void registerQPF2Font(const QByteArray &dataArray, void *handle);
static void registerFont(const QString &familyname, const QString &foundryname, int weight,
QFont::Style style, int stetch, bool antialiased, bool scalable, int pixelSize,
const QSupportedWritingSystems &writingSystems, void *handle);
};
QT_END_NAMESPACE
QT_END_HEADER
#endif // QPLATFORMFONTDATABASE_QPA_H
|