summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/linuxfb
Commit message (Collapse)AuthorAgeFilesLines
* Update contact information in license headers.Sergio Ahumada2012-08-013-6/+6
| | | | | | | | | | | | | - 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>
* Fix compilation when QT_NO_CURSOR is definedRomain Pokrzywka2012-04-101-0/+2
| | | | | Change-Id: Iacf8ef2032d5c229a7483d6993120684ee9bb04e Reviewed-by: Jeremy Katz <jeremy.katz@nokia.com>
* Update year in Nokia copyright messages.Jason McDonald2012-01-113-3/+3
| | | | | | | | | 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-133-51/+51
| | | | | | | 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-173-3/+3
|
* added capabilites to QPlatformIntegrationGunnar Sletta2011-03-012-0/+11
| | | | Reviewed-by: Jørgen Lind
* Lighthouse: Various compiler warning/error fixesJørgen Lind2010-09-091-0/+1
| | | | compliments from Vapula
* Initial pluggable fontdatabaseJørgen Lind2010-09-023-0/+11
| | | | | | | | | | | | | 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.
* Refactored QGraphicsSystemCursor -> QPlatformCursorJørgen Lind2010-06-241-1/+1
|
* LinuxFB compilation fixJeremy Katz2010-06-151-1/+1
|
* 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
|
* Merge branch 'platform_window' into lighthouseJørgen Lind2010-04-213-26/+32
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gui/kernel/qplatformscreen_lite.h src/plugins/platforms/fb_base/fb_base.cpp src/plugins/platforms/fb_base/fb_base.h src/plugins/platforms/linuxfb/main.cpp src/plugins/platforms/linuxfb/qgraphicssystem_linuxfb.cpp src/plugins/platforms/linuxfb/qgraphicssystem_linuxfb.h src/plugins/platforms/testlite/qplatformintegration_testlite.cpp src/plugins/platforms/vnc/main.cpp src/plugins/platforms/vnc/qgraphicssystem_vnc.cpp src/plugins/platforms/vnc/qgraphicssystem_vnc.h src/plugins/platforms/vnc/qvnccursor.cpp src/plugins/platforms/vnc/qvnccursor.h src/plugins/platforms/vnc/qvncserver.cpp src/plugins/platforms/vnc/qvncserver.h
| * Renamed createWindowSurfaceForWindowJørgen Lind2010-04-212-4/+2
| | | | | | | | | | | | to createWindowSurface. Gave also a default dpi when there is no platform integration, ie. it has not been initialised yet or is being initialised.
| * Rename classes to get rid of "GraphicsSystem"Paul Olav Tvete2010-04-133-45/+45
| |
| * Make LinuxFb workPaul Olav Tvete2010-04-124-13/+26
| |
* | port linuxfb to platform api name changeJeremy Katz2010-04-094-47/+45
|/
* Refactoring GraphicsSystem to QPlatformIntegrationJørgen Lind2010-03-314-0/+1067
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