summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/linuxfb
Commit message (Collapse)AuthorAgeFilesLines
* 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