forked from vedderb/vesc_tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfiles.qml
221 lines (184 loc) · 6.02 KB
/
Profiles.qml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
Copyright 2018 - 2019 Benjamin Vedder benjamin@vedder.se
This file is part of VESC Tool.
VESC Tool 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.
VESC Tool 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.7
import QtQuick.Controls 2.10
import QtQuick.Layouts 1.3
import Vedder.vesc.vescinterface 1.0
import Vedder.vesc.utility 1.0
Item {
id: topItem
property var dialogParent: ApplicationWindow.overlay
function updateVisibleProfiles() {
for(var i = scrollCol.children.length;i > 0;i--) {
scrollCol.children[i - 1].destroy(1) // Only works with delay on android, seems to be a bug
}
var prof = VescIf.getProfiles()
for (i = 0;i < prof.length;i++) {
var component = Qt.createComponent("ProfileDisplay.qml");
var disp = component.createObject(scrollCol, {"index": i, "dialogParent": dialogParent})
disp.setFromMcConfTemp(prof[i])
disp.editRequested.connect(handleProfileEdit)
disp.deleteRequested.connect(handleProfileDelete)
disp.checkActive()
}
Qt.createQmlObject(
'import QtQuick 2.7; import QtQuick.Layouts 1.3; Rectangle {Layout.fillHeight: true}',
scrollCol, "spacer1")
}
function handleProfileEdit(index) {
editButtonEditor.indexNow = index
editButtonEditor.updateFromMcConfTemp(VescIf.getProfile(index))
editButtonEditor.openDialog()
}
function handleProfileDelete(index) {
deleteDialog.indexNow = index
deleteDialog.open()
}
Component.onCompleted: {
updateVisibleProfiles()
}
ProfileEditor {
id: editor
dialogParent: topItem.dialogParent
onClosed: {
if (ok) {
VescIf.addProfile(getMcConfTemp())
VescIf.storeSettings()
}
}
}
ProfileEditor {
id: editButtonEditor
dialogParent: topItem.dialogParent
property int indexNow: 0
onClosed: {
if (ok) {
VescIf.updateProfile(indexNow, getMcConfTemp())
VescIf.storeSettings()
}
}
}
Dialog {
id: deleteDialog
property int indexNow: 0
standardButtons: Dialog.Ok | Dialog.Cancel
modal: true
focus: true
rightMargin: 10
leftMargin: 10
closePolicy: Popup.CloseOnEscape
title: "Remove profile"
y: 10 + parent.height / 2 - height / 2
parent: dialogParent
width: parent.width - (rightMargin + leftMargin)
Overlay.modal: Rectangle {
color: "#AA000000"
}
Text {
color:{color = Utility.getAppHexColor("lightText")}
verticalAlignment: Text.AlignVCenter
anchors.fill: parent
wrapMode: Text.WordWrap
text: "This is going to delete this profile. Are you sure?"
}
onAccepted: {
VescIf.deleteProfile(indexNow)
VescIf.storeSettings()
}
}
ColumnLayout {
id: column
anchors.fill: parent
spacing: 0
ScrollView {
id: scroll
Layout.fillWidth: true
Layout.fillHeight: true
contentWidth: column.width
clip: true
ColumnLayout {
id: scrollCol
anchors.fill: parent
anchors.topMargin: 5
}
}
RowLayout {
Layout.fillWidth: true
Button {
Layout.preferredWidth: 100
Layout.fillWidth: true
text: "Add Profile"
onClicked: {
editor.profileName = "New profile"
editor.readCurrentConfig()
editor.openDialog()
}
}
Button {
Layout.preferredWidth: 50
Layout.fillWidth: true
text: "..."
onClicked: menu.open()
Menu {
id: menu
bottomPadding: notchBot
leftPadding: notchLeft
rightPadding: notchRight
parent: topItem
y: parent.height - implicitHeight
width: parent.width
MenuItem {
text: "Remove All Profiles"
onTriggered: {
clearDialog.open()
}
}
}
}
}
}
Dialog {
id: clearDialog
standardButtons: Dialog.Ok | Dialog.Cancel
modal: true
focus: true
rightMargin: 10
leftMargin: 10
closePolicy: Popup.CloseOnEscape
title: "Remove all profiles"
Overlay.modal: Rectangle {
color: "#AA000000"
}
y: column.y + column.height / 2 - height / 2
Text {
color: {color = Utility.getAppHexColor("lightText")}
verticalAlignment: Text.AlignVCenter
anchors.fill: parent
wrapMode: Text.WordWrap
text:
"This is going to remove all your profiles. Are you sure?"
}
onAccepted: {
VescIf.clearProfiles()
VescIf.storeSettings()
}
}
Connections {
target: VescIf
function onProfilesUpdated() {
updateVisibleProfiles()
}
}
}