summaryrefslogtreecommitdiffstats
path: root/weather-qml/ForecastLabel.qml
blob: 60a444001b5ba6c323550c174b7bf8d1e906df6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import Qt 4.6

Item {
    id: root

    property string lowTemperature
    property string highTemperature
    property string currentTemperature

    Row {
        anchors.bottom: line.bottom
        anchors.bottomMargin: 58
        anchors.bottom: parent.bottom
        anchors.horizontalCenter: line.horizontalCenter

        Text {
            text: currentTemperature
            font.family: "Nokia Sans"
            font.pixelSize: 120
            font.bold: true
            color: "white"
        }

        Image {
            source: "images/centigrades.png"
        }
    }

    Image {
        id: line
        source: "images/division_line.png"
        anchors.top: parent.top
        anchors.topMargin: 104
        anchors.horizontalCenter: parent.horizontalCenter
    }

    Row {
        anchors.left: line.left
        anchors.top: line.bottom

        Image {
            source: "images/icon_max.png"
        }

        Text {
            text: highTemperature + "°C"
            font.family: "Nokia Sans"
            font.pixelSize: 30
            color: "white"
            opacity: 0.7
        }
    }

    Row {
        anchors.right: line.right
        anchors.top: line.bottom

        Image {
            source: "images/icon_min.png"
        }

        Text {
            text: lowTemperature + "°C"
            font.family: "Nokia Sans"
            font.pixelSize: 30
            color: "white"
            opacity: 0.7
        }
    }
}