Window example tests Qt.application.supportsMultipleWindows
[profile/ivi/qtdeclarative.git] / examples / window / window / standalone.qml
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 examples of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
21 **     of its contributors may be used to endorse or promote products derived
22 **     from this software without specific prior written permission.
23 **
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 2.0
42 import QtQuick.Window 2.0
43
44 Item {
45     width: 320
46     height: 240
47     // It's not possible to set an Item's windowTitle.  If you want to modify
48     // window properties, you need to explicitly create a Window.
49     Text {
50         id: text1
51         anchors.centerIn: parent
52         text: "First Window\n" + (Qt.application.supportsMultipleWindows ?
53             "click the button to open a second window" : "only one window is allowed")
54     }
55     Rectangle {
56         border.color: "black"
57         radius: 4
58         anchors.top: text1.bottom
59         anchors.horizontalCenter: text1.horizontalCenter
60         width: 100
61         height: 30
62         TextInput {
63             id: ti1
64             focus: true // but the modal popup will prevent input while it is open
65             anchors.centerIn: parent
66         }
67     }
68     Rectangle {
69         border.color: "black"
70         color: childWindow.visible ? "goldenrod" : "beige"
71         radius: height / 4
72         anchors.bottom: parent.bottom
73         anchors.right: parent.right
74         anchors.margins: 10
75         width: text.implicitWidth + 20
76         height: text.implicitHeight + 20
77         visible: Qt.application.supportsMultipleWindows
78         Text {
79             id: text
80             text: "Pop up window"
81             anchors.centerIn: parent
82         }
83         MouseArea {
84             anchors.fill: parent
85             onClicked: childWindow.visible = !childWindow.visible
86         }
87     }
88
89     Window {
90         id: childWindow
91         width: 320
92         height: 240
93         x: 220
94         y: 120
95         color: "beige"
96         title: "Second Window"
97         modality: Qt.ApplicationModal
98         flags: Qt.WindowStaysOnTopHint | Qt.FramelessWindowHint
99         Text {
100             id: text2
101             anchors.centerIn: parent
102             text: "Modal Frameless Stay-on-Top Window"
103         }
104         Text {
105             anchors.top: parent.top
106             anchors.right: parent.right
107             anchors.margins: 10
108             text: "X"
109             MouseArea{
110                 anchors.fill: parent
111                 onClicked: childWindow.visible = false
112             }
113         }
114         Rectangle {
115             border.color: "black"
116             radius: 4
117             anchors.top: text2.bottom
118             anchors.horizontalCenter: text2.horizontalCenter
119             width: 100
120             height: 30
121             TextInput {
122                 id: ti2
123                 focus: true
124                 anchors.centerIn: parent
125             }
126         }
127     }
128 }