Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / examples / tutorials / gettingStartedQml / texteditor.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtDeclarative module 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 Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
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 "core"
43
44 Rectangle {
45     id: screen
46     width: 1000; height: 1000
47     property int partition: height/3
48     border { width: 1; color: "#DCDCCC"}
49     state: "DRAWER_CLOSED"
50
51     //Item 1: MenuBar on the top portion of the screen
52     MenuBar {
53         id:menuBar
54         height: screen.partition; width: screen.width
55         z: 1
56     }
57
58     //Item 2: The editable text area
59     TextArea {
60         id: textArea
61         y: drawer.height
62         color: "#3F3F3F"
63         fontColor: "#DCDCCC"
64          height: partition*2; width:parent.width
65     }
66
67     //Item 3: The drawer handle
68     Rectangle {
69         id: drawer
70         height: 15; width: parent.width
71         border { color : "#6A6D6A"; width: 1 }
72         z: 1
73         gradient: Gradient {
74                 GradientStop { position: 0.0; color: "#8C8F8C" }
75                 GradientStop { position: 0.17; color: "#6A6D6A" }
76                 GradientStop { position: 0.77; color: "#3F3F3F" }
77                 GradientStop { position: 1.0; color: "#6A6D6A" }
78             }
79         Image {
80             id: arrowIcon
81             source: "images/arrow.png"
82             anchors.horizontalCenter: parent.horizontalCenter
83             Behavior{ NumberAnimation { property: "rotation"; easing.type: Easing.OutExpo } }
84         }
85
86         MouseArea {
87             id: drawerMouseArea
88             anchors.fill: parent
89             hoverEnabled: true
90             onEntered: parent.border.color = Qt.lighter("#6A6D6A")
91             onExited:  parent.border.color = "#6A6D6A"
92             onClicked: {
93                 if (screen.state == "DRAWER_CLOSED") {
94                     screen.state = "DRAWER_OPEN"
95                 }
96                 else if (screen.state == "DRAWER_OPEN"){
97                     screen.state = "DRAWER_CLOSED"
98                 }
99             }
100         }
101     }
102
103 //! [states]
104     states:[
105         State {
106             name: "DRAWER_OPEN"
107             PropertyChanges { target: menuBar; y: 0}
108             PropertyChanges { target: textArea; y: partition + drawer.height}
109             PropertyChanges { target: drawer; y: partition}
110             PropertyChanges { target: arrowIcon; rotation: 180} 
111         },
112         State {
113             name: "DRAWER_CLOSED"
114             PropertyChanges { target: menuBar; y:-height; }
115             PropertyChanges { target: textArea; y: drawer.height; height: screen.height - drawer.height }
116             PropertyChanges { target: drawer; y: 0 }
117             PropertyChanges { target: arrowIcon; rotation: 0 }
118         }
119     ]
120 //! [states]
121
122 //! [transitions]
123     transitions: [
124         Transition {
125             to: "*"
126             NumberAnimation { target: textArea; properties: "y, height"; duration: 100; easing.type:Easing.OutExpo }
127             NumberAnimation { target: menuBar; properties: "y"; duration: 100; easing.type: Easing.OutExpo }
128             NumberAnimation { target: drawer; properties: "y"; duration: 100; easing.type: Easing.OutExpo }
129         }
130     ]
131 //! [transitions]
132 }