2021-03-15 20:17:11 -07:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
import QtQuick.Window 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
|
2021-03-16 03:20:04 -07:00
|
|
|
import Cutefish.Dock 1.0
|
2021-03-15 20:17:11 -07:00
|
|
|
import MeuiKit 1.0 as Meui
|
2021-03-16 03:20:04 -07:00
|
|
|
import Cutefish.Accounts 1.0 as Accounts
|
2021-03-15 20:17:11 -07:00
|
|
|
|
|
|
|
ControlCenterDialog {
|
|
|
|
id: control
|
|
|
|
width: 500
|
|
|
|
height: _mainLayout.implicitHeight + Meui.Units.largeSpacing * 4
|
|
|
|
|
|
|
|
minimumWidth: 500
|
|
|
|
maximumWidth: 500
|
|
|
|
minimumHeight: _mainLayout.implicitHeight + Meui.Units.largeSpacing * 4
|
|
|
|
maximumHeight: _mainLayout.implicitHeight + Meui.Units.largeSpacing * 4
|
|
|
|
|
|
|
|
property point position: Qt.point(0, 0)
|
|
|
|
|
|
|
|
onWidthChanged: adjustCorrectLocation()
|
|
|
|
onHeightChanged: adjustCorrectLocation()
|
|
|
|
onPositionChanged: adjustCorrectLocation()
|
|
|
|
|
|
|
|
color: "transparent"
|
|
|
|
|
|
|
|
Appearance {
|
|
|
|
id: appearance
|
|
|
|
}
|
|
|
|
|
|
|
|
function adjustCorrectLocation() {
|
|
|
|
var posX = control.position.x
|
|
|
|
var posY = control.position.y
|
|
|
|
|
|
|
|
// left
|
|
|
|
if (posX < 0)
|
|
|
|
posX = Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
// top
|
|
|
|
if (posY < 0)
|
|
|
|
posY = Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
// right
|
|
|
|
if (posX + control.width > Screen.width)
|
|
|
|
posX = Screen.width - control.width - Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
// bottom
|
|
|
|
if (posY > control.height > Screen.width)
|
|
|
|
posY = Screen.width - control.width - Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
control.x = posX
|
|
|
|
control.y = posY
|
|
|
|
}
|
|
|
|
|
|
|
|
Brightness {
|
|
|
|
id: brightness
|
|
|
|
}
|
|
|
|
|
|
|
|
Accounts.UserAccount {
|
|
|
|
id: currentUser
|
|
|
|
}
|
|
|
|
|
|
|
|
Meui.WindowBlur {
|
|
|
|
view: control
|
|
|
|
geometry: Qt.rect(control.x, control.y, control.width, control.height)
|
|
|
|
windowRadius: _background.radius
|
|
|
|
enabled: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Meui.RoundedRect {
|
|
|
|
id: _background
|
|
|
|
anchors.fill: parent
|
|
|
|
radius: control.height * 0.05
|
|
|
|
color: Meui.Theme.backgroundColor
|
|
|
|
backgroundOpacity: Meui.Theme.darkMode ? 0.3 : 0.4
|
|
|
|
}
|
|
|
|
|
|
|
|
Meui.WindowShadow {
|
|
|
|
view: control
|
|
|
|
geometry: Qt.rect(control.x, control.y, control.width, control.height)
|
|
|
|
radius: _background.radius
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: _mainLayout
|
|
|
|
anchors.fill: parent
|
2021-03-16 05:35:27 -07:00
|
|
|
anchors.leftMargin: Meui.Units.largeSpacing * 2
|
2021-03-20 02:17:41 -07:00
|
|
|
anchors.topMargin: Meui.Units.largeSpacing * 1.5
|
2021-03-16 05:35:27 -07:00
|
|
|
anchors.rightMargin: Meui.Units.largeSpacing * 2
|
|
|
|
anchors.bottomMargin: Meui.Units.largeSpacing
|
2021-03-15 20:17:11 -07:00
|
|
|
spacing: Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: topItem
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: topItemLayout
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: userIcon
|
|
|
|
Layout.fillHeight: true
|
|
|
|
width: height
|
|
|
|
sourceSize: Qt.size(width, height)
|
|
|
|
source: currentUser.iconFileName ? "file:///" + currentUser.iconFileName : "image://icontheme/default-user"
|
|
|
|
|
|
|
|
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
|
|
|
|
implicitWidth: topItem.height * 0.8
|
|
|
|
implicitHeight: topItem.height * 0.8
|
|
|
|
Layout.alignment: Qt.AlignTop
|
|
|
|
source: "qrc:/svg/" + (Meui.Theme.darkMode ? "dark/" : "light/") + "settings.svg"
|
|
|
|
onLeftButtonClicked: {
|
|
|
|
control.visible = false
|
2021-03-16 03:20:04 -07:00
|
|
|
process.startDetached("cutefish-settings")
|
2021-03-15 20:17:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IconButton {
|
|
|
|
id: shutdownButton
|
|
|
|
implicitWidth: topItem.height * 0.8
|
|
|
|
implicitHeight: topItem.height * 0.8
|
|
|
|
Layout.alignment: Qt.AlignTop
|
|
|
|
source: "qrc:/svg/" + (Meui.Theme.darkMode ? "dark/" : "light/") + "system-shutdown-symbolic.svg"
|
|
|
|
onLeftButtonClicked: {
|
|
|
|
control.visible = false
|
2021-03-16 03:20:04 -07:00
|
|
|
process.startDetached("cutefish-shutdown")
|
2021-03-15 20:17:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: controlItem
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 120
|
|
|
|
visible: wirelessItem.visible || bluetoothItem.visible
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
CardItem {
|
|
|
|
id: wirelessItem
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.preferredWidth: contentItem.width / 3 - Meui.Units.largeSpacing * 2
|
2021-03-16 05:35:27 -07:00
|
|
|
icon: Meui.Theme.darkMode || checked ? "qrc:/svg/dark/network-wireless-connected-100.svg"
|
|
|
|
: "qrc:/svg/light/network-wireless-connected-100.svg"
|
2021-03-15 20:17:11 -07:00
|
|
|
visible: network.wirelessHardwareEnabled
|
|
|
|
checked: network.wirelessEnabled
|
|
|
|
label: qsTr("Wi-Fi")
|
|
|
|
text: network.wirelessEnabled ? network.wirelessConnectionName ?
|
|
|
|
network.wirelessConnectionName :
|
|
|
|
qsTr("On") : qsTr("Off")
|
|
|
|
onClicked: network.wirelessEnabled = !network.wirelessEnabled
|
|
|
|
}
|
|
|
|
|
|
|
|
CardItem {
|
|
|
|
id: bluetoothItem
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.preferredWidth: contentItem.width / 3 - Meui.Units.largeSpacing * 2
|
2021-03-16 05:35:27 -07:00
|
|
|
icon: Meui.Theme.darkMode || checked ? "qrc:/svg/dark/bluetooth-symbolic.svg"
|
|
|
|
: "qrc:/svg/light/bluetooth-symbolic.svg"
|
2021-03-15 20:17:11 -07:00
|
|
|
checked: false
|
|
|
|
label: qsTr("Bluetooth")
|
|
|
|
text: qsTr("Off")
|
|
|
|
}
|
|
|
|
|
|
|
|
CardItem {
|
|
|
|
id: darkModeItem
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.preferredWidth: contentItem.width / 3 - Meui.Units.largeSpacing * 2
|
2021-03-16 05:35:27 -07:00
|
|
|
icon: Meui.Theme.darkMode || checked ? "qrc:/svg/dark/dark-mode.svg"
|
|
|
|
: "qrc:/svg/light/dark-mode.svg"
|
2021-03-15 20:17:11 -07:00
|
|
|
checked: Meui.Theme.darkMode
|
|
|
|
label: qsTr("Dark Mode")
|
|
|
|
text: Meui.Theme.darkMode ? qsTr("On") : qsTr("Off")
|
|
|
|
onClicked: appearance.switchDarkMode(!Meui.Theme.darkMode)
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MprisController {
|
|
|
|
height: 100
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: brightnessItem
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 50
|
|
|
|
visible: brightness.enabled
|
|
|
|
|
|
|
|
Meui.RoundedRect {
|
|
|
|
id: brightnessItemBg
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 0
|
|
|
|
radius: Meui.Theme.bigRadius
|
|
|
|
color: Meui.Theme.backgroundColor
|
|
|
|
backgroundOpacity: 0.3
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
anchors.fill: brightnessItemBg
|
|
|
|
anchors.margins: Meui.Units.largeSpacing
|
|
|
|
spacing: Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
Image {
|
|
|
|
width: parent.height * 0.6
|
|
|
|
height: parent.height * 0.6
|
|
|
|
sourceSize: Qt.size(width, height)
|
|
|
|
source: "qrc:/svg/" + (Meui.Theme.darkMode ? "dark" : "light") + "/brightness.svg"
|
|
|
|
}
|
|
|
|
|
|
|
|
Slider {
|
|
|
|
id: brightnessSlider
|
|
|
|
from: 0
|
|
|
|
to: 100
|
|
|
|
stepSize: 1
|
|
|
|
value: brightness.value
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
|
|
|
onMoved: {
|
|
|
|
brightness.setValue(brightnessSlider.value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: volumeItem
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 50
|
|
|
|
visible: volume.isValid
|
|
|
|
|
|
|
|
Meui.RoundedRect {
|
|
|
|
id: volumeItemBg
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 0
|
|
|
|
radius: Meui.Theme.bigRadius
|
|
|
|
color: Meui.Theme.backgroundColor
|
|
|
|
backgroundOpacity: 0.3
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
anchors.fill: volumeItemBg
|
|
|
|
anchors.margins: Meui.Units.largeSpacing
|
|
|
|
spacing: Meui.Units.largeSpacing
|
|
|
|
|
|
|
|
Image {
|
|
|
|
width: parent.height * 0.6
|
|
|
|
height: parent.height * 0.6
|
|
|
|
sourceSize: Qt.size(width, height)
|
|
|
|
source: "qrc:/svg/" + (Meui.Theme.darkMode ? "dark" : "light") + "/" + volume.iconName + ".svg"
|
|
|
|
}
|
|
|
|
|
|
|
|
Slider {
|
|
|
|
id: slider
|
|
|
|
from: 0
|
|
|
|
to: 100
|
|
|
|
stepSize: 1
|
|
|
|
value: volume.volume
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
|
|
|
onValueChanged: {
|
|
|
|
volume.setVolume(value)
|
|
|
|
|
|
|
|
if (volume.isMute && value > 0)
|
|
|
|
volume.setMute(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Label {
|
|
|
|
id: timeLabel
|
|
|
|
|
|
|
|
Timer {
|
|
|
|
interval: 1000
|
|
|
|
repeat: true
|
|
|
|
running: true
|
|
|
|
triggeredOnStart: true
|
|
|
|
onTriggered: {
|
|
|
|
timeLabel.text = new Date().toLocaleString(Qt.locale(), Locale.ShortFormat)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
StandardItem {
|
|
|
|
width: batteryLayout.implicitWidth + Meui.Units.largeSpacing
|
|
|
|
height: batteryLayout.implicitHeight + Meui.Units.largeSpacing
|
|
|
|
|
2021-03-20 02:17:41 -07:00
|
|
|
onClicked: {
|
|
|
|
control.visible = false
|
|
|
|
process.startDetached("cutefish-settings", ["-m", "battery"])
|
|
|
|
}
|
2021-03-15 20:17:11 -07:00
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: batteryLayout
|
|
|
|
anchors.fill: parent
|
|
|
|
visible: battery.available
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: batteryIcon
|
|
|
|
width: 22
|
|
|
|
height: 16
|
|
|
|
sourceSize: Qt.size(width, height)
|
|
|
|
source: "qrc:/svg/" + (Meui.Theme.darkMode ? "dark/" : "light/") + battery.iconSource
|
|
|
|
asynchronous: true
|
|
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: battery.chargePercent + "%"
|
|
|
|
color: Meui.Theme.textColor
|
|
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|