~pkunal-parmar/ubuntu-calendar-app/NewDayView

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
import QtQuick 2.0
import Ubuntu.Components 1.1
import Ubuntu.Components.ListItems 1.0

Item {
    id: root
    property var date;

    signal nextDayClicked();
    signal previousDayClicked();

    height: units.gu(6)

    DayViewHeaderButton{
        anchors.left: parent.left
        width: parent.width / 2.5
        iconName: "previous"

        onClicked: {
            root.previousDayClicked();
        }
    }

    DayViewHeaderButton{
        anchors.right: parent.right
        width: parent.width / 2.5
        iconName: "next"

        onClicked: {
            root.nextDayClicked();
        }
    }

    Row {
        spacing: units.gu(1)
        anchors.centerIn: parent

        Label {
            objectName: "dayLabel"
            font.bold: true
            text: Qt.locale().standaloneDayName(date.getDay(), Locale.LongFormat)
        }

        Label{
            objectName: "dateLabel"
            text: date.getDate();
        }
    }
    Divider{ anchors.top: parent.bottom}
}