summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/EventView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'views/calendar/qml/EventView.qml')
-rw-r--r--views/calendar/qml/EventView.qml31
1 files changed, 22 insertions, 9 deletions
diff --git a/views/calendar/qml/EventView.qml b/views/calendar/qml/EventView.qml
index 6f34cefa..c86f0f42 100644
--- a/views/calendar/qml/EventView.qml
+++ b/views/calendar/qml/EventView.qml
@@ -26,6 +26,8 @@ import org.kube.framework 1.0 as Kube
26FocusScope { 26FocusScope {
27 id: root 27 id: root
28 28
29 property bool daylong
30
29 Rectangle { 31 Rectangle {
30 anchors { 32 anchors {
31 top: parent.top 33 top: parent.top
@@ -49,14 +51,16 @@ FocusScope {
49 51
50 Kube.TextField { 52 Kube.TextField {
51 width: parent.width 53 width: parent.width
52 placeholderText: "Titel" 54 placeholderText: "Title"
53 } 55 }
54 RowLayout { 56 RowLayout {
55 spacing: Kube.Units.smallSpacing 57 spacing: Kube.Units.smallSpacing
56 58
57 DayChooser { } 59 DayChooser { }
58 60
59 TimeChooser { } 61 TimeChooser {
62 visible: !root.daylong
63 }
60 64
61 Kube.Label { 65 Kube.Label {
62 text: " " + qsTr("till") + " " 66 text: " " + qsTr("till") + " "
@@ -64,7 +68,10 @@ FocusScope {
64 68
65 DayChooser { } 69 DayChooser { }
66 70
67 TimeChooser { } 71 TimeChooser {
72 visible: !root.daylong
73
74 }
68 } 75 }
69 76
70 RowLayout { 77 RowLayout {
@@ -72,16 +79,22 @@ FocusScope {
72 79
73 RowLayout { 80 RowLayout {
74 Layout.fillHeight: true 81 Layout.fillHeight: true
75 Kube.CheckBox { 82 Kube.CheckBox {
76 } 83 checked: root.daylong
77 84
78 Kube.Label { 85 onClicked: {
79 text: "daylong" 86 root.daylong = !root.daylong
80 } 87 }
88 }
89
90 Kube.Label {
91 text: "daylong"
92 }
81 } 93 }
82 94
83 Kube.ComboBox { 95 Kube.ComboBox {
84 model: ["once", "reoccuring"] 96 model: ["once", "dayly", "weekly"]
97
85 } 98 }
86 } 99 }
87 100