qt6-bb10/src/plugins/platforms
Andy Nichols 2a1ea8f13b DirectFB: Use correct pixel format for Texture Glyph Cache
QImage::Format_Indexed8 -> QImage::Format_Alpha8

Change-Id: I7faa7c9d2cb20306f63a2522e7fa78736b9ee583
Task-number: QTBUG-47490
Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
2015-10-12 09:33:07 +00:00
..
android Android: Add support for EnterKey 2015-08-11 13:14:26 +00:00
cocoa Move shortcut handling back into QPA and simplify delivery 2015-10-07 13:24:45 +00:00
direct2d Enable non-integer device pixel ratio 2015-07-30 04:04:01 +00:00
directfb DirectFB: Use correct pixel format for Texture Glyph Cache 2015-10-12 09:33:07 +00:00
eglfs Revamp signal handling in eglfs/linuxfb 2015-10-02 06:32:03 +00:00
haiku Merge remote-tracking branch 'origin/5.5' into dev 2015-06-03 10:23:56 +02:00
ios Merge remote-tracking branch 'origin/5.5' into 5.6 2015-10-02 16:59:55 +02:00
linuxfb linuxfb: Use libinput by default when available 2015-08-18 08:07:31 +00:00
minimal QPA plugins: Use _iid macros instead of strings in Q_PLUGIN_METADATA. 2015-05-13 12:41:09 +00:00
minimalegl QPA plugins: Use _iid macros instead of strings in Q_PLUGIN_METADATA. 2015-05-13 12:41:09 +00:00
mirclient Add Mir client platform plugin 2015-08-09 06:27:26 +00:00
offscreen QPA plugins: Use _iid macros instead of strings in Q_PLUGIN_METADATA. 2015-05-13 12:41:09 +00:00
openwfd QPA plugins: Use _iid macros instead of strings in Q_PLUGIN_METADATA. 2015-05-13 12:41:09 +00:00
qnx qqnxinputcontext: Add support for EnterKeyType 2015-07-19 20:14:19 +00:00
windows Merge remote-tracking branch 'origin/5.5' into 5.6 2015-10-02 16:59:55 +02:00
winrt winrt: Default show to showMaximized on Windows Phone. 2015-09-28 17:27:15 +00:00
xcb xcb: Fix DnD for separate X screens 2015-10-09 15:45:35 +00:00
README Remove mentioning of 5.0 Alpha from QPA Readme 2013-09-17 09:31:19 +02:00
platforms.pro Add Mir client platform plugin 2015-08-09 06:27:26 +00: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.