aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/examples
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2012-07-11 17:32:16 +1000
committerQt by Nokia <qt-info@nokia.com>2012-07-17 07:26:15 +0200
commitfeb996e3ab44e68082c97102556ea396f5df3f44 (patch)
tree7613a8a4eaf5a8e0fb2801e9d0d9d1869524c348 /tests/auto/quick/examples
parent68bbdacd2d5a6fa02f085a996411fb2b71875174 (diff)
QQuickCanvas renames
QQuickCanvas is now called QQuickWindow QQuickCanvas::rootItem is now QQuickWindow::contentItem QQuickItem::canvas is now QQuickItem::window QQuickItem::ItemChangeData::canvas is also renamed window QQuickCanvas::grabFrameBuffer is now QQuickWindow::grabWindow The functions related to the color property have dropped the clear from their names. The first three changes have interim compatibility measures in place to ease the transition. Change-Id: Id34e29546a22a74a7ae2ad90ee3a8def6fc541d2 Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'tests/auto/quick/examples')
-rw-r--r--tests/auto/quick/examples/tst_examples.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/tests/auto/quick/examples/tst_examples.cpp b/tests/auto/quick/examples/tst_examples.cpp
index 6cce5b82f2..309a149a5e 100644
--- a/tests/auto/quick/examples/tst_examples.cpp
+++ b/tests/auto/quick/examples/tst_examples.cpp
@@ -83,10 +83,10 @@ private:
QQmlEngine engine;
- QQuickCanvas *canvas;
+ QQuickWindow *window;
};
-tst_examples::tst_examples() : canvas(0)
+tst_examples::tst_examples() : window(0)
{
// Add files to exclude here
excludedFiles << "examples/quick/canvas/tiger/tiger.qml"; // QTBUG-26528
@@ -123,7 +123,7 @@ tst_examples::tst_examples() : canvas(0)
tst_examples::~tst_examples()
{
- delete canvas;
+ delete window;
}
void tst_examples::init()
@@ -262,13 +262,13 @@ void tst_examples::sgexamples()
component.completeCreate();
QVERIFY(root);
- if (!canvas) {
- canvas = new QQuickCanvas();
- canvas->resize(240, 320);
- canvas->show();
- QTest::qWaitForWindowShown(canvas);
+ if (!window) {
+ window = new QQuickWindow();
+ window->resize(240, 320);
+ window->show();
+ QTest::qWaitForWindowShown(window);
}
- root->setParentItem(canvas->rootItem());
+ root->setParentItem(window->rootItem());
component.completeCreate();
qApp->processEvents();
@@ -306,13 +306,13 @@ void tst_examples::sgsnippets()
component.completeCreate();
QVERIFY(root);
- if (!canvas) {
- canvas = new QQuickCanvas();
- canvas->resize(240, 320);
- canvas->show();
- QTest::qWaitForWindowShown(canvas);
+ if (!window) {
+ window = new QQuickWindow();
+ window->resize(240, 320);
+ window->show();
+ QTest::qWaitForWindowShown(window);
}
- root->setParentItem(canvas->rootItem());
+ root->setParentItem(window->rootItem());
component.completeCreate();
qApp->processEvents();