diff options
Diffstat (limited to 'applications/kmail-quick/package/contents/ui/main.qml')
-rw-r--r-- | applications/kmail-quick/package/contents/ui/main.qml | 39 |
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 | ||