summaryrefslogtreecommitdiffstats
path: root/applications
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2015-12-16 15:26:31 +0100
committerMichael Bohlender <michael.bohlender@kdemail.net>2015-12-16 15:26:31 +0100
commit5ac5f26a109cbf985b35d11fe6392d5fcb3a5050 (patch)
tree7ace6538efe136480ab1001909175ffe670ba0ae /applications
parentaff0fc08492d473f1759b2239376fd2bc0f23a5a (diff)
downloadkube-5ac5f26a109cbf985b35d11fe6392d5fcb3a5050.tar.gz
kube-5ac5f26a109cbf985b35d11fe6392d5fcb3a5050.zip
delete, important, unread actions for maillist controller and action buttons in toolbar
Diffstat (limited to 'applications')
-rw-r--r--applications/kmail-quick/package/contents/ui/main.qml39
1 files changed, 33 insertions, 6 deletions
diff --git a/applications/kmail-quick/package/contents/ui/main.qml b/applications/kmail-quick/package/contents/ui/main.qml
index 63b66c6d..88d2edde 100644
--- a/applications/kmail-quick/package/contents/ui/main.qml
+++ b/applications/kmail-quick/package/contents/ui/main.qml
@@ -51,7 +51,6 @@ ApplicationWindow {
51 Row { 51 Row {
52 anchors.fill: parent 52 anchors.fill: parent
53 53
54
55 PlasmaComponents.ToolButton { 54 PlasmaComponents.ToolButton {
56 55
57 height: parent.height 56 height: parent.height
@@ -60,14 +59,42 @@ ApplicationWindow {
60 59
61 text: "Compose" 60 text: "Compose"
62 } 61 }
63 }
64 62
65 PlasmaComponents.ToolButton { 63 PlasmaComponents.ToolButton {
64
65 height: parent.height
66
67 iconName: "mail-mark-unread"
68 text: "Mark Unread"
69
70 onClicked: {
71 mailList.markMailUnread(true)
72 }
73 }
74
75 PlasmaComponents.ToolButton {
76
77 height: parent.height
78
79 iconName: "mail-mark-important"
80 text: "Mark Important"
81
82 onClicked: {
83 mailList.markMailImportant(true)
84 }
85 }
86
87 PlasmaComponents.ToolButton {
66 88
67 anchors.right: parent.right 89 height: parent.height
68 90
69 //FIXME: proper item name 91 iconName: "edit-delete"
70 iconName: "applications-system" 92 text: "Delete Mail"
93
94 onClicked: {
95 mailList.deleteMail()
96 }
97 }
71 } 98 }
72 } 99 }
73 100