summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/qvfb
Commit message (Collapse)AuthorAgeFilesLines
* 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-85/+85
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Fixup license headers in Lighthouse pluginsJørgen Lind2011-03-175-7/+7
|
* Initial pluggable fontdatabaseJørgen Lind2010-09-023-0/+13
| | | | | | | | | | | | | 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.
* Support multiple display IDs for Lighthouse QVFb pluginPaul Olav Tvete2010-06-213-19/+22
|
* add parameter support for platform integration pluginsJeremy Katz2010-05-041-2/+3
|
* Rename files in platform plugins follow same patternJørgen Lind2010-04-214-4/+4
|
* Renamed createWindowSurfaceForWindowJørgen Lind2010-04-212-5/+3
| | | | | | to createWindowSurface. Gave also a default dpi when there is no platform integration, ie. it has not been initialised yet or is being initialised.
* Port the QVFb backend to the new APIPaul Olav Tvete2010-04-136-97/+113
|
* Refactoring GraphicsSystem to QPlatformIntegrationJørgen Lind2010-03-316-0/+791
QPlatformIntegration is the "main" integration class which needs to be subclassed. This is done so that we don't pollute GraphicsSystem with functionality that really does not belong there. In lighthouse applications needs now to be started with -platform some_platform