forked from librepods-org/librepods
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.qml
More file actions
329 lines (282 loc) · 11.7 KB
/
Copy pathMain.qml
File metadata and controls
329 lines (282 loc) · 11.7 KB
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
pragma ComponentBehavior: Bound
import QtQuick 2.15
import QtQuick.Controls 2.15
ApplicationWindow {
id: mainWindow
visible: !airPodsTrayApp.hideOnStart
width: 400
height: 300
title: "LibrePods"
objectName: "mainWindowObject"
onClosing: mainWindow.visible = false
function reopen(pageToLoad) {
if (pageToLoad == "settings")
{
if (stackView.depth == 1)
{
stackView.push(settingsPage)
}
}
else
{
if (stackView.depth > 1)
{
stackView.pop()
}
}
if (!mainWindow.visible) {
mainWindow.visible = true
}
raise()
requestActivate()
}
// Mouse area for handling back/forward navigation
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.BackButton | Qt.ForwardButton
onClicked: (mouse) => {
if (mouse.button === Qt.BackButton && stackView.depth > 1) {
stackView.pop()
} else if (mouse.button === Qt.ForwardButton) {
console.log("Forward button pressed")
}
}
}
StackView {
id: stackView
anchors.fill: parent
initialItem: mainPage
}
FontLoader {
id: iconFont
source: "qrc:/icons/assets/fonts/SF-Symbols-6.ttf"
}
Component {
id: mainPage
Item {
Column {
anchors.fill: parent
spacing: 20
padding: 20
// Connection status indicator (Apple-like pill shape)
Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: 10
width: 120
height: 24
radius: 12
color: airPodsTrayApp.airpodsConnected ? "#30D158" : "#FF453A"
opacity: 0.8
visible: !airPodsTrayApp.airpodsConnected
Label {
anchors.centerIn: parent
text: airPodsTrayApp.airpodsConnected ? "Connected" : "Disconnected"
color: "white"
font.pixelSize: 12
font.weight: Font.Medium
}
}
// Battery Indicator Row
Row {
anchors.horizontalCenter: parent.horizontalCenter
spacing: 8
PodColumn {
visible: airPodsTrayApp.deviceInfo.battery.leftPodAvailable
inEar: airPodsTrayApp.deviceInfo.leftPodInEar
iconSource: "qrc:/icons/assets/" + airPodsTrayApp.deviceInfo.podIcon
batteryLevel: airPodsTrayApp.deviceInfo.battery.leftPodLevel
isCharging: airPodsTrayApp.deviceInfo.battery.leftPodCharging
indicator: "L"
}
PodColumn {
visible: airPodsTrayApp.deviceInfo.battery.rightPodAvailable
inEar: airPodsTrayApp.deviceInfo.rightPodInEar
iconSource: "qrc:/icons/assets/" + airPodsTrayApp.deviceInfo.podIcon
batteryLevel: airPodsTrayApp.deviceInfo.battery.rightPodLevel
isCharging: airPodsTrayApp.deviceInfo.battery.rightPodCharging
indicator: "R"
}
PodColumn {
visible: airPodsTrayApp.deviceInfo.battery.caseAvailable
inEar: true
iconSource: "qrc:/icons/assets/" + airPodsTrayApp.deviceInfo.caseIcon
batteryLevel: airPodsTrayApp.deviceInfo.battery.caseLevel
isCharging: airPodsTrayApp.deviceInfo.battery.caseCharging
}
PodColumn {
visible: airPodsTrayApp.deviceInfo.battery.headsetAvailable
inEar: true
iconSource: "qrc:/icons/assets/" + airPodsTrayApp.deviceInfo.podIcon
batteryLevel: airPodsTrayApp.deviceInfo.battery.headsetLevel
isCharging: airPodsTrayApp.deviceInfo.battery.headsetCharging
}
}
SegmentedControl {
anchors.horizontalCenter: parent.horizontalCenter
model: ["Off", "Noise Cancellation", "Transparency", "Adaptive"]
currentIndex: airPodsTrayApp.deviceInfo.noiseControlMode
onCurrentIndexChanged: airPodsTrayApp.setNoiseControlModeInt(currentIndex)
visible: airPodsTrayApp.airpodsConnected
}
Slider {
visible: airPodsTrayApp.deviceInfo.adaptiveModeActive
from: 0
to: 100
stepSize: 1
value: airPodsTrayApp.deviceInfo.adaptiveNoiseLevel
Timer {
id: debounceTimer
interval: 500
onTriggered: if (!parent.pressed) airPodsTrayApp.setAdaptiveNoiseLevel(parent.value)
}
onPressedChanged: if (!pressed) airPodsTrayApp.setAdaptiveNoiseLevel(value)
onValueChanged: if (pressed) debounceTimer.restart()
Label {
text: "Adaptive Noise Level: " + parent.value
anchors.top: parent.bottom
}
}
Switch {
visible: airPodsTrayApp.airpodsConnected
text: "Conversational Awareness"
checked: airPodsTrayApp.deviceInfo.conversationalAwareness
onCheckedChanged: airPodsTrayApp.setConversationalAwareness(checked)
}
Switch {
visible: airPodsTrayApp.airpodsConnected
text: "Hearing Aid"
checked: airPodsTrayApp.deviceInfo.hearingAidEnabled
onCheckedChanged: airPodsTrayApp.setHearingAidEnabled(checked)
}
}
RoundButton {
anchors.top: parent.top
anchors.right: parent.right
anchors.margins: 10
font.family: iconFont.name
font.pixelSize: 18
text: "\uf958"
onClicked: stackView.push(settingsPage)
}
}
}
Component {
id: settingsPage
Page {
id: settingsPageItem
title: "Settings"
ScrollView {
anchors.fill: parent
Column {
width: parent.width
spacing: 20
padding: 20
Label {
text: "Settings"
font.pixelSize: 24
// center the label
anchors.horizontalCenter: parent.horizontalCenter
}
Column {
spacing: 5 // Small gap between label and ComboBox
Label {
text: "Pause Behavior When Removing AirPods:"
}
ComboBox {
width: parent.width // Ensures full width
model: ["One Removed", "Both Removed", "Never"]
currentIndex: airPodsTrayApp.earDetectionBehavior
onActivated: airPodsTrayApp.earDetectionBehavior = currentIndex
}
}
Switch {
text: "Cross-Device Connectivity with Android"
checked: airPodsTrayApp.crossDeviceEnabled
onCheckedChanged: {
airPodsTrayApp.setCrossDeviceEnabled(checked)
}
}
Switch {
text: "Auto-Start on Login"
checked: airPodsTrayApp.autoStartManager.autoStartEnabled
onCheckedChanged: airPodsTrayApp.autoStartManager.autoStartEnabled = checked
}
Switch {
text: "Enable System Notifications"
checked: airPodsTrayApp.notificationsEnabled
onCheckedChanged: airPodsTrayApp.notificationsEnabled = checked
}
Switch {
visible: airPodsTrayApp.airpodsConnected
text: "One Bud ANC Mode"
checked: airPodsTrayApp.deviceInfo.oneBudANCMode
onCheckedChanged: airPodsTrayApp.deviceInfo.oneBudANCMode = checked
ToolTip {
visible: parent.hovered
text: "Enable ANC when using one AirPod\n(More noise reduction, but uses more battery)"
delay: 500
}
}
Row {
spacing: 5
Label {
text: "Bluetooth Retry Attempts:"
anchors.verticalCenter: parent.verticalCenter
}
SpinBox {
from: 1
to: 10
value: airPodsTrayApp.retryAttempts
onValueChanged: airPodsTrayApp.retryAttempts = value
}
}
Row {
spacing: 10
visible: airPodsTrayApp.airpodsConnected
TextField {
id: newNameField
placeholderText: airPodsTrayApp.deviceInfo.deviceName
maximumLength: 32
}
Button {
text: "Rename"
onClicked: airPodsTrayApp.renameAirPods(newNameField.text)
}
}
Row {
spacing: 10
visible: airPodsTrayApp.airpodsConnected
TextField {
id: newPhoneMacField
placeholderText: (PHONE_MAC_ADDRESS !== "" ? PHONE_MAC_ADDRESS : "00:00:00:00:00:00")
maximumLength: 32
}
Button {
text: "Change Phone MAC"
onClicked: airPodsTrayApp.setPhoneMac(newPhoneMacField.text)
}
}
Button {
text: "Show Magic Cloud Keys QR"
onClicked: keysQrDialog.show()
}
KeysQRDialog {
id: keysQrDialog
encKey: airPodsTrayApp.deviceInfo.magicAccEncKey
irk: airPodsTrayApp.deviceInfo.magicAccIRK
}
}
}
// Floating back button
RoundButton {
anchors.top: parent.top
anchors.left: parent.left
anchors.margins: 10
font.family: iconFont.name
font.pixelSize: 18
text: "\uecb1" // U+ECB1
onClicked: stackView.pop()
}
}
}
}