summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/qnx/qqnxwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/platforms/qnx/qqnxwindow.h')
-rw-r--r--src/plugins/platforms/qnx/qqnxwindow.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/plugins/platforms/qnx/qqnxwindow.h b/src/plugins/platforms/qnx/qqnxwindow.h
index 3c8070b0be..ea7b388e9f 100644
--- a/src/plugins/platforms/qnx/qqnxwindow.h
+++ b/src/plugins/platforms/qnx/qqnxwindow.h
@@ -78,7 +78,6 @@ public:
WId winId() const { return (WId)m_window; }
screen_window_t nativeHandle() const { return m_window; }
- virtual void adjustBufferSize() = 0;
void setBufferSize(const QSize &size);
QSize bufferSize() const { return m_bufferSize; }
@@ -93,7 +92,6 @@ public:
void propagateSizeHints();
- void gainedFocus();
void setMMRendererWindowName(const QString &name);
void setMMRendererWindow(screen_window_t handle);
void clearMMRendererWindow();
@@ -112,6 +110,7 @@ public:
void setRotation(int rotation);
QByteArray groupName() const { return m_windowGroupName; }
+ void joinWindowGroup(const QByteArray &groupName);
protected:
virtual int pixelFormat() const = 0;
@@ -122,22 +121,21 @@ protected:
screen_context_t m_screenContext;
QScopedPointer<QQnxAbstractCover> m_cover;
- QQnxWindow *m_parentWindow;
-
private:
void createWindowGroup();
- QRect setGeometryHelper(const QRect &rect);
+ void setGeometryHelper(const QRect &rect);
void removeFromParent();
- void setOffset(const QPoint &setOffset);
void updateVisibility(bool parentVisible);
void updateZorder(int &topZorder);
void updateZorder(screen_window_t window, int &zOrder);
void applyWindowState();
+ void setFocus(screen_window_t newFocusWindow);
screen_window_t m_window;
QSize m_bufferSize;
QQnxScreen *m_screen;
+ QQnxWindow *m_parentWindow;
QList<QQnxWindow*> m_childWindows;
bool m_visible;
bool m_exposed;
@@ -146,7 +144,10 @@ private:
QString m_mmRendererWindowName;
screen_window_t m_mmRendererWindow;
+ // Group name of window group headed by this window
QByteArray m_windowGroupName;
+ // Group name that we have joined or "" if we've not joined any group.
+ QByteArray m_parentGroupName;
bool m_isTopLevel;
};