Warning, /education/kstars/kstars/kstarslite/qml/modules/tutorial/TutorialStep5.qml is written in an unsupported language. File is not indexed.
0001 // SPDX-FileCopyrightText: 2016 Artem Fedoskin <afedoskin3@gmail.com>
0002 // SPDX-License-Identifier: GPL-2.0-or-later
0003
0004 import QtQuick 2.7
0005
0006 import QtQuick.Controls 2.0
0007 import QtQuick.Controls.Material 2.0
0008 import QtQuick.Controls.Universal 2.0
0009
0010 import QtQuick.Window 2.2 as Window
0011 import QtQuick.Layouts 1.1
0012
0013 TutorialPane {
0014 visible: step5
0015 anchors.centerIn: parent
0016
0017 contentWidth: parent.width * 0.75
0018 title: xi18n("Set Location")
0019 description: xi18n("Congratulations with your first steps in KStars Lite. Your tutorial is almost over. The last step to do is to set your location (you can do that either manually or from GPS). Click next to proceed.")
0020
0021 onNextClicked: {
0022 step5 = false
0023 stackView.push(locationDialog)
0024 //Finish tutorial
0025 exitTutorial()
0026 }
0027 }