blob: e5e999f26627723d21fa5ba02143088e73bf30d2 (
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
71
72
73
74
75
76
77
78
79
80
81
82
|
import QtQuick 1.0
import QtMobility.messaging 1.1
import com.javispedro.sowatch.metawatch 1.0
MWPage {
MWTitle {
id: title
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Inbox")
icon.source: "icon.png"
}
MWListView {
id: list
anchors.top: title.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
clip: true
model: MessageModel {
sortBy: MessageModel.Timestamp
sortOrder: MessageModel.DescendingOrder
filter: MessageIntersectionFilter {
MessageFilter {
type: MessageFilter.Type
comparator: MessageFilter.Equal
value: MessageFilter.Email
}
MessageFilter {
type: MessageFilter.StandardFolder
comparator: MessageFilter.Equal
value: MessageFilter.InboxFolder
}
}
limit: 20
}
delegate: Rectangle {
id: msgDelegate
property bool selected: ListView.isCurrentItem
width: parent.width
height: childrenRect.height
color: ListView.isCurrentItem ? "black" : "white"
Column {
width: parent.width
MWLabel {
width: parent.width
text: sender
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
color: msgDelegate.selected ? "white" : "black"
font.pointSize: 12
}
MWLabel {
width: parent.width
text: subject
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
color: msgDelegate.selected ? "white" : "black"
}
}
}
}
Connections {
target: watch
onButtonPressed: {
switch (button) {
case 1:
list.scrollUp();
break;
case 2:
list.scrollDown();
break;
}
}
onActiveChanged: {
if (watch.active) {
list.scrollTop();
}
}
}
}
|