blob: 5bfdc0b60cc0c22cf73e3a9afd4e9b6cc740e272 (
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
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
|
// Copyright (C) 2026 Danilo M. <danix@danix.xyz>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// 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.
import QtQuick
import "../.."
Column {
id: page
required property var bt
signal back
spacing: 14
// --- Adapter ---
Item {
width: page.width
implicitHeight: Math.max(btLabel.implicitHeight, powerSwitch.implicitHeight)
Text {
id: btLabel
anchors.verticalCenter: parent.verticalCenter
text: "Bluetooth"
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 1; bold: true }
color: Theme.text
}
Switch {
id: powerSwitch
anchors { right: parent.right; verticalCenter: parent.verticalCenter }
enabled: page.bt.adapter !== null
checked: page.bt.adapter ? page.bt.adapter.enabled : false
onToggled: if (page.bt.adapter) page.bt.adapter.enabled = checked
}
}
Text {
width: page.width
visible: !(page.bt.adapter && page.bt.adapter.enabled)
text: "Bluetooth off"
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2 }
color: Theme.subtext
}
Item {
width: page.width
visible: page.bt.adapter && page.bt.adapter.enabled
implicitHeight: Math.max(visLabel.implicitHeight, visSwitch.implicitHeight)
Text {
id: visLabel
anchors.verticalCenter: parent.verticalCenter
text: "Visible"
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2 }
color: Theme.text
}
Switch {
id: visSwitch
anchors { right: parent.right; verticalCenter: parent.verticalCenter }
enabled: page.bt.adapter !== null
checked: page.bt.adapter ? page.bt.adapter.discoverable : false
onToggled: if (page.bt.adapter) page.bt.adapter.discoverable = checked
}
}
Row {
width: page.width
visible: page.bt.adapter && page.bt.adapter.enabled
spacing: 8
Button {
text: page.bt.adapter && page.bt.adapter.discovering ? "Stop scan" : "Scan"
onClicked: if (page.bt.adapter) page.bt.adapter.discovering = !page.bt.adapter.discovering
}
// BlueZ discovery runs until stopped, and closing the drawer does not
// stop it, so a forgotten scan keeps the radio busy for the session.
// Bound to the property rather than started by the button: a manual
// stop cancels the clock, and reopening the page re-arms a fresh 60s
// on a scan still running from before.
Timer {
interval: 60000
running: page.bt.adapter ? page.bt.adapter.discovering : false
onTriggered: if (page.bt.adapter) page.bt.adapter.discovering = false
}
}
// --- Connected ---
Text {
width: page.width
visible: page.bt.connectedDevices.length > 0
text: "Connected"
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2; bold: true }
color: Theme.subtext
}
Repeater {
model: page.bt.connectedDevices
BluetoothRow {
required property var modelData
bt: page.bt
device: modelData
width: page.width
}
}
// --- Paired ---
Text {
width: page.width
visible: page.bt.pairedDevices.length > 0
text: "Paired"
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2; bold: true }
color: Theme.subtext
}
Repeater {
model: page.bt.pairedDevices
BluetoothRow {
required property var modelData
bt: page.bt
device: modelData
width: page.width
}
}
// --- Available (found while scanning, not yet paired) ---
Text {
width: page.width
visible: page.bt.availableDevices.length > 0
text: "Available"
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2; bold: true }
color: Theme.subtext
}
Repeater {
model: page.bt.availableDevices
Rectangle {
required property var modelData
width: page.width
implicitHeight: availText.implicitHeight + 16
radius: 8
color: Qt.alpha(Theme.surface, 0.35)
Text {
id: availText
anchors { left: parent.left; leftMargin: 10; verticalCenter: parent.verticalCenter }
width: parent.width - pairBtn.width - 28
elide: Text.ElideRight
text: page.bt.pairing.busy && page.bt.pairing.address === modelData.address
? "Pairing…"
: (modelData.name || modelData.deviceName || modelData.address)
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2 }
color: Theme.text
}
Button {
id: pairBtn
anchors { right: parent.right; rightMargin: 8; verticalCenter: parent.verticalCenter }
text: "Pair"
enabled: !page.bt.pairing.busy
onClicked: page.bt.pairing.pair(modelData.address)
}
}
}
Text {
width: page.width
visible: page.bt.pairing.error !== ""
wrapMode: Text.Wrap
text: page.bt.pairing.error
font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 3 }
color: Theme.red
}
}
|