diff --git a/src/data/contents/ui/MainPage.qml b/src/data/contents/ui/MainPage.qml index 29d16f9..353fee8 100644 --- a/src/data/contents/ui/MainPage.qml +++ b/src/data/contents/ui/MainPage.qml @@ -1,171 +1,167 @@ /* * Copyright 2015 Marco Martin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 or * (at your option) any later version. * * 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 Library General Public License for more details * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import QtQuick 2.1 import QtQuick.Controls 2.0 as QQC2 import QtQuick.Layouts 1.2 import org.kde.kirigami 2.4 as Kirigami Kirigami.ScrollablePage { id: pageRoot implicitWidth: Kirigami.Units.gridUnit * 20 background: Rectangle { color: Kirigami.Theme.backgroundColor } title: qsTr("Kirigami Gallery") //flickable: mainListView actions { contextualActions: [ Kirigami.Action { text:"Action 1" iconName: "document-decrypt" onTriggered: showPassiveNotification("Action 1 clicked") }, Kirigami.Action { id: shareAction visible: checkableAction.checked text:"Action 2" iconName: "document-share" onTriggered: showPassiveNotification("Action 2 clicked") }, Kirigami.Action { id: checkableAction text:"Checkable" checkable: true iconName: "dashboard-show" onCheckedChanged: showPassiveNotification("Checked: " + checked) } ] } ListView { id: mainListView currentIndex: -1 //currentIndex has focus, openPageIndex is the one actually open now property int openPageIndex: -1 activeFocusOnTab: true focus: true model: ListModel { ListElement { text: qsTr("Buttons") component: "Button" } ListElement { text: qsTr("Selection Controls") component: "SelectionControls" } - ListElement { - text: "Radio Button" - component: "RadioButton" - } ListElement { text: "Progress Bar" component: "ProgressBar" } ListElement { text: "Slider" component: "Slider" } ListElement { text: "Tab Bar" component: "TabBar" } ListElement { text: "Text Field" component: "TextField" } ListElement { text: "Form Layout" component: "FormLayout" } ListElement { text: "Cards Layout" component: "CardsLayout" } ListElement { text: "List view of cards" component: "CardsListView" } ListElement { text: "Grid view of cards" component: "CardsGridView" } ListElement { text: "Inline Messages" component: "InlineMessages" } ListElement { text: "Multiple Columns" component: "MultipleColumns" } ListElement { text: "Misc widgets" component: "Misc" } ListElement { text: "List View" component: "ListView" } ListElement { text: "List Headers" component: "ListViewHeaderItems" } ListElement { text: "Non Scrollable Page" component: "NonScrollable" } ListElement { text: "Colors" component: "Colors" } ListElement { text: "Color Sets" component: "ColorSet" } ListElement { text: "Metrics" component: "Metrics" } } delegate: Kirigami.BasicListItem { id: listItem reserveSpaceForIcon: false label: model.text Accessible.role: Accessible.MenuItem property Item ownPage onClicked: { if (!model.component) { return; } root.pageStack.pop(pageRoot); root.pageStack.push(Qt.resolvedUrl("gallery/" + model.component + "Gallery.qml")); mainListView.openPageIndex = index; } checked: mainListView.openPageIndex == index highlighted: focus && ListView.isCurrentItem } } }