improved desktop UI
[mardrone] / mardrone / imports / com / nokia / meego / ProgressBar.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 "." 1.0
43 import Qt.labs.components 1.1
44
45 import "TextAreaHelper.js" as AreaHelper
46
47 ImplicitSizeItem {
48     id: container
49
50     property alias minimumValue: progressModel.minimumValue
51     property alias maximumValue: progressModel.maximumValue
52     property alias value: progressModel.value
53     property bool indeterminate: false
54
55     // Styling for the ProgressBar
56     property Style platformStyle: ProgressBarStyle{}
57
58     //Deprecated, can be removed on W13
59     property alias style: container.platformStyle
60
61     implicitWidth: platformStyle.sizeButton
62     implicitHeight: background.height
63
64     QtObject {
65         id: internal
66         property Flickable flick
67         property bool offScreen: false
68     }
69
70     BorderImage {
71         id: background
72         width: parent.width
73         horizontalTileMode: BorderImage.Repeat
74         source: platformStyle.barBackground
75
76         border {
77             left: 6
78             top: 4
79             right: 6
80             bottom: 4
81         }
82     }
83
84     MaskedItem {
85         id: foreground
86         width: parent.width
87         height: parent.height
88
89         mask: BorderImage {
90             width: indeterminate ? container.width : progressModel.position
91             height: foreground.height
92             source: platformStyle.barMask
93
94             border {
95                 left: 4
96                 top: 4
97                 right: 4
98                 bottom: 4
99             }
100         }        
101
102         Image {
103             id: texture
104             width: foreground.width + sourceSize.width + 25
105             height: foreground.height
106             fillMode: Image.Tile
107
108             property real xTemp;                 
109            
110             source: indeterminate ? platformStyle.unknownTexture : platformStyle.knownTexture
111  
112             onXTempChanged: {   
113                 // Control the animation speed with this multiplier and the NumberAnimation duration divider
114                 texture.x = Math.round(texture.xTemp) * 4;
115             }
116
117             NumberAnimation on xTemp {
118                 running: indeterminate && container.visible && Qt.application.active && !internal.offScreen
119                 loops: Animation.Infinite
120                 from: -texture.sourceSize.width
121                 to: 0
122                 // time = distance / speed, where speed = 10 from the platformStyle
123                 duration: (1000 * texture.sourceSize.width / 10)
124             }
125         }
126     }
127
128     RangeModel {
129         id: progressModel
130         positionAtMinimum: 0
131         positionAtMaximum: background.width
132
133         // Defaults from Common API specification
134         minimumValue: 0
135         maximumValue: 1.0
136     }
137
138     Connections {
139         target: internal.flick
140
141         onMovementStarted: internal.offScreen = false
142
143         onMovementEnded: {
144             var pos = mapToItem(internal.flick, 0, 0)
145             internal.offScreen = (pos.y + container.height <= 0) || (pos.y >= internal.flick.height) || (pos.x + container.width <= 0) || (pos.x >= internal.flick.width)
146         }
147     }
148
149     Component.onCompleted: {
150         var flick = AreaHelper.findFlickable()
151         if (flick)
152             internal.flick = flick
153     }
154 }