feat: design for privacy widget
NON-FUNCTIONAL
This commit is contained in:
parent
913b13aa68
commit
4c9fb99d39
3 changed files with 41 additions and 0 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
25
src/widgets/privacy/Privacy.qml
Normal file
25
src/widgets/privacy/Privacy.qml
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
13
src/widgets/privacy/PrivacyPill.qml
Normal file
13
src/widgets/privacy/PrivacyPill.qml
Normal 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
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue