Examples cleanup
[profile/ivi/qtdeclarative.git] / examples / demos / calculator / calculator-mobile.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 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 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 QtQuick.Window 2.0
43 import "content"
44 import "content/calculator.js" as CalcEngine
45
46 Rectangle {
47     id: window
48
49     width: 320; height: 480
50     color: "#282828"
51
52     property string rotateLeft: "\u2939"
53     property string rotateRight: "\u2935"
54     property string leftArrow: "\u2190"
55     property string division : "\u00f7"
56     property string multiplication : "\u00d7"
57     property string squareRoot : "\u221a"
58     property string plusminus : "\u00b1"
59
60     function doOp(operation) { CalcEngine.doOperation(operation) }
61
62     Item {
63         id: main
64         state: "orientation " + Screen.orientation
65
66         //Note: Assumes a primarily portrait device
67         property bool landscapeWindow: window.width > window.height 
68         property real baseWidth: landscapeWindow ? window.height : window.width
69         property real baseHeight: landscapeWindow ? window.width : window.height
70         property real rotationDelta: landscapeWindow ? -90 : 0
71
72         rotation: rotationDelta
73         width: main.baseWidth
74         height: main.baseHeight
75         anchors.centerIn: parent
76
77         Column {
78             id: box; spacing: 8
79
80             anchors { fill: parent; topMargin: 6; bottomMargin: 6; leftMargin: 6; rightMargin: 6 }
81
82             Display {
83                 id: display
84                 width: box.width-3
85                 height: 64
86             }
87
88             Column {
89                 id: column; spacing: 6
90
91                 property real h: ((box.height - 72) / 6) - ((spacing * (6 - 1)) / 6)
92                 property real w: (box.width / 4) - ((spacing * (4 - 1)) / 4)
93
94                 Row {
95                     spacing: 6
96                     Button { width: column.w; height: column.h; color: 'purple'; operation: "Off" }
97                     Button { width: column.w; height: column.h; color: 'purple'; operation: window.leftArrow }
98                     Button { width: column.w; height: column.h; color: 'purple'; operation: "C" }
99                     Button { width: column.w; height: column.h; color: 'purple'; operation: "AC" }
100                 }
101
102                 Row {
103                     spacing: 6
104                     property real w: (box.width / 4) - ((spacing * (4 - 1)) / 4)
105
106                     Button { width: column.w; height: column.h; color: 'green'; operation: "mc" }
107                     Button { width: column.w; height: column.h; color: 'green'; operation: "m+" }
108                     Button { width: column.w; height: column.h; color: 'green'; operation: "m-" }
109                     Button { width: column.w; height: column.h; color: 'green'; operation: "mr" }
110                 }
111
112                 Grid {
113                     id: grid; rows: 5; columns: 5; spacing: 6
114
115                     property real w: (box.width / columns) - ((spacing * (columns - 1)) / columns)
116
117                     Button { width: grid.w; height: column.h; operation: "7"; color: 'blue' }
118                     Button { width: grid.w; height: column.h; operation: "8"; color: 'blue' }
119                     Button { width: grid.w; height: column.h; operation: "9"; color: 'blue' }
120                     Button { width: grid.w; height: column.h; operation: window.division }
121                     Button { width: grid.w; height: column.h; operation: window.squareRoot }
122                     Button { width: grid.w; height: column.h; operation: "4"; color: 'blue' }
123                     Button { width: grid.w; height: column.h; operation: "5"; color: 'blue' }
124                     Button { width: grid.w; height: column.h; operation: "6"; color: 'blue' }
125                     Button { width: grid.w; height: column.h; operation: window.multiplication }
126                     Button { width: grid.w; height: column.h; operation: "x^2" }
127                     Button { width: grid.w; height: column.h; operation: "1"; color: 'blue' }
128                     Button { width: grid.w; height: column.h; operation: "2"; color: 'blue' }
129                     Button { width: grid.w; height: column.h; operation: "3"; color: 'blue' }
130                     Button { width: grid.w; height: column.h; operation: "-" }
131                     Button { width: grid.w; height: column.h; operation: "1/x" }
132                     Button { width: grid.w; height: column.h; operation: "0"; color: 'blue' }
133                     Button { width: grid.w; height: column.h; operation: "." }
134                     Button { width: grid.w; height: column.h; operation: window.plusminus }
135                     Button { width: grid.w; height: column.h; operation: "+" }
136                     Button { width: grid.w; height: column.h; operation: "="; color: 'red' }
137                 }
138             }
139         }
140
141         states: [
142             State {
143                 name: "orientation " + Qt.LandscapeOrientation
144                 PropertyChanges { target: main; rotation: 90 + rotationDelta; width: main.baseHeight; height: main.baseWidth }
145             },
146             State {
147                 name: "orientation " + Qt.InvertedPortraitOrientation
148                 PropertyChanges { target: main; rotation: 180 + rotationDelta; }
149             },
150             State {
151                 name: "orientation " + Qt.InvertedLandscapeOrientation
152                 PropertyChanges { target: main; rotation: 270 + rotationDelta; width: main.baseHeight; height: main.baseWidth }
153             }
154         ]
155
156         transitions: Transition {
157             SequentialAnimation {
158                 RotationAnimation { direction: RotationAnimation.Shortest; duration: 300; easing.type: Easing.InOutQuint  }
159                 NumberAnimation { properties: "x,y,width,height"; duration: 300; easing.type: Easing.InOutQuint }
160             }
161         }
162     }
163 }