QPlatformWindow: Add Window masks.
[profile/ivi/qtbase.git] / src / gui / kernel / qplatformintegration.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QPLATFORMINTEGRATION_H
43 #define QPLATFORMINTEGRATION_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is part of the QPA API and is not meant to be used
50 // in applications. Usage of this API may make your code
51 // source and binary incompatible with future versions of Qt.
52 //
53
54 #include <QtGui/qwindowdefs.h>
55 #include <qpa/qplatformscreen.h>
56 #include <QtGui/qsurfaceformat.h>
57
58 QT_BEGIN_HEADER
59
60 QT_BEGIN_NAMESPACE
61
62
63 class QPlatformWindow;
64 class QWindow;
65 class QPlatformBackingStore;
66 class QPlatformFontDatabase;
67 class QPlatformClipboard;
68 class QPlatformNativeInterface;
69 class QPlatformDrag;
70 class QPlatformOpenGLContext;
71 class QGuiGLFormat;
72 class QAbstractEventDispatcher;
73 class QPlatformInputContext;
74 class QPlatformAccessibility;
75 class QPlatformTheme;
76 class QPlatformDialogHelper;
77 class QPlatformSharedGraphicsCache;
78 class QPlatformServices;
79
80 class Q_GUI_EXPORT QPlatformIntegration
81 {
82 public:
83     enum Capability {
84         ThreadedPixmaps = 1,
85         OpenGL = 2,
86         ThreadedOpenGL = 3,
87         SharedGraphicsCache = 4,
88         BufferQueueingOpenGL = 5,
89         WindowMasks = 6
90     };
91
92     virtual ~QPlatformIntegration() { }
93
94     virtual bool hasCapability(Capability cap) const;
95
96     virtual QPlatformPixmap *createPlatformPixmap(QPlatformPixmap::PixelType type) const;
97     virtual QPlatformWindow *createPlatformWindow(QWindow *window) const = 0;
98     virtual QPlatformBackingStore *createPlatformBackingStore(QWindow *window) const = 0;
99 #ifndef QT_NO_OPENGL
100     virtual QPlatformOpenGLContext *createPlatformOpenGLContext(QOpenGLContext *context) const;
101 #endif
102     virtual QPlatformSharedGraphicsCache *createPlatformSharedGraphicsCache(const char *cacheId) const;
103     virtual QPaintEngine *createImagePaintEngine(QPaintDevice *paintDevice) const;
104
105 // Event dispatcher:
106     virtual QAbstractEventDispatcher *guiThreadEventDispatcher() const = 0;
107
108 //Deeper window system integrations
109     virtual QPlatformFontDatabase *fontDatabase() const;
110 #ifndef QT_NO_CLIPBOARD
111     virtual QPlatformClipboard *clipboard() const;
112 #endif
113 #ifndef QT_NO_DRAGANDDROP
114     virtual QPlatformDrag *drag() const;
115 #endif
116     virtual QPlatformInputContext *inputContext() const;
117 #ifndef QT_NO_ACCESSIBILITY
118     virtual QPlatformAccessibility *accessibility() const;
119 #endif
120
121     // Access native handles. The window handle is already available from Wid;
122     virtual QPlatformNativeInterface *nativeInterface() const;
123
124     virtual QPlatformServices *services() const;
125
126     enum StyleHint {
127         CursorFlashTime,
128         KeyboardInputInterval,
129         MouseDoubleClickInterval,
130         StartDragDistance,
131         StartDragTime,
132         KeyboardAutoRepeatRate,
133         ShowIsFullScreen,
134         PasswordMaskDelay,
135         FontSmoothingGamma,
136         StartDragVelocity
137     };
138
139     virtual QVariant styleHint(StyleHint hint) const;
140
141     virtual Qt::KeyboardModifiers queryKeyboardModifiers() const;
142
143     virtual QStringList themeNames() const;
144     virtual QPlatformTheme *createPlatformTheme(const QString &name) const;
145
146 protected:
147     void screenAdded(QPlatformScreen *screen);
148 };
149
150 QT_END_NAMESPACE
151
152 QT_END_HEADER
153
154 #endif // QPLATFORMINTEGRATION_H