feat: design for privacy widget

NON-FUNCTIONAL
This commit is contained in:
Nydragon 2024-08-29 08:02:09 +02:00
parent 913b13aa68
commit 4c9fb99d39
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 41 additions and 0 deletions

View file

@ -3,6 +3,7 @@ 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"
Scope { Scope {
@ -41,6 +42,8 @@ Scope {
Workspaces {} Workspaces {}
Battery {} Battery {}
Privacy {}
Item { Item {
Layout.fillHeight: true Layout.fillHeight: true
} }

View file

@ -0,0 +1,25 @@
import "root:base"
import QtQuick.Layouts
BRectangle {
height: width
RowLayout {
anchors.fill: parent
spacing: 1
anchors.margins: 3
PrivacyPill {
active: "#FF7F50"
inactive: "#b1a4a0"
}
PrivacyPill {
active: "#E0B0fF"
inactive: "#dad5dd"
}
PrivacyPill {
active: "#57ffcd"
inactive: "#a2b3ae"
}
}
}

View file

@ -0,0 +1,13 @@
import QtQuick
import QtQuick.Layouts
Rectangle {
property bool isActive: false
required property string active
required property string inactive
Layout.fillWidth: true
Layout.fillHeight: true
color: isActive ? active : inactive
radius: 10
}