blob: 31ce17e0d3105d491efee6aefcef60c8071fc9cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/*
* Copyright (C) 2023 Arseniy Movshev <dodoradio@outlook.com>
* 2022 - Darrel Griët <dgriet@gmail.com>
* 2017 - Florent Revest <revestflo@gmail.com>
* - Niels Tholenaar <info@123quality.nl>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.5
import org.asteroid.controls 1.0
import QtGraphicalEffects 1.15
import QtQml.Models 2.15
import Nemo.Configuration 1.0
Application {
id: app
centerColor: "#29A600"
outerColor: "#070C00"
LayerStack {
id: pageStack
firstPage: Component {
MouseArea {
id: mainPage
PathView { // modified from circularspinner in qml-asteroid
id: pv
width: parent.width
height: Dims.h(100)
preferredHighlightBegin: 0.5
preferredHighlightEnd: 0.5
highlightRangeMode: PathView.StrictlyEnforceRange
highlightMoveDuration: 0
clip: true
currentIndex: currentPaneStore.value
onCurrentIndexChanged: currentPaneStore.value = currentIndex
model: ObjectModel {
id: contentColumn
Compass {
height: pv.height
width: pv.width
property string name: qsTr("Compass")
}
Barometer {
height: pv.height
width: pv.width
property string name: qsTr("Barometer")
}
Altimeter {
height: pv.height
width: pv.width
property string name: qsTr("Altimeter")
}
}
path: Path {
startX: pv.width/2; startY: pv.height/2-pv.count*pv.height/2
PathLine { x: pv.width/2; y: pv.height/2+pv.count*pv.height/2 }
}
}
ConfigurationValue {
id: currentPaneStore
key: "/org/asteroidos/toolwatch/mainPage/currentPane"
defaultValue: true
}
PageHeader {
text: pv.currentItem.name
z: 5
}
}
}
}
Component {
id: settingsPage
SettingsPage {}
}
}
|