summaryrefslogtreecommitdiffstats
path: root/src/gui/text/qfontdatabase_qpa.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Move styleName out of QtFontStyle::KeyJiang Jiang2011-07-061-1/+1
| | | | | | Makes the code clearer and more explicit. Reviewed-by: Eskil
* Update licenseheader text in source files for qt4.8Jyri Tahtela2011-05-131-17/+17
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Update copyright year to 2011.Rohan McGovern2011-03-101-1/+1
| | | | | Reviewed-by: Trust Me (cherry picked from commit 774a3536b00c4d6e4c4c10b708e31b4373a338e3)
* Add styleHint to fallback api for fontdatabases in LighthouseJørgen Lind2011-01-041-4/+8
|
* Lighthouse: using QFont enums when possible in QPlatformFontdatabaseJørgen Lind2010-11-221-7/+4
| | | | | | | also, make it possible to register fonts in QPlatformDatabases with a null handle Reviewed-by: paul
* Lighthouse: Make application fonts workJørgen Lind2010-09-301-1/+2
| | | | Reviewed-by:paul
* Initial pluggable fontdatabaseJørgen Lind2010-09-021-0/+392
QPlatformFontDatabase added. QPlatformIntegration now has a new virtual function: QPlatformDatabase::fontDatabase() const. Most unix platform plugins wants to follow the pattern implemented in directfb, linuxfb, vnc etc. In the pro file do: include(../fontdatabases/genericunix/genericunix.pri) In the QPlatformIntegration class do: and instansiate a QGenericFontDatabase in the constructor and return it in the getter function.