diff options
Diffstat (limited to 'src/plugins/graphicssystems/vnc/qgraphicssystem_vnc.h')
-rw-r--r-- | src/plugins/graphicssystems/vnc/qgraphicssystem_vnc.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/graphicssystems/vnc/qgraphicssystem_vnc.h b/src/plugins/graphicssystems/vnc/qgraphicssystem_vnc.h index 375b467..d593096 100644 --- a/src/plugins/graphicssystems/vnc/qgraphicssystem_vnc.h +++ b/src/plugins/graphicssystems/vnc/qgraphicssystem_vnc.h @@ -43,6 +43,7 @@ #define QGRAPHICSSYSTEM_VNC_H #include <QtGui/private/qgraphicssystem_p.h> +#include "qwindowsurface_vnc.h" QT_BEGIN_NAMESPACE @@ -68,6 +69,9 @@ public: void setDirty(const QRect &rect); + void removeWindowSurface(QVNCWindowSurface * surface); + void addWindowSurface(QVNCWindowSurface * surface) { windowStack.append(surface); } + public: QRect mGeometry; int mDepth; @@ -77,6 +81,8 @@ public: QVNCServer *server; QVNCGraphicsSystemScreenPrivate *d_ptr; +private: + QList<QVNCWindowSurface *> windowStack; }; class QVNCGraphicsSystemPrivate; @@ -92,6 +98,7 @@ public: QList<QGraphicsSystemScreen *> screens() const { return mScreens; } + private: QVNCGraphicsSystemScreen *mPrimaryScreen; QList<QGraphicsSystemScreen *> mScreens; |