Kstars

TutorialStep3.qml
1// SPDX-FileCopyrightText: 2016 Artem Fedoskin <afedoskin3@gmail.com>
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4import QtQuick 2.7
5
6import QtQuick.Controls 2.0
7import QtQuick.Controls.Material 2.0
8import QtQuick.Controls.Universal 2.0
9
10import QtQuick.Window 2.2 as Window
11import QtQuick.Layouts 1.1
12
13ColumnLayout {
14 visible: step3
15 anchors {
16 left: parent.left
17 right: parent.right
18 }
19
20 Image {
21 rotation: 180
22 source: "../../images/tutorial-arrow-vertical.png"
23 anchors.horizontalCenter: parent.horizontalCenter
24 }
25
26 TutorialPane {
27 anchors.horizontalCenter: parent.horizontalCenter
28
29 contentWidth: parent.width * 0.75
30 title: xi18n("Top Menu")
31 description: xi18n("By tapping on this arrow you can access top menu from which you can control visibility of different sky objects")
32
33 onNextClicked: {
34 step3 = false
35 step4 = true
36 }
37 }
38}
QString xi18n(const char *text, const TYPE &arg...)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:03 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.