4bb077d2b6818a397289e1b278004a3642d68e1a
[mardrone] / mardrone / imports / com / nokia / extras / Tumbler.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 Qt Components project.
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.1
42 import com.nokia.meego 1.0
43 import "Tumbler.js" as Engine
44 import "constants.js" as C
45
46 /*
47    Class: Tumbler
48    A tumbler.
49 */
50 ImplicitSizeItem {
51     id: root
52
53     /*
54      * Property: items
55      * [ListModel] Array of ListModel for each column of the dialog.
56      */
57     property list<Item> columns
58
59     /*
60      * Event: changed
61      * Is emitted when the value of the tumbler changes.
62      */
63     signal changed(int index)
64
65     /* private */
66     property bool privateDelayInit: false
67     property list<Item> privateTemplates
68
69     implicitWidth: C.TUMBLER_WIDTH
70     implicitHeight: screen.displayWidth > screen.displayHeight ?
71                         C.TUMBLER_HEIGHT_LANDSCAPE :
72                         C.TUMBLER_HEIGHT_PORTRAIT
73
74     /* private */
75     function privateInitialize() {
76         if (!internal.initialized) {
77             Engine.initialize();
78             internal.initialized = true;
79         }
80     }
81
82     /* private */
83     function privateForceUpdate() {
84         Engine.forceUpdate();
85     }
86
87     anchors.fill: parent
88     clip: true
89     Component.onCompleted: {
90         if (!privateDelayInit && !internal.initialized) {
91             Engine.initialize();
92             internal.initialized = true;
93         }
94     }
95     onChanged: {
96         if (internal.movementCount == 0)
97             Engine.forceUpdate();
98     }
99     onColumnsChanged: {
100         if (internal.initialized) {
101             // when new columns are added, the system first removes all
102             // the old columns
103             internal.initialized = false;
104             Engine.clear();
105             internal.reInit = true;
106         } else if (internal.reInit && columns.length > 0) {
107             // timer is used because the new columns are added one by one
108             // we only want to act after the last column is added
109             internal.reInit = false;
110             columnChangedTimer.restart();
111         }
112     }
113     onWidthChanged: {
114         Engine.layout();
115     }
116
117     QtObject {
118         id: internal
119
120         property int movementCount: 0
121         property bool initialized: false
122         property bool reInit: false
123         property bool hasLabel: false
124
125         property Timer timer: Timer {
126             id: columnChangedTimer
127             interval: 50
128             onTriggered: {
129                 Engine.initialize();
130                 internal.initialized = true;
131             }
132         }
133     }
134
135     BorderImage {
136         width: parent.width
137         height: internal.hasLabel ?
138                     parent.height - C.TUMBLER_LABEL_HEIGHT : // decrease by bottom text height
139                     parent.height
140         source: "image://theme/" + theme.colorString + "meegotouch-list-fullwidth-background-selected"
141         anchors.top: parent.top
142         border { left: C.TUMBLER_BORDER_MARGIN; top: C.TUMBLER_BORDER_MARGIN; right: C.TUMBLER_BORDER_MARGIN; bottom: C.TUMBLER_BORDER_MARGIN }
143     }
144
145     Rectangle {
146         width: parent.width
147         height: internal.hasLabel ?
148                     parent.height - C.TUMBLER_LABEL_HEIGHT - 2 * C.TUMBLER_BORDER_MARGIN : // decrease by bottom text & border height
149                     parent.height - 2*C.TUMBLER_BORDER_MARGIN
150         color: C.TUMBLER_COLOR
151         anchors { top: parent.top; topMargin: C.TUMBLER_BORDER_MARGIN }
152     }
153
154     Row {
155         id: tumblerRow
156         anchors { fill: parent; topMargin: 1 }
157     }
158 }