From c9ccf868f5d533a07811b949577f772f618d2de3 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 9 Mar 2016 15:17:29 +0100 Subject: Removed kube-accounts --- applications/kube-accounts/Maildir.qml | 100 --------------------------------- 1 file changed, 100 deletions(-) delete mode 100644 applications/kube-accounts/Maildir.qml (limited to 'applications/kube-accounts/Maildir.qml') diff --git a/applications/kube-accounts/Maildir.qml b/applications/kube-accounts/Maildir.qml deleted file mode 100644 index ed2decc4..00000000 --- a/applications/kube-accounts/Maildir.qml +++ /dev/null @@ -1,100 +0,0 @@ -import QtQuick 2.4 -import QtQuick.Controls 1.3 -import QtQuick.Layouts 1.1 -import QtQuick.Dialogs 1.0 - -import org.kde.sink.settings 1.0 as Settings - -Item { - id: root - - height: 150 - width: 600 - - Settings.Maildir { - id: maildir - } - - ColumnLayout { - anchors { - fill: parent - margins: 10 - } - - GridLayout { - id: mainContent - - Layout.fillWidth: true - - rows: 2 - columns: 3 - - Label { - text: "Name:" - } - - TextField { - - Layout.fillWidth: true - - placeholderText: "Enter a name to identify the resource" - text: maildir.name - } - - Label { - - } - - Label { - text: "Location:" - } - - TextField { - - Layout.fillWidth: true - - placeholderText: "Click on the folder button to enter the location" - text: maildir.folderUrl - - enabled: false - } - - Button { - iconName: "folder" - - onClicked: { - fileDialog.visible = true - } - - FileDialog { - id: fileDialog - title: "Please choose the maildir folder" - folder: shortcuts.home - - selectFolder: true - - onAccepted: { - maildir.folderUrl = fileDialog.fileUrl - visible: false - } - onRejected: { - visible: false - } - } - } - } - - RowLayout { - id: buttons - - Layout.alignment: Qt.AlignRight - - Button { - text: "Create Resource" - } - Button { - text: "Cancel" - } - } - } -} \ No newline at end of file -- cgit v1.2.3