blob: a2983957ef0068bc453884ad8c92ad6a7bf4252d (
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
|
import Qt 4.7
import com.javispedro.sowatch.metawatch 1.0
Rectangle {
width: 96
height: 96
color: "white"
MWTitle {
id: title
text: qsTr("Notifications")
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
}
MWListView {
id: notifs
anchors.top: title.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
model: watch.notifications
delegate: Rectangle {
property bool selected: ListView.isCurrentItem
width: notifs.width
height: childrenRect.height
color: ListView.isCurrentItem ? "black" : "white"
Text {
width: 96
text: "<b>" + model.modelData.title + "</b><br>" + model.modelData.body
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
color: parent.selected ? "white" : "black"
}
}
visible: count > 0;
}
Text {
anchors.top: title.bottom
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("No notifications");
visible: notifs.count == 0;
wrapMode: Text.Wrap
}
Connections {
target: watch
onButtonPressed : {
switch (button) {
case 1:
notifs.scrollUp();
break;
case 2:
notifs.scrollDown();
break;
}
}
}
}
|