Warning, /plasma/libplasma/examples/applets/widgetgallery/contents/ui/standalonemain.qml is written in an unsupported language. File is not indexed.
0001 /* 0002 SPDX-FileCopyrightText: 2011 Daker Fernandes Pinheiro <dakerfp@gmail.com> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 import QtQuick 0008 import QtQuick.Layouts 0009 import org.kde.plasma.core 0010 import org.kde.plasma.components 0011 0012 FrameSvgItem { 0013 width: 300 0014 height: 400 0015 imagePath: "widgets/background" 0016 0017 0018 ToolBar { 0019 id: toolBar 0020 z: 10 0021 0022 anchors { 0023 top: parent.top 0024 left: parent.left 0025 right: parent.right 0026 margins: 10 0027 } 0028 } 0029 0030 PageStack { 0031 id: pageStack 0032 toolBar: toolBar 0033 clip: true 0034 anchors { 0035 top: toolBar.bottom 0036 left: parent.left 0037 right: parent.right 0038 bottom: parent.bottom 0039 margins: 10 0040 } 0041 initialPage: Qt.createComponent("Menu.qml") 0042 } 0043 }