forked from Shinonome/dots-hyprland
130 lines
4.4 KiB
QML
130 lines
4.4 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Qt5Compat.GraphicalEffects
|
|
import Quickshell
|
|
import Quickshell.Bluetooth
|
|
import qs
|
|
import qs.services
|
|
import qs.services.network
|
|
import qs.modules.common
|
|
import qs.modules.common.functions
|
|
import qs.modules.common.widgets
|
|
import qs.modules.waffle.looks
|
|
import qs.modules.waffle.actionCenter
|
|
|
|
Item {
|
|
id: root
|
|
|
|
Component.onCompleted: {
|
|
if (Bluetooth.defaultAdapter.enabled) Bluetooth.defaultAdapter.discovering = true;
|
|
}
|
|
Component.onDestruction: {
|
|
Bluetooth.defaultAdapter.discovering = false;
|
|
}
|
|
|
|
WPanelPageColumn {
|
|
anchors.fill: parent
|
|
|
|
BodyRectangle {
|
|
implicitHeight: 400
|
|
implicitWidth: 50
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
anchors.margins: 4
|
|
spacing: 4
|
|
|
|
ColumnLayout {
|
|
implicitHeight: headerRow.implicitHeight
|
|
Layout.fillWidth: true
|
|
spacing: 0
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
spacing: 0
|
|
HeaderRow {
|
|
id: headerRow
|
|
Layout.fillWidth: true
|
|
title: Translation.tr("Bluetooth")
|
|
}
|
|
WSwitch {
|
|
id: toggleSwitch
|
|
Layout.rightMargin: 12
|
|
checked: Bluetooth.defaultAdapter?.enabled ?? false
|
|
onCheckedChanged: {
|
|
if (Bluetooth.defaultAdapter) {
|
|
Bluetooth.defaultAdapter.enabled = checked;
|
|
if (checked) {
|
|
Bluetooth.defaultAdapter.discovering = true;
|
|
} else {
|
|
Bluetooth.defaultAdapter.discovering = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
FadeLoader {
|
|
Layout.leftMargin: -4
|
|
Layout.rightMargin: -4
|
|
Layout.fillWidth: true
|
|
shown: Bluetooth.defaultAdapter?.discovering ?? false
|
|
visible: true
|
|
sourceComponent: WIndeterminateProgressBar {}
|
|
}
|
|
}
|
|
|
|
StyledListView {
|
|
id: listView
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
animateAppearance: false
|
|
|
|
contentHeight: contentLayout.implicitHeight
|
|
contentWidth: width
|
|
clip: true
|
|
spacing: 4
|
|
|
|
model: ScriptModel {
|
|
values: BluetoothStatus.friendlyDeviceList
|
|
}
|
|
delegate: BluetoothDeviceItem {
|
|
required property BluetoothDevice modelData
|
|
device: modelData
|
|
width: ListView.view.width
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
WPanelSeparator {}
|
|
|
|
FooterRectangle {
|
|
WTextButton {
|
|
anchors {
|
|
verticalCenter: parent.verticalCenter
|
|
left: parent.left
|
|
}
|
|
text: Translation.tr("More Bluetooth settings")
|
|
onClicked: {
|
|
Quickshell.execDetached(["qs", "-p", Quickshell.shellPath(""), "ipc", "call", "sidebarLeft", "toggle"]);
|
|
Quickshell.execDetached(["bash", "-c", Config.options.apps.bluetooth]);
|
|
}
|
|
}
|
|
WBorderlessButton {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 12
|
|
enabled: !Bluetooth.defaultAdapter?.discovering && Bluetooth.defaultAdapter?.enabled
|
|
|
|
onClicked: {
|
|
Bluetooth.defaultAdapter.discovering = true;
|
|
}
|
|
|
|
contentItem: FluentIcon {
|
|
icon: "arrow-counterclockwise"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|