Kstars

TutorialStep4.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: step4
15 spacing: 10
16 anchors {
17 left: parent.left
18 right: parent.right
19 }
20
21 TutorialPane {
22 anchors.horizontalCenter: parent.horizontalCenter
23
24 contentWidth: parent.width * 0.75
25 title: xi18n("Bottom Menu")
26 description: xi18n("By tapping on this arrow you can access bottom menu from which you can set time and start time simulation")
27
28 onNextClicked: {
29 step4 = false
30 step5 = true
31 }
32 }
33
34 Image {
35 source: "../../images/tutorial-arrow-vertical.png"
36 anchors.horizontalCenter: parent.horizontalCenter
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.