Warning, /plasma/libplasma/examples/applets/testshaders/contents/ui/ShaderExample.qml is written in an unsupported language. File is not indexed.
0001 /* 0002 SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 import QtQuick 0008 0009 import org.kde.plasma.components as PlasmaComponents 0010 import org.kde.kirigami as Kirigami 0011 0012 // VertexPage 0013 0014 PlasmaComponents.Page { 0015 id: examplesPage 0016 0017 //property string shader 0018 property string pageName: "Shader Examples" 0019 property string pageDescription: "Shader Examples" 0020 property string icon: "weather-clear" 0021 0022 anchors { 0023 fill: parent 0024 margins: _s 0025 } 0026 0027 Kirigami.Heading { 0028 id: heading 0029 level: 1 0030 anchors { 0031 top: parent.top; 0032 left: parent.left 0033 right: parent.right 0034 } 0035 text: pageName 0036 } 0037 PlasmaComponents.Label { 0038 anchors { 0039 top: heading.bottom; 0040 left: parent.left; 0041 right: parent.right; 0042 } 0043 text: pageDescription 0044 } 0045 }