a06db633a7ee6fac18f74031d9c372057ddaeb52
[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"
53     }
54     Rectangle {
55         border.color: "black"
56         radius: 4
57         anchors.top: text1.bottom
58         anchors.horizontalCenter: text1.horizontalCenter
59         width: 100
60         height: 30
61         TextInput {
62             id: ti1
63             focus: true // but the modal popup will prevent input while it is open
64             anchors.centerIn: parent
65         }
66     }
67     Rectangle {
68         border.color: "black"
69         color: childWindow.visible ? "goldenrod" : "beige"
70         radius: height / 4
71         anchors.bottom: parent.bottom
72         anchors.right: parent.right
73         anchors.margins: 10
74         width: text.implicitWidth + 20
75         height: text.implicitHeight + 20
76         Text {
77             id: text
78             text: "Pop up window"
79             anchors.centerIn: parent
80         }
81         MouseArea {
82             anchors.fill: parent
83             onClicked: childWindow.visible = !childWindow.visible
84         }
85     }
86
87     Window {
88         id: childWindow
89         width: 320
90         height: 240
91         x: 220
92         y: 120
93         color: "beige"
94         title: "Second Window"
95         modality: Qt.ApplicationModal
96         flags: Qt.WindowStaysOnTopHint | Qt.FramelessWindowHint
97         Text {
98             id: text2
99             anchors.centerIn: parent
100             text: "Modal Frameless Stay-on-Top Window"
101         }
102         Text {
103             anchors.top: parent.top
104             anchors.right: parent.right
105             anchors.margins: 10
106             text: "X"
107             MouseArea{
108                 anchors.fill: parent
109                 onClicked: childWindow.visible = false
110             }
111         }
112         Rectangle {
113             border.color: "black"
114             radius: 4
115             anchors.top: text2.bottom
116             anchors.horizontalCenter: text2.horizontalCenter
117             width: 100
118             height: 30
119             TextInput {
120                 id: ti2
121                 focus: true
122                 anchors.centerIn: parent
123             }
124         }
125     }
126 }