Qt Platform Abstraction: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Developing_with_Qt::Qt 5]] | [[Category:Developing_with_Qt::Qt 5]] | ||
h1. Qt Platform Abstraction | |||
'''English''' | [[:Qt_Platform_Abstraction_SimplifiedChinese|中文]] | '''English''' | [[:Qt_Platform_Abstraction_SimplifiedChinese|中文]] | ||
Line 5: | Line 6: | ||
QPA is the platform abstraction layer for [[Qt 5]] and replaces QWS and the platform ports from Qt 4. You can learn about it at this video presentation: | QPA is the platform abstraction layer for [[Qt 5]] and replaces QWS and the platform ports from Qt 4. You can learn about it at this video presentation: | ||
* | * "QPA - The Qt Platform Abstraction":http://qt.io/videos/watch/qpa-the-qt-platform-abstraction by Thomas Senyk. | ||
There is currently little documentation for QPA. The best approach for developing a new platform plugin is to | There is currently little documentation for QPA. The best approach for developing a new platform plugin is to "look at the other plugins":http://qt.gitorious.net/qt/qtbase/trees/master/src/plugins/platforms and see how they implement the APIs in question. The "minimal":http://qt.gitorious.net/qt/qtbase/trees/master/src/plugins/platforms/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 | 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. | ||
The APIs provided by QPlatformIntegration are at this point ([[Qt 5 Alpha]]) mostly stable. QPlatformTheme still has ongoing development. There | The APIs provided by QPlatformIntegration are at this point ([[Qt 5 Alpha]]) mostly stable. QPlatformTheme still has ongoing development. 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 == | == Class Overview == | ||
<code>QPlatformIntegration | <code>QPlatformIntegration | ||
QPlatformWindow | |||
QPlatformBackingStore | |||
QPlatformOpenGLContext | |||
QPlatformSharedGraphicsCache | |||
QPlatformFontDatabase | |||
QPlatformClipboard | |||
QPlatformDrag | |||
QAbstractEventDispatcher | |||
QPlatformInputContext | |||
QPlatformAccessibility | |||
QPlatformNativeInterface | |||
QPlatformServices | |||
QPlatformTheme | QPlatformTheme | ||
QPlatformMenu | |||
QPlatformMenuBar | |||
QPlatformDialogHelper | |||
platform palettes | |||
platform fonts | |||
theme hints</code> | |||
"src/platformsupport":http://qt.gitorious.net/qt/qtbase/trees/master/src/platformsupport contains several helper classes for implementing platform plugins on unix-like systems. |
Revision as of 08:45, 25 February 2015
h1. Qt Platform Abstraction
English | 中文
QPA is the platform abstraction layer for Qt 5 and replaces QWS and the platform ports from Qt 4. You can learn about it at this video presentation:
- "QPA - The Qt Platform Abstraction":http://qt.io/videos/watch/qpa-the-qt-platform-abstraction by Thomas Senyk.
There is currently little documentation for QPA. The best approach for developing a new platform plugin is to "look at the other plugins":http://qt.gitorious.net/qt/qtbase/trees/master/src/plugins/platforms and see how they implement the APIs in question. The "minimal":http://qt.gitorious.net/qt/qtbase/trees/master/src/plugins/platforms/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.
The APIs provided by QPlatformIntegration are at this point (Qt 5 Alpha) mostly stable. QPlatformTheme still has ongoing development. 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":http://qt.gitorious.net/qt/qtbase/trees/master/src/platformsupport contains several helper classes for implementing platform plugins on unix-like systems.