363cffba85cc8a8d4934679132ecbc97fb6b0050
[quandoparte] / application / resources / harmattan / qml / DelayIndicator.qml
1 import QtQuick 1.0
2 import "uiconstants.js" as UiConstants
3
4 Item {
5     id: indicator
6     property int level: 0
7     width: 10
8     height: parent.height
9     anchors {
10         top: parent.top
11         bottom: parent.bottom
12         rightMargin: UiConstants.SmallMargin
13     }
14     Rectangle {
15         id: rect
16         width: 10
17         height: UiConstants.ListItemHeightLarge - 10
18         anchors.centerIn: parent
19         color: {
20             switch (indicator.level) {
21             case 0: return "#0b0"
22             case 1: return "#dd0"
23             case 2: return "#da0"
24             case 3: return "#d60"
25             case 4: return "#d00"
26             default: return "#b0b"
27             }
28         }
29     }
30 }