~ubuntu-clock-dev/ubuntu-clock-app/reboot-packaging

« back to all changes in this revision

Viewing changes to app/alarm/AlarmList.qml

Setup autopilot infrastructure and added alarm test

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
    Column {
60
60
        id: alarmList
 
61
        objectName: 'alarmList'
61
62
        anchors.fill: parent
62
63
 
63
64
        Repeater {
64
65
            model: alarmListFlickable.model
 
66
            objectName: "alarmListRepeater"
65
67
            ListItem.Base {
 
68
                objectName: "alarm" + index
66
69
 
67
70
                Label {
68
71
                    id: alarmTime
 
72
                    objectName: "listAlarmTime" + index
69
73
 
70
74
                    anchors {
71
75
                        top: alarmDetailsColumn.top
89
93
 
90
94
                    Label {
91
95
                        id: alarmLabel
 
96
                        objectName: "listAlarmLabel" + index
92
97
 
93
98
                        text: message
94
99
                        fontSize: "medium"
98
103
 
99
104
                    Label {
100
105
                        id: alarmSubtitle
 
106
                        objectName: "listAlarmSubtitle" + index
101
107
 
102
108
                        fontSize: "xx-small"
103
109
                        width: parent.width
108
114
 
109
115
                Switch {
110
116
                    id: alarmStatus
 
117
                    objectName: "listAlarmStatus" + index
111
118
 
112
119
                    anchors {
113
120
                        right: parent.right