Examples cleanup
[profile/ivi/qtdeclarative.git] / examples / demos / calculator / calculator-desktop.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: 640; 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     focus: true
62     Keys.onPressed: doOp(event.text);
63
64     Item {
65         id: main
66         width: 640
67         height: 480
68         anchors.centerIn: parent
69
70         Column {
71             id: box; spacing: 8
72
73             anchors { fill: parent; topMargin: 6; bottomMargin: 6; leftMargin: 6; rightMargin: 6 }
74
75             Display {
76                 id: display
77                 width: box.width-3
78                 height: 64
79             }
80
81             Column {
82                 id: column; spacing: 6
83
84                 property real h: ((box.height - 72) / 6) - ((spacing * (6 - 1)) / 6)
85                 property real w: (box.width / 4) - ((spacing * (4 - 1)) / 4)
86
87                 Row {
88                     spacing: 6
89                     Button { width: column.w; height: column.h; color: 'purple'; operation: "Off" }
90                     Button { width: column.w; height: column.h; color: 'purple'; operation: leftArrow }
91                     Button { width: column.w; height: column.h; color: 'purple'; operation: "C" }
92                     Button { width: column.w; height: column.h; color: 'purple'; operation: "AC" }
93                 }
94
95                 Row {
96                     spacing: 6
97                     property real w: (box.width / 4) - ((spacing * (4 - 1)) / 4)
98
99                     Button { width: column.w; height: column.h; color: 'green'; operation: "mc" }
100                     Button { width: column.w; height: column.h; color: 'green'; operation: "m+" }
101                     Button { width: column.w; height: column.h; color: 'green'; operation: "m-" }
102                     Button { width: column.w; height: column.h; color: 'green'; operation: "mr" }
103                 }
104
105                 Grid {
106                     id: grid; rows: 5; columns: 5; spacing: 6
107
108                     property real w: (box.width / columns) - ((spacing * (columns - 1)) / columns)
109
110                     Button { width: grid.w; height: column.h; operation: "7"; color: 'blue' }
111                     Button { width: grid.w; height: column.h; operation: "8"; color: 'blue' }
112                     Button { width: grid.w; height: column.h; operation: "9"; color: 'blue' }
113                     Button { width: grid.w; height: column.h; operation: division }
114                     Button { width: grid.w; height: column.h; operation: squareRoot }
115                     Button { width: grid.w; height: column.h; operation: "4"; color: 'blue' }
116                     Button { width: grid.w; height: column.h; operation: "5"; color: 'blue' }
117                     Button { width: grid.w; height: column.h; operation: "6"; color: 'blue' }
118                     Button { width: grid.w; height: column.h; operation: multiplication }
119                     Button { width: grid.w; height: column.h; operation: "x^2" }
120                     Button { width: grid.w; height: column.h; operation: "1"; color: 'blue' }
121                     Button { width: grid.w; height: column.h; operation: "2"; color: 'blue' }
122                     Button { width: grid.w; height: column.h; operation: "3"; color: 'blue' }
123                     Button { width: grid.w; height: column.h; operation: "-" }
124                     Button { width: grid.w; height: column.h; operation: "1/x" }
125                     Button { width: grid.w; height: column.h; operation: "0"; color: 'blue' }
126                     Button { width: grid.w; height: column.h; operation: "." }
127                     Button { width: grid.w; height: column.h; operation: plusminus }
128                     Button { width: grid.w; height: column.h; operation: "+" }
129                     Button { width: grid.w; height: column.h; operation: "="; color: 'red' }
130                 }
131             }
132         }
133
134     }
135 }