chore: add wip dashboard
This commit is contained in:
parent
6407497220
commit
4bd09169bd
5 changed files with 139 additions and 43 deletions
107
src/Bar.qml
107
src/Bar.qml
|
@ -3,22 +3,32 @@ import QtQuick // for Text
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import "widgets/systray"
|
import "widgets/systray"
|
||||||
import "widgets/workspaces"
|
import "widgets/workspaces"
|
||||||
import "widgets/privacy"
|
|
||||||
import "widgets/battery"
|
import "widgets/battery"
|
||||||
import "widgets/network"
|
import "widgets/network"
|
||||||
import "widgets/notifcenter"
|
import "widgets/notifcenter"
|
||||||
import "widgets/caffeine"
|
import "widgets/caffeine"
|
||||||
import "windows/notificationtoast"
|
import "windows/notificationtoast"
|
||||||
import "windows/workspace-view"
|
import "windows/workspace-view"
|
||||||
|
import "base"
|
||||||
|
import QtQuick.Controls
|
||||||
|
import Quickshell.Io
|
||||||
|
|
||||||
Scope {
|
Scope {
|
||||||
Variants {
|
Variants {
|
||||||
model: Quickshell.screens
|
model: Quickshell.screens
|
||||||
// the screen from the screens list will be injected into this property
|
}
|
||||||
|
|
||||||
|
Variants {
|
||||||
|
model: Quickshell.screens
|
||||||
|
delegate: Item {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property var modelData
|
||||||
|
property bool enabled: false
|
||||||
|
|
||||||
PanelWindow {
|
PanelWindow {
|
||||||
id: lbar
|
id: lbar
|
||||||
property var modelData
|
screen: root.modelData
|
||||||
screen: modelData
|
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
top: true
|
top: true
|
||||||
|
@ -31,14 +41,23 @@ Scope {
|
||||||
|
|
||||||
width: 30
|
width: 30
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
|
|
||||||
NotificationToasts {
|
NotificationToasts {
|
||||||
win: lbar
|
win: lbar
|
||||||
}
|
}
|
||||||
|
|
||||||
WorkspaceView {}
|
WorkspaceView {}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
color: "transparent"
|
||||||
|
anchors.margins: 5
|
||||||
|
|
||||||
|
height: parent.height
|
||||||
|
width: parent.width
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
anchors.fill: parent
|
width: 30
|
||||||
|
Layout.maximumWidth: 30
|
||||||
|
|
||||||
// TODO: on click open a calendar view
|
// TODO: on click open a calendar view
|
||||||
ClockWidget {}
|
ClockWidget {}
|
||||||
|
@ -63,6 +82,84 @@ Scope {
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
MouseArea {
|
||||||
|
id: mouse
|
||||||
|
onClicked: () => root.enabled = !root.enabled
|
||||||
|
height: width
|
||||||
|
width: 30
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
cursorShape: Qt.PointingHandCursor
|
||||||
|
BRectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
Rectangle {
|
||||||
|
visible: mouse.containsMouse
|
||||||
|
anchors.fill: parent
|
||||||
|
radius: parent.radius
|
||||||
|
color: "#9F9F9FC8"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
PanelWindow {
|
||||||
|
id: homeWindow
|
||||||
|
|
||||||
|
property bool animRunning: false
|
||||||
|
|
||||||
|
screen: root.modelData
|
||||||
|
|
||||||
|
IpcHandler {
|
||||||
|
target: "dash"
|
||||||
|
|
||||||
|
function toggle() {
|
||||||
|
root.enabled = !root.enabled;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
color: "transparent"
|
||||||
|
anchors {
|
||||||
|
top: true
|
||||||
|
left: true
|
||||||
|
bottom: true
|
||||||
|
right: true
|
||||||
|
}
|
||||||
|
|
||||||
|
visible: animRunning || root.enabled
|
||||||
|
focusable: true
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: () => root.enabled = false
|
||||||
|
|
||||||
|
BRectangle {
|
||||||
|
id: home
|
||||||
|
|
||||||
|
property var maxSize: 0
|
||||||
|
|
||||||
|
bottomRightRadius: 10
|
||||||
|
topRightRadius: 10
|
||||||
|
border.color: "transparent"
|
||||||
|
height: parent.height
|
||||||
|
width: root.enabled ? maxSize : 0
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
}
|
||||||
|
|
||||||
|
Component.onCompleted: () => maxSize = homeWindow.screen.width * (2 / 7)
|
||||||
|
|
||||||
|
Behavior on width {
|
||||||
|
PropertyAnimation {
|
||||||
|
id: anim
|
||||||
|
duration: 100
|
||||||
|
Component.onCompleted: () => {
|
||||||
|
homeWindow.animRunning = Qt.binding(() => anim.running);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import "root:base"
|
import "../../base"
|
||||||
import "root:provider"
|
import "../../provider"
|
||||||
|
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import Quickshell.Widgets
|
import Quickshell.Widgets
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import "root:base"
|
import "../../base"
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import Quickshell.Io
|
import Quickshell.Io
|
||||||
import Quickshell.Widgets
|
import Quickshell.Widgets
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import "root:base"
|
import "../../base"
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Widgets
|
import Quickshell.Widgets
|
||||||
import Quickshell.Io
|
import Quickshell.Io
|
||||||
|
|
|
@ -9,11 +9,11 @@ import "root:provider"
|
||||||
import QtQuick.Effects
|
import QtQuick.Effects
|
||||||
import "root:widgets/MprisBig"
|
import "root:widgets/MprisBig"
|
||||||
|
|
||||||
PopupWindow {
|
PanelWindow {
|
||||||
id: audioman
|
id: audioman
|
||||||
anchor {
|
anchors {
|
||||||
rect.x: lbar.width * 1.2
|
top: true
|
||||||
window: lbar
|
left: true
|
||||||
}
|
}
|
||||||
|
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
|
@ -28,9 +28,8 @@ PopupWindow {
|
||||||
BRectangle {
|
BRectangle {
|
||||||
id: display
|
id: display
|
||||||
|
|
||||||
x: lbar.width * 1.2
|
x: 10
|
||||||
y: lbar.width * 0.2
|
y: 10
|
||||||
|
|
||||||
width: 500
|
width: 500
|
||||||
height: 600
|
height: 600
|
||||||
radius: 10
|
radius: 10
|
||||||
|
|
Loading…
Add table
Reference in a new issue