forked from Shinonome/dots-hyprland
91 lines
2.6 KiB
QML
91 lines
2.6 KiB
QML
import qs
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import qs.modules.common.functions
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Qt5Compat.GraphicalEffects
|
|
import Quickshell.Io
|
|
import Quickshell.Bluetooth
|
|
import Quickshell
|
|
import Quickshell.Wayland
|
|
import Quickshell.Hyprland
|
|
|
|
WindowDialog {
|
|
id: root
|
|
backgroundHeight: 600
|
|
|
|
WindowDialogTitle {
|
|
text: Translation.tr("Bluetooth devices")
|
|
}
|
|
WindowDialogSeparator {
|
|
visible: !(Bluetooth.defaultAdapter?.discovering ?? false)
|
|
}
|
|
StyledIndeterminateProgressBar {
|
|
visible: Bluetooth.defaultAdapter?.discovering ?? false
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -8
|
|
Layout.bottomMargin: -8
|
|
Layout.leftMargin: -Appearance.rounding.large
|
|
Layout.rightMargin: -Appearance.rounding.large
|
|
}
|
|
StyledListView {
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -15
|
|
Layout.bottomMargin: -16
|
|
Layout.leftMargin: -Appearance.rounding.large
|
|
Layout.rightMargin: -Appearance.rounding.large
|
|
|
|
clip: true
|
|
spacing: 0
|
|
animateAppearance: false
|
|
|
|
model: ScriptModel {
|
|
values: [...Bluetooth.devices.values].sort((a, b) => {
|
|
// Connected -> paired -> others
|
|
let conn = (b.connected - a.connected) || (b.paired - a.paired);
|
|
if (conn !== 0) return conn;
|
|
|
|
// Ones with meaningful names before MAC addresses
|
|
const macRegex = /^([0-9A-Fa-f]{2}-){5}[0-9A-Fa-f]{2}$/;
|
|
const aIsMac = macRegex.test(a.name);
|
|
const bIsMac = macRegex.test(b.name);
|
|
if (aIsMac !== bIsMac) return aIsMac ? 1 : -1;
|
|
|
|
// Alphabetical by name
|
|
return a.name.localeCompare(b.name);
|
|
})
|
|
}
|
|
delegate: BluetoothDeviceItem {
|
|
required property BluetoothDevice modelData
|
|
device: modelData
|
|
anchors {
|
|
left: parent?.left
|
|
right: parent?.right
|
|
}
|
|
}
|
|
}
|
|
WindowDialogSeparator {}
|
|
WindowDialogButtonRow {
|
|
DialogButton {
|
|
buttonText: Translation.tr("Details")
|
|
onClicked: {
|
|
Quickshell.execDetached(["bash", "-c", `${Config.options.apps.bluetooth}`]);
|
|
GlobalStates.sidebarRightOpen = false;
|
|
}
|
|
}
|
|
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
DialogButton {
|
|
buttonText: Translation.tr("Done")
|
|
onClicked: root.dismiss()
|
|
}
|
|
}
|
|
}
|