diff options
Diffstat (limited to 'applications/kube-mail/package/contents/ui/Composer.qml')
-rw-r--r-- | applications/kube-mail/package/contents/ui/Composer.qml | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/applications/kube-mail/package/contents/ui/Composer.qml b/applications/kube-mail/package/contents/ui/Composer.qml index d32ee7c6..66305254 100644 --- a/applications/kube-mail/package/contents/ui/Composer.qml +++ b/applications/kube-mail/package/contents/ui/Composer.qml | |||
@@ -17,12 +17,24 @@ | |||
17 | */ | 17 | */ |
18 | 18 | ||
19 | import QtQuick 2.4 | 19 | import QtQuick 2.4 |
20 | import QtQuick.Controls 1.3 | 20 | import QtQuick.Controls 1.4 |
21 | import QtQuick.Layouts 1.1 | 21 | import QtQuick.Layouts 1.1 |
22 | 22 | ||
23 | Item { | 23 | Item { |
24 | id: root | 24 | id: root |
25 | 25 | ||
26 | function send() { | ||
27 | |||
28 | } | ||
29 | |||
30 | function saveAsDraft() { | ||
31 | |||
32 | } | ||
33 | |||
34 | function clear() { | ||
35 | |||
36 | } | ||
37 | |||
26 | ColumnLayout { | 38 | ColumnLayout { |
27 | 39 | ||
28 | anchors.fill: parent | 40 | anchors.fill: parent |
@@ -32,6 +44,16 @@ Item { | |||
32 | columns: 2 | 44 | columns: 2 |
33 | 45 | ||
34 | Label { | 46 | Label { |
47 | text: "From" | ||
48 | } | ||
49 | |||
50 | ComboBox { | ||
51 | model: ["Kuberich <kuberich@kolabnow.com>", "Uni <kuberich@university.edu>", "Spam <hello.spam@spam.to>"] | ||
52 | |||
53 | Layout.fillWidth: true | ||
54 | } | ||
55 | |||
56 | Label { | ||
35 | text: "To" | 57 | text: "To" |
36 | } | 58 | } |
37 | 59 | ||
@@ -77,11 +99,5 @@ Item { | |||
77 | Layout.fillHeight: true | 99 | Layout.fillHeight: true |
78 | 100 | ||
79 | } | 101 | } |
80 | |||
81 | RowLayout { | ||
82 | Button { | ||
83 | text: "Send" | ||
84 | } | ||
85 | } | ||
86 | } | 102 | } |
87 | } | 103 | } |