2013-09-04 11:38:14 +02:00
|
|
|
/*
|
2020-08-13 21:08:54 +02:00
|
|
|
SPDX-FileCopyrightText: 2011 Daker Fernandes Pinheiro <dakerfp@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
2013-09-04 11:38:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.0
|
2014-02-04 17:29:28 +01:00
|
|
|
import org.kde.plasma.plasmoid 2.0
|
2014-01-28 22:55:02 +01:00
|
|
|
import QtQuick.Layouts 1.1
|
2013-09-04 11:38:14 +02:00
|
|
|
import org.kde.plasma.components 2.0
|
|
|
|
|
|
|
|
Item {
|
2014-01-28 22:55:02 +01:00
|
|
|
Plasmoid.switchWidth: 300
|
|
|
|
Plasmoid.switchHeight: 400
|
2014-01-28 18:26:46 +01:00
|
|
|
|
2014-02-04 17:29:28 +01:00
|
|
|
Plasmoid.fullRepresentation: Item {
|
|
|
|
Layout.minimumWidth: 300
|
|
|
|
Layout.minimumHeight: 400
|
2013-09-04 11:38:14 +02:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2013-09-04 11:38:14 +02:00
|
|
|
|
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")
|
2013-09-04 11:38:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|