plasma-framework/declarativeimports/test/gallery/Gallery.qml

143 lines
3.5 KiB
QML
Raw Normal View History

/*
* Copyright (C) 2011 by Daker Fernandes Pinheiro <dakerfp@gmail.com>
*
* 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 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.
*/
2012-02-05 02:02:55 +01:00
import QtQuick 1.1
2011-11-09 21:32:45 +01:00
import org.kde.plasma.components 0.1
Rectangle {
width: 1000
height: 800
color: "lightgrey"
2011-11-09 21:32:45 +01:00
ToolBar {
2011-10-12 00:04:37 +02:00
id: toolBar
z: 10
anchors {
top: parent.top
left: parent.left
right: parent.right
}
}
2011-11-09 21:32:45 +01:00
2012-02-05 02:02:55 +01:00
2011-11-09 21:32:45 +01:00
ListView {
id: pageSelector
width: 200
anchors {
top: toolBar.bottom
bottom: parent.bottom
2011-10-12 00:04:37 +02:00
}
2011-11-09 21:32:45 +01:00
model: ListModel {
id: pagesModel
ListElement {
page: "Buttons.qml"
title: "Buttons"
}
ListElement {
page: "CheckableButtons.qml"
title: "Checkable buttons"
}
ListElement {
page: "Busy.qml"
title: "Busy indicators"
}
ListElement {
page: "Sliders.qml"
title: "Sliders"
}
ListElement {
page: "Scrollers.qml"
title: "Scrollers"
}
ListElement {
page: "Texts.qml"
title: "Text elements"
}
ListElement {
page: "TextEditing.qml"
title: "Text Editing"
}
2011-11-09 21:32:45 +01:00
ListElement {
page: "Misc.qml"
title: "Misc stuff"
}
2011-10-12 00:04:37 +02:00
}
2011-11-09 21:32:45 +01:00
delegate: ListItem {
enabled: true
Column {
Label {
text: title
}
}
onClicked: pageStack.replace(Qt.createComponent(page))
2011-10-12 00:04:37 +02:00
}
}
2011-11-09 21:32:45 +01:00
Flickable {
id: page
2011-10-12 00:04:37 +02:00
anchors {
top: toolBar.bottom
2011-11-09 21:32:45 +01:00
left: pageSelector.right
2011-10-12 00:04:37 +02:00
right: parent.right
bottom: parent.bottom
}
2011-11-09 21:32:45 +01:00
contentWidth: pageStack.currentPage.implicitWidth
contentHeight: pageStack.currentPage.implicitHeight
PageStack {
id: pageStack
toolBar: toolBar
width: page.width
height: currentPage.implicitHeight
initialPage: Qt.createComponent("TextEditing.qml")
}
2011-11-09 21:32:45 +01:00
}
2011-11-09 21:32:45 +01:00
ScrollBar {
id: horizontalScrollBar
stepSize: 30
flickableItem: page
2011-11-08 14:18:12 +01:00
orientation: Qt.Horizontal
anchors {
left: parent.left
right: verticalScrollBar.left
bottom: parent.bottom
}
}
2011-11-09 21:32:45 +01:00
ScrollBar {
id: verticalScrollBar
stepSize: 30
orientation: Qt.Vertical
flickableItem: page
anchors {
2011-10-12 00:04:37 +02:00
top: toolBar.bottom
right: parent.right
bottom: horizontalScrollBar.top
}
}
}