Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / examples / tutorials / gettingStarted / gsQml / parts / part4 / TextEditor.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **   * Redistributions of source code must retain the above copyright
16 **     notice, this list of conditions and the following disclaimer.
17 **   * Redistributions in binary form must reproduce the above copyright
18 **     notice, this list of conditions and the following disclaimer in
19 **     the documentation and/or other materials provided with the
20 **     distribution.
21 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 **     the names of its contributors may be used to endorse or promote
23 **     products derived from this software without specific prior written
24 **     permission.
25 **
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 1.0
42
43 Rectangle {
44     id: screen
45     width: 1000; height: 1000
46     property int partition: height/3
47     state: "DRAWER_CLOSED"
48     
49     
50     //Item 1: MenuBar on the top portion of the screen
51     MenuBar{
52         id:menuBar
53         height: partition
54         //anchors.top:parent.top
55         width:parent.width
56         z:1
57     }
58
59
60     //Item 2: The editable text area
61     TextArea{
62         id:textArea
63         y:drawer.height
64         border.color: Qt.darker(color, 1.4)
65         border.width: 2
66         color: "#3F3F3F"
67         fontColor: "#DCDCCC"
68          height: partition*2
69         width:parent.width        
70     }
71
72     //Item 3: The drawer handle
73     Rectangle{
74         id:drawer
75         height:15
76         width: parent.width
77         border.color : "#6A6D6A"
78         border.width: 1
79
80         gradient: Gradient {
81             GradientStop { position: 0.0; color: "#8C8F8C" }
82             GradientStop { position: 0.17; color: "#6A6D6A" }
83             GradientStop { position: 0.77; color: "#3F3F3F" }
84             GradientStop { position: 1.0; color: "#6A6D6A" }
85             }
86
87         Image{
88             id: arrowIcon
89             source: "images/arrow.png"
90             anchors.horizontalCenter: parent.horizontalCenter
91             
92             Behavior{NumberAnimation{property: "rotation";easing.type: Easing.OutExpo }}
93         }
94         
95         MouseArea{
96             id: drawerMouseArea
97             anchors.fill:parent
98             onClicked:{
99                 if (screen.state == "DRAWER_CLOSED"){
100                     screen.state = "DRAWER_OPEN"
101                     console.log("drawer OPEN")    
102                 }
103                 else if (screen.state == "DRAWER_OPEN"){
104                     screen.state = "DRAWER_CLOSED"
105                     console.log("drawer closed")
106                 }
107             }
108
109             //if true, then onEntered and onExited called if mouse hovers in the mouse area
110             //if false, a button must be clicked to detect the mouse hover
111             hoverEnabled: true
112     
113             //display a border if the mouse hovers on the button mouse area
114             onEntered: parent.border.color = Qt.lighter("#6A6D6A")
115             //remove the border if the mouse exits the button mouse area
116             onExited:  parent.border.color = "#6A6D6A"
117         }
118     
119     }
120     states:[
121         State{
122             name: "DRAWER_OPEN"
123             PropertyChanges { target: menuBar; y:0}
124             PropertyChanges { target: textArea; y: partition + drawer.height}
125             PropertyChanges { target: drawer; y: partition}
126             PropertyChanges { target: arrowIcon; rotation: 180} 
127         },
128         State{
129             name: "DRAWER_CLOSED"
130             PropertyChanges { target: menuBar; y:-partition}
131             PropertyChanges { target: textArea; y: drawer.height; height: screen.height - drawer.height}
132             PropertyChanges { target: drawer; y: 0}
133             PropertyChanges { target: arrowIcon; rotation: 0} 
134         }
135
136     ]
137     transitions: [
138         Transition{
139             to: "*"
140             NumberAnimation { target: textArea; properties: "y, height"; duration: 100; easing.type:Easing.OutExpo }
141             NumberAnimation { target: menuBar; properties: "y"; duration: 100;easing.type: Easing.OutExpo }
142             NumberAnimation { target: drawer; properties: "y"; duration: 100;easing.type: Easing.OutExpo }
143         }
144     
145     ]
146 }