qt6-bb10/src/plugins/platforms
Qt Forward Merge Bot 6893919b0c Merge remote-tracking branch 'origin/5.12' into 5.13
Conflicts:
	src/gui/kernel/qplatformintegration.cpp
	src/gui/kernel/qplatformintegration.h
	src/plugins/platforms/wasm/qwasmintegration.cpp
	src/plugins/platforms/xcb/qxcbconnection_screens.cpp

Change-Id: I15063d42e9a1e226d9d2d2d372f75141b84c5c1b
2019-03-20 14:09:30 +01:00
..
android Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
bsdfb Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
cocoa Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
direct2d Windows/Direct2d QPA: Use nullptr 2019-01-28 21:14:58 +00:00
directfb Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
eglfs Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
haiku Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
integrity Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
ios Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
linuxfb Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
minimal Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
minimalegl Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
mirclient Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
offscreen Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
openwfd Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
qnx Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
vnc Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
wasm Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
windows Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
winrt Move screen maintenance functions from QPlatformIntegration to QWSI 2019-03-19 13:08:25 +00:00
xcb Merge remote-tracking branch 'origin/5.12' into 5.13 2019-03-20 14:09:30 +01:00
README Remove mentioning of 5.0 Alpha from QPA Readme 2013-09-17 09:31:19 +02:00
platforms.pro configure: refactor directx checks 2018-12-17 21:29:05 +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.