summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/eglfs/qeglfswindow.h
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@digia.com>2013-09-13 13:02:20 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-20 12:05:08 +0200
commitf89f099c55576992b39a8021aace64ff32747624 (patch)
treeedefe8cefb81d63ef60440608112ee67ad837960 /src/plugins/platforms/eglfs/qeglfswindow.h
parentcfd52842492d12af26d897e0f893c80b2df5945a (diff)
eglfs: Support multiple raster windows
Allow widget apps with popups and multiple top-level widgets to function on the eglfs platform. GL and Quick2 apps are not affected. Instead of trying to create a native window and EGL surface for each window, do it only for the window that is created first. This first window is forced to fullscreen as usual. Later windows however are treated differently: These will not have a native window, surface or context, and keep their normal size. All the textures belonging to the raster windows are then rendered in one step, using a stacking order maintained based on visibility changes and window activation. Note that this will only help apps that create a main window first and have everything else inside that window or on top of it as menus, dialogs, popups, etc. Change-Id: Ia435458ba81bf3c35cc8f61bcb2d2a50cf17f0e3 Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com> Reviewed-by: Andy Nichols <andy.nichols@digia.com>
Diffstat (limited to 'src/plugins/platforms/eglfs/qeglfswindow.h')
-rw-r--r--src/plugins/platforms/eglfs/qeglfswindow.h25
1 files changed, 23 insertions, 2 deletions
diff --git a/src/plugins/platforms/eglfs/qeglfswindow.h b/src/plugins/platforms/eglfs/qeglfswindow.h
index 936537807a..783ae414d6 100644
--- a/src/plugins/platforms/eglfs/qeglfswindow.h
+++ b/src/plugins/platforms/eglfs/qeglfswindow.h
@@ -49,6 +49,8 @@
QT_BEGIN_NAMESPACE
+class QEglFSBackingStore;
+
class QEglFSWindow : public QPlatformWindow
{
public:
@@ -56,8 +58,9 @@ public:
~QEglFSWindow();
void setGeometry(const QRect &);
- void setWindowState(Qt::WindowState state);
WId winId() const;
+ void setVisible(bool visible);
+ void requestActivateWindow();
EGLSurface surface() const;
QSurfaceFormat format() const;
@@ -67,6 +70,12 @@ public:
void create();
void destroy();
+ bool hasNativeWindow() const { return m_flags.testFlag(HasNativeWindow); }
+ bool isRasterRoot() const { return m_flags.testFlag(IsRasterRoot); }
+
+ QEglFSBackingStore *backingStore() { return m_backingStore; }
+ void setBackingStore(QEglFSBackingStore *backingStore) { m_backingStore = backingStore; }
+
virtual void invalidateSurface();
virtual void resetSurface();
@@ -77,7 +86,19 @@ protected:
private:
EGLConfig m_config;
QSurfaceFormat m_format;
- bool has_window;
+ WId m_wid;
+ QEglFSBackingStore *m_backingStore;
+
+ enum Flag {
+ Created = 0x01,
+ HasNativeWindow = 0x02,
+ IsRaster = 0x04,
+ IsRasterRoot = 0x08
+ };
+ Q_DECLARE_FLAGS(Flags, Flag);
+ Flags m_flags;
};
+
QT_END_NAMESPACE
+
#endif // QEGLFSWINDOW_H