author | zecke <zecke> | 2002-11-06 21:46:09 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-11-06 21:46:09 (UTC) |
commit | 86a2bf4747f46a9915dffac376b888faa5400ec8 (patch) (unidiff) | |
tree | 247946d61e915e1c238ce87a7ee14f014fc6e804 | |
parent | 7a0e2678368c1cbb036085aaa594801e93e0b1c1 (diff) | |
download | opie-86a2bf4747f46a9915dffac376b888faa5400ec8.zip opie-86a2bf4747f46a9915dffac376b888faa5400ec8.tar.gz opie-86a2bf4747f46a9915dffac376b888faa5400ec8.tar.bz2 |
Some ugly ifdefs inside fontdatabase for now :(
This temp. helps the x11 port
-rw-r--r-- | library/fontdatabase.cpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/library/fontdatabase.cpp b/library/fontdatabase.cpp index 899d5cf..c7a5211 100644 --- a/library/fontdatabase.cpp +++ b/library/fontdatabase.cpp | |||
@@ -43,26 +43,26 @@ static QString fontFamily( const QString& key ) | |||
43 | int u0 = key.find('_'); | 43 | int u0 = key.find('_'); |
44 | int u1 = key.find('_',u0+1); | 44 | int u1 = key.find('_',u0+1); |
45 | int u2 = key.find('_',u1+1); | 45 | int u2 = key.find('_',u1+1); |
46 | QString family = key.left(u0); | 46 | QString family = key.left(u0); |
47 | //int pointSize = key.mid(u0+1,u1-u0-1).toInt(); | 47 | //int pointSize = key.mid(u0+1,u1-u0-1).toInt(); |
48 | //int weight = key.mid(u1+1,u2-u1-1).toInt(); | 48 | //int weight = key.mid(u1+1,u2-u1-1).toInt(); |
49 | //bool italic = key.mid(u2-1,1) == "i"; | 49 | //bool italic = key.mid(u2-1,1) == "i"; |
50 | // #### ignores _t and _I fields | 50 | // #### ignores _t and _I fields |
51 | return family; | 51 | return family; |
52 | } | 52 | } |
53 | #endif | 53 | #endif |
54 | 54 | ||
55 | QValueList<FontFactory> *FontDatabase::factoryList = 0; | ||
56 | 55 | ||
56 | QValueList<FontFactory> *FontDatabase::factoryList = 0; | ||
57 | /*! | 57 | /*! |
58 | \class FontDatabase fontdatabase.h | 58 | \class FontDatabase fontdatabase.h |
59 | \brief The FontDatabase class provides information about available fonts. | 59 | \brief The FontDatabase class provides information about available fonts. |
60 | 60 | ||
61 | Most often you will simply want to query the database for the | 61 | Most often you will simply want to query the database for the |
62 | available font families(). | 62 | available font families(). |
63 | 63 | ||
64 | Use FontDatabase rather than QFontDatabase when you may need access | 64 | Use FontDatabase rather than QFontDatabase when you may need access |
65 | to fonts that are not normally available. For example, if the | 65 | to fonts that are not normally available. For example, if the |
66 | freetype library and the Qtopia freetype plugin are installed, | 66 | freetype library and the Qtopia freetype plugin are installed, |
67 | TrueType fonts will be available to your application. Font renderer | 67 | TrueType fonts will be available to your application. Font renderer |
68 | plugins have greater resource requirements than system fonts so they | 68 | plugins have greater resource requirements than system fonts so they |
@@ -83,47 +83,53 @@ FontDatabase::FontDatabase() | |||
83 | if ( !factoryList ) | 83 | if ( !factoryList ) |
84 | loadRenderers(); | 84 | loadRenderers(); |
85 | } | 85 | } |
86 | 86 | ||
87 | /*! | 87 | /*! |
88 | Returns a list of names of all the available font families. | 88 | Returns a list of names of all the available font families. |
89 | */ | 89 | */ |
90 | QStringList FontDatabase::families() const | 90 | QStringList FontDatabase::families() const |
91 | { | 91 | { |
92 | #ifndef QT_NO_FONTDATABASE | 92 | #ifndef QT_NO_FONTDATABASE |
93 | return QFontDatabase::families(); | 93 | return QFontDatabase::families(); |
94 | #else | 94 | #else |
95 | |||
96 | #ifndef QWS | ||
97 | QStringList list; | ||
98 | return list; | ||
99 | #else | ||
95 | QStringList list; | 100 | QStringList list; |
96 | QDict<void> familyDict; | 101 | QDict<void> familyDict; |
97 | QDiskFont *qdf; | 102 | QDiskFont *qdf; |
98 | for ( qdf=qt_fontmanager->diskfonts.first(); qdf!=0; | 103 | for ( qdf=qt_fontmanager->diskfonts.first(); qdf!=0; |
99 | qdf=qt_fontmanager->diskfonts.next()) { | 104 | qdf=qt_fontmanager->diskfonts.next()) { |
100 | QString familyname = qdf->name; | 105 | QString familyname = qdf->name; |
101 | if ( !familyDict.find( familyname ) ) { | 106 | if ( !familyDict.find( familyname ) ) { |
102 | familyDict.insert( familyname, (void *)1 ); | 107 | familyDict.insert( familyname, (void *)1 ); |
103 | list.append( familyname ); | 108 | list.append( familyname ); |
104 | } | 109 | } |
105 | } | 110 | } |
106 | 111 | ||
107 | QDir dir(fontDir(),"*.qpf"); | 112 | QDir dir(fontDir(),"*.qpf"); |
108 | for (int i=0; i<(int)dir.count(); i++) { | 113 | for (int i=0; i<(int)dir.count(); i++) { |
109 | QString familyname = fontFamily(dir[i]); | 114 | QString familyname = fontFamily(dir[i]); |
110 | if ( !familyDict.find( familyname ) ) { | 115 | if ( !familyDict.find( familyname ) ) { |
111 | familyDict.insert( familyname, (void *)1 ); | 116 | familyDict.insert( familyname, (void *)1 ); |
112 | list.append( familyname ); | 117 | list.append( familyname ); |
113 | } | 118 | } |
114 | } | 119 | } |
115 | 120 | ||
116 | return list; | 121 | return list; |
117 | #endif | 122 | #endif |
123 | #endif | ||
118 | } | 124 | } |
119 | 125 | ||
120 | #ifdef QT_NO_FONTDATABASE | 126 | #ifdef QT_NO_FONTDATABASE |
121 | /*! | 127 | /*! |
122 | Returns a list of standard fontsizes. | 128 | Returns a list of standard fontsizes. |
123 | */ | 129 | */ |
124 | QValueList<int> FontDatabase::standardSizes() | 130 | QValueList<int> FontDatabase::standardSizes() |
125 | { | 131 | { |
126 | static int s[]={ 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, | 132 | static int s[]={ 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, |
127 | 36, 48, 72, 0 }; | 133 | 36, 48, 72, 0 }; |
128 | static bool first = TRUE; | 134 | static bool first = TRUE; |
129 | static QValueList<int> sList; | 135 | static QValueList<int> sList; |
@@ -135,24 +141,28 @@ QValueList<int> FontDatabase::standardSizes() | |||
135 | } | 141 | } |
136 | return sList; | 142 | return sList; |
137 | } | 143 | } |
138 | 144 | ||
139 | #endif | 145 | #endif |
140 | 146 | ||
141 | /*! | 147 | /*! |
142 | Load any font renderer plugins that are available and make the fonts | 148 | Load any font renderer plugins that are available and make the fonts |
143 | that the plugins can read available. | 149 | that the plugins can read available. |
144 | */ | 150 | */ |
145 | void FontDatabase::loadRenderers() | 151 | void FontDatabase::loadRenderers() |
146 | { | 152 | { |
153 | #ifndef QWS | ||
154 | return; | ||
155 | #else | ||
156 | |||
147 | #ifndef QT_NO_COMPONENT | 157 | #ifndef QT_NO_COMPONENT |
148 | if ( !factoryList ) | 158 | if ( !factoryList ) |
149 | factoryList = new QValueList<FontFactory>; | 159 | factoryList = new QValueList<FontFactory>; |
150 | 160 | ||
151 | QValueList<FontFactory>::Iterator mit; | 161 | QValueList<FontFactory>::Iterator mit; |
152 | for ( mit = factoryList->begin(); mit != factoryList->end(); ++mit ) { | 162 | for ( mit = factoryList->begin(); mit != factoryList->end(); ++mit ) { |
153 | qt_fontmanager->factories.setAutoDelete( false ); | 163 | qt_fontmanager->factories.setAutoDelete( false ); |
154 | qt_fontmanager->factories.removeRef( (*mit).factory ); | 164 | qt_fontmanager->factories.removeRef( (*mit).factory ); |
155 | qt_fontmanager->factories.setAutoDelete( true ); | 165 | qt_fontmanager->factories.setAutoDelete( true ); |
156 | (*mit).interface->release(); | 166 | (*mit).interface->release(); |
157 | (*mit).library->unload(); | 167 | (*mit).library->unload(); |
158 | delete (*mit).library; | 168 | delete (*mit).library; |
@@ -174,31 +184,35 @@ void FontDatabase::loadRenderers() | |||
174 | FontFactory factory; | 184 | FontFactory factory; |
175 | factory.library = lib; | 185 | factory.library = lib; |
176 | factory.interface = iface; | 186 | factory.interface = iface; |
177 | factory.factory = factory.interface->fontFactory(); | 187 | factory.factory = factory.interface->fontFactory(); |
178 | factoryList->append( factory ); | 188 | factoryList->append( factory ); |
179 | qt_fontmanager->factories.append( factory.factory ); | 189 | qt_fontmanager->factories.append( factory.factory ); |
180 | readFonts( factory.factory ); | 190 | readFonts( factory.factory ); |
181 | } else { | 191 | } else { |
182 | delete lib; | 192 | delete lib; |
183 | } | 193 | } |
184 | } | 194 | } |
185 | #endif | 195 | #endif |
196 | #endif | ||
186 | } | 197 | } |
187 | 198 | ||
188 | /*! | 199 | /*! |
189 | \internal | 200 | \internal |
190 | */ | 201 | */ |
191 | void FontDatabase::readFonts( QFontFactory *factory ) | 202 | void FontDatabase::readFonts( QFontFactory *factory ) |
192 | { | 203 | { |
204 | #ifndef QWS | ||
205 | return; | ||
206 | #else | ||
193 | // Load in font definition file | 207 | // Load in font definition file |
194 | QString fn = fontDir() + "fontdir"; | 208 | QString fn = fontDir() + "fontdir"; |
195 | FILE* fontdef=fopen(fn.local8Bit(),"r"); | 209 | FILE* fontdef=fopen(fn.local8Bit(),"r"); |
196 | if(!fontdef) { | 210 | if(!fontdef) { |
197 | QCString temp=fn.local8Bit(); | 211 | QCString temp=fn.local8Bit(); |
198 | qWarning("Cannot find font definition file %s - is $QTDIR set correctly?", | 212 | qWarning("Cannot find font definition file %s - is $QTDIR set correctly?", |
199 | temp.data()); | 213 | temp.data()); |
200 | return; | 214 | return; |
201 | } | 215 | } |
202 | char buf[200]=""; | 216 | char buf[200]=""; |
203 | char name[200]=""; | 217 | char name[200]=""; |
204 | char render[200]=""; | 218 | char render[200]=""; |
@@ -221,14 +235,15 @@ void FontDatabase::readFonts( QFontFactory *factory ) | |||
221 | QDiskFont * qdf=new QDiskFont(factory,name,isitalic[0]=='y', | 235 | QDiskFont * qdf=new QDiskFont(factory,name,isitalic[0]=='y', |
222 | weight,size,flags,filename); | 236 | weight,size,flags,filename); |
223 | qt_fontmanager->diskfonts.append(qdf); | 237 | qt_fontmanager->diskfonts.append(qdf); |
224 | #if QT_VERSION >= 232 | 238 | #if QT_VERSION >= 232 |
225 | QFontDatabase::qwsAddDiskFont( qdf ); | 239 | QFontDatabase::qwsAddDiskFont( qdf ); |
226 | #endif | 240 | #endif |
227 | } | 241 | } |
228 | } | 242 | } |
229 | } | 243 | } |
230 | fgets(buf,200,fontdef); | 244 | fgets(buf,200,fontdef); |
231 | } | 245 | } |
232 | fclose(fontdef); | 246 | fclose(fontdef); |
247 | #endif | ||
233 | } | 248 | } |
234 | 249 | ||