diff --git a/plasma/package/contents/ui/main.qml b/plasma/package/contents/ui/main.qml index b1f65e2..b2de5dc 100644 --- a/plasma/package/contents/ui/main.qml +++ b/plasma/package/contents/ui/main.qml @@ -1,93 +1,93 @@ /* * Copyright 2017 by Ivan Cukic * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.1 import QtQuick.Layouts 1.1 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.plasmoid 2.0 import org.kde.plasma.components 2.0 as PlasmaComponents import org.kde.plasma.extras 2.0 as PlasmaExtras Item { property var vaultsModel: plasmoid.nativeInterface.vaultsModel property var vaultsModelActions: plasmoid.nativeInterface.vaultsModel.source() Binding { target: plasmoid property: "busy" value: vaultsModelActions.isBusy } Binding { target: plasmoid property: "icon" value: { return vaultsModelActions.hasError ? "plasmavault_error" : "plasmavault"; } } Plasmoid.fullRepresentation: ColumnLayout { anchors { fill: parent } Layout.minimumWidth: 200 Layout.minimumHeight: 200 // PlasmaExtras.Heading { // text: i18nd("plasmavault-kde", "Encrypted vaults") // } ListView { model: vaultsModel currentIndex: -1 Layout.fillWidth: true Layout.fillHeight: true highlight: PlasmaComponents.Highlight { id: highlight } delegate: VaultItem { icon: model.icon name: model.name message: model.message isOpened: model.isOpened width: parent.width height: units.iconSizes.medium + 2 * units.smallSpacing } interactive: false } PlasmaComponents.Button { id: buttonCreateNewVault - text: i18nd("plasmavault-kde", "Create a new vault") + text: i18nd("plasmavault-kde", "Create a New Vault") onClicked: vaultsModelActions.requestNewVault() } } }