~nskaggs/ubuntu-ui-toolkit/sphinx-autopilot-emulator

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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
 * Copyright 2012 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import QtQuick 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.ListItems 0.1
import Ubuntu.Components.Popups 0.1

MainView {
    id: mainView
    width: units.gu(40)
    height: units.gu(71)
    objectName: "mainView"

    AlarmModel{
        id: alarmModel
    }

    Alarm {
        id: alarm
    }

    Column {
        id: layout
        anchors {
            left: parent.left
            top: parent.top
            right: parent.right
        }
        height: childrenRect.height

        Standard {
            text: "Label"
            control: TextField {
                id: message
                objectName: "alarm_message"
                text: alarm.message
            }
        }
        Standard {
            text: "Date"
            control: TextField {
                id: date
                objectName: "alarm_date"
                text: alarm.date.toString()
            }
        }
        Standard {
            text: "Enabled"
            control: Switch {
                id: enabled
                objectName: "alarm_enabled"
                checked: alarm.enabled
                onCheckedChanged: {
                    if (checked != alarm.enabled)
                        alarm.enabled = checked;
                }
            }
        }
        ValueSelector {
            id: recurence
            text: "Recurence"
            values: ["OneTime", "Daily", "Weekly"]
            selectedIndex: {
                if (alarm.type == Alarm.OneTime)
                    return 0;
                else if (alarm.type == Alarm.Repeating) {
                    if (alarm.daysOfWeek === Alarm.Daily)
                        return 1;
                    else
                        return 2;
                }
            }
            onSelectedIndexChanged: {
                switch (selectedIndex) {
                case 0:
                    alarm.type = Alarm.OneTime;
                    break;
                case 1:
                    alarm.type = Alarm.Repeating;
                    alarm.daysOfWeek = Alarm.Daily;
                    break;
                case 2:
                    alarm.type = Alarm.Repeating;
                    break;
                }
            }
        }

        MultiValue {
            id: days
            text: "Occurence"
            values: getValues()
            visible: recurence.selectedIndex == 2
            onClicked: {
                PopupUtils.open(Qt.resolvedUrl("AlarmDays.qml"), days, {"alarm": alarm});
            }
            function getValues() {
                var v = [];
                if (alarm.daysOfWeek & Alarm.Monday) v.push("Monday");
                if (alarm.daysOfWeek & Alarm.Tuesday) v.push("Tuesday");
                if (alarm.daysOfWeek & Alarm.Wednesday) v.push("Wednesday");
                if (alarm.daysOfWeek & Alarm.Thursday) v.push("Thursday");
                if (alarm.daysOfWeek & Alarm.Friday) v.push("Friday");
                if (alarm.daysOfWeek & Alarm.Saturday) v.push("Saturday");
                if (alarm.daysOfWeek & Alarm.Sunday) v.push("Sunday");
                return v;
            }
        }

        Standard {
            text: "Save result="+alarm.error
            control: Button {
                text: "Save"
                onClicked: {
                    alarm.message = message.text
                    alarm.date = new Date(date.text)
                    alarm.save();
                    if (alarm.error == Alarm.NoError) alarm.reset();
                }
            }
        }
        ThinDivider{}
    }

    ListView {
        id: alarmList
        anchors {
            fill: parent
            topMargin: layout.height
        }
        clip: true
        model: alarmModel
        delegate: Standard {
            text: message
            removable: true
            control: Switch {
                checked: model.enabled
                onCheckedChanged: {
                    if (checked != model.enabled) {
                        model.enabled = checked;
                        model.save();
                    }
                }
            }
            onItemRemoved: {
                var data = alarmModel.get(index);
                data.cancel();
            }
            onClicked: {
                var data = alarmModel.get(index);
                alarm.message = data.message;
                alarm.date = data.date;
                alarm.type = data.type;
                alarm.daysOfWeek = data.daysOfWeek;
                alarm.enabled = data.enabled;
            }
        }
    }
}