summaryrefslogtreecommitdiffstats
path: root/framework/qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-05-10 16:26:46 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-05-11 10:32:38 +0200
commit03fd92efdb0407b34beee13a0d2f4888b4397916 (patch)
treed24f57edc3489b531984c8f07e8ba2f4680a5e67 /framework/qml
parent24cd706a39ac50c77dd9b88f50b8197bb2013173 (diff)
downloadkube-03fd92efdb0407b34beee13a0d2f4888b4397916.tar.gz
kube-03fd92efdb0407b34beee13a0d2f4888b4397916.zip
A new composer based on Kube.View
Kube.View is a sort of split-view that always only shows a fixed number of splits (and doesn't support manual resizing).
Diffstat (limited to 'framework/qml')
-rw-r--r--framework/qml/Icons.qml2
-rw-r--r--framework/qml/Messages.qml2
-rw-r--r--framework/qml/View.qml83
3 files changed, 87 insertions, 0 deletions
diff --git a/framework/qml/Icons.qml b/framework/qml/Icons.qml
index add51534..05cde6c9 100644
--- a/framework/qml/Icons.qml
+++ b/framework/qml/Icons.qml
@@ -38,6 +38,7 @@ Item {
38 property string undo: "edit-undo-inverted" 38 property string undo: "edit-undo-inverted"
39 property string moveToTrash: "kubetrash" 39 property string moveToTrash: "kubetrash"
40 property string edit: "document-edit" 40 property string edit: "document-edit"
41 property string edit_inverted: "document-edit-inverted"
41 property string replyToSender: "mail-reply-sender" 42 property string replyToSender: "mail-reply-sender"
42 property string outbox: "mail-folder-outbox" 43 property string outbox: "mail-folder-outbox"
43 property string outbox_inverted: "mail-folder-outbox-inverted" 44 property string outbox_inverted: "mail-folder-outbox-inverted"
@@ -47,6 +48,7 @@ Item {
47 property string search_inverted: "edit-find-inverted" 48 property string search_inverted: "edit-find-inverted"
48 property string mail_inverted: "mail-message-inverted" 49 property string mail_inverted: "mail-message-inverted"
49 property string goBack: "go-previous" 50 property string goBack: "go-previous"
51 property string goBack_inverted: "go-previous-inverted"
50 property string goDown: "go-down" 52 property string goDown: "go-down"
51 property string goUp: "go-down" 53 property string goUp: "go-down"
52 54
diff --git a/framework/qml/Messages.qml b/framework/qml/Messages.qml
index 19d0c402..aa43de76 100644
--- a/framework/qml/Messages.qml
+++ b/framework/qml/Messages.qml
@@ -41,5 +41,7 @@ Item {
41 property string reply: "reply" 41 property string reply: "reply"
42 property string edit: "edit" 42 property string edit: "edit"
43 property string compose: "compose" 43 property string compose: "compose"
44
45 property string componentDone: "done"
44} 46}
45 47
diff --git a/framework/qml/View.qml b/framework/qml/View.qml
new file mode 100644
index 00000000..6a0b51b4
--- /dev/null
+++ b/framework/qml/View.qml
@@ -0,0 +1,83 @@
1/*
2 * Copyright (C) 2017 Michael Bohlender, <michael.bohlender@kdemail.net>
3 * Copyright (C) 2017 Christian Mollekopf, <mollekopf@kolabsys.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 */
19
20
21import QtQuick 2.7
22import QtQuick.Controls 1.3
23import QtQuick.Controls 2.0 as Controls2
24import QtQuick.Layouts 1.1
25import org.kube.framework 1.0 as Kube
26
27Item {
28 id: container
29
30 property int visibleViews: 2
31 property int currentIndex: 0
32 property int count: contentItems.length
33 default property alias contentItems: content.data
34
35 onCurrentIndexChanged: showRelevantSplits()
36 Component.onCompleted: showRelevantSplits()
37
38 function incrementCurrentIndex() {
39 if (currentIndex < count) {
40 currentIndex = currentIndex + 1
41 }
42 }
43
44 function decrementCurrentIndex() {
45 if (currentIndex > 0) {
46 currentIndex = currentIndex - 1
47 }
48 }
49
50 function showRelevantSplits() {
51 var i;
52 for (i = 0; i < count; i++) {
53 if (i < currentIndex) {
54 contentItems[i].visible = false;
55 } else if (i > (currentIndex + visibleViews - 1)) {
56 contentItems[i].visible = false;
57 } else {
58 contentItems[i].visible = true;
59 }
60 }
61
62 }
63
64 Kube.IconButton {
65 anchors {
66 top: container.top
67 left: container.left
68 }
69 z: 1
70 background: Rectangle {
71 anchors.fill: parent
72 color: Kube.Colors.textColor
73 }
74 iconName: Kube.Icons.goBack_inverted
75 visible: currentIndex > 0
76 onClicked: decrementCurrentIndex()
77 }
78
79 RowLayout {
80 id: content
81 anchors.fill: parent
82 }
83}