plasma-framework/examples/applets/widgetgallery/contents/ui/main.qml

45 lines
1.0 KiB
QML
Raw Normal View History

/*
SPDX-FileCopyrightText: 2011 Daker Fernandes Pinheiro <dakerfp@gmail.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.0
2014-02-04 17:29:28 +01:00
import org.kde.plasma.plasmoid 2.0
import QtQuick.Layouts 1.1
import org.kde.plasma.components 2.0
Item {
Plasmoid.switchWidth: 300
Plasmoid.switchHeight: 400
2014-02-04 17:29:28 +01:00
Plasmoid.fullRepresentation: Item {
Layout.minimumWidth: 300
Layout.minimumHeight: 400
2014-02-04 17:29:28 +01:00
ToolBar {
id: toolBar
z: 10
//AppletInterface.title: "bah"
anchors {
top: parent.top
left: parent.left
right: parent.right
}
}
2014-02-04 17:29:28 +01:00
PageStack {
id: pageStack
toolBar: toolBar
clip: true
anchors {
top: toolBar.bottom
left: parent.left
right: parent.right
bottom: parent.bottom
}
initialPage: Qt.createComponent("Menu.qml")
}
}
}