author | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
commit | 15318cad33835e4e2dc620d033e43cd930676cdd (patch) (unidiff) | |
tree | c2fa0399a2c47fda8e2cd0092c73a809d17f68eb /library/fontdatabase.h | |
download | opie-15318cad33835e4e2dc620d033e43cd930676cdd.zip opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.gz opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.bz2 |
Initial revision
-rw-r--r-- | library/fontdatabase.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/library/fontdatabase.h b/library/fontdatabase.h new file mode 100644 index 0000000..9160ab0 --- a/dev/null +++ b/library/fontdatabase.h | |||
@@ -0,0 +1,62 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Qtopia Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | ||
15 | ** | ||
16 | ** Contact info@trolltech.com if any conditions of this licensing are | ||
17 | ** not clear to you. | ||
18 | ** | ||
19 | **********************************************************************/ | ||
20 | #ifndef FONTFACTORY_H | ||
21 | #define FONTFACTORY_H | ||
22 | |||
23 | #include <qpe/fontfactoryinterface.h> | ||
24 | |||
25 | #include <qfontdatabase.h> | ||
26 | #include <qvaluelist.h> | ||
27 | |||
28 | class QLibrary; | ||
29 | |||
30 | struct FontFactory | ||
31 | { | ||
32 | #ifndef QT_NO_COMPONENT | ||
33 | QLibrary *library; | ||
34 | #endif | ||
35 | FontFactoryInterface *interface; | ||
36 | QFontFactory *factory; | ||
37 | }; | ||
38 | |||
39 | class FontDatabase | ||
40 | #ifndef QT_NO_FONTDATABASE | ||
41 | : public QFontDatabase | ||
42 | #endif | ||
43 | { | ||
44 | public: | ||
45 | FontDatabase(); | ||
46 | |||
47 | // minimal functionality | ||
48 | QStringList families () const; | ||
49 | #ifdef QT_NO_FONTDATABASE | ||
50 | static QValueList<int> standardSizes (); | ||
51 | #endif | ||
52 | |||
53 | static void loadRenderers(); | ||
54 | |||
55 | private: | ||
56 | static void readFonts( QFontFactory *factory ); | ||
57 | |||
58 | private: | ||
59 | static QValueList<FontFactory> *factoryList; | ||
60 | }; | ||
61 | |||
62 | #endif | ||