aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickwindow.h
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@jollamobile.com>2014-02-10 15:51:16 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-25 17:08:02 +0100
commitaaea23708a46259094a8203f73ee0650c362d85f (patch)
tree2d6dda4f7542fd091bca8008f962bc8fcb6ffc41 /src/quick/items/qquickwindow.h
parentb9f74e7467f31b63bd0ff2ae9d66bcd61a8b8b6f (diff)
Introduced a few more signals to QQuickWindow.
Also marked the new afterAnimation() signal as \since 5.3 and introduced proper revisioning on the new signals. [Changelog][QtQuick] Added QQuickWindow::afterSynchronizing(), openglContextCreated(), sceneGraphAboutToStop(). Useful for deeper integration with the rendering. Change-Id: I5532b310506c2432325595e55ef9307b8934abee Reviewed-by: Laszlo Agocs <laszlo.agocs@digia.com>
Diffstat (limited to 'src/quick/items/qquickwindow.h')
-rw-r--r--src/quick/items/qquickwindow.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/quick/items/qquickwindow.h b/src/quick/items/qquickwindow.h
index 8be6cc88b7..2572f31375 100644
--- a/src/quick/items/qquickwindow.h
+++ b/src/quick/items/qquickwindow.h
@@ -138,16 +138,21 @@ public:
Q_SIGNALS:
void frameSwapped();
+ Q_REVISION(2) void openglContextCreated(QOpenGLContext *context);
void sceneGraphInitialized();
void sceneGraphInvalidated();
void beforeSynchronizing();
+ Q_REVISION(2) void afterSynchronizing();
void beforeRendering();
void afterRendering();
- void afterAnimating();
+ Q_REVISION(2) void afterAnimating();
+ Q_REVISION(2) void sceneGraphAboutToStop();
+
Q_REVISION(1) void closing(QQuickCloseEvent *close);
void colorChanged(const QColor &);
Q_REVISION(1) void activeFocusItemChanged();
- void sceneGraphError(QQuickWindow::SceneGraphError error, const QString &message);
+ Q_REVISION(2) void sceneGraphError(QQuickWindow::SceneGraphError error, const QString &message);
+
public Q_SLOTS:
void update();