diff options
| author | Samuel Rødal <[email protected]> | 2011-07-21 13:50:28 +0200 |
|---|---|---|
| committer | Jørgen Lind <[email protected]> | 2011-07-25 13:52:09 +0200 |
| commit | c3da77798b876716ce038a30e9aa8517ec158c47 (patch) | |
| tree | 99ac6cf5ce37fcb626a12857bb18cf9b444b27f2 /examples/qpa/windows/window.cpp | |
| parent | e80b6619524a3720efb5fbe4c2307bec25a12ab8 (diff) | |
Added workable QScreen API on top of QPlatformScreen.
QPlatformIntegration::screens() no longer has to be implemented,
implementations should call QPlatformIntegration::screenAdded() for each
screen instead. This is for being able to support adding screens at
run-time later on, by connecting it to a signal in QGuiApplication.
The QGuiGLContext API has changed a bit, by not sending in all the
parameters in the constructor but instead having a create() function.
The createPlatformGLContext() factory in QPlatformIntegration takes a
QGuiGLContext * instead of a QSurfaceFormat and a share context, similar
to how the window and backing store factory functions work.
The XCB plugin has experimental support for connecting to multiple X
displays simultaneously, creating one or more QScreen for each.
Change-Id: I248a22a4fd3481280710110272c04a30a8021e8f
Reviewed-on: http://codereview.qt.nokia.com/2103
Reviewed-by: Qt Sanity Bot <[email protected]>
Reviewed-by: Jørgen Lind <[email protected]>
Diffstat (limited to 'examples/qpa/windows/window.cpp')
| -rw-r--r-- | examples/qpa/windows/window.cpp | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/examples/qpa/windows/window.cpp b/examples/qpa/windows/window.cpp index bbfc6a31163..fecc22034aa 100644 --- a/examples/qpa/windows/window.cpp +++ b/examples/qpa/windows/window.cpp @@ -14,13 +14,23 @@ QColor colorTable[] = QColor("#c0ef8f") }; +Window::Window(QScreen *screen) + : QWindow(screen) + , m_backgroundColorIndex(colorIndexId++) +{ + initialize(); +} + Window::Window(QWindow *parent) : QWindow(parent) , m_backgroundColorIndex(colorIndexId++) { - setWindowTitle(QLatin1String("Window")); + initialize(); +} - if (parent) +void Window::initialize() +{ + if (parent()) setGeometry(QRect(160, 120, 320, 240)); else { setGeometry(QRect(10, 10, 640, 480)); @@ -38,6 +48,7 @@ Window::Window(QWindow *parent) m_image.fill(colorTable[m_backgroundColorIndex % (sizeof(colorTable) / sizeof(colorTable[0]))].rgba()); m_lastPos = QPoint(-1, -1); + m_renderTimer = 0; } void Window::mousePressEvent(QMouseEvent *event) @@ -54,7 +65,7 @@ void Window::mouseMoveEvent(QMouseEvent *event) m_lastPos = event->pos(); } - render(); + scheduleRender(); } void Window::mouseReleaseEvent(QMouseEvent *event) @@ -66,12 +77,12 @@ void Window::mouseReleaseEvent(QMouseEvent *event) m_lastPos = QPoint(-1, -1); } - render(); + scheduleRender(); } void Window::exposeEvent(QExposeEvent *) { - render(); + scheduleRender(); } void Window::resizeEvent(QResizeEvent *) @@ -106,7 +117,20 @@ void Window::keyPressEvent(QKeyEvent *event) m_text.append(event->text()); break; } + scheduleRender(); +} + +void Window::scheduleRender() +{ + if (!m_renderTimer) + m_renderTimer = startTimer(1); +} + +void Window::timerEvent(QTimerEvent *) +{ render(); + killTimer(m_renderTimer); + m_renderTimer = 0; } void Window::render() |
