summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/fontdatabases
Commit message (Collapse)AuthorAgeFilesLines
* Update contact information in license headers.Sergio Ahumada2012-08-017-14/+14
| | | | | | | | | | | | | - Replace Nokia contact email address with Qt Project website. - Remove "All rights reserved" line from license headers. As in the past, to avoid rewriting various autotests that contain line-number information, an extra blank line has been inserted at the end of the license text to ensure that this commit does not change the total number of lines in the license header. Change-Id: Ie7ba62011752fcb149b99b26317c54f2a0cfa931 Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
* Moved CoreText (iOS) font database to shared font database plugin folder.Ian Dean2012-07-253-0/+324
| | | | | | Change-Id: I780e5b12159c078356334f5225f878ec525a8a64 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com> Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
* Update year in Nokia copyright messages.Jason McDonald2012-01-115-5/+5
| | | | | | | | | Simple search and replace. This commit doesn't touch 3rd-party files, nor translations (where the change is not so simple and will be handled in a separate commit). Change-Id: I4e48513b8078a44a8cd272326685b25338890148 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Update licenseheader text in source files for qt4.8Jyri Tahtela2011-05-135-87/+87
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Remove output that wass added by misstakeJørgen Lind2011-04-061-1/+0
| | | | in 39ede7e7914b486d5971491dd742da3712a1d7e5
* Lighthouse: Move glx common code into shared filesJørgen Lind2011-03-241-2/+3
|
* Merge remote-tracking branch 'origin/master' into lighthouse-masterJørgen Lind2011-03-175-5/+5
|\ | | | | | | | | Conflicts: mkspecs/qws/macx-nacl-g++/qplatformdefs.h
| * Update copyright year to 2011.Rohan McGovern2011-03-105-5/+5
| | | | | | | | | | Reviewed-by: Trust Me (cherry picked from commit 774a3536b00c4d6e4c4c10b708e31b4373a338e3)
* | Compile.Morten Johan Sørvig2011-03-161-1/+5
|/ | | | | Respect the system-zlib QT_CONFIG setting. Reviewed-by: Jørgen Lind
* Add styleHint to fallback api for fontdatabases in LighthouseJørgen Lind2011-01-042-2/+27
|
* Lighthouse: using QFont enums when possible in QPlatformFontdatabaseJørgen Lind2010-11-222-7/+13
| | | | | | | also, make it possible to register fonts in QPlatformDatabases with a null handle Reviewed-by: paul
* Fix the license in files for LighthouseJørgen Lind2010-10-285-0/+205
|
* Lighthouse: make QFontconfigDatabase not override application fontJørgen Lind2010-09-301-4/+7
|
* Lighthouse: Make application fonts workJørgen Lind2010-09-302-5/+9
| | | | Reviewed-by:paul
* Initial pluggable fontdatabaseJørgen Lind2010-09-028-0/+966
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.