Warning, /graphics/krita/libs/libqml/qml/HelpPage.qml is written in an unsupported language. File is not indexed.
0001 /* This file is part of the KDE project
0002 * SPDX-FileCopyrightText: 2012 Arjen Hiemstra <ahiemstra@heimr.nl>
0003 *
0004 * SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006
0007 import QtQuick 2.3
0008 import org.krita.sketch 1.0
0009 import org.krita.sketch.components 1.0
0010
0011 Page {
0012 DropShadow {
0013 anchors {
0014 top: parent.top;
0015 left: parent.left;
0016 right: parent.right;
0017 }
0018
0019 height: Constants.GridHeight;
0020 z: 10;
0021
0022 Header {
0023 text: "Help";
0024
0025 leftArea: Button {
0026 width: Constants.GridWidth;
0027 height: Constants.GridHeight;
0028 highlightColor: Constants.Theme.HighlightColor;
0029 text: "<";
0030 onClicked: pageStack.pop();
0031 }
0032 }
0033 }
0034 }