All QWindow properties that have "window" in them have been renamed.
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickapplication / tst_qquickapplication.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include <qtest.h>
43 #include <QtQml/qqmlcomponent.h>
44 #include <QtQml/qqmlengine.h>
45 #include <QtQuick/qquickitem.h>
46 #include <QtQuick/qquickview.h>
47 #include <QtGui/qinputmethod.h>
48 #include <qpa/qwindowsysteminterface.h>
49
50 class tst_qquickapplication : public QObject
51 {
52     Q_OBJECT
53 public:
54     tst_qquickapplication();
55
56 private slots:
57     void active();
58     void layoutDirection();
59     void inputMethod();
60
61 private:
62     QQmlEngine engine;
63 };
64
65 tst_qquickapplication::tst_qquickapplication()
66 {
67 }
68
69 void tst_qquickapplication::active()
70 {
71     QQmlComponent component(&engine);
72     component.setData("import QtQuick 2.0; "
73                       "Item { "
74                       "    property bool active: Qt.application.active; "
75                       "    property bool active2: false; "
76                       "    Connections { "
77                       "        target: Qt.application; "
78                       "        onActiveChanged: active2 = Qt.application.active; "
79                       "    } "
80                       "}", QUrl::fromLocalFile(""));
81     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
82     QVERIFY(item);
83     QQuickWindow window;
84     item->setParentItem(window.contentItem());
85
86     // not active
87     QVERIFY(!item->property("active").toBool());
88     QVERIFY(!item->property("active2").toBool());
89
90     // active
91     window.show();
92     window.requestActivate();
93     QTest::qWaitForWindowActive(&window);
94     QVERIFY(QGuiApplication::focusWindow() == &window);
95     QVERIFY(item->property("active").toBool());
96     QVERIFY(item->property("active2").toBool());
97
98     // not active again
99     QWindowSystemInterface::handleWindowActivated(0);
100
101     QTRY_VERIFY(QGuiApplication::focusWindow() != &window);
102     QVERIFY(!item->property("active").toBool());
103     QVERIFY(!item->property("active2").toBool());
104 }
105
106 void tst_qquickapplication::layoutDirection()
107 {
108
109     QQmlComponent component(&engine);
110     component.setData("import QtQuick 2.0; Item { property bool layoutDirection: Qt.application.layoutDirection }", QUrl::fromLocalFile(""));
111     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
112     QVERIFY(item);
113     QQuickView view;
114     item->setParentItem(view.rootObject());
115
116     // not mirrored
117     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::LeftToRight);
118
119     // mirrored
120     QGuiApplication::setLayoutDirection(Qt::RightToLeft);
121     QEXPECT_FAIL("", "QTBUG-21573", Abort);
122     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::RightToLeft);
123
124     // not mirrored again
125     QGuiApplication::setLayoutDirection(Qt::LeftToRight);
126     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::LeftToRight);
127 }
128
129 void tst_qquickapplication::inputMethod()
130 {
131     // technically not in QQuickApplication, but testing anyway here
132     QQmlComponent component(&engine);
133     component.setData("import QtQuick 2.0; Item { property variant inputMethod: Qt.inputMethod }", QUrl::fromLocalFile(""));
134     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
135     QVERIFY(item);
136     QQuickView view;
137     item->setParentItem(view.rootObject());
138
139     // check that the inputMethod property maches with application's input method
140     QCOMPARE(qvariant_cast<QObject*>(item->property("inputMethod")), qApp->inputMethod());
141 }
142
143
144 QTEST_MAIN(tst_qquickapplication)
145
146 #include "tst_qquickapplication.moc"