..
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227 | /*
* Copyright 2011 Marco Martin <[email protected]>
* Copyright 2014 Kai Uwe Broulik <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2, or
* (at your option) any later version.
*
* 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 Library General Public License for more details
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import QtQuick 2.0
import QtQuick.Layouts 1.1
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents
import org.kde.plasma.extras 2.0 as PlasmaExtras
import org.kde.kquickcontrolsaddons 2.0
Item {
id: notificationItem
width: parent.width
implicitHeight: Math.max(appIconItem.visible || imageItem.visible ? units.iconSizes.large : 0, mainLayout.height)
// We need to clip here because we support displaying images through <img/>
// and if we don't clip, they will be painted over the borders of the dialog/item
clip: true
signal close
signal configure
signal action(string actionId)
property alias textItem: textItemLoader.sourceComponent
property bool compact: false
property alias icon: appIconItem.source
property alias image: imageItem.image
property alias summary: summaryLabel.text
property alias configurable: settingsButton.visible
property var created
property ListModel actions: ListModel { }
function updateTimeLabel() {
if (!created || created.getTime() <= 0) {
timeLabel.text = ""
return
}
var currentTime = new Date().getTime()
var createdTime = created.getTime()
var d = (currentTime - createdTime) / 1000
if (d < 10) {
timeLabel.text = i18nc("notification was just added, keep short", "Just now")
} else if (d < 20) {
timeLabel.text = i18nc("10 seconds ago, keep short", "10 s ago");
} else if (d < 40) {
timeLabel.text = i18nc("30 seconds ago, keep short", "30 s ago");
} else if (d < 60 * 60) {
timeLabel.text = i18ncp("minutes ago, keep short", "%1 min ago", "%1 min ago", Math.round(d / 60))
} else if (d <= 60 * 60 * 23) {
timeLabel.text = Qt.formatTime(created, Qt.locale().timeFormat(Locale.ShortFormat).replace(/.ss?/i, ""))
} else {
var yesterday = new Date()
yesterday.setDate(yesterday.getDate() - 1) // this will wrap
yesterday.setHours(0)
yesterday.setMinutes(0)
yesterday.setSeconds(0)
if (createdTime > yesterday.getTime()) {
timeLabel.text = i18nc("notification was added yesterday, keep short", "Yesterday");
} else {
timeLabel.text = i18ncp("notification was added n days ago, keep short",
"%1 day ago", "%1 days ago",
Math.round((currentTime - yesterday.getTime()) / 1000 / 3600 / 24));
}
}
}
Timer {
interval: 15000
running: plasmoid.expanded
repeat: true
triggeredOnStart: true
onTriggered: updateTimeLabel()
}
PlasmaCore.IconItem {
id: appIconItem
width: units.iconSizes.large
height: units.iconSizes.large
anchors {
top: parent.top
left: parent.left
}
visible: !imageItem.visible && valid
}
QImageItem {
id: imageItem
anchors.fill: appIconItem
smooth: true
visible: nativeWidth > 0
}
ColumnLayout {
id: mainLayout
anchors {
top: parent.top
left: appIconItem.visible || imageItem.visible ? appIconItem.right : parent.left
right: parent.right
leftMargin: units.smallSpacing * 2
}
spacing: units.smallSpacing
RowLayout {
id: titleBar
spacing: units.smallSpacing
height: units.iconSizes.smallMedium
PlasmaExtras.Heading {
id: summaryLabel
Layout.fillWidth: true
Layout.fillHeight: true
verticalAlignment: Text.AlignVCenter
level: 4
elide: Text.ElideRight
wrapMode: Text.NoWrap
}
PlasmaExtras.Heading {
id: timeLabel
Layout.fillHeight: true
level: 5
visible: text !== ""
verticalAlignment: Text.AlignVCenter
PlasmaCore.ToolTipArea {
anchors.fill: parent
subText: Qt.formatDateTime(created, Qt.DefaultLocaleLongDate)
}
}
PlasmaComponents.ToolButton {
id: settingsButton
width: units.iconSizes.smallMedium
height: width
visible: false
iconSource: "configure"
onClicked: configure()
}
PlasmaComponents.ToolButton {
id: closeButton
width: units.iconSizes.smallMedium
height: width
flat: compact
iconSource: "window-close"
onClicked: close()
}
}
RowLayout {
id: bottomPart
Layout.alignment: Qt.AlignTop
// Force the whole thing to collapse if the children are invisible
// If there is a big notification followed by a small one, the height
// of the popup does not always shrink back, so this forces it to
// height=0 when those are invisible. -1 means "default to implicitHeight"
Layout.maximumHeight: textItemLoader.visible || actionsColumn.visible ? -1 : 0
Loader {
id: textItemLoader
Layout.fillWidth: true
Layout.fillHeight: true
visible: textItemLoader.item && textItemLoader.item.text !== ""
anchors {
leftMargin: units.smallSpacing * 2
rightMargin: units.smallSpacing * 2
}
}
ColumnLayout {
id: actionsColumn
Layout.alignment: Qt.AlignTop
Layout.maximumWidth: theme.mSize(theme.defaultFont).width * (compact ? 8 : 12)
spacing: units.smallSpacing
visible: notificationItem.actions && notificationItem.actions.count > 0
Repeater {
id: actionRepeater
model: notificationItem.actions
PlasmaComponents.Button {
Layout.maximumWidth: actionsColumn.Layout.maximumWidth
text: model.text
onClicked: notificationItem.action(model.id)
}
}
}
}
}
}
|
|