You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
statusbar/qml/ControlCenter.qml

465 lines
16 KiB
QML

/*
* Copyright (C) 2021 CutefishOS Team.
*
* Author: Reion Wong <aj@cutefishos.com>
*
* This program 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
* any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
5 years ago
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Window 2.12
import QtQuick.Layouts 1.12
import QtGraphicalEffects 1.0
5 years ago
import Cutefish.Accounts 1.0 as Accounts
import Cutefish.Bluez 1.0 as Bluez
5 years ago
import Cutefish.StatusBar 1.0
import Cutefish.Audio 1.0
5 years ago
import FishUI 1.0 as FishUI
5 years ago
ControlCenterDialog {
id: control
width: 420
height: _mainLayout.implicitHeight + FishUI.Units.largeSpacing * 2.5
property var margin: 4 * Screen.devicePixelRatio
5 years ago
property point position: Qt.point(0, 0)
5 years ago
property var defaultSink: paSinkModel.defaultSink
5 years ago
property bool bluetoothDisConnected: Bluez.Manager.bluetoothBlocked
property var defaultSinkValue: defaultSink ? defaultSink.volume / PulseAudio.MaximalVolume * 100.0 : -1
property var borderColor: windowHelper.compositing ? FishUI.Theme.darkMode ? Qt.rgba(255, 255, 255, 0.3)
: Qt.rgba(0, 0, 0, 0.2) : FishUI.Theme.darkMode ? Qt.rgba(255, 255, 255, 0.15)
: Qt.rgba(0, 0, 0, 0.15)
property var volumeIconName: {
if (defaultSinkValue <= 0)
return "audio-volume-muted-symbolic"
else if (defaultSinkValue <= 25)
return "audio-volume-low-symbolic"
else if (defaultSinkValue <= 75)
return "audio-volume-medium-symbolic"
else
return "audio-volume-high-symbolic"
}
onBluetoothDisConnectedChanged: {
bluetoothItem.checked = !bluetoothDisConnected
}
5 years ago
onWidthChanged: adjustCorrectLocation()
onHeightChanged: adjustCorrectLocation()
onPositionChanged: adjustCorrectLocation()
color: "transparent"
LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft
LayoutMirroring.childrenInherit: true
5 years ago
Appearance {
id: appearance
}
SinkModel {
id: paSinkModel
onDefaultSinkChanged: {
if (!defaultSink) {
return
}
}
}
function toggleBluetooth() {
const enable = !control.bluetoothDisConnected
Bluez.Manager.bluetoothBlocked = enable
for (var i = 0; i < Bluez.Manager.adapters.length; ++i) {
var adapter = Bluez.Manager.adapters[i]
adapter.powered = enable
}
}
5 years ago
function adjustCorrectLocation() {
var posX = control.position.x
var posY = control.position.y
if (posX + control.width >= StatusBar.screenRect.x + StatusBar.screenRect.width)
posX = StatusBar.screenRect.x + StatusBar.screenRect.width - control.width - control.margin
5 years ago
posY = rootItem.y + rootItem.height + control.margin
5 years ago
control.x = posX
control.y = posY
}
Brightness {
id: brightness
}
Accounts.UserAccount {
id: currentUser
}
5 years ago
FishUI.WindowBlur {
5 years ago
view: control
geometry: Qt.rect(control.x, control.y, control.width, control.height)
windowRadius: _background.radius
enabled: true
}
FishUI.WindowShadow {
view: control
geometry: Qt.rect(control.x, control.y, control.width, control.height)
radius: _background.radius
}
Rectangle {
5 years ago
id: _background
anchors.fill: parent
radius: windowHelper.compositing ? FishUI.Theme.bigRadius * 1.5 : 0
color: FishUI.Theme.darkMode ? "#4D4D4D" : "#FFFFFF"
opacity: windowHelper.compositing ? FishUI.Theme.darkMode ? 0.5 : 0.7 : 1.0
antialiasing: true
border.width: 1 / Screen.devicePixelRatio
border.pixelAligned: Screen.devicePixelRatio > 1 ? false : true
border.color: control.borderColor
Behavior on color {
ColorAnimation {
duration: 200
easing.type: Easing.Linear
}
}
5 years ago
}
ColumnLayout {
id: _mainLayout
anchors.fill: parent
anchors.leftMargin: FishUI.Units.largeSpacing * 1.5
anchors.rightMargin: FishUI.Units.largeSpacing * 1.5
anchors.topMargin: FishUI.Units.largeSpacing * 1.5
5 years ago
anchors.bottomMargin: FishUI.Units.largeSpacing
spacing: FishUI.Units.largeSpacing
5 years ago
Item {
id: topItem
Layout.fillWidth: true
5 years ago
height: 36
5 years ago
RowLayout {
id: topItemLayout
anchors.fill: parent
5 years ago
spacing: FishUI.Units.largeSpacing
5 years ago
Image {
id: userIcon
property int iconSize: 36
Layout.preferredHeight: iconSize
Layout.preferredWidth: iconSize
5 years ago
sourceSize: String(source) === "image://icontheme/default-user" ? Qt.size(iconSize, iconSize) : undefined
5 years ago
source: currentUser.iconFileName ? "file:///" + currentUser.iconFileName : "image://icontheme/default-user"
5 years ago
antialiasing: true
smooth: false
5 years ago
layer.enabled: true
layer.effect: OpacityMask {
maskSource: Item {
width: userIcon.width
height: userIcon.height
Rectangle {
anchors.fill: parent
radius: parent.height / 2
}
}
}
}
Label {
id: userLabel
text: currentUser.userName
Layout.fillHeight: true
Layout.fillWidth: true
elide: Label.ElideRight
}
IconButton {
id: settingsButton
5 years ago
implicitWidth: topItem.height
implicitHeight: topItem.height
5 years ago
Layout.alignment: Qt.AlignTop
5 years ago
source: "qrc:/images/" + (FishUI.Theme.darkMode ? "dark/" : "light/") + "settings.svg"
5 years ago
onLeftButtonClicked: {
control.visible = false
process.startDetached("cutefish-settings")
}
}
IconButton {
id: shutdownButton
5 years ago
implicitWidth: topItem.height
implicitHeight: topItem.height
5 years ago
Layout.alignment: Qt.AlignTop
5 years ago
source: "qrc:/images/" + (FishUI.Theme.darkMode ? "dark/" : "light/") + "system-shutdown-symbolic.svg"
5 years ago
onLeftButtonClicked: {
control.visible = false
process.startDetached("cutefish-shutdown")
}
}
}
}
Item {
id: cardItems
5 years ago
Layout.fillWidth: true
height: 100
5 years ago
visible: wirelessItem.visible || bluetoothItem.visible
RowLayout {
anchors.fill: parent
spacing: FishUI.Units.largeSpacing
5 years ago
CardItem {
id: wirelessItem
Layout.fillHeight: true
Layout.preferredWidth: 120
5 years ago
icon: FishUI.Theme.darkMode || checked ? "qrc:/images/dark/network-wireless-connected-100.svg"
: "qrc:/images/light/network-wireless-connected-100.svg"
visible: enabledConnections.wirelessHwEnabled
checked: enabledConnections.wirelessEnabled
5 years ago
label: qsTr("Wi-Fi")
text: enabledConnections.wirelessEnabled ? activeConnection.wirelessName ?
activeConnection.wirelessName :
qsTr("On") : qsTr("Off")
onClicked: nmHandler.enableWireless(!checked)
onPressAndHold: {
control.visible = false
process.startDetached("cutefish-settings", ["-m", "wlan"])
}
5 years ago
}
CardItem {
id: bluetoothItem
Layout.fillHeight: true
Layout.preferredWidth: 120
5 years ago
icon: FishUI.Theme.darkMode || checked ? "qrc:/images/dark/bluetooth-symbolic.svg"
5 years ago
: "qrc:/images/light/bluetooth-symbolic.svg"
checked: !control.bluetoothDisConnected
5 years ago
label: qsTr("Bluetooth")
text: checked ? qsTr("On") : qsTr("Off")
visible: Bluez.Manager.adapters.length
onClicked: control.toggleBluetooth()
onPressAndHold: {
control.visible = false
process.startDetached("cutefish-settings", ["-m", "bluetooth"])
}
5 years ago
}
CardItem {
id: darkModeItem
Layout.fillHeight: true
Layout.preferredWidth: 120
5 years ago
icon: FishUI.Theme.darkMode || checked ? "qrc:/images/dark/dark-mode.svg"
5 years ago
: "qrc:/images/light/dark-mode.svg"
5 years ago
checked: FishUI.Theme.darkMode
5 years ago
label: qsTr("Dark Mode")
5 years ago
text: FishUI.Theme.darkMode ? qsTr("On") : qsTr("Off")
onClicked: appearance.switchDarkMode(!FishUI.Theme.darkMode)
5 years ago
}
Item {
Layout.fillWidth: true
}
5 years ago
}
}
MprisItem {
height: 96
Layout.fillWidth: true
}
5 years ago
Item {
id: brightnessItem
Layout.fillWidth: true
height: 40
5 years ago
visible: brightness.enabled
Rectangle {
5 years ago
id: brightnessItemBg
anchors.fill: parent
5 years ago
radius: FishUI.Theme.bigRadius
color: FishUI.Theme.darkMode ? Qt.rgba(255, 255, 255, 0.1)
: Qt.rgba(0, 0, 0, 0.05)
5 years ago
}
RowLayout {
anchors.fill: brightnessItemBg
5 years ago
anchors.leftMargin: FishUI.Units.largeSpacing
anchors.rightMargin: FishUI.Units.largeSpacing
anchors.topMargin: FishUI.Units.smallSpacing
anchors.bottomMargin: FishUI.Units.smallSpacing
5 years ago
spacing: FishUI.Units.largeSpacing
5 years ago
Image {
5 years ago
height: 16
width: height
5 years ago
sourceSize: Qt.size(width, height)
5 years ago
source: "qrc:/images/" + (FishUI.Theme.darkMode ? "dark" : "light") + "/brightness.svg"
smooth: false
antialiasing: true
5 years ago
}
Timer {
id: brightnessTimer
interval: 100
repeat: false
onTriggered: brightness.setValue(brightnessSlider.value)
}
5 years ago
Slider {
id: brightnessSlider
from: 1
5 years ago
to: 100
stepSize: 1
value: brightness.value
Layout.fillWidth: true
Layout.fillHeight: true
onMoved: brightnessTimer.start()
5 years ago
}
}
}
Item {
id: volumeItem
Layout.fillWidth: true
height: 40
visible: defaultSink
5 years ago
Rectangle {
5 years ago
id: volumeItemBg
anchors.fill: parent
5 years ago
radius: FishUI.Theme.bigRadius
color: FishUI.Theme.darkMode ? Qt.rgba(255, 255, 255, 0.1)
: Qt.rgba(0, 0, 0, 0.05)
5 years ago
}
RowLayout {
anchors.fill: volumeItemBg
5 years ago
anchors.leftMargin: FishUI.Units.largeSpacing
anchors.rightMargin: FishUI.Units.largeSpacing
anchors.topMargin: FishUI.Units.smallSpacing
anchors.bottomMargin: FishUI.Units.smallSpacing
5 years ago
spacing: FishUI.Units.largeSpacing
5 years ago
Image {
5 years ago
height: 16
width: height
5 years ago
sourceSize: Qt.size(width, height)
source: "qrc:/images/" + (FishUI.Theme.darkMode ? "dark" : "light") + "/" + control.volumeIconName + ".svg"
smooth: false
antialiasing: true
5 years ago
}
Slider {
id: volumeSlider
5 years ago
Layout.fillWidth: true
Layout.fillHeight: true
from: PulseAudio.MinimalVolume
to: PulseAudio.MaximalVolume
stepSize: to / (to / PulseAudio.MaximalVolume * 100.0)
value: defaultSink ? defaultSink.volume : 0
5 years ago
onValueChanged: {
if (!defaultSink)
return
5 years ago
defaultSink.volume = value
defaultSink.muted = (value === 0)
5 years ago
}
}
}
}
RowLayout {
spacing: 0
5 years ago
Label {
id: timeLabel
leftPadding: FishUI.Units.smallSpacing / 2
5 years ago
color: FishUI.Theme.textColor
5 years ago
Timer {
interval: 1000
repeat: true
running: true
triggeredOnStart: true
onTriggered: {
timeLabel.text = new Date().toLocaleDateString(Qt.locale(), Locale.LongFormat)
5 years ago
}
}
}
Item {
Layout.fillWidth: true
}
StandardItem {
5 years ago
width: batteryLayout.implicitWidth + FishUI.Units.largeSpacing
height: batteryLayout.implicitHeight + FishUI.Units.largeSpacing
5 years ago
onClicked: {
control.visible = false
process.startDetached("cutefish-settings", ["-m", "battery"])
}
RowLayout {
id: batteryLayout
anchors.fill: parent
visible: battery.available
spacing: 0
Image {
id: batteryIcon
width: 22
height: 16
sourceSize: Qt.size(width, height)
5 years ago
source: "qrc:/images/" + (FishUI.Theme.darkMode ? "dark/" : "light/") + battery.iconSource
5 years ago
asynchronous: true
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
5 years ago
antialiasing: true
smooth: false
5 years ago
}
Label {
text: battery.chargePercent + "%"
5 years ago
color: FishUI.Theme.textColor
rightPadding: FishUI.Units.smallSpacing / 2
5 years ago
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
}
}
}
}
}
}