Warning, /education/kstars/kstars/kstarslite/qml/modules/tutorial/TutorialStep3.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 ColumnLayout { 0014 visible: step3 0015 anchors { 0016 left: parent.left 0017 right: parent.right 0018 } 0019 0020 Image { 0021 rotation: 180 0022 source: "../../images/tutorial-arrow-vertical.png" 0023 anchors.horizontalCenter: parent.horizontalCenter 0024 } 0025 0026 TutorialPane { 0027 anchors.horizontalCenter: parent.horizontalCenter 0028 0029 contentWidth: parent.width * 0.75 0030 title: xi18n("Top Menu") 0031 description: xi18n("By tapping on this arrow you can access top menu from which you can control visibility of different sky objects") 0032 0033 onNextClicked: { 0034 step3 = false 0035 step4 = true 0036 } 0037 } 0038 }