qt6-bb10/src/plugins/platforms
Giuseppe D'Angelo 75b62f3a17 Merge "Merge remote-tracking branch 'origin/5.3' into 5.4" into refs/staging/5.4 2014-08-19 00:42:00 +02:00
..
android Merge "Merge remote-tracking branch 'origin/5.3' into 5.4" into refs/staging/5.4 2014-08-19 00:42:00 +02:00
cocoa Merge "Merge remote-tracking branch 'origin/5.3' into 5.4" into refs/staging/5.4 2014-08-19 00:42:00 +02:00
direct2d Fix linking of the Direct2D platform plugin with dynamic Open GL. 2014-07-31 21:32:39 +02:00
directfb Add support for accelerated glyph rendering in the directfb plugin 2014-08-15 18:28:37 +02:00
eglfs eglfs/stub: Die fatally if the framebuffer can't be opened. 2014-08-17 12:37:34 +02:00
ios Merge remote-tracking branch 'origin/5.3' into 5.4 2014-08-12 13:05:02 +02:00
kms kms: Also initialize in resize(), if required. 2014-08-17 12:36:44 +02:00
linuxfb deprecate import_qpa_plugin and qpa_minimal_plugin 2014-04-24 10:45:55 +02:00
minimal deprecate import_qpa_plugin and qpa_minimal_plugin 2014-04-24 10:45:55 +02:00
minimalegl deprecate import_qpa_plugin and qpa_minimal_plugin 2014-04-24 10:45:55 +02:00
offscreen Merge remote-tracking branch 'origin/stable' into dev 2014-05-06 16:50:03 +02:00
openwfd deprecate import_qpa_plugin and qpa_minimal_plugin 2014-04-24 10:45:55 +02:00
qnx Make the expose region local on all platforms 2014-08-12 07:47:32 +02:00
windows Merge "Merge remote-tracking branch 'origin/5.3' into 5.4" into refs/staging/5.4 2014-08-19 00:42:00 +02:00
winrt winrt: Fix theme palette 2014-08-11 23:29:20 +02:00
xcb xcb XInput: use categorized logging for devices and events 2014-08-18 13:49:28 +02:00
README Remove mentioning of 5.0 Alpha from QPA Readme 2013-09-17 09:31:19 +02:00
platforms.pro Add new direct2d platform plugin 2014-01-10 15:10:29 +01:00

README

The Qt Platform Abstraction - QPA

QPA is the platform abstraction layer for Qt 5 and replaces QWS and the
platform ports from Qt 4.

There is currently little documentation for QPA. The best approach for
developing a new platform plugin is to look at the other plugins and
see how they implement the APIs in question. The "minimal" plugin
is a good starting point. The xcb, windows, cocoa, and qnx plugins
are also actively developed and up to date.

QPA plugins are implemented by subclassing various QPlatform*
classes. There are two "root" classes: QPlatformIntegration for
window system integration and QPlatformTheme for deeper platform
theming and integration. QStyle is not a part of QPA.

There are no source or binary compatibility guarantees for the QPA
classes, meaning that a platform plugin is only guaranteed to work
with the Qt version it was developed against. API changes will
however only be made in minor releases. (5.1, 5.2, and so on.)

Class Overview:

QPlatformIntegration
    QPlatformWindow
    QPlatformBackingStore
    QPlatformOpenGLContext
    QPlatformSharedGraphicsCache
    QPlatformFontDatabase
    QPlatformClipboard
    QPlatformDrag
    QAbstractEventDispatcher
    QPlatformInputContext
    QPlatformAccessibility
    QPlatformNativeInterface
    QPlatformServices

QPlatformTheme
    QPlatformMenu
    QPlatformMenuBar
    QPlatformDialogHelper
    platform palettes
    platform fonts
    theme hints

src/platformsupport contains several helper classes for implementing
platform plugins on unix-like systems.