diff options
author | Jeremy Katz <jeremy.katz@nokia.com> | 2010-06-11 10:50:27 (GMT) |
---|---|---|
committer | Jeremy Katz <jeremy.katz@nokia.com> | 2010-06-11 10:50:27 (GMT) |
commit | a498db43a02972e90df5f1cdd73e90260471f5f8 (patch) | |
tree | 1d8fe5409fe68eaf898ad54de87ce814669c836a /src/gui/kernel/qwidget.h | |
parent | 28547949cc78d25884a76bf3c2112a6217ba5b66 (diff) | |
download | Qt-a498db43a02972e90df5f1cdd73e90260471f5f8.zip Qt-a498db43a02972e90df5f1cdd73e90260471f5f8.tar.gz Qt-a498db43a02972e90df5f1cdd73e90260471f5f8.tar.bz2 |
litehouse multiscreen support
This commit adds QPlatformIntegration::moveToScreen(), which requests that
a widget be moved to another screen. The default implementation ignores the
request.
The VNC plugin has been updated accordingly. It currently only supports
non-virtual desktops.
Review by: Jørgen
Diffstat (limited to 'src/gui/kernel/qwidget.h')
-rw-r--r-- | src/gui/kernel/qwidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/kernel/qwidget.h b/src/gui/kernel/qwidget.h index 7dff703..598e877 100644 --- a/src/gui/kernel/qwidget.h +++ b/src/gui/kernel/qwidget.h @@ -629,6 +629,7 @@ public: #if defined(Q_WS_LITE) void setPlatformWindow(QPlatformWindow *window); QPlatformWindow *platformWindow() const; + friend class QDesktopScreenWidget; #endif Q_SIGNALS: |