| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Reviewed-by: Jørgen Lind
|
|
|
|
| |
compliments from Vapula
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| |
| |
| | |
to createWindowSurface. Gave also a default dpi when there is no
platform integration, ie. it has not been initialised yet or is being
initialised.
|
| | |
|
| | |
|
|/ |
|
|
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
|