mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
124 lines
3.8 KiB
QML
124 lines
3.8 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import ".."
|
|
import "../components"
|
|
import qs.components
|
|
import qs.components.controls
|
|
import qs.components.effects
|
|
import qs.components.containers
|
|
import qs.services
|
|
import qs.config
|
|
import qs.utils
|
|
import Quickshell
|
|
import Quickshell.Widgets
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property Session session
|
|
|
|
// General Settings
|
|
property bool enabled: Config.dashboard.enabled ?? true
|
|
property bool showOnHover: Config.dashboard.showOnHover ?? true
|
|
property int updateInterval: Config.dashboard.updateInterval ?? 1000
|
|
property int dragThreshold: Config.dashboard.dragThreshold ?? 50
|
|
|
|
// Performance Resources
|
|
property bool showBattery: Config.dashboard.performance.showBattery ?? false
|
|
property bool showGpu: Config.dashboard.performance.showGpu ?? true
|
|
property bool showCpu: Config.dashboard.performance.showCpu ?? true
|
|
property bool showMemory: Config.dashboard.performance.showMemory ?? true
|
|
property bool showStorage: Config.dashboard.performance.showStorage ?? true
|
|
property bool showNetwork: Config.dashboard.performance.showNetwork ?? true
|
|
|
|
anchors.fill: parent
|
|
|
|
function saveConfig() {
|
|
Config.dashboard.enabled = root.enabled;
|
|
Config.dashboard.showOnHover = root.showOnHover;
|
|
Config.dashboard.updateInterval = root.updateInterval;
|
|
Config.dashboard.dragThreshold = root.dragThreshold;
|
|
Config.dashboard.performance.showBattery = root.showBattery;
|
|
Config.dashboard.performance.showGpu = root.showGpu;
|
|
Config.dashboard.performance.showCpu = root.showCpu;
|
|
Config.dashboard.performance.showMemory = root.showMemory;
|
|
Config.dashboard.performance.showStorage = root.showStorage;
|
|
Config.dashboard.performance.showNetwork = root.showNetwork;
|
|
// Note: sizes properties are readonly and cannot be modified
|
|
Config.save();
|
|
}
|
|
|
|
ClippingRectangle {
|
|
id: dashboardClippingRect
|
|
anchors.fill: parent
|
|
anchors.margins: Appearance.padding.normal
|
|
anchors.leftMargin: 0
|
|
anchors.rightMargin: Appearance.padding.normal
|
|
|
|
radius: dashboardBorder.innerRadius
|
|
color: "transparent"
|
|
|
|
Loader {
|
|
id: dashboardLoader
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Appearance.padding.large + Appearance.padding.normal
|
|
anchors.leftMargin: Appearance.padding.large
|
|
anchors.rightMargin: Appearance.padding.large
|
|
|
|
sourceComponent: dashboardContentComponent
|
|
}
|
|
}
|
|
|
|
InnerBorder {
|
|
id: dashboardBorder
|
|
leftThickness: 0
|
|
rightThickness: Appearance.padding.normal
|
|
}
|
|
|
|
Component {
|
|
id: dashboardContentComponent
|
|
|
|
StyledFlickable {
|
|
id: dashboardFlickable
|
|
flickableDirection: Flickable.VerticalFlick
|
|
contentHeight: dashboardLayout.height
|
|
|
|
StyledScrollBar.vertical: StyledScrollBar {
|
|
flickable: dashboardFlickable
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: dashboardLayout
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.top: parent.top
|
|
|
|
spacing: Appearance.spacing.normal
|
|
|
|
RowLayout {
|
|
spacing: Appearance.spacing.smaller
|
|
|
|
StyledText {
|
|
text: qsTr("Dashboard")
|
|
font.pointSize: Appearance.font.size.large
|
|
font.weight: 500
|
|
}
|
|
}
|
|
|
|
// General Settings Section
|
|
GeneralSection {
|
|
rootItem: root
|
|
}
|
|
|
|
// Performance Resources Section
|
|
PerformanceSection {
|
|
rootItem: root
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|