Compare commits
26
Commits
v0.4.0
..
2d40ce33d1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d40ce33d1 | ||
|
|
954dc10fbb | ||
|
|
15ccfd24c6 | ||
|
|
33b08523e9 | ||
|
|
742bece30b | ||
|
|
a64eadd14a | ||
|
|
f9eeb793db | ||
|
|
6bb193c78c | ||
|
|
aadecbfe44 | ||
|
|
53f0aa80ae | ||
|
|
d9856c9409 | ||
|
|
8dc9753e2b | ||
|
|
2a4bd3dfdd | ||
|
|
f75f51ef50 | ||
|
|
e0873304d1 | ||
|
|
99a0155c17 | ||
|
|
f309debea5 | ||
|
|
0979fd014d | ||
|
|
656bd0a54d | ||
|
|
f01001dcfa | ||
|
|
bc6b0d50ab | ||
|
|
f27c9afc25 | ||
|
|
5962fc8354 | ||
|
|
1adcb9841c | ||
|
|
0e0f8555ed | ||
|
|
1d63e67554 |
@@ -15,7 +15,7 @@ CustomRect {
|
|||||||
property color activeOnColor
|
property color activeOnColor
|
||||||
property bool checked
|
property bool checked
|
||||||
property real checkedRadius: Tokens.rounding.medium
|
property real checkedRadius: Tokens.rounding.medium
|
||||||
property real defaultRadius: Tokens.rounding.large
|
property real defaultRadius: Math.min(width, height) / 2
|
||||||
property color disabledColor: Qt.alpha(Colors.palette.m3onSurface, 0.1)
|
property color disabledColor: Qt.alpha(Colors.palette.m3onSurface, 0.1)
|
||||||
property color disabledOnColor: Qt.alpha(Colors.palette.m3onSurface, 0.38)
|
property color disabledOnColor: Qt.alpha(Colors.palette.m3onSurface, 0.38)
|
||||||
property bool fillWidth
|
property bool fillWidth
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ BusyIndicator {
|
|||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
bgColor: root.bgColor
|
bgColor: root.bgColor
|
||||||
fgColor: root.fgColor
|
fgColor: root.fgColor
|
||||||
|
hasEndIndicator: false
|
||||||
padding: root.padding
|
padding: root.padding
|
||||||
rotation: manager.rotation
|
rotation: manager.rotation
|
||||||
startAngle: manager.startFraction * 360
|
startAngle: manager.startFraction * 360
|
||||||
@@ -53,6 +54,7 @@ BusyIndicator {
|
|||||||
Anim {
|
Anim {
|
||||||
duration: manager.completeEndDuration * Tokens.anim.durations.scale
|
duration: manager.completeEndDuration * Tokens.anim.durations.scale
|
||||||
properties: "opacity,internalStrokeWidth"
|
properties: "opacity,internalStrokeWidth"
|
||||||
|
type: Anim.DefaultEffects
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ TextFieldBase {
|
|||||||
property string leadingIcon
|
property string leadingIcon
|
||||||
readonly property int leadingOffset: leadingIcon ? leadingIconLoader.width + leadingIconLoader.anchors.leftMargin : 0
|
readonly property int leadingOffset: leadingIcon ? leadingIconLoader.width + leadingIconLoader.anchors.leftMargin : 0
|
||||||
property int radius: Tokens.rounding.small
|
property int radius: Tokens.rounding.small
|
||||||
|
property alias sLayer: stateLayer
|
||||||
readonly property real smallFontScale: smallFontSize / font.pointSize
|
readonly property real smallFontScale: smallFontSize / font.pointSize
|
||||||
property int smallFontSize: Tokens.font.size.small
|
property int smallFontSize: Tokens.font.size.small
|
||||||
property string supportingText
|
property string supportingText
|
||||||
@@ -145,6 +146,7 @@ TextFieldBase {
|
|||||||
|
|
||||||
sourceComponent: MaterialIcon {
|
sourceComponent: MaterialIcon {
|
||||||
color: Colors.palette.m3onSurfaceVariant
|
color: Colors.palette.m3onSurfaceVariant
|
||||||
|
font.pointSize: Tokens.font.size.larger
|
||||||
text: root.leadingIcon
|
text: root.leadingIcon
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+130
-148
@@ -18,14 +18,13 @@ Item {
|
|||||||
property real leftFadeStrength: overflowing && leftFadeEnabled ? fadeStrengthMoving : fadeStrengthIdle
|
property real leftFadeStrength: overflowing && leftFadeEnabled ? fadeStrengthMoving : fadeStrengthIdle
|
||||||
property int leftFadeWidth: 28
|
property int leftFadeWidth: 28
|
||||||
property bool marqueeEnabled: true
|
property bool marqueeEnabled: true
|
||||||
readonly property bool overflowing: metrics.width > content.width
|
readonly property bool overflowing: metrics.width > root.width
|
||||||
property int pauseMs: 1200
|
property int pauseMs: 1200
|
||||||
property real pixelsPerSecond: 40
|
property real pixelsPerSecond: 40
|
||||||
property real rightFadeStrength: overflowing ? fadeStrengthMoving : fadeStrengthIdle
|
property real rightFadeStrength: overflowing ? fadeStrengthMoving : fadeStrengthIdle
|
||||||
property int rightFadeWidth: 28
|
property int rightFadeWidth: 28
|
||||||
property bool sliding: false
|
property bool sliding: false
|
||||||
property alias text: elideText.text
|
property alias text: elideText.text
|
||||||
property bool vertical: false
|
|
||||||
|
|
||||||
function durationForDistance(px): int {
|
function durationForDistance(px): int {
|
||||||
return Math.max(1, Math.round(Math.abs(px) / root.pixelsPerSecond * 1000));
|
return Math.max(1, Math.round(Math.abs(px) / root.pixelsPerSecond * 1000));
|
||||||
@@ -42,9 +41,8 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
clip: false
|
clip: true
|
||||||
implicitHeight: vertical ? elideText.implicitWidth : elideText.implicitHeight
|
implicitHeight: elideText.implicitHeight
|
||||||
implicitWidth: vertical ? elideText.implicitHeight : elideText.implicitWidth
|
|
||||||
|
|
||||||
Behavior on leftFadeStrength {
|
Behavior on leftFadeStrength {
|
||||||
Anim {
|
Anim {
|
||||||
@@ -55,187 +53,171 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onHeightChanged: resetMarquee()
|
|
||||||
onTextChanged: resetMarquee()
|
onTextChanged: resetMarquee()
|
||||||
onVerticalChanged: resetMarquee()
|
|
||||||
onVisibleChanged: if (!visible)
|
onVisibleChanged: if (!visible)
|
||||||
resetMarquee()
|
resetMarquee()
|
||||||
onWidthChanged: resetMarquee()
|
onWidthChanged: resetMarquee()
|
||||||
|
|
||||||
|
TextMetrics {
|
||||||
|
id: metrics
|
||||||
|
|
||||||
|
font: elideText.font
|
||||||
|
text: elideText.text
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: elideText
|
||||||
|
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
animate: root.animate
|
||||||
|
animateProp: "scale,opacity"
|
||||||
|
color: root.color
|
||||||
|
elide: Text.ElideNone
|
||||||
|
visible: !root.overflowing
|
||||||
|
width: root.width
|
||||||
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: content
|
id: marqueeViewport
|
||||||
|
|
||||||
anchors.centerIn: parent
|
anchors.fill: parent
|
||||||
height: root.vertical ? root.width : root.height
|
clip: true
|
||||||
width: root.vertical ? root.height : root.width
|
layer.enabled: true
|
||||||
|
visible: root.overflowing
|
||||||
|
|
||||||
transform: Rotation {
|
layer.effect: OpacityMask {
|
||||||
angle: root.vertical ? -90 : 0
|
maskSource: rightFadeMask
|
||||||
origin.x: content.width / 2
|
|
||||||
origin.y: content.height / 2
|
|
||||||
}
|
|
||||||
|
|
||||||
TextMetrics {
|
|
||||||
id: metrics
|
|
||||||
|
|
||||||
font: elideText.font
|
|
||||||
text: elideText.text
|
|
||||||
}
|
|
||||||
|
|
||||||
CustomText {
|
|
||||||
id: elideText
|
|
||||||
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
animate: root.animate
|
|
||||||
animateProp: "scale,opacity"
|
|
||||||
color: root.color
|
|
||||||
elide: Text.ElideNone
|
|
||||||
visible: !root.overflowing
|
|
||||||
width: content.width
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: marqueeViewport
|
id: strip
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
clip: false
|
height: t1.implicitHeight
|
||||||
layer.enabled: true
|
width: t1.width + root.gap + t2.width
|
||||||
visible: root.overflowing
|
x: 0
|
||||||
|
|
||||||
layer.effect: OpacityMask {
|
CustomText {
|
||||||
maskSource: rightFadeMask
|
id: t1
|
||||||
|
|
||||||
|
animate: root.animate
|
||||||
|
animateProp: "opacity"
|
||||||
|
color: root.color
|
||||||
|
font.pointSize: elideText.font.pointSize
|
||||||
|
text: elideText.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
CustomText {
|
||||||
id: strip
|
id: t2
|
||||||
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
animate: root.animate
|
||||||
height: t1.implicitHeight
|
animateProp: "opacity"
|
||||||
width: t1.width + root.gap + t2.width
|
color: root.color
|
||||||
x: 0
|
font.pointSize: elideText.font.pointSize
|
||||||
|
text: t1.text
|
||||||
|
x: t1.width + root.gap
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
CustomText {
|
SequentialAnimation {
|
||||||
id: t1
|
id: marqueeAnim
|
||||||
|
|
||||||
animate: root.animate
|
running: false
|
||||||
animateProp: "opacity"
|
|
||||||
color: root.color
|
|
||||||
font.pointSize: elideText.font.pointSize
|
|
||||||
text: elideText.text
|
|
||||||
}
|
|
||||||
|
|
||||||
CustomText {
|
onFinished: pauseTimer.restart()
|
||||||
id: t2
|
|
||||||
|
|
||||||
animate: root.animate
|
ScriptAction {
|
||||||
animateProp: "opacity"
|
script: {
|
||||||
color: root.color
|
root.sliding = true;
|
||||||
font.pointSize: elideText.font.pointSize
|
root.leftFadeEnabled = true;
|
||||||
text: t1.text
|
|
||||||
x: t1.width + root.gap
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SequentialAnimation {
|
Anim {
|
||||||
id: marqueeAnim
|
duration: root.durationForDistance(t1.width)
|
||||||
|
easing.bezierCurve: Easing.Linear
|
||||||
|
easing.type: Easing.Linear
|
||||||
|
from: 0
|
||||||
|
property: "x"
|
||||||
|
target: strip
|
||||||
|
to: -t1.width
|
||||||
|
}
|
||||||
|
|
||||||
running: false
|
ScriptAction {
|
||||||
|
script: {
|
||||||
onFinished: pauseTimer.restart()
|
root.leftFadeEnabled = false;
|
||||||
|
|
||||||
ScriptAction {
|
|
||||||
script: {
|
|
||||||
root.sliding = true;
|
|
||||||
root.leftFadeEnabled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
duration: root.durationForDistance(t1.width)
|
|
||||||
easing.bezierCurve: Easing.Linear
|
|
||||||
easing.type: Easing.Linear
|
|
||||||
from: 0
|
|
||||||
property: "x"
|
|
||||||
target: strip
|
|
||||||
to: -t1.width
|
|
||||||
}
|
|
||||||
|
|
||||||
ScriptAction {
|
|
||||||
script: {
|
|
||||||
root.leftFadeEnabled = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
duration: root.durationForDistance(root.gap)
|
|
||||||
easing.bezierCurve: Easing.Linear
|
|
||||||
easing.type: Easing.Linear
|
|
||||||
from: -t1.width
|
|
||||||
property: "x"
|
|
||||||
target: strip
|
|
||||||
to: -(t1.width + root.gap)
|
|
||||||
}
|
|
||||||
|
|
||||||
ScriptAction {
|
|
||||||
script: {
|
|
||||||
root.sliding = false;
|
|
||||||
strip.x = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Timer {
|
Anim {
|
||||||
id: pauseTimer
|
duration: root.durationForDistance(root.gap)
|
||||||
|
easing.bezierCurve: Easing.Linear
|
||||||
|
easing.type: Easing.Linear
|
||||||
|
from: -t1.width
|
||||||
|
property: "x"
|
||||||
|
target: strip
|
||||||
|
to: -(t1.width + root.gap)
|
||||||
|
}
|
||||||
|
|
||||||
interval: root.pauseMs
|
ScriptAction {
|
||||||
repeat: false
|
script: {
|
||||||
running: true
|
root.sliding = false;
|
||||||
|
strip.x = 0;
|
||||||
onTriggered: {
|
|
||||||
if (root.marqueeEnabled)
|
|
||||||
marqueeAnim.start();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Timer {
|
||||||
id: rightFadeMask
|
id: pauseTimer
|
||||||
|
|
||||||
readonly property real fadeStartPos: {
|
interval: root.pauseMs
|
||||||
const w = Math.max(1, width);
|
repeat: false
|
||||||
return Math.max(0, Math.min(1, (w - root.rightFadeWidth) / w));
|
running: true
|
||||||
|
|
||||||
|
onTriggered: {
|
||||||
|
if (root.marqueeEnabled)
|
||||||
|
marqueeAnim.start();
|
||||||
}
|
}
|
||||||
readonly property real leftFadeEndPos: {
|
}
|
||||||
const w = Math.max(1, width);
|
}
|
||||||
return Math.max(0, Math.min(1, root.leftFadeWidth / w));
|
|
||||||
|
Rectangle {
|
||||||
|
id: rightFadeMask
|
||||||
|
|
||||||
|
readonly property real fadeStartPos: {
|
||||||
|
const w = Math.max(1, width);
|
||||||
|
return Math.max(0, Math.min(1, (w - root.rightFadeWidth) / w));
|
||||||
|
}
|
||||||
|
readonly property real leftFadeEndPos: {
|
||||||
|
const w = Math.max(1, width);
|
||||||
|
return Math.max(0, Math.min(1, root.leftFadeWidth / w));
|
||||||
|
}
|
||||||
|
|
||||||
|
anchors.fill: marqueeViewport
|
||||||
|
layer.enabled: true
|
||||||
|
visible: false
|
||||||
|
|
||||||
|
gradient: Gradient {
|
||||||
|
orientation: Gradient.Horizontal
|
||||||
|
|
||||||
|
GradientStop {
|
||||||
|
color: Qt.rgba(1, 1, 1, 1.0 - root.leftFadeStrength)
|
||||||
|
position: 0.0
|
||||||
}
|
}
|
||||||
|
|
||||||
anchors.fill: marqueeViewport
|
GradientStop {
|
||||||
layer.enabled: true
|
color: Qt.rgba(1, 1, 1, 1.0)
|
||||||
visible: false
|
position: rightFadeMask.leftFadeEndPos
|
||||||
|
}
|
||||||
|
|
||||||
gradient: Gradient {
|
GradientStop {
|
||||||
orientation: Gradient.Horizontal
|
color: Qt.rgba(1, 1, 1, 1.0)
|
||||||
|
position: rightFadeMask.fadeStartPos
|
||||||
|
}
|
||||||
|
|
||||||
GradientStop {
|
GradientStop {
|
||||||
color: Qt.rgba(1, 1, 1, 1.0 - root.leftFadeStrength)
|
color: Qt.rgba(1, 1, 1, 1.0 - root.rightFadeStrength)
|
||||||
position: 0.0
|
position: 1.0
|
||||||
}
|
|
||||||
|
|
||||||
GradientStop {
|
|
||||||
color: Qt.rgba(1, 1, 1, 1.0)
|
|
||||||
position: rightFadeMask.leftFadeEndPos
|
|
||||||
}
|
|
||||||
|
|
||||||
GradientStop {
|
|
||||||
color: Qt.rgba(1, 1, 1, 1.0)
|
|
||||||
position: rightFadeMask.fadeStartPos
|
|
||||||
}
|
|
||||||
|
|
||||||
GradientStop {
|
|
||||||
color: Qt.rgba(1, 1, 1, 1.0 - root.rightFadeStrength)
|
|
||||||
position: 1.0
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-4
@@ -126,7 +126,7 @@ MouseArea {
|
|||||||
CustomRect {
|
CustomRect {
|
||||||
id: item
|
id: item
|
||||||
|
|
||||||
readonly property bool active: modelData === root?.active
|
readonly property bool active: modelData === root.active
|
||||||
required property int index
|
required property int index
|
||||||
required property MenuItem modelData
|
required property MenuItem modelData
|
||||||
|
|
||||||
@@ -163,19 +163,19 @@ MouseArea {
|
|||||||
MaterialIcon {
|
MaterialIcon {
|
||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
color: item.active ? Colors.palette.m3onTertiaryContainer : Colors.palette.m3onSurfaceVariant
|
color: item.active ? Colors.palette.m3onTertiaryContainer : Colors.palette.m3onSurfaceVariant
|
||||||
text: item.modelData?.icon ?? ""
|
text: item.modelData.icon
|
||||||
}
|
}
|
||||||
|
|
||||||
CustomText {
|
CustomText {
|
||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
color: item.active ? Colors.palette.m3onTertiaryContainer : Colors.palette.m3onSurface
|
color: item.active ? Colors.palette.m3onTertiaryContainer : Colors.palette.m3onSurface
|
||||||
text: item.modelData?.text ?? ""
|
text: item.modelData.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Loader {
|
Loader {
|
||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
active: item.modelData?.trailingIcon.length > 0
|
active: item.modelData.trailingIcon.length > 0
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
visible: active
|
visible: active
|
||||||
|
|
||||||
|
|||||||
+2
-33
@@ -11,46 +11,15 @@ Variants {
|
|||||||
|
|
||||||
required property ShellScreen modelData
|
required property ShellScreen modelData
|
||||||
|
|
||||||
function rebuild(): void {
|
|
||||||
loader.active = false;
|
|
||||||
loader.active = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
LazyLoader {
|
|
||||||
id: loader
|
|
||||||
|
|
||||||
active: true
|
|
||||||
|
|
||||||
Drawer {
|
|
||||||
screen: scope.modelData
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Connections {
|
|
||||||
function onConfigPositionChanged(): void {
|
|
||||||
Qt.callLater(scope.rebuild);
|
|
||||||
}
|
|
||||||
|
|
||||||
target: (loader.item as Drawer)?.geometry ?? null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
component Drawer: Scope {
|
|
||||||
id: drawer
|
|
||||||
|
|
||||||
readonly property alias geometry: content.geometry
|
|
||||||
required property ShellScreen screen
|
|
||||||
|
|
||||||
Exclusions {
|
Exclusions {
|
||||||
bar: content.bar
|
bar: content.bar
|
||||||
geometry: content.geometry
|
screen: scope.modelData
|
||||||
screen: drawer.screen
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Windows {
|
Windows {
|
||||||
id: content
|
id: content
|
||||||
|
|
||||||
screen: drawer.screen
|
screen: scope.modelData
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,55 +0,0 @@
|
|||||||
import QtQuick
|
|
||||||
import qs.Modules.Bar as Bar
|
|
||||||
|
|
||||||
QtObject {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
required property Bar.BarLoader bar
|
|
||||||
readonly property real barClamped: bar.clampedExtent
|
|
||||||
readonly property real barExtent: bar.extent
|
|
||||||
readonly property bool barOnBottom: position === "bottom"
|
|
||||||
readonly property bool barOnLeft: position === "left"
|
|
||||||
readonly property bool barOnTop: position === "top"
|
|
||||||
required property string configPosition
|
|
||||||
readonly property bool horizontal: position !== "left"
|
|
||||||
readonly property string position: configPosition === "top" || configPosition === "bottom" ? configPosition : "left"
|
|
||||||
required property var win
|
|
||||||
|
|
||||||
function axisPos(x: real, y: real): real {
|
|
||||||
return horizontal ? x : y;
|
|
||||||
}
|
|
||||||
|
|
||||||
function barContains(x: real, y: real, clamped = false): bool {
|
|
||||||
const extent = clamped ? barClamped : barExtent;
|
|
||||||
if (barOnTop)
|
|
||||||
return y < extent;
|
|
||||||
if (barOnBottom)
|
|
||||||
return y > win.height - extent;
|
|
||||||
return x < extent;
|
|
||||||
}
|
|
||||||
|
|
||||||
function insetBottom(border: real, clamped = false): real {
|
|
||||||
return barOnBottom ? (clamped ? barClamped : barExtent) : border;
|
|
||||||
}
|
|
||||||
|
|
||||||
function insetLeft(border: real, clamped = false): real {
|
|
||||||
return barOnLeft ? (clamped ? barClamped : barExtent) : border;
|
|
||||||
}
|
|
||||||
|
|
||||||
function insetTop(border: real, clamped = false): real {
|
|
||||||
return barOnTop ? (clamped ? barClamped : barExtent) : border;
|
|
||||||
}
|
|
||||||
|
|
||||||
function inwardDrag(dragX: real, dragY: real): real {
|
|
||||||
if (barOnTop)
|
|
||||||
return dragY;
|
|
||||||
if (barOnBottom)
|
|
||||||
return -dragY;
|
|
||||||
return dragX;
|
|
||||||
}
|
|
||||||
|
|
||||||
onConfigPositionChanged: {
|
|
||||||
if (!["left", "top", "bottom"].includes(configPosition))
|
|
||||||
console.warn(`Invalid bar position '${configPosition}', falling back to left`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,21 +9,19 @@ Scope {
|
|||||||
id: root
|
id: root
|
||||||
|
|
||||||
required property Item bar
|
required property Item bar
|
||||||
required property EdgeGeometry geometry
|
|
||||||
required property ShellScreen screen
|
required property ShellScreen screen
|
||||||
|
|
||||||
ExclusionZone {
|
ExclusionZone {
|
||||||
id: top
|
id: top
|
||||||
|
|
||||||
anchors.top: true
|
anchors.top: true
|
||||||
hasBar: root.geometry.barOnTop
|
exclusiveZone: root.bar.exclusiveZone
|
||||||
}
|
}
|
||||||
|
|
||||||
ExclusionZone {
|
ExclusionZone {
|
||||||
id: left
|
id: left
|
||||||
|
|
||||||
anchors.left: true
|
anchors.left: true
|
||||||
hasBar: root.geometry.barOnLeft
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ExclusionZone {
|
ExclusionZone {
|
||||||
@@ -36,7 +34,6 @@ Scope {
|
|||||||
id: bottom
|
id: bottom
|
||||||
|
|
||||||
anchors.bottom: true
|
anchors.bottom: true
|
||||||
hasBar: root.geometry.barOnBottom
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Timer {
|
Timer {
|
||||||
@@ -47,9 +44,7 @@ Scope {
|
|||||||
}
|
}
|
||||||
|
|
||||||
component ExclusionZone: CustomWindow {
|
component ExclusionZone: CustomWindow {
|
||||||
property bool hasBar
|
exclusiveZone: Config.bar.border
|
||||||
|
|
||||||
exclusiveZone: hasBar ? root.bar.exclusiveZone : Config.bar.border
|
|
||||||
implicitHeight: 1
|
implicitHeight: 1
|
||||||
implicitWidth: 1
|
implicitWidth: 1
|
||||||
name: "Bar-Exclusion"
|
name: "Bar-Exclusion"
|
||||||
|
|||||||
+23
-25
@@ -3,7 +3,7 @@ import QtQuick
|
|||||||
import qs.Components
|
import qs.Components
|
||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import qs.Helpers
|
import qs.Helpers
|
||||||
import qs.Modules.Bar.Popouts
|
import qs.Modules as BarPopouts
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
@@ -12,47 +12,43 @@ Item {
|
|||||||
required property real borderThickness
|
required property real borderThickness
|
||||||
property bool dashboardShortcutActive
|
property bool dashboardShortcutActive
|
||||||
required property Drawing drawing
|
required property Drawing drawing
|
||||||
required property EdgeGeometry geometry
|
|
||||||
property bool osdShortcutActive
|
property bool osdShortcutActive
|
||||||
required property Panels panels
|
required property Panels panels
|
||||||
required property Wrapper popouts
|
required property BarPopouts.Wrapper popouts
|
||||||
required property ShellScreen screen
|
required property ShellScreen screen
|
||||||
property bool singleGestureTriggered: false
|
property bool singleGestureTriggered: false
|
||||||
property bool utilitiesShortcutActive
|
property bool utilitiesShortcutActive
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
function inBottomPanel(panel: Item, x: real, y: real): bool {
|
function inBottomPanel(panel: Item, x: real, y: real): bool {
|
||||||
const panelHeight = panel.height * (1 - (panel.offsetScale ?? 0));
|
return y > root.height - panel.height - Config.bar.border && withinPanelWidth(panel, x, y);
|
||||||
return y > root.height - (panelHeight + geometry.insetBottom(borderThickness)) && withinPanelWidth(panel, x, y);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function inLeftPanel(panel: Item, x: real, y: real): bool {
|
function inLeftPanel(panel: Item, x: real, y: real): bool {
|
||||||
return x < panel.x + panel.width + geometry.insetLeft(borderThickness) && withinPanelHeight(panel, x, y);
|
return x < panel.x + panel.width + Config.bar.border && withinPanelHeight(panel, x, y);
|
||||||
}
|
|
||||||
|
|
||||||
function inPopoutArea(x: real, y: real): bool {
|
|
||||||
const panel = panels.popoutsWrapper;
|
|
||||||
if (!geometry.horizontal)
|
|
||||||
return inLeftPanel(panel, x, y);
|
|
||||||
return withinPanelWidth(panel, x, y) && withinPanelHeight(panel, x, y);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function inRightPanel(panel: Item, x: real, y: real): bool {
|
function inRightPanel(panel: Item, x: real, y: real): bool {
|
||||||
return x > panel.x + geometry.insetLeft(borderThickness) && withinPanelHeight(panel, x, y);
|
return x > panel.x - Config.bar.border && withinPanelHeight(panel, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
function inTopPanel(panel: Item, x: real, y: real): bool {
|
function inTopPanel(panel: Item, x: real, y: real): bool {
|
||||||
const panelHeight = panel.height * (1 - (panel.offsetScale ?? 0));
|
return y < bar.implicitHeight + panel.height && withinPanelWidth(panel, x, y);
|
||||||
return y < geometry.insetTop(borderThickness) + panelHeight && withinPanelWidth(panel, x, y);
|
}
|
||||||
|
|
||||||
|
function onWheel(event: WheelEvent): void {
|
||||||
|
if (event.x < bar.implicitWidth) {
|
||||||
|
bar.handleWheel(event.y, event.angleDelta);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function withinPanelHeight(panel: Item, x: real, y: real): bool {
|
function withinPanelHeight(panel: Item, x: real, y: real): bool {
|
||||||
const panelY = panel.y + geometry.insetTop(borderThickness);
|
const panelY = panel.y + bar.implicitHeight;
|
||||||
return y >= panelY && y <= panelY + panel.height;
|
return y >= panelY && y <= panelY + panel.height;
|
||||||
}
|
}
|
||||||
|
|
||||||
function withinPanelWidth(panel: Item, x: real, y: real): bool {
|
function withinPanelWidth(panel: Item, x: real, y: real): bool {
|
||||||
const panelX = panel.x + geometry.insetLeft(borderThickness);
|
const panelX = panel.x + root.borderThickness;
|
||||||
return x >= panelX && x <= panelX + panel.width;
|
return x >= panelX && x <= panelX + panel.width;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -85,7 +81,7 @@ Item {
|
|||||||
if (root.singleGestureTriggered)
|
if (root.singleGestureTriggered)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (root.geometry.insetTop(root.borderThickness) > centroid.pressPosition.y) {
|
if (centroid.pressPosition.y < root.bar.implicitHeight) {
|
||||||
if (dragY > 20) {
|
if (dragY > 20) {
|
||||||
root.visibilities.settings = true;
|
root.visibilities.settings = true;
|
||||||
root.singleGestureTriggered = true;
|
root.singleGestureTriggered = true;
|
||||||
@@ -95,10 +91,10 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (centroid.pressPosition.y > root.screen.height - root.geometry.insetBottom(root.borderThickness) && centroid.pressPosition.x < root.screen.width / 5 && dragY < -50)
|
if (centroid.pressPosition.y > root.screen.height - Config.bar.border && centroid.pressPosition.x < root.screen.width / 5 && dragY < -50)
|
||||||
root.visibilities.clipboard = true;
|
root.visibilities.clipboard = true;
|
||||||
|
|
||||||
if (!Config.dock.hoverToReveal && centroid.pressPosition.y > root.screen.height - root.geometry.insetTop(root.borderThickness) && centroid.pressPosition.x > root.screen.width / 5 && !root.visibilities.launcher)
|
if (!Config.dock.hoverToReveal && centroid.pressPosition.y > root.screen.height - root.bar.implicitHeight && centroid.pressPosition.x > root.screen.width / 5 && !root.visibilities.launcher)
|
||||||
if (dragY < -10) {
|
if (dragY < -10) {
|
||||||
root.visibilities.dock = true;
|
root.visibilities.dock = true;
|
||||||
root.singleGestureTriggered = true;
|
root.singleGestureTriggered = true;
|
||||||
@@ -197,7 +193,7 @@ Item {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!root.visibilities.bar && Config.bar.autoHide && root.geometry.barContains(x, y, true))
|
if (!root.visibilities.bar && Config.bar.autoHide && y < root.bar.implicitHeight)
|
||||||
root.bar.isHovered = true;
|
root.bar.isHovered = true;
|
||||||
|
|
||||||
if (root.panels.sidebar.offsetScale === 1) {
|
if (root.panels.sidebar.offsetScale === 1) {
|
||||||
@@ -220,11 +216,11 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.dock.enable && Config.dock.hoverToReveal && !root.visibilities.dock && !root.visibilities.launcher && root.inBottomPanel(root.panels.dock, x, y))
|
if (Config.dock.enabled && Config.dock.hoverToReveal && !root.visibilities.dock && !root.visibilities.launcher && root.inBottomPanel(root.panels.dock, x, y))
|
||||||
root.visibilities.dock = true;
|
root.visibilities.dock = true;
|
||||||
|
|
||||||
if (root.geometry.barContains(x, y))
|
if (y < root.bar.implicitHeight)
|
||||||
root.bar.checkPopout(root.geometry.axisPos(x, y));
|
root.bar.checkPopout(x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -302,6 +298,8 @@ Item {
|
|||||||
root.visibilities.sidebar = false;
|
root.visibilities.sidebar = false;
|
||||||
root.panels.popouts.hasCurrent = false;
|
root.panels.popouts.hasCurrent = false;
|
||||||
root.visibilities.launcher = false;
|
root.visibilities.launcher = false;
|
||||||
|
} else {
|
||||||
|
Config.save();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+16
-19
@@ -1,7 +1,7 @@
|
|||||||
import Quickshell
|
import Quickshell
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Modules.Bar.Popouts as Popouts
|
import qs.Modules as Modules
|
||||||
import qs.Modules.Notifications as Notifications
|
import qs.Modules.Notifications as Notifications
|
||||||
import qs.Modules.Notifications.Sidebar as Sidebar
|
import qs.Modules.Notifications.Sidebar as Sidebar
|
||||||
import qs.Modules.Notifications.Sidebar.Utils as Utils
|
import qs.Modules.Notifications.Sidebar.Utils as Utils
|
||||||
@@ -27,7 +27,6 @@ Item {
|
|||||||
readonly property alias dock: dock
|
readonly property alias dock: dock
|
||||||
readonly property alias drawing: drawing
|
readonly property alias drawing: drawing
|
||||||
required property var drawingItem
|
required property var drawingItem
|
||||||
required property EdgeGeometry geometry
|
|
||||||
readonly property alias launcher: launcher
|
readonly property alias launcher: launcher
|
||||||
readonly property alias notifications: notifications
|
readonly property alias notifications: notifications
|
||||||
readonly property alias osd: osd
|
readonly property alias osd: osd
|
||||||
@@ -44,26 +43,24 @@ Item {
|
|||||||
readonly property alias utilities: utilities
|
readonly property alias utilities: utilities
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
anchors.bottomMargin: geometry.insetBottom(borderThickness)
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.leftMargin: geometry.insetLeft(borderThickness)
|
|
||||||
anchors.margins: borderThickness
|
anchors.margins: borderThickness
|
||||||
anchors.topMargin: geometry.insetTop(borderThickness)
|
anchors.topMargin: bar.implicitHeight
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: resourcesWrapper
|
id: resourcesWrapper
|
||||||
|
|
||||||
anchors.bottom: root.geometry.position === "bottom" ? parent.bottom : undefined
|
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.top: root.geometry.position !== "bottom" ? parent.top : undefined
|
anchors.top: parent.top
|
||||||
clip: true
|
clip: true
|
||||||
implicitHeight: root.geometry.horizontal ? resources.implicitHeight * (1 - resources.offsetScale) : resources.implicitHeight
|
implicitHeight: resources.implicitHeight * (1 - resources.offsetScale)
|
||||||
implicitWidth: root.geometry.horizontal ? resources.implicitWidth : resources.implicitWidth * (1 - resources.offsetScale)
|
implicitWidth: resources.implicitWidth
|
||||||
|
|
||||||
Resources.Wrapper {
|
Resources.Wrapper {
|
||||||
id: resources
|
id: resources
|
||||||
|
|
||||||
position: root.geometry.position
|
anchors.left: parent.left
|
||||||
|
anchors.top: parent.top
|
||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -99,11 +96,11 @@ Item {
|
|||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
}
|
}
|
||||||
|
|
||||||
Popouts.ClipWrapper {
|
Modules.ClipWrapper {
|
||||||
id: popouts
|
id: popouts
|
||||||
|
|
||||||
|
anchors.top: parent.top
|
||||||
borderThickness: root.borderThickness
|
borderThickness: root.borderThickness
|
||||||
position: root.geometry.position
|
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -150,13 +147,11 @@ Item {
|
|||||||
|
|
||||||
property real offsetScale: dashboard.shouldBeActive ? 0 : 1
|
property real offsetScale: dashboard.shouldBeActive ? 0 : 1
|
||||||
|
|
||||||
anchors.bottom: root.geometry.barOnLeft || root.geometry.barOnBottom ? parent.bottom : undefined
|
anchors.right: parent.right
|
||||||
anchors.left: root.geometry.barOnLeft ? parent.left : undefined
|
anchors.top: parent.top
|
||||||
anchors.right: root.geometry.barOnLeft ? undefined : parent.right
|
|
||||||
anchors.top: root.geometry.barOnBottom || root.geometry.barOnLeft ? undefined : parent.top
|
|
||||||
clip: true
|
clip: true
|
||||||
implicitHeight: root.geometry.horizontal ? dashboard.implicitHeight * (1 - offsetScale) : dashboard.implicitHeight
|
implicitHeight: dashboard.implicitHeight * (1 - offsetScale)
|
||||||
implicitWidth: root.geometry.horizontal ? dashboard.implicitWidth : dashboard.implicitWidth * (1 - offsetScale)
|
implicitWidth: dashboard.implicitWidth
|
||||||
|
|
||||||
Behavior on offsetScale {
|
Behavior on offsetScale {
|
||||||
Anim {
|
Anim {
|
||||||
@@ -168,8 +163,10 @@ Item {
|
|||||||
Dashboard.Wrapper {
|
Dashboard.Wrapper {
|
||||||
id: dashboard
|
id: dashboard
|
||||||
|
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.topMargin: (-implicitHeight - 5) * offsetScale
|
||||||
offsetScale: dashboardWrapper.offsetScale
|
offsetScale: dashboardWrapper.offsetScale
|
||||||
position: root.geometry.position
|
|
||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+8
-13
@@ -7,18 +7,17 @@ import qs.Modules.Bar as Bar
|
|||||||
Region {
|
Region {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
// required property Bar.BarLoader bar
|
required property Bar.BarLoader bar
|
||||||
readonly property real borderThickness: win.borderThickness
|
readonly property real borderThickness: win.borderThickness
|
||||||
required property EdgeGeometry geometry
|
|
||||||
readonly property alias menuPopoutRegion: menuPopoutRegion
|
readonly property alias menuPopoutRegion: menuPopoutRegion
|
||||||
required property Panels panels
|
required property Panels panels
|
||||||
required property var win
|
required property var win
|
||||||
|
|
||||||
height: win.height - geometry.insetTop(borderThickness, true) - geometry.insetBottom(borderThickness, true) - win.dragMaskPadding * 2
|
height: win.height - bar.implicitHeight - win.borderThickness - win.dragMaskPadding * 2
|
||||||
intersection: Intersection.Xor
|
intersection: Intersection.Xor
|
||||||
width: win.width - geometry.insetLeft(borderThickness, true) * 2 - win.dragMaskPadding * 2
|
width: win.width - win.borderThickness * 2 - win.dragMaskPadding * 2
|
||||||
x: geometry.insetLeft(borderThickness, true) + win.dragMaskPadding
|
x: win.borderThickness + win.dragMaskPadding
|
||||||
y: geometry.insetTop(borderThickness, true) + win.dragMaskPadding
|
y: bar.implicitHeight + win.dragMaskPadding
|
||||||
|
|
||||||
R {
|
R {
|
||||||
panel: root.panels.dashboardWrapper
|
panel: root.panels.dashboardWrapper
|
||||||
@@ -42,21 +41,17 @@ Region {
|
|||||||
}
|
}
|
||||||
|
|
||||||
R {
|
R {
|
||||||
height: panel.height + root.geometry.insetTop(root.borderThickness)
|
|
||||||
panel: root.panels.notifications
|
panel: root.panels.notifications
|
||||||
y: 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
R {
|
R {
|
||||||
height: panel.height * (1 - root.panels.utilities.offsetScale) + root.geometry.insetBottom(root.borderThickness)
|
height: panel.height * (1 - root.panels.utilities.offsetScale) + root.borderThickness
|
||||||
panel: root.panels.utilities
|
panel: root.panels.utilities
|
||||||
y: root.win.height - height
|
y: root.win.height - height
|
||||||
}
|
}
|
||||||
|
|
||||||
R {
|
R {
|
||||||
height: root.geometry.horizontal ? panel.height * (1 - root.panels.popoutsWrapper.offsetScale) : panel.height
|
|
||||||
panel: root.panels.popoutsWrapper
|
panel: root.panels.popoutsWrapper
|
||||||
width: root.geometry.horizontal ? panel.width : panel.width * (1 - root.panels.popoutsWrapper.offsetScale)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
R {
|
R {
|
||||||
@@ -87,7 +82,7 @@ Region {
|
|||||||
height: panel.height
|
height: panel.height
|
||||||
intersection: Intersection.Subtract
|
intersection: Intersection.Subtract
|
||||||
width: panel.width
|
width: panel.width
|
||||||
x: panel.x + root.geometry.insetLeft(root.borderThickness)
|
x: panel.x + root.borderThickness
|
||||||
y: panel.y + root.geometry.insetTop(root.borderThickness)
|
y: panel.y + root.bar.implicitHeight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+37
-40
@@ -8,6 +8,7 @@ import Quickshell.Io
|
|||||||
import Quickshell.Wayland
|
import Quickshell.Wayland
|
||||||
import Quickshell.Hyprland
|
import Quickshell.Hyprland
|
||||||
import ZShell.Blobs
|
import ZShell.Blobs
|
||||||
|
import qs.Modules.SysTray.Popouts.Network as N
|
||||||
import qs.Daemons
|
import qs.Daemons
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Modules.Bar
|
import qs.Modules.Bar
|
||||||
@@ -33,7 +34,6 @@ CustomWindow {
|
|||||||
return 100;
|
return 100;
|
||||||
}
|
}
|
||||||
property real fsTransitionProg: hasFullscreen ? 1 : 0
|
property real fsTransitionProg: hasFullscreen ? 1 : 0
|
||||||
readonly property alias geometry: geometry
|
|
||||||
readonly property bool hasFullscreen: {
|
readonly property bool hasFullscreen: {
|
||||||
if (hasSpecialWorkspace) {
|
if (hasSpecialWorkspace) {
|
||||||
const specialName = monitor?.lastIpcObject.specialWorkspace?.name;
|
const specialName = monitor?.lastIpcObject.specialWorkspace?.name;
|
||||||
@@ -96,21 +96,13 @@ CustomWindow {
|
|||||||
panels.popouts.hasCurrent = false;
|
panels.popouts.hasCurrent = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
EdgeGeometry {
|
|
||||||
id: geometry
|
|
||||||
|
|
||||||
bar: bar
|
|
||||||
configPosition: Config.bar.position
|
|
||||||
win: root
|
|
||||||
}
|
|
||||||
|
|
||||||
Region {
|
Region {
|
||||||
id: emptyRegion
|
id: emptyRegion
|
||||||
|
|
||||||
height: panels.notifications.height
|
height: panels.notifications.height
|
||||||
width: panels.notifications.width
|
width: panels.notifications.width
|
||||||
x: panels.notifications.x + geometry.insetLeft(root.borderThickness)
|
x: panels.notifications.x + root.borderThickness
|
||||||
y: panels.notifications.y + geometry.insetTop(root.borderThickness)
|
y: panels.notifications.y + bar.implicitHeight
|
||||||
|
|
||||||
Region {
|
Region {
|
||||||
height: panels.osd.height
|
height: panels.osd.height
|
||||||
@@ -123,7 +115,7 @@ CustomWindow {
|
|||||||
Regions {
|
Regions {
|
||||||
id: regions
|
id: regions
|
||||||
|
|
||||||
geometry: geometry
|
bar: bar
|
||||||
panels: panels
|
panels: panels
|
||||||
win: root
|
win: root
|
||||||
}
|
}
|
||||||
@@ -138,7 +130,17 @@ CustomWindow {
|
|||||||
HyprlandFocusGrab {
|
HyprlandFocusGrab {
|
||||||
id: focusGrab
|
id: focusGrab
|
||||||
|
|
||||||
active: visibilities.dock || visibilities.resources || visibilities.launcher || visibilities.sidebar || visibilities.dashboard || visibilities.settings || visibilities.clipboard || (panels.popouts.hasCurrent && panels.popouts.currentName.startsWith("traymenu") && (!Config.bar.tray.showOnHover || (panels.popouts.current as StackView)?.depth > 1))
|
active: {
|
||||||
|
const v = visibilities;
|
||||||
|
const conf = Config;
|
||||||
|
if (!N.PopupManager.closed && panels.popouts.hasCurrent)
|
||||||
|
return true;
|
||||||
|
if ((v.launcher && conf.launcher.enabled) || (v.sidebar && conf.sidebar.enabled) || (v.resources && conf.dashboard.performance.enabled) || (v.dashboard && conf.dashboard.enabled) || v.settings || (v.clipboard && conf.clipboard.enabled) || (v.dock && conf.dock.enabled))
|
||||||
|
return true;
|
||||||
|
if (panels.popouts.hasCurrent && panels.popouts.currentName.startsWith("traymenu") && (!conf.bar.tray.showOnHover || (panels.popouts.current as StackView)?.depth > 1))
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
windows: [root]
|
windows: [root]
|
||||||
|
|
||||||
onCleared: {
|
onCleared: {
|
||||||
@@ -202,10 +204,10 @@ CustomWindow {
|
|||||||
BlobInvertedRect {
|
BlobInvertedRect {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: -50
|
anchors.margins: -50
|
||||||
borderBottom: geometry.insetBottom(root.borderThickness) - anchors.margins - root.sdfBorderOffset
|
borderBottom: root.borderThickness - anchors.margins - root.sdfBorderOffset
|
||||||
borderLeft: geometry.insetLeft(root.borderThickness) - anchors.margins - root.sdfBorderOffset
|
borderLeft: root.borderThickness - anchors.margins - root.sdfBorderOffset
|
||||||
borderRight: root.borderThickness - anchors.margins - root.sdfBorderOffset
|
borderRight: root.borderThickness - anchors.margins - root.sdfBorderOffset
|
||||||
borderTop: geometry.insetTop(root.borderThickness) - anchors.margins - root.sdfBorderOffset
|
borderTop: bar.implicitHeight - anchors.margins - root.sdfBorderOffset
|
||||||
group: blobGroup
|
group: blobGroup
|
||||||
radius: root.borderRounding
|
radius: root.borderRounding
|
||||||
}
|
}
|
||||||
@@ -213,15 +215,15 @@ CustomWindow {
|
|||||||
PanelBg {
|
PanelBg {
|
||||||
id: dashBg
|
id: dashBg
|
||||||
|
|
||||||
property real extraExtent: 0.2
|
property real extraHeight: 0.2
|
||||||
|
|
||||||
deformAmount: 0.06
|
deformAmount: 0.06
|
||||||
implicitHeight: panels.dashboard.height * (geometry.horizontal ? 1 + extraExtent : 1)
|
implicitHeight: panels.dashboard.height * (1 + extraHeight)
|
||||||
implicitWidth: panels.dashboard.width * (geometry.horizontal ? 1 : 1 + extraExtent)
|
implicitWidth: panels.dashboard.width
|
||||||
panel: panels.dashboardWrapper
|
panel: panels.dashboardWrapper
|
||||||
radius: Tokens.rounding.normal
|
radius: Tokens.rounding.normal
|
||||||
x: panels.dashboardWrapper.x + panels.dashboard.x + geometry.insetLeft(root.borderThickness) - (geometry.horizontal ? 0 : panels.dashboard.width * extraExtent)
|
x: panels.dashboardWrapper.x + panels.dashboard.x + root.borderThickness
|
||||||
y: panels.dashboardWrapper.y + panels.dashboard.y + geometry.insetTop(root.borderThickness) - (geometry.horizontal && geometry.position !== "bottom" ? panels.dashboard.height * extraExtent : 0)
|
y: panels.dashboardWrapper.y + panels.dashboard.y + bar.implicitHeight - panels.dashboard.height * extraHeight
|
||||||
}
|
}
|
||||||
|
|
||||||
PanelBg {
|
PanelBg {
|
||||||
@@ -233,7 +235,7 @@ CustomWindow {
|
|||||||
implicitHeight: panels.launcher.height * (1 + extraHeight)
|
implicitHeight: panels.launcher.height * (1 + extraHeight)
|
||||||
panel: panels.launcher
|
panel: panels.launcher
|
||||||
radius: Tokens.rounding.smallest + 5
|
radius: Tokens.rounding.smallest + 5
|
||||||
y: panels.launcher.y + geometry.insetTop(root.borderThickness)
|
y: panels.launcher.y + bar.implicitHeight
|
||||||
}
|
}
|
||||||
|
|
||||||
PanelBg {
|
PanelBg {
|
||||||
@@ -254,7 +256,8 @@ CustomWindow {
|
|||||||
implicitWidth: panels.osd.width
|
implicitWidth: panels.osd.width
|
||||||
panel: panels.osdWrapper
|
panel: panels.osdWrapper
|
||||||
radius: 20
|
radius: 20
|
||||||
x: panels.osdWrapper.x + panels.osd.x + geometry.insetLeft(root.borderThickness)
|
x: panels.osdWrapper.x + panels.osd.x + root.borderThickness
|
||||||
|
y: panels.osdWrapper.y + panels.osd.y + bar.implicitHeight
|
||||||
}
|
}
|
||||||
|
|
||||||
PanelBg {
|
PanelBg {
|
||||||
@@ -276,17 +279,17 @@ CustomWindow {
|
|||||||
PanelBg {
|
PanelBg {
|
||||||
id: popoutBg
|
id: popoutBg
|
||||||
|
|
||||||
property real extraExtent: 0.2
|
property real extraHeight: 0.2
|
||||||
|
|
||||||
deformAmount: panels.popouts.currentName.startsWith("traymenu") ? 0.15 : 0.08
|
deformAmount: panels.popouts.currentName.startsWith("traymenu") ? 0.15 : 0.08
|
||||||
implicitHeight: panels.popouts.height * (geometry.horizontal ? 1 + extraExtent : 1)
|
implicitHeight: panels.popouts.height * (1 + extraHeight)
|
||||||
implicitWidth: panels.popouts.width * (geometry.horizontal ? 1 : 1 + extraExtent)
|
implicitWidth: panels.popouts.width
|
||||||
panel: panels.popoutsWrapper
|
panel: panels.popoutsWrapper
|
||||||
radius: panels.popouts.current?.panelRadius ?? Tokens.rounding.normal
|
radius: panels.popouts.current?.panelRadius ?? Tokens.rounding.normal
|
||||||
x: panels.popoutsWrapper.x + panels.popouts.x + geometry.insetLeft(root.borderThickness) - (geometry.horizontal ? 0 : panels.popouts.width * extraExtent)
|
x: panels.popoutsWrapper.x + panels.popouts.x + root.borderThickness
|
||||||
y: panels.popoutsWrapper.y + panels.popouts.y + geometry.insetTop(root.borderThickness) - (geometry.barOnTop ? panels.popouts.height * extraExtent : 0)
|
y: panels.popoutsWrapper.y + panels.popouts.y + bar.implicitHeight - panels.popouts.height * extraHeight
|
||||||
|
|
||||||
Behavior on extraExtent {
|
Behavior on extraHeight {
|
||||||
Anim {
|
Anim {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -300,8 +303,8 @@ CustomWindow {
|
|||||||
implicitWidth: panels.resources.width
|
implicitWidth: panels.resources.width
|
||||||
panel: panels.resourcesWrapper
|
panel: panels.resourcesWrapper
|
||||||
radius: Tokens.rounding.large
|
radius: Tokens.rounding.large
|
||||||
x: panels.resourcesWrapper.x + panels.resources.x + geometry.insetLeft(root.borderThickness)
|
x: panels.resourcesWrapper.x + panels.resources.x + root.borderThickness
|
||||||
y: panels.resourcesWrapper.y + panels.resources.y + geometry.insetTop(root.borderThickness)
|
y: panels.resourcesWrapper.y + panels.resources.y + bar.implicitHeight
|
||||||
}
|
}
|
||||||
|
|
||||||
PanelBg {
|
PanelBg {
|
||||||
@@ -379,7 +382,6 @@ CustomWindow {
|
|||||||
borderThickness: root.borderLayoutThickness
|
borderThickness: root.borderLayoutThickness
|
||||||
drawing: drawing
|
drawing: drawing
|
||||||
enabled: true
|
enabled: true
|
||||||
geometry: geometry
|
|
||||||
panels: panels
|
panels: panels
|
||||||
popouts: panels.popouts
|
popouts: panels.popouts
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
@@ -391,7 +393,6 @@ CustomWindow {
|
|||||||
bar: bar
|
bar: bar
|
||||||
borderThickness: root.borderThickness
|
borderThickness: root.borderThickness
|
||||||
drawingItem: drawing
|
drawingItem: drawing
|
||||||
geometry: geometry
|
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
visibilities: visibilities
|
visibilities: visibilities
|
||||||
|
|
||||||
@@ -433,18 +434,14 @@ CustomWindow {
|
|||||||
BarLoader {
|
BarLoader {
|
||||||
id: bar
|
id: bar
|
||||||
|
|
||||||
anchors.bottom: geometry.barOnBottom ? parent.bottom : undefined
|
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.top: geometry.barOnBottom ? undefined : parent.top
|
anchors.right: parent.right
|
||||||
enabled: !visibilities.isDrawing
|
enabled: !visibilities.isDrawing
|
||||||
fullscreen: root.hasFullscreen
|
fullscreen: root.hasFullscreen
|
||||||
height: geometry.horizontal ? implicitHeight : parent.height
|
|
||||||
popouts: panels.popouts
|
popouts: panels.popouts
|
||||||
popoutsWrapper: panels.popoutsWrapper
|
popoutsWrapper: panels.popoutsWrapper
|
||||||
position: geometry.position
|
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
visibilities: visibilities
|
visibilities: visibilities
|
||||||
width: geometry.horizontal ? parent.width : implicitWidth
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -457,7 +454,7 @@ CustomWindow {
|
|||||||
implicitHeight: panel.height
|
implicitHeight: panel.height
|
||||||
implicitWidth: panel.width
|
implicitWidth: panel.width
|
||||||
radius: Tokens.rounding.smallest
|
radius: Tokens.rounding.smallest
|
||||||
x: panel.x + geometry.insetLeft(root.borderThickness)
|
x: panel.x + root.borderThickness
|
||||||
y: panel.y + geometry.insetTop(root.borderThickness)
|
y: panel.y + bar.implicitHeight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-52
@@ -1,6 +1,6 @@
|
|||||||
pragma Singleton
|
pragma Singleton
|
||||||
|
|
||||||
import QtQuick
|
import ZShell.Config
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Services.Notifications
|
import Quickshell.Services.Notifications
|
||||||
|
|
||||||
@@ -77,16 +77,6 @@ Singleton {
|
|||||||
"99": "thunderstorm"
|
"99": "thunderstorm"
|
||||||
})
|
})
|
||||||
|
|
||||||
function getAppCategoryIcon(name: string, fallback: string): string {
|
|
||||||
const categories = DesktopEntries.heuristicLookup(name)?.categories;
|
|
||||||
|
|
||||||
if (categories)
|
|
||||||
for (const [key, value] of Object.entries(categoryIcons))
|
|
||||||
if (categories.includes(key))
|
|
||||||
return value;
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getAppIcon(name: string, fallback: string): string {
|
function getAppIcon(name: string, fallback: string): string {
|
||||||
const icon = DesktopEntries.heuristicLookup(name)?.icon;
|
const icon = DesktopEntries.heuristicLookup(name)?.icon;
|
||||||
if (fallback !== "undefined")
|
if (fallback !== "undefined")
|
||||||
@@ -176,32 +166,6 @@ Singleton {
|
|||||||
return "chat";
|
return "chat";
|
||||||
}
|
}
|
||||||
|
|
||||||
function getSpecialWsIcon(name: string): string {
|
|
||||||
name = name.toLowerCase().slice("special:".length);
|
|
||||||
|
|
||||||
if (name === "special")
|
|
||||||
return "star";
|
|
||||||
if (name === "communication")
|
|
||||||
return "forum";
|
|
||||||
if (name === "music")
|
|
||||||
return "music_cast";
|
|
||||||
if (name === "todo")
|
|
||||||
return "checklist";
|
|
||||||
if (name === "sysmon")
|
|
||||||
return "monitor_heart";
|
|
||||||
return name[0].toUpperCase();
|
|
||||||
}
|
|
||||||
|
|
||||||
function getTrayIcon(id: string, icon: string): string {
|
|
||||||
if (icon.includes("?path=")) {
|
|
||||||
const [name, path] = icon.split("?path=");
|
|
||||||
const file = name.slice(name.lastIndexOf("/") + 1);
|
|
||||||
const themed = Quickshell.iconPath(file, true);
|
|
||||||
icon = themed ? themed : Qt.resolvedUrl(`${path}/${file}`);
|
|
||||||
}
|
|
||||||
return icon;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getVolumeIcon(volume: real, isMuted: bool): string {
|
function getVolumeIcon(volume: real, isMuted: bool): string {
|
||||||
if (isMuted)
|
if (isMuted)
|
||||||
return "no_sound";
|
return "no_sound";
|
||||||
@@ -217,19 +181,4 @@ Singleton {
|
|||||||
return weatherIcons[code];
|
return weatherIcons[code];
|
||||||
return "air";
|
return "air";
|
||||||
}
|
}
|
||||||
|
|
||||||
function matchIconConfig(name: string, iconConfig: var): bool {
|
|
||||||
if (!iconConfig.icon)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (iconConfig.regex) {
|
|
||||||
const re = new RegExp(iconConfig.regex, iconConfig.flags ?? "");
|
|
||||||
if (re.test(name))
|
|
||||||
return true;
|
|
||||||
} else if (iconConfig.name === name) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,114 @@
|
|||||||
|
pragma Singleton
|
||||||
|
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Networking
|
||||||
|
import QtQuick
|
||||||
|
|
||||||
|
Singleton {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property bool active: false
|
||||||
|
readonly property list<Network> connectedNetworks: networks.filter(n => n.connected)
|
||||||
|
property Network connectingNetwork
|
||||||
|
readonly property list<NetworkDevice> devices: Networking.devices.values
|
||||||
|
property Network failedNetwork
|
||||||
|
readonly property list<Network> knownNetworks: networks.filter(n => n.known && !n.connected)
|
||||||
|
readonly property list<Network> networks: {
|
||||||
|
const list = [];
|
||||||
|
for (const d of wifiDevices) {
|
||||||
|
for (const n of d.networks.values) {
|
||||||
|
if (!list.includes(n))
|
||||||
|
list.push(n);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
property bool scanning: false
|
||||||
|
readonly property list<Network> unknownNetworks: networks.filter(n => !n.known)
|
||||||
|
readonly property list<WifiDevice> wifiDevices: devices.filter(d => wifiDevice(d))
|
||||||
|
readonly property bool wifiEnabled: Networking.wifiEnabled
|
||||||
|
|
||||||
|
signal networkConnected
|
||||||
|
|
||||||
|
function isSecure(security): bool {
|
||||||
|
return (security === WifiSecurityType.WpaPsk || security === WifiSecurityType.Wpa2Psk || security === WifiSecurityType.Sae);
|
||||||
|
}
|
||||||
|
|
||||||
|
function requestConnect(network: Network, secret = undefined): void {
|
||||||
|
connectingNetwork = network;
|
||||||
|
if (secret === undefined || secret === "") {
|
||||||
|
network.connect();
|
||||||
|
} else {
|
||||||
|
(network as WifiNetwork).connectWithPsk(secret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function setScan(value: bool): void {
|
||||||
|
for (const d of wifiDevices) {
|
||||||
|
d.scannerEnabled = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function setWifi(value: bool): void {
|
||||||
|
Networking.wifiEnabled = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
function wifiDevice(dev): bool {
|
||||||
|
return dev.type === DeviceType.Wifi;
|
||||||
|
}
|
||||||
|
|
||||||
|
onActiveChanged: {
|
||||||
|
for (const d of wifiDevices)
|
||||||
|
d.scannerEnabled = active;
|
||||||
|
}
|
||||||
|
|
||||||
|
Timer {
|
||||||
|
id: flushFailed
|
||||||
|
|
||||||
|
interval: 5000
|
||||||
|
running: root.failedNetwork
|
||||||
|
|
||||||
|
onTriggered: {
|
||||||
|
root.failedNetwork = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Timer {
|
||||||
|
id: checkConnection
|
||||||
|
|
||||||
|
interval: 500
|
||||||
|
repeat: true
|
||||||
|
running: root.connectingNetwork
|
||||||
|
|
||||||
|
onTriggered: {
|
||||||
|
var completedNetwork;
|
||||||
|
|
||||||
|
switch (root.connectingNetwork.state) {
|
||||||
|
case ConnectionState.Connecting:
|
||||||
|
break;
|
||||||
|
case ConnectionState.Connected:
|
||||||
|
completedNetwork = root.connectingNetwork;
|
||||||
|
root.networkConnected();
|
||||||
|
break;
|
||||||
|
case ConnectionState.Disconnected:
|
||||||
|
root.failedNetwork = root.connectingNetwork;
|
||||||
|
completedNetwork = root.connectingNetwork;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (completedNetwork) {
|
||||||
|
root.connectingNetwork = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Timer {
|
||||||
|
interval: 10000
|
||||||
|
running: checkConnection.running
|
||||||
|
|
||||||
|
onTriggered: {
|
||||||
|
root.failedNetwork = root.connectingNetwork;
|
||||||
|
root.connectingNetwork = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -73,6 +73,7 @@ Singleton {
|
|||||||
|
|
||||||
Config.dock.pinnedApps = pinnedApps;
|
Config.dock.pinnedApps = pinnedApps;
|
||||||
root.unpinnedOrder = visibleUnpinned.concat(root.unpinnedOrder.map(normalizeId).filter(id => !pinnedApps.includes(id) && !visibleUnpinned.includes(id)));
|
root.unpinnedOrder = visibleUnpinned.concat(root.unpinnedOrder.map(normalizeId).filter(id => !pinnedApps.includes(id) && !visibleUnpinned.includes(id)));
|
||||||
|
Config.saveNoToast();
|
||||||
}
|
}
|
||||||
|
|
||||||
function isPinned(appId) {
|
function isPinned(appId) {
|
||||||
|
|||||||
+21
-50
@@ -3,28 +3,23 @@ pragma ComponentBehavior: Bound
|
|||||||
import Quickshell
|
import Quickshell
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
|
import qs.Modules
|
||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import qs.Modules.Bar.Components
|
import qs.Modules.SysTray
|
||||||
import qs.Modules.Bar.Popouts
|
import qs.Modules.Updates
|
||||||
|
|
||||||
GridLayout {
|
RowLayout {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
required property bool fullscreen
|
required property bool fullscreen
|
||||||
required property bool horizontal
|
|
||||||
required property Wrapper popouts
|
required property Wrapper popouts
|
||||||
required property ClipWrapper popoutsWrapper
|
required property ClipWrapper popoutsWrapper
|
||||||
required property ShellScreen screen
|
required property ShellScreen screen
|
||||||
readonly property int vPadding: 6
|
readonly property int vPadding: 6
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
function axisCenterOf(item: Item): real {
|
function checkPopout(x: real): void {
|
||||||
const c = item.mapToItem(root, item.implicitWidth / 2, item.implicitHeight / 2);
|
const ch = childAt(x, height / 2) as EntryWrapper;
|
||||||
return horizontal ? c.x : c.y;
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkPopout(pos: real): void {
|
|
||||||
const ch = (horizontal ? childAt(pos, height / 2) : childAt(width / 2, pos)) as EntryWrapper;
|
|
||||||
const id = ch?.entryId;
|
const id = ch?.entryId;
|
||||||
|
|
||||||
if (!ch || id === undefined) {
|
if (!ch || id === undefined) {
|
||||||
@@ -38,21 +33,26 @@ GridLayout {
|
|||||||
|
|
||||||
if (id === "statusIcons" && Config.bar.popouts.statusIcons) {
|
if (id === "statusIcons" && Config.bar.popouts.statusIcons) {
|
||||||
const items = (ch.item as StatusIcons).items;
|
const items = (ch.item as StatusIcons).items;
|
||||||
const icon = horizontal ? items.childAt(mapToItem(items, pos, 0).x, items.height / 2) : items.childAt(items.width / 2, mapToItem(items, 0, pos).y);
|
const localX = mapToItem(items, x, 0).x;
|
||||||
|
const icon = items.childAt(localX, items.height / 2);
|
||||||
if (icon) {
|
if (icon) {
|
||||||
popouts.currentName = icon.name;
|
popouts.currentName = icon.name;
|
||||||
popouts.currentCenter = Qt.binding(() => axisCenterOf(icon));
|
popouts.currentCenter = Qt.binding(() => icon.mapToItem(root, icon.implicitWidth / 2, 0).x);
|
||||||
popouts.hasCurrent = true;
|
popouts.hasCurrent = true;
|
||||||
}
|
}
|
||||||
} else if (id === "tray" && Config.bar.popouts.tray && Config.bar.tray.showOnHover) {
|
} else if (id === "tray" && Config.bar.popouts.tray && Config.bar.tray.showOnHover) {
|
||||||
const tray = ch.item as TrayIcons;
|
const tray = ch.item as TrayIcons;
|
||||||
const layout = tray.layout;
|
const layout = tray.layout;
|
||||||
const trayItem = horizontal ? layout.childAt(mapToItem(layout, pos, 0).x, layout.height / 2) : layout.childAt(tray.width / 2, mapToItem(layout, 0, pos).y);
|
const localX = mapToItem(layout, x, 0).x;
|
||||||
|
const trayItem = layout.childAt(localX, layout.height / 2);
|
||||||
|
|
||||||
if (trayItem) {
|
if (trayItem) {
|
||||||
const idx = trayItem.index;
|
const idx = trayItem.index;
|
||||||
popouts.currentName = `traymenu${idx}`;
|
popouts.currentName = `traymenu${idx}`;
|
||||||
popouts.currentCenter = Qt.binding(() => axisCenterOf(trayItem));
|
popouts.currentCenter = Qt.binding(() => {
|
||||||
|
const it = tray.items.itemAt(idx);
|
||||||
|
return it ? it.mapToItem(root, it.implicitWidth / 2, 0).x : popouts.currentCenter;
|
||||||
|
});
|
||||||
popouts.hasCurrent = true;
|
popouts.hasCurrent = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,19 +62,12 @@ GridLayout {
|
|||||||
|
|
||||||
if (id === "updates") {
|
if (id === "updates") {
|
||||||
popouts.currentName = "updates";
|
popouts.currentName = "updates";
|
||||||
popouts.currentCenter = Qt.binding(() => axisCenterOf(ch.item as Item));
|
popouts.currentCenter = Qt.binding(() => ch.item.mapToItem(root, (ch.item as Item).implicitWidth / 2, 0).x);
|
||||||
popouts.hasCurrent = true;
|
popouts.hasCurrent = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function entryAt(pos: real): string {
|
spacing: Tokens.spacing.small
|
||||||
const ch = (horizontal ? childAt(pos, height / 2) : childAt(width / 2, pos)) as EntryWrapper;
|
|
||||||
return ch?.entryId ?? "";
|
|
||||||
}
|
|
||||||
|
|
||||||
columnSpacing: Tokens.spacing.small
|
|
||||||
columns: horizontal ? -1 : 1
|
|
||||||
rowSpacing: Tokens.spacing.small
|
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
id: repeater
|
id: repeater
|
||||||
@@ -91,7 +84,6 @@ GridLayout {
|
|||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
HyprsunsetWidget {
|
HyprsunsetWidget {
|
||||||
horizontal: root.horizontal
|
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -101,8 +93,7 @@ GridLayout {
|
|||||||
roleValue: "spacer"
|
roleValue: "spacer"
|
||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
Layout.fillHeight: !root.horizontal
|
Layout.fillWidth: true
|
||||||
Layout.fillWidth: root.horizontal
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -111,7 +102,6 @@ GridLayout {
|
|||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
Workspaces {
|
Workspaces {
|
||||||
horizontal: root.horizontal
|
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
@@ -123,7 +113,6 @@ GridLayout {
|
|||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
TrayIcons {
|
TrayIcons {
|
||||||
horizontal: root.horizontal
|
|
||||||
loader: root
|
loader: root
|
||||||
popouts: root.popouts
|
popouts: root.popouts
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
@@ -136,7 +125,6 @@ GridLayout {
|
|||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
StatusIcons {
|
StatusIcons {
|
||||||
horizontal: root.horizontal
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -146,7 +134,6 @@ GridLayout {
|
|||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
Resources {
|
Resources {
|
||||||
horizontal: root.horizontal
|
|
||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
@@ -158,7 +145,6 @@ GridLayout {
|
|||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
UpdatesWidget {
|
UpdatesWidget {
|
||||||
horizontal: root.horizontal
|
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -169,7 +155,6 @@ GridLayout {
|
|||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
NotifBell {
|
NotifBell {
|
||||||
horizontal: root.horizontal
|
|
||||||
popouts: root.popouts
|
popouts: root.popouts
|
||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
@@ -182,7 +167,6 @@ GridLayout {
|
|||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
Clock {
|
Clock {
|
||||||
horizontal: root.horizontal
|
|
||||||
loader: root
|
loader: root
|
||||||
popouts: root.popouts
|
popouts: root.popouts
|
||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
@@ -197,27 +181,16 @@ GridLayout {
|
|||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
WindowTitle {
|
WindowTitle {
|
||||||
bar: root
|
bar: root
|
||||||
horizontal: root.horizontal
|
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DelegateChoice {
|
|
||||||
roleValue: "network"
|
|
||||||
|
|
||||||
delegate: EntryWrapper {
|
|
||||||
NetworkWidget {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "media"
|
roleValue: "media"
|
||||||
|
|
||||||
delegate: EntryWrapper {
|
delegate: EntryWrapper {
|
||||||
MediaWidget {
|
MediaWidget {
|
||||||
horizontal: root.horizontal
|
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -231,11 +204,9 @@ GridLayout {
|
|||||||
default property Item item
|
default property Item item
|
||||||
required property var modelData
|
required property var modelData
|
||||||
|
|
||||||
Layout.alignment: root.horizontal ? Qt.AlignVCenter : Qt.AlignHCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
Layout.bottomMargin: !root.horizontal && index === repeater.count - 1 ? root.vPadding : 0
|
Layout.leftMargin: index === 0 ? root.vPadding : (entryId === "statusIcons") ? -root.spacing + Tokens.spacing.extraSmall : 0
|
||||||
Layout.leftMargin: root.horizontal && index === 0 ? root.vPadding : (entryId === "statusIcons" && root.horizontal) ? -root.rowSpacing + Tokens.spacing.extraSmall : 0
|
Layout.rightMargin: index === repeater.count - 1 ? root.vPadding : 0
|
||||||
Layout.rightMargin: root.horizontal && index === repeater.count - 1 ? root.vPadding : 0
|
|
||||||
Layout.topMargin: !root.horizontal && index === 0 ? root.vPadding : (entryId === "statusIcons" && !root.horizontal) ? -root.columnSpacing + Tokens.spacing.extraSmall : 0
|
|
||||||
children: item
|
children: item
|
||||||
implicitHeight: item?.implicitHeight ?? 0
|
implicitHeight: item?.implicitHeight ?? 0
|
||||||
implicitWidth: item?.implicitWidth ?? 0
|
implicitWidth: item?.implicitWidth ?? 0
|
||||||
|
|||||||
+19
-26
@@ -1,48 +1,44 @@
|
|||||||
pragma ComponentBehavior: Bound
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
import Quickshell
|
import Quickshell
|
||||||
|
import Quickshell.Hyprland
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import ZShell.Config
|
import QtQuick.Layouts
|
||||||
import qs.Modules.Bar.Popouts
|
|
||||||
import qs.Components
|
import qs.Components
|
||||||
|
import qs.Modules
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Helpers
|
||||||
|
import qs.Modules.SysTray
|
||||||
|
import qs.Modules.SysTray.Widgets
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
readonly property int clampedExtent: Math.max(Config.bar.border, extent)
|
readonly property int contentHeight: Config.bar.height + padding * 2
|
||||||
readonly property int contentThickness: Math.floor(Math.max(Config.bar.height, Tokens.bar.innerSize * (horizontal ? 1 : 1.5))) + padding * 2
|
readonly property int exclusiveZone: Config.bar.autoHide ? Config.bar.border : contentHeight
|
||||||
readonly property int exclusiveZone: Config.bar.autoHide ? Config.bar.border : contentThickness
|
|
||||||
property real extent: fullscreen ? 0 : Config.bar.border
|
|
||||||
required property bool fullscreen
|
required property bool fullscreen
|
||||||
readonly property bool horizontal: position !== "left"
|
|
||||||
property bool isHovered
|
property bool isHovered
|
||||||
readonly property int padding: Math.max(Tokens.padding.smaller, Config.bar.border)
|
readonly property int padding: Math.max(Tokens.padding.smaller, Config.bar.border)
|
||||||
required property Wrapper popouts
|
required property Wrapper popouts
|
||||||
required property ClipWrapper popoutsWrapper
|
required property ClipWrapper popoutsWrapper
|
||||||
required property string position
|
|
||||||
required property ShellScreen screen
|
required property ShellScreen screen
|
||||||
readonly property bool shouldBeVisible: !fullscreen && (!Config.bar.autoHide || visibilities.bar || isHovered)
|
readonly property bool shouldBeVisible: !fullscreen && (!Config.bar.autoHide || visibilities.bar || isHovered)
|
||||||
readonly property int vPadding: 6
|
readonly property int vPadding: 6
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
function checkPopout(pos: real): void {
|
function checkPopout(x: real): void {
|
||||||
(content.item as Bar)?.checkPopout(pos);
|
content.item?.checkPopout(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
function entryAt(pos: real): string {
|
implicitHeight: fullscreen ? 0 : Config.bar.border
|
||||||
return (content.item as Bar)?.entryAt(pos) ?? "";
|
visible: height > Config.bar.border
|
||||||
}
|
|
||||||
|
|
||||||
implicitHeight: extent
|
|
||||||
implicitWidth: extent
|
|
||||||
visible: extent > Config.bar.border
|
|
||||||
|
|
||||||
states: State {
|
states: State {
|
||||||
name: "visible"
|
name: "visible"
|
||||||
when: root.shouldBeVisible
|
when: root.shouldBeVisible
|
||||||
|
|
||||||
PropertyChanges {
|
PropertyChanges {
|
||||||
root.extent: root.contentThickness
|
root.implicitHeight: root.contentHeight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
transitions: [
|
transitions: [
|
||||||
@@ -51,7 +47,7 @@ Item {
|
|||||||
to: "visible"
|
to: "visible"
|
||||||
|
|
||||||
Anim {
|
Anim {
|
||||||
property: "extent"
|
property: "implicitHeight"
|
||||||
target: root
|
target: root
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -60,7 +56,7 @@ Item {
|
|||||||
to: ""
|
to: ""
|
||||||
|
|
||||||
Anim {
|
Anim {
|
||||||
property: "extent"
|
property: "implicitHeight"
|
||||||
target: root
|
target: root
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -70,16 +66,13 @@ Item {
|
|||||||
id: content
|
id: content
|
||||||
|
|
||||||
active: root.shouldBeVisible || root.visible
|
active: root.shouldBeVisible || root.visible
|
||||||
anchors.bottom: root.position !== "bottom" ? parent.bottom : undefined
|
anchors.bottom: parent.bottom
|
||||||
anchors.left: root.horizontal ? parent.left : undefined
|
anchors.left: parent.left
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
anchors.top: root.position !== "top" ? parent.top : undefined
|
|
||||||
height: root.contentThickness
|
|
||||||
width: root.contentThickness
|
|
||||||
|
|
||||||
sourceComponent: Bar {
|
sourceComponent: Bar {
|
||||||
fullscreen: root.fullscreen
|
fullscreen: root.fullscreen
|
||||||
horizontal: root.horizontal
|
height: root.contentHeight
|
||||||
popouts: root.popouts
|
popouts: root.popouts
|
||||||
popoutsWrapper: root.popoutsWrapper
|
popoutsWrapper: root.popoutsWrapper
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
|
|||||||
@@ -1,157 +0,0 @@
|
|||||||
pragma ComponentBehavior: Bound
|
|
||||||
|
|
||||||
import Quickshell
|
|
||||||
import QtQuick
|
|
||||||
import QtQuick.Layouts
|
|
||||||
import ZShell.Config
|
|
||||||
import qs.Modules.Bar.Popouts
|
|
||||||
import qs.Modules.Bar.Components.Common
|
|
||||||
import qs.Helpers
|
|
||||||
import qs.Components
|
|
||||||
import qs.Services
|
|
||||||
|
|
||||||
WidgetBase {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
readonly property color contentColor: visibilities.dashboard ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
|
||||||
readonly property string effectiveFormat: {
|
|
||||||
let fmt = Config.general.dateFormat;
|
|
||||||
if (!root.horizontal)
|
|
||||||
fmt = fmt.replace("dddd", "ddd");
|
|
||||||
return fmt;
|
|
||||||
}
|
|
||||||
readonly property var formatParts: {
|
|
||||||
const segments = root.effectiveFormat.split(" - ");
|
|
||||||
let datePart = "";
|
|
||||||
let timePart = "";
|
|
||||||
|
|
||||||
if (segments.length > 1) {
|
|
||||||
datePart = segments[0];
|
|
||||||
timePart = segments[1];
|
|
||||||
} else if (/[hms]/.test(segments[0])) {
|
|
||||||
timePart = segments[0];
|
|
||||||
} else {
|
|
||||||
datePart = segments[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
const dateTokens = datePart.trim().length ? datePart.trim().split(/\s+/) : [];
|
|
||||||
const timeTokens = timePart.trim().length ? timePart.trim().split(":") : [];
|
|
||||||
|
|
||||||
return {
|
|
||||||
dateTokens: dateTokens,
|
|
||||||
timeTokens: timeTokens
|
|
||||||
};
|
|
||||||
}
|
|
||||||
required property GridLayout loader
|
|
||||||
required property Wrapper popouts
|
|
||||||
readonly property real size: horizontal ? timeText.contentWidth + Tokens.padding.normal * 2 : verticalColumn.implicitHeight + Tokens.padding.larger * 2
|
|
||||||
required property PersistentProperties visibilities
|
|
||||||
|
|
||||||
color: visibilities.dashboard ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
|
||||||
implicitHeight: horizontal ? baseSize : size
|
|
||||||
implicitWidth: horizontal ? size : baseSize
|
|
||||||
radius: Tokens.rounding.full
|
|
||||||
|
|
||||||
CustomText {
|
|
||||||
id: timeText
|
|
||||||
|
|
||||||
anchors.centerIn: parent
|
|
||||||
color: root.contentColor
|
|
||||||
font: Config.appearance.font.family.mono // qmllint disable incompatible-type
|
|
||||||
height: implicitHeight
|
|
||||||
text: Time.dateStr
|
|
||||||
visible: root.horizontal
|
|
||||||
|
|
||||||
Behavior on color {
|
|
||||||
CAnim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ColumnLayout {
|
|
||||||
id: verticalColumn
|
|
||||||
|
|
||||||
anchors.centerIn: parent
|
|
||||||
spacing: Tokens.padding.small ?? 2
|
|
||||||
visible: !root.horizontal
|
|
||||||
width: root.baseSize
|
|
||||||
|
|
||||||
Repeater {
|
|
||||||
model: root.formatParts.dateTokens
|
|
||||||
|
|
||||||
CustomText {
|
|
||||||
required property string modelData
|
|
||||||
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
color: root.contentColor
|
|
||||||
font: Config.appearance.font.family.mono // qmllint disable incompatible-type
|
|
||||||
text: Qt.formatDateTime(Time.date, modelData)
|
|
||||||
|
|
||||||
Behavior on color {
|
|
||||||
CAnim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
Layout.bottomMargin: Tokens.padding.small ?? 2
|
|
||||||
Layout.topMargin: Tokens.padding.small ?? 2
|
|
||||||
color: root.contentColor
|
|
||||||
height: 1
|
|
||||||
implicitWidth: root.baseSize * 0.5
|
|
||||||
opacity: 0.4
|
|
||||||
radius: 1
|
|
||||||
visible: root.formatParts.dateTokens.length > 0 && root.formatParts.timeTokens.length > 0
|
|
||||||
}
|
|
||||||
|
|
||||||
Repeater {
|
|
||||||
model: root.formatParts.timeTokens
|
|
||||||
|
|
||||||
CustomText {
|
|
||||||
required property string modelData
|
|
||||||
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
color: root.contentColor
|
|
||||||
font: Config.appearance.font.family.mono // qmllint disable incompatible-type
|
|
||||||
text: {
|
|
||||||
if (modelData.includes("h"))
|
|
||||||
return Time.hourStr;
|
|
||||||
if (modelData.includes("m"))
|
|
||||||
return Time.minuteStr;
|
|
||||||
if (modelData.includes("s"))
|
|
||||||
return Time.secondStr;
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
Behavior on color {
|
|
||||||
CAnim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
CustomText {
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
color: root.contentColor
|
|
||||||
font: Config.appearance.font.family.mono // qmllint disable incompatible-type
|
|
||||||
text: Qt.formatDateTime(Time.date, "AP")
|
|
||||||
visible: Config.services.useTwelveHourClock && root.formatParts.timeTokens.length > 0
|
|
||||||
|
|
||||||
Behavior on color {
|
|
||||||
CAnim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
StateLayer {
|
|
||||||
acceptedButtons: Qt.LeftButton
|
|
||||||
color: root.contentColor
|
|
||||||
|
|
||||||
onClicked: {
|
|
||||||
root.visibilities.dashboard = !root.visibilities.dashboard;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
import QtQuick
|
|
||||||
import ZShell.Config
|
|
||||||
import qs.Components
|
|
||||||
import qs.Services
|
|
||||||
|
|
||||||
CustomRect {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
readonly property int baseSize: horizontal ? Math.max(Config.bar.height, Tokens.bar.innerSize) : Math.max(Config.bar.height, Math.floor(Tokens.bar.innerSize * 1.5))
|
|
||||||
required property bool horizontal
|
|
||||||
|
|
||||||
color: Colors.tPalette.m3surfaceContainer
|
|
||||||
implicitHeight: horizontal ? baseSize : width
|
|
||||||
implicitWidth: horizontal ? height : baseSize
|
|
||||||
radius: Tokens.rounding.full
|
|
||||||
}
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
import QtQuick
|
|
||||||
import QtQuick.Layouts
|
|
||||||
import ZShell.Config
|
|
||||||
import qs.Components
|
|
||||||
import qs.Modules.Bar.Components.Common
|
|
||||||
import qs.Helpers
|
|
||||||
import qs.Services
|
|
||||||
|
|
||||||
WidgetBase {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
readonly property string currentMedia: (Players.active?.trackTitle ?? qsTr("No media")) || qsTr("Unknown title")
|
|
||||||
readonly property int textWidth: Math.min(metrics.width, 200)
|
|
||||||
|
|
||||||
implicitHeight: horizontal ? baseSize : layout.implicitHeight + Tokens.padding.normal * 2
|
|
||||||
implicitWidth: horizontal ? layout.implicitWidth + Tokens.padding.normal * 2 : baseSize
|
|
||||||
radius: Tokens.rounding.full
|
|
||||||
|
|
||||||
Behavior on implicitHeight {
|
|
||||||
enabled: !root.horizontal
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Behavior on implicitWidth {
|
|
||||||
enabled: root.horizontal
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
TextMetrics {
|
|
||||||
id: metrics
|
|
||||||
|
|
||||||
font: mediatext.font
|
|
||||||
text: mediatext.text
|
|
||||||
}
|
|
||||||
|
|
||||||
GridLayout {
|
|
||||||
id: layout
|
|
||||||
|
|
||||||
anchors.bottomMargin: root.horizontal ? 0 : Tokens.padding.normal
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.leftMargin: root.horizontal ? Tokens.padding.normal : 0
|
|
||||||
anchors.rightMargin: root.horizontal ? Tokens.padding.normal : 0
|
|
||||||
anchors.topMargin: root.horizontal ? 0 : Tokens.padding.normal
|
|
||||||
columns: root.horizontal ? -1 : 1
|
|
||||||
|
|
||||||
Behavior on implicitWidth {
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
MaterialIcon {
|
|
||||||
Layout.alignment: root.horizontal ? Qt.AlignVCenter : Qt.AlignHCenter
|
|
||||||
animate: true
|
|
||||||
color: Players.active?.isPlaying ? Colors.palette.m3primary : Colors.palette.m3onSurface
|
|
||||||
font.pointSize: Tokens.font.size.larger
|
|
||||||
text: Players.active?.isPlaying ? "music_note" : "music_off"
|
|
||||||
}
|
|
||||||
|
|
||||||
MarqueeText {
|
|
||||||
id: mediatext
|
|
||||||
|
|
||||||
Layout.alignment: root.horizontal ? Qt.AlignVCenter : Qt.AlignHCenter
|
|
||||||
animate: true
|
|
||||||
color: Players.active?.isPlaying ? Colors.palette.m3primary : Colors.palette.m3onSurface
|
|
||||||
font.pointSize: Tokens.font.size.normal
|
|
||||||
horizontalAlignment: Text.AlignHCenter
|
|
||||||
implicitHeight: root.horizontal ? root.implicitHeight : root.textWidth
|
|
||||||
implicitWidth: root.horizontal ? root.textWidth : root.implicitWidth
|
|
||||||
marqueeEnabled: false
|
|
||||||
pauseMs: 4000
|
|
||||||
text: root.currentMedia
|
|
||||||
vertical: !root.horizontal
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
CustomMouseArea {
|
|
||||||
anchors.fill: parent
|
|
||||||
hoverEnabled: true
|
|
||||||
|
|
||||||
onContainsMouseChanged: {
|
|
||||||
if (!containsMouse) {
|
|
||||||
mediatext.marqueeEnabled = false;
|
|
||||||
} else {
|
|
||||||
mediatext.marqueeEnabled = true;
|
|
||||||
mediatext.anim.start();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
import Quickshell
|
|
||||||
import QtQuick
|
|
||||||
import QtQuick.Layouts
|
|
||||||
import qs.Components
|
|
||||||
import qs.Modules
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
anchors.bottom: parent.bottom
|
|
||||||
anchors.top: parent.top
|
|
||||||
implicitWidth: layout.implicitWidth
|
|
||||||
|
|
||||||
RowLayout {
|
|
||||||
id: layout
|
|
||||||
|
|
||||||
anchors.bottom: parent.bottom
|
|
||||||
anchors.top: parent.top
|
|
||||||
|
|
||||||
MaterialIcon {
|
|
||||||
Layout.alignment: Qt.AlignVCenter
|
|
||||||
text: "android_wifi_4_bar"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
import QtQuick
|
|
||||||
import QtQuick.Layouts
|
|
||||||
import ZShell.Config
|
|
||||||
import qs.Components
|
|
||||||
import qs.Modules.Bar.Components.Common
|
|
||||||
import qs.Helpers
|
|
||||||
import qs.Services
|
|
||||||
|
|
||||||
WidgetBase {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
property int countUpdates: Updates.availableUpdates
|
|
||||||
property color textColor: Colors.palette.m3onSurface
|
|
||||||
|
|
||||||
color: Colors.tPalette.m3surfaceContainer
|
|
||||||
implicitHeight: horizontal ? baseSize : content.implicitHeight + Tokens.spacing.small
|
|
||||||
implicitWidth: horizontal ? content.implicitWidth + Tokens.spacing.small * 2 : baseSize
|
|
||||||
radius: Tokens.rounding.full
|
|
||||||
|
|
||||||
GridLayout {
|
|
||||||
id: content
|
|
||||||
|
|
||||||
anchors.centerIn: parent
|
|
||||||
columnSpacing: Tokens.spacing.small
|
|
||||||
columns: root.horizontal ? -1 : 1
|
|
||||||
rowSpacing: -Tokens.spacing.extraSmall / 2
|
|
||||||
|
|
||||||
MaterialIcon {
|
|
||||||
Layout.alignment: root.horizontal ? Qt.AlignVCenter : Qt.AlignHCenter
|
|
||||||
font.pointSize: root.horizontal ? Tokens.font.size.larger : Tokens.font.size.large
|
|
||||||
text: "package_2"
|
|
||||||
}
|
|
||||||
|
|
||||||
CustomText {
|
|
||||||
Layout.alignment: root.horizontal ? Qt.AlignVCenter : Qt.AlignHCenter
|
|
||||||
color: root.textColor
|
|
||||||
font.pointSize: Tokens.font.size.normal
|
|
||||||
text: root.countUpdates
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,98 +0,0 @@
|
|||||||
pragma ComponentBehavior: Bound
|
|
||||||
|
|
||||||
import QtQuick
|
|
||||||
import ZShell.Config
|
|
||||||
import qs.Components
|
|
||||||
import qs.Helpers
|
|
||||||
import qs.Services
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
required property var bar
|
|
||||||
property color color: Colors.palette.m3primary
|
|
||||||
property Title current: text1
|
|
||||||
required property bool horizontal
|
|
||||||
// readonly property int maxWidth: 300
|
|
||||||
readonly property int maxSize: {
|
|
||||||
const otherModules = bar.children.filter(c => c.enabled && c.entryId && c.item !== this && c.entryId !== "spacer");
|
|
||||||
const otherSize = otherModules.reduce((acc, curr) => acc + (horizontal ? (curr.item?.nonAnimWidth ?? curr.width ?? 0) : (curr.item.nonAnimHeight ?? curr.height ?? 0)), 0);
|
|
||||||
return horizontal ? (bar.width - otherSize - bar.columnSpacing * (bar.children.length - 1) - bar.vPadding * 2) : (bar.height - otherSize - bar.rowSpacing * (bar.children.length - 1) - bar.vPadding * 4);
|
|
||||||
}
|
|
||||||
|
|
||||||
clip: true
|
|
||||||
implicitHeight: horizontal ? current.implicitHeight : current.implicitWidth + current.anchors.topMargin
|
|
||||||
implicitWidth: horizontal ? current.implicitWidth + current.anchors.leftMargin : current.implicitHeight + current.anchors.topMargin
|
|
||||||
|
|
||||||
Behavior on implicitHeight {
|
|
||||||
enabled: !root.horizontal
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
type: Anim.DefaultEffects
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Behavior on implicitWidth {
|
|
||||||
enabled: root.horizontal
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
type: Anim.DefaultEffects
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Title {
|
|
||||||
id: text1
|
|
||||||
}
|
|
||||||
|
|
||||||
Title {
|
|
||||||
id: text2
|
|
||||||
}
|
|
||||||
|
|
||||||
TextMetrics {
|
|
||||||
id: metrics
|
|
||||||
|
|
||||||
elide: Qt.ElideRight
|
|
||||||
elideWidth: root.maxSize - (root.horizontal ? root.current.anchors.leftMargin : 0)
|
|
||||||
font.family: "Rubik"
|
|
||||||
font.pointSize: Tokens.font.size.normal
|
|
||||||
text: Hypr.activeToplevel?.title ?? qsTr("Desktop")
|
|
||||||
|
|
||||||
onElideWidthChanged: root.current.text = elidedText
|
|
||||||
onTextChanged: {
|
|
||||||
const next = root.current === text1 ? text2 : text1;
|
|
||||||
next.text = elidedText;
|
|
||||||
root.current = next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
component Title: CustomText {
|
|
||||||
id: text
|
|
||||||
|
|
||||||
anchors.horizontalCenter: root.horizontal ? undefined : parent.horizontalCenter
|
|
||||||
anchors.left: root.horizontal ? parent.left : undefined
|
|
||||||
anchors.leftMargin: root.horizontal ? Tokens.spacing.small : 0
|
|
||||||
anchors.top: root.horizontal ? undefined : parent.top
|
|
||||||
anchors.topMargin: root.horizontal ? 0 : Tokens.spacing.small
|
|
||||||
anchors.verticalCenter: root.horizontal ? parent.verticalCenter : undefined
|
|
||||||
color: root.color
|
|
||||||
font.family: metrics.font.family
|
|
||||||
font.pointSize: metrics.font.pointSize
|
|
||||||
height: root.horizontal ? implicitHeight : implicitWidth
|
|
||||||
opacity: root.current === this ? 1 : 0
|
|
||||||
width: root.horizontal ? implicitWidth : implicitHeight
|
|
||||||
|
|
||||||
Behavior on opacity {
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
transform: [
|
|
||||||
Translate {
|
|
||||||
x: !root.horizontal ? -text.implicitWidth + text.implicitHeight : 0
|
|
||||||
},
|
|
||||||
Rotation {
|
|
||||||
angle: root.horizontal ? 0 : 270
|
|
||||||
origin.x: text.implicitHeight / 2
|
|
||||||
origin.y: text.implicitHeight / 2
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,87 +0,0 @@
|
|||||||
pragma ComponentBehavior: Bound
|
|
||||||
|
|
||||||
import QtQuick
|
|
||||||
import Quickshell
|
|
||||||
import qs.Components
|
|
||||||
import ZShell.Config
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
required property real borderThickness
|
|
||||||
readonly property alias content: content
|
|
||||||
readonly property bool horizontal: position !== "left"
|
|
||||||
// property real offsetScale: y > 0 || content.hasCurrent ? 0 : 1
|
|
||||||
property real offsetScale: {
|
|
||||||
if (content.hasCurrent)
|
|
||||||
return 0;
|
|
||||||
if (position === "top")
|
|
||||||
return y > 0 ? 0 : 1;
|
|
||||||
if (position === "bottom")
|
|
||||||
return 1;
|
|
||||||
return x > 0 ? 0 : 1;
|
|
||||||
}
|
|
||||||
required property string position
|
|
||||||
required property ShellScreen screen
|
|
||||||
|
|
||||||
anchors.bottom: position === "bottom" ? parent.bottom : undefined
|
|
||||||
clip: true
|
|
||||||
implicitHeight: horizontal ? content.implicitHeight * (1 - offsetScale) : content.implicitHeight
|
|
||||||
implicitWidth: horizontal ? content.implicitWidth : content.implicitWidth * (1 - offsetScale)
|
|
||||||
visible: width > 0 && height > 0
|
|
||||||
x: {
|
|
||||||
if (!horizontal)
|
|
||||||
return 0;
|
|
||||||
const off = content.currentCenter - borderThickness - content.nonAnimWidth / 2;
|
|
||||||
const diff = parent.width - Math.floor(off + content.nonAnimWidth);
|
|
||||||
if (diff < 0)
|
|
||||||
return off + diff;
|
|
||||||
return Math.floor(Math.max(off, 0));
|
|
||||||
}
|
|
||||||
y: {
|
|
||||||
if (horizontal)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
const off = content.currentCenter - borderThickness - content.nonAnimHeight / 2;
|
|
||||||
const diff = parent.height - Math.floor(off + content.nonAnimHeight);
|
|
||||||
if (diff < 0)
|
|
||||||
return off + diff;
|
|
||||||
return Math.max(off, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
Behavior on offsetScale {
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Behavior on x {
|
|
||||||
enabled: !root.horizontal || root.offsetScale < 1
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
duration: content.animLength
|
|
||||||
easing.bezierCurve: content.animCurve
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Behavior on y {
|
|
||||||
enabled: root.horizontal || root.offsetScale < 1
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
duration: content.animLength
|
|
||||||
easing.bezierCurve: content.animCurve
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Wrapper {
|
|
||||||
id: content
|
|
||||||
|
|
||||||
anchors.bottom: root.position === "bottom" ? parent.bottom : undefined
|
|
||||||
anchors.bottomMargin: (-implicitHeight - 5) * root.offsetScale
|
|
||||||
anchors.horizontalCenter: root.horizontal ? parent.horizontalCenter : undefined
|
|
||||||
anchors.left: root.horizontal ? undefined : parent.left
|
|
||||||
anchors.leftMargin: (-implicitWidth - 5) * root.offsetScale
|
|
||||||
anchors.top: root.position === "top" ? parent.top : undefined
|
|
||||||
anchors.topMargin: (-implicitHeight - 5) * root.offsetScale
|
|
||||||
anchors.verticalCenter: root.horizontal ? undefined : parent.verticalCenter
|
|
||||||
offsetScale: root.offsetScale
|
|
||||||
screen: root.screen
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
pragma ComponentBehavior: Bound
|
|
||||||
|
|
||||||
import Quickshell
|
|
||||||
import Quickshell.Networking
|
|
||||||
import QtQuick
|
|
||||||
import QtQuick.Layouts
|
|
||||||
import qs.Components
|
|
||||||
import ZShell.Config
|
|
||||||
import qs.Modules
|
|
||||||
import qs.Helpers as Helpers
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
required property var wrapper
|
|
||||||
|
|
||||||
ColumnLayout {
|
|
||||||
id: layout
|
|
||||||
|
|
||||||
spacing: 8
|
|
||||||
|
|
||||||
Repeater {
|
|
||||||
model: Helpers.Network.devices
|
|
||||||
|
|
||||||
CustomRadioButton {
|
|
||||||
id: network
|
|
||||||
|
|
||||||
required property NetworkDevice modelData
|
|
||||||
|
|
||||||
checked: Helpers.Network.activeDevice?.name === modelData.name
|
|
||||||
text: modelData.description
|
|
||||||
visible: modelData.name !== "lo"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import Quickshell
|
||||||
|
import qs.Components
|
||||||
|
import ZShell.Config
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
required property real borderThickness
|
||||||
|
readonly property alias content: content
|
||||||
|
property real offsetScale: y > 0 || content.hasCurrent ? 0 : 1
|
||||||
|
required property ShellScreen screen
|
||||||
|
|
||||||
|
clip: true
|
||||||
|
implicitHeight: content.implicitHeight * (1 - offsetScale)
|
||||||
|
implicitWidth: content.implicitWidth
|
||||||
|
visible: width > 0 && height > 0
|
||||||
|
x: {
|
||||||
|
const off = content.currentCenter - borderThickness - content.nonAnimWidth / 2;
|
||||||
|
const diff = parent.width - Math.floor(off + content.nonAnimWidth);
|
||||||
|
if (diff < 0)
|
||||||
|
return off + diff;
|
||||||
|
return Math.floor(Math.max(off, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
Behavior on offsetScale {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on x {
|
||||||
|
enabled: root.offsetScale < 1
|
||||||
|
|
||||||
|
Anim {
|
||||||
|
duration: content.animLength
|
||||||
|
easing.bezierCurve: content.animCurve
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on y {
|
||||||
|
Anim {
|
||||||
|
duration: content.animLength
|
||||||
|
easing.bezierCurve: content.animCurve
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Wrapper {
|
||||||
|
id: content
|
||||||
|
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.topMargin: (-implicitHeight - 5) * root.offsetScale
|
||||||
|
offsetScale: root.offsetScale
|
||||||
|
screen: root.screen
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
import Quickshell
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Modules
|
||||||
|
import qs.Helpers
|
||||||
|
import qs.Components
|
||||||
|
import qs.Services
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
required property RowLayout loader
|
||||||
|
required property Wrapper popouts
|
||||||
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
|
color: visibilities.dashboard ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
||||||
|
implicitHeight: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
|
implicitWidth: timeText.contentWidth + Tokens.padding.normal * 2
|
||||||
|
radius: Tokens.rounding.full
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: timeText
|
||||||
|
|
||||||
|
anchors.centerIn: parent
|
||||||
|
color: root.visibilities.dashboard ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
|
font: Config.appearance.font.family.mono
|
||||||
|
text: Time.dateStr
|
||||||
|
|
||||||
|
Behavior on color {
|
||||||
|
CAnim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
acceptedButtons: Qt.LeftButton
|
||||||
|
color: root.visibilities.dashboard ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
root.visibilities.dashboard = !root.visibilities.dashboard;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,6 +5,9 @@ import Quickshell.Services.SystemTray
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import qs.Components
|
import qs.Components
|
||||||
|
import qs.Modules.WSOverview
|
||||||
|
import qs.Modules.SysTray.Popouts
|
||||||
|
import qs.Modules.Updates
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
@@ -80,6 +83,13 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Popout {
|
||||||
|
name: "bluetooth"
|
||||||
|
|
||||||
|
sourceComponent: BluetoothPopout {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Popout {
|
Popout {
|
||||||
name: "updates"
|
name: "updates"
|
||||||
|
|
||||||
@@ -16,16 +16,9 @@ Item {
|
|||||||
}
|
}
|
||||||
readonly property real nonAnimHeight: state === "visible" ? (content.item?.nonAnimHeight ?? 0) : 0
|
readonly property real nonAnimHeight: state === "visible" ? (content.item?.nonAnimHeight ?? 0) : 0
|
||||||
required property real offsetScale
|
required property real offsetScale
|
||||||
required property string position
|
|
||||||
readonly property bool shouldBeActive: root.visibilities.dashboard && Config.dashboard.enabled
|
readonly property bool shouldBeActive: root.visibilities.dashboard && Config.dashboard.enabled
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
anchors.bottom: position === "bottom" ? parent.bottom : undefined
|
|
||||||
anchors.bottomMargin: position === "bottom" ? (-implicitHeight - 5) * offsetScale : 0
|
|
||||||
anchors.left: position === "left" ? parent.left : undefined
|
|
||||||
anchors.leftMargin: position === "left" ? (-implicitWidth - 5) * offsetScale : 0
|
|
||||||
anchors.top: position === "top" ? parent.top : undefined
|
|
||||||
anchors.topMargin: position === "top" ? (-implicitHeight - 5) * offsetScale : 0
|
|
||||||
implicitHeight: content.implicitHeight
|
implicitHeight: content.implicitHeight
|
||||||
implicitWidth: content.implicitWidth || 854
|
implicitWidth: content.implicitWidth || 854
|
||||||
opacity: 1 - offsetScale
|
opacity: 1 - offsetScale
|
||||||
@@ -35,11 +28,8 @@ Item {
|
|||||||
id: content
|
id: content
|
||||||
|
|
||||||
active: root.shouldBeActive || root.visible
|
active: root.shouldBeActive || root.visible
|
||||||
anchors.bottom: root.position === "top" ? parent.bottom : undefined
|
anchors.bottom: parent.bottom
|
||||||
anchors.horizontalCenter: root.position !== "left" ? parent.horizontalCenter : undefined
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
anchors.right: root.position !== "left" ? undefined : parent.right
|
|
||||||
anchors.top: root.position === "bottom" ? parent.top : undefined
|
|
||||||
anchors.verticalCenter: root.position === "left" ? undefined : parent.verticalCenter
|
|
||||||
|
|
||||||
sourceComponent: Content {
|
sourceComponent: Content {
|
||||||
dashState: root.dashState
|
dashState: root.dashState
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ Item {
|
|||||||
property real offsetScale: shouldBeActive ? 0 : 1
|
property real offsetScale: shouldBeActive ? 0 : 1
|
||||||
required property var panels
|
required property var panels
|
||||||
required property ShellScreen screen
|
required property ShellScreen screen
|
||||||
readonly property bool shouldBeActive: visibilities.dock && Config.dock.enable
|
readonly property bool shouldBeActive: visibilities.dock && Config.dock.enabled
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
anchors.bottomMargin: (-implicitHeight - 5) * offsetScale
|
anchors.bottomMargin: (-implicitHeight - 5) * offsetScale
|
||||||
|
|||||||
@@ -1,16 +1,17 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import ZShell.Config
|
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Modules.Bar.Components.Common
|
|
||||||
import qs.Helpers
|
import qs.Helpers
|
||||||
|
import ZShell.Config
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
WidgetBase {
|
CustomRect {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
property bool tempEnabled: Hyprsunset.enabled
|
property bool tempEnabled: Hyprsunset.enabled
|
||||||
|
|
||||||
color: root.tempEnabled ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
color: root.tempEnabled ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
||||||
|
implicitHeight: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
|
implicitWidth: implicitHeight
|
||||||
radius: Tokens.rounding.full
|
radius: Tokens.rounding.full
|
||||||
|
|
||||||
StateLayer {
|
StateLayer {
|
||||||
@@ -25,7 +26,6 @@ WidgetBase {
|
|||||||
animate: true
|
animate: true
|
||||||
color: root.tempEnabled ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
color: root.tempEnabled ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
fill: root.tempEnabled ? 1 : 0
|
fill: root.tempEnabled ? 1 : 0
|
||||||
font.pointSize: Tokens.font.size.larger
|
|
||||||
text: root.tempEnabled ? "lightbulb" : "light_off"
|
text: root.tempEnabled ? "lightbulb" : "light_off"
|
||||||
|
|
||||||
Behavior on fill {
|
Behavior on fill {
|
||||||
@@ -82,6 +82,7 @@ Searcher {
|
|||||||
list.visibilities.launcher = false;
|
list.visibilities.launcher = false;
|
||||||
Quickshell.execDetached(["zshell-cli", "scheme", "generate", "--scheme", variant]);
|
Quickshell.execDetached(["zshell-cli", "scheme", "generate", "--scheme", variant]);
|
||||||
Config.colors.schemeType = variant;
|
Config.colors.schemeType = variant;
|
||||||
|
Config.save();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import qs.Components
|
||||||
|
import qs.Daemons
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Helpers
|
||||||
|
import qs.Services
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
readonly property string currentMedia: (Players.active?.trackTitle ?? qsTr("No media")) || qsTr("Unknown title")
|
||||||
|
readonly property int textWidth: Math.min(metrics.width, 200)
|
||||||
|
|
||||||
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
|
implicitHeight: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
|
implicitWidth: layout.implicitWidth + Tokens.padding.normal * 2
|
||||||
|
radius: Tokens.rounding.full
|
||||||
|
|
||||||
|
Behavior on implicitWidth {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TextMetrics {
|
||||||
|
id: metrics
|
||||||
|
|
||||||
|
font: mediatext.font
|
||||||
|
text: mediatext.text
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: layout
|
||||||
|
|
||||||
|
anchors.centerIn: parent
|
||||||
|
|
||||||
|
Behavior on implicitWidth {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
animate: true
|
||||||
|
color: Players.active?.isPlaying ? Colors.palette.m3primary : Colors.palette.m3onSurface
|
||||||
|
font.pointSize: Tokens.font.size.larger
|
||||||
|
text: Players.active?.isPlaying ? "music_note" : "music_off"
|
||||||
|
}
|
||||||
|
|
||||||
|
MarqueeText {
|
||||||
|
id: mediatext
|
||||||
|
|
||||||
|
Layout.preferredWidth: root.textWidth
|
||||||
|
animate: true
|
||||||
|
color: Players.active?.isPlaying ? Colors.palette.m3primary : Colors.palette.m3onSurface
|
||||||
|
font.pointSize: Tokens.font.size.normal
|
||||||
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
marqueeEnabled: false
|
||||||
|
pauseMs: 4000
|
||||||
|
text: root.currentMedia
|
||||||
|
width: root.textWidth
|
||||||
|
|
||||||
|
CustomMouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
hoverEnabled: true
|
||||||
|
|
||||||
|
onContainsMouseChanged: {
|
||||||
|
if (!containsMouse) {
|
||||||
|
mediatext.marqueeEnabled = false;
|
||||||
|
} else {
|
||||||
|
mediatext.marqueeEnabled = true;
|
||||||
|
mediatext.anim.start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,19 +1,19 @@
|
|||||||
import Quickshell
|
import Quickshell
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import qs.Modules.Bar.Components.Common
|
|
||||||
import qs.Modules.Bar.Popouts
|
|
||||||
import qs.Daemons
|
import qs.Daemons
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
WidgetBase {
|
CustomRect {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
required property Wrapper popouts
|
required property Wrapper popouts
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
color: visibilities.sidebar ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
color: visibilities.sidebar ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
||||||
|
implicitHeight: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
|
implicitWidth: implicitHeight
|
||||||
radius: Tokens.rounding.full
|
radius: Tokens.rounding.full
|
||||||
|
|
||||||
MaterialIcon {
|
MaterialIcon {
|
||||||
@@ -22,6 +22,7 @@ WidgetBase {
|
|||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
color: root.visibilities.sidebar ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
color: root.visibilities.sidebar ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
fill: root.visibilities.sidebar ? 1 : 0
|
fill: root.visibilities.sidebar ? 1 : 0
|
||||||
|
font.family: "Material Symbols Rounded"
|
||||||
font.pointSize: Tokens.font.size.larger
|
font.pointSize: Tokens.font.size.larger
|
||||||
text: NotifServer.list.length ? "\uf4fe" : "\ue7f4"
|
text: NotifServer.list.length ? "\uf4fe" : "\ue7f4"
|
||||||
|
|
||||||
@@ -5,14 +5,13 @@ import qs.Components
|
|||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
GridLayout {
|
RowLayout {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
property color accentColor: warning ? Colors.palette.m3error : mainColor
|
property color accentColor: warning ? Colors.palette.m3error : mainColor
|
||||||
property real animatedPercentage: 0
|
property real animatedPercentage: 0
|
||||||
readonly property real arcStartAngle: 0.75 * Math.PI
|
readonly property real arcStartAngle: 0.75 * Math.PI
|
||||||
readonly property real arcSweep: 1.5 * Math.PI
|
readonly property real arcSweep: 1.5 * Math.PI
|
||||||
required property bool horizontal
|
|
||||||
property string icon
|
property string icon
|
||||||
required property color iconColor
|
required property color iconColor
|
||||||
required property color mainColor
|
required property color mainColor
|
||||||
@@ -22,9 +21,8 @@ GridLayout {
|
|||||||
property bool warning: percentage * 100 >= warningThreshold
|
property bool warning: percentage * 100 >= warningThreshold
|
||||||
property int warningThreshold: 80
|
property int warningThreshold: 80
|
||||||
|
|
||||||
columnSpacing: Tokens.spacing.smaller
|
|
||||||
columns: horizontal ? -1 : 1
|
|
||||||
percentage: 0
|
percentage: 0
|
||||||
|
spacing: Tokens.spacing.smaller
|
||||||
|
|
||||||
Behavior on animatedPercentage {
|
Behavior on animatedPercentage {
|
||||||
Anim {
|
Anim {
|
||||||
@@ -49,8 +47,8 @@ GridLayout {
|
|||||||
}
|
}
|
||||||
|
|
||||||
CustomClippingRect {
|
CustomClippingRect {
|
||||||
Layout.preferredHeight: root.horizontal ? icon.implicitHeight - Tokens.padding.small : 4
|
Layout.preferredHeight: root.height - Tokens.padding.small
|
||||||
Layout.preferredWidth: root.horizontal ? 4 : icon.implicitWidth
|
Layout.preferredWidth: 4
|
||||||
color: Colors.layer(Colors.palette.m3surfaceContainerHigh, 2)
|
color: Colors.layer(Colors.palette.m3surfaceContainerHigh, 2)
|
||||||
radius: Tokens.rounding.full
|
radius: Tokens.rounding.full
|
||||||
|
|
||||||
@@ -59,11 +57,9 @@ GridLayout {
|
|||||||
|
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.right: root.horizontal ? parent.right : undefined
|
anchors.right: parent.right
|
||||||
anchors.top: root.horizontal ? undefined : parent.top
|
|
||||||
color: root.mainColor
|
color: root.mainColor
|
||||||
implicitHeight: root.horizontal ? Math.ceil(root.percentage * parent.height) : 0
|
implicitHeight: Math.ceil(root.percentage * parent.height)
|
||||||
implicitWidth: root.horizontal ? 0 : Math.ceil(root.percentage * parent.width)
|
|
||||||
|
|
||||||
// Behavior on implicitHeight {
|
// Behavior on implicitHeight {
|
||||||
// Anim {
|
// Anim {
|
||||||
@@ -6,18 +6,18 @@ import QtQuick.Layouts
|
|||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import ZShell.Services
|
import ZShell.Services
|
||||||
import qs.Services
|
import qs.Services
|
||||||
import qs.Modules.Bar.Components.Common
|
import qs.Modules
|
||||||
import qs.Components
|
import qs.Components
|
||||||
|
|
||||||
WidgetBase {
|
CustomRect {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
clip: true
|
clip: true
|
||||||
color: visibilities.resources ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
color: visibilities.resources ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
||||||
implicitHeight: horizontal ? baseSize : gridLayout.implicitHeight + Tokens.padding.normal * 2
|
implicitHeight: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
implicitWidth: horizontal ? gridLayout.implicitWidth + Tokens.padding.larger * 2 : baseSize
|
implicitWidth: rowLayout.implicitWidth + Tokens.padding.larger * 2
|
||||||
radius: Tokens.rounding.full
|
radius: Tokens.rounding.full
|
||||||
|
|
||||||
StateLayer {
|
StateLayer {
|
||||||
@@ -26,14 +26,13 @@ WidgetBase {
|
|||||||
onClicked: root.visibilities.resources = !root.visibilities.resources
|
onClicked: root.visibilities.resources = !root.visibilities.resources
|
||||||
}
|
}
|
||||||
|
|
||||||
GridLayout {
|
RowLayout {
|
||||||
id: gridLayout
|
id: rowLayout
|
||||||
|
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
anchors.horizontalCenterOffset: root.horizontal ? 0 : 1
|
anchors.horizontalCenterOffset: -2
|
||||||
anchors.verticalCenterOffset: root.horizontal ? 0 : -3
|
implicitHeight: root.implicitHeight
|
||||||
columnSpacing: Tokens.spacing.smaller
|
spacing: Tokens.spacing.smaller
|
||||||
columns: root.horizontal ? -1 : 1
|
|
||||||
|
|
||||||
ServiceRef {
|
ServiceRef {
|
||||||
service: Gpu
|
service: Gpu
|
||||||
@@ -49,9 +48,7 @@ WidgetBase {
|
|||||||
|
|
||||||
Resource {
|
Resource {
|
||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
Layout.fillHeight: root.horizontal
|
Layout.fillHeight: true
|
||||||
Layout.fillWidth: !root.horizontal
|
|
||||||
horizontal: root.horizontal
|
|
||||||
icon: "memory"
|
icon: "memory"
|
||||||
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3primary
|
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3primary
|
||||||
@@ -60,9 +57,7 @@ WidgetBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Resource {
|
Resource {
|
||||||
Layout.fillHeight: root.horizontal
|
Layout.fillHeight: true
|
||||||
Layout.fillWidth: !root.horizontal
|
|
||||||
horizontal: root.horizontal
|
|
||||||
icon: "memory_alt"
|
icon: "memory_alt"
|
||||||
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3secondary
|
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3secondary
|
||||||
@@ -71,9 +66,7 @@ WidgetBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Resource {
|
Resource {
|
||||||
Layout.fillHeight: root.horizontal
|
Layout.fillHeight: true
|
||||||
Layout.fillWidth: !root.horizontal
|
|
||||||
horizontal: root.horizontal
|
|
||||||
icon: "gamepad"
|
icon: "gamepad"
|
||||||
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3tertiary
|
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3tertiary
|
||||||
@@ -81,9 +74,7 @@ WidgetBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Resource {
|
Resource {
|
||||||
Layout.fillHeight: root.horizontal
|
Layout.fillHeight: true
|
||||||
Layout.fillWidth: !root.horizontal
|
|
||||||
horizontal: root.horizontal
|
|
||||||
icon: "developer_board"
|
icon: "developer_board"
|
||||||
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3primary
|
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3primary
|
||||||
@@ -10,16 +10,10 @@ Item {
|
|||||||
|
|
||||||
readonly property real nonAnimHeight: content.item?.nonAnimHeight ?? 0
|
readonly property real nonAnimHeight: content.item?.nonAnimHeight ?? 0
|
||||||
property real offsetScale: shouldBeActive ? 0 : 1
|
property real offsetScale: shouldBeActive ? 0 : 1
|
||||||
required property string position
|
|
||||||
readonly property bool shouldBeActive: root.visibilities.resources
|
readonly property bool shouldBeActive: root.visibilities.resources
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
anchors.bottom: position === "bottom" ? parent.bottom : undefined
|
anchors.topMargin: (-implicitHeight - 5) * offsetScale
|
||||||
anchors.bottomMargin: position === "bottom" ? (-implicitHeight - 5) * offsetScale : 0
|
|
||||||
anchors.left: parent.left
|
|
||||||
anchors.leftMargin: position === "left" ? (-implicitWidth - 5) * offsetScale : 0
|
|
||||||
anchors.top: position !== "bottom" ? parent.top : undefined
|
|
||||||
anchors.topMargin: position === "top" ? (-implicitHeight - 5) * offsetScale : 0
|
|
||||||
clip: true
|
clip: true
|
||||||
implicitHeight: content.implicitHeight
|
implicitHeight: content.implicitHeight
|
||||||
implicitWidth: content.implicitWidth || 854 // Hard coded fallback for first open
|
implicitWidth: content.implicitWidth || 854 // Hard coded fallback for first open
|
||||||
@@ -37,11 +31,7 @@ Item {
|
|||||||
id: content
|
id: content
|
||||||
|
|
||||||
active: root.shouldBeActive || root.visible
|
active: root.shouldBeActive || root.visible
|
||||||
anchors.bottom: root.position === "top" ? parent.bottom : undefined
|
anchors.centerIn: parent
|
||||||
anchors.horizontalCenter: root.position !== "left" ? parent.horizontalCenter : undefined
|
|
||||||
anchors.right: root.position !== "left" ? undefined : parent.right
|
|
||||||
anchors.top: root.position === "bottom" ? parent.top : undefined
|
|
||||||
anchors.verticalCenter: root.position === "left" ? undefined : parent.verticalCenter
|
|
||||||
|
|
||||||
sourceComponent: Content {
|
sourceComponent: Content {
|
||||||
wrapper: root
|
wrapper: root
|
||||||
|
|||||||
@@ -0,0 +1,239 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
|
import qs.Modules.Settings.Common
|
||||||
|
import qs.Modules.SysTray.Popouts.Network
|
||||||
|
import qs.Components
|
||||||
|
import qs.Config
|
||||||
|
import qs.Helpers
|
||||||
|
|
||||||
|
PageBase {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
title: qsTr("Network")
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: networkContent
|
||||||
|
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.top: parent.top
|
||||||
|
spacing: Appearance.spacing.extraSmall / 2
|
||||||
|
width: root.cappedWidth
|
||||||
|
|
||||||
|
Toggle {
|
||||||
|
Layout.preferredHeight: visible ? implicitHeight : 0
|
||||||
|
checked: Network.wifiEnabled
|
||||||
|
first: true
|
||||||
|
last: connected.count === 0
|
||||||
|
subtext: qsTr("Toggle WiFi device state")
|
||||||
|
text: checked ? qsTr("Enabled") : qsTr("Disabled")
|
||||||
|
|
||||||
|
onToggled: Network.setWifi(checked)
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: connected
|
||||||
|
|
||||||
|
visible: Network.connectedNetworks.length > 0
|
||||||
|
|
||||||
|
model: ScriptModel {
|
||||||
|
values: [...Network.connectedNetworks].sort((a, b) => {
|
||||||
|
return b.signalStrength - a.signalStrength;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
NetworkItem {
|
||||||
|
first: false
|
||||||
|
known: true
|
||||||
|
repeater: connected
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
component NetworkItem: ConnectedRect {
|
||||||
|
id: networkItem
|
||||||
|
|
||||||
|
readonly property bool connecting: Network.connectingNetwork === modelData
|
||||||
|
property int horizontalPadding: Appearance.padding.largeIncreased
|
||||||
|
required property int index
|
||||||
|
readonly property bool isSecure: Network.isSecure(modelData.security)
|
||||||
|
required property bool known
|
||||||
|
required property var modelData
|
||||||
|
required property Repeater repeater
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: visible ? rowLayout.implicitHeight + Appearance.padding.smaller * 2 : 0
|
||||||
|
first: index === 0
|
||||||
|
last: index === (repeater.count - 1)
|
||||||
|
radius: Appearance.rounding.small
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: rowLayout
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.leftMargin: networkItem.horizontalPadding
|
||||||
|
anchors.rightMargin: networkItem.horizontalPadding
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: column
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.leftMargin: Appearance.spacing.extraSmall
|
||||||
|
Layout.rightMargin: Appearance.spacing.extraSmall
|
||||||
|
color: networkItem.modelData.active ? DynamicColors.palette.m3primary : DynamicColors.palette.m3onSurface
|
||||||
|
elide: Text.ElideRight
|
||||||
|
text: networkItem.modelData.name
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: subtext
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
color: DynamicColors.palette.m3outline
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font.pointSize: Appearance.font.size.small
|
||||||
|
text: qsTr("%1 strength").arg(Math.round(networkItem.modelData.signalStrength * 100) + "%")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.alignment: Qt.AlignRight
|
||||||
|
implicitHeight: icon.height
|
||||||
|
implicitWidth: icon.width
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
id: icon
|
||||||
|
|
||||||
|
color: networkItem.modelData.active ? DynamicColors.palette.m3primary : DynamicColors.palette.m3onSurfaceVariant
|
||||||
|
font.pointSize: Appearance.font.size.large
|
||||||
|
opacity: networkItem.connecting ? 0 : 1
|
||||||
|
text: Icons.getNetworkIcon(networkItem.modelData.signalStrength * 100, networkItem.isSecure)
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
active: opacity > 0
|
||||||
|
anchors.fill: parent
|
||||||
|
opacity: networkItem.connecting ? 1 : 0
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sourceComponent: CircularIndicator {
|
||||||
|
bgColor: "transparent"
|
||||||
|
running: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
color: networkItem.modelData.active ? DynamicColors.palette.m3onPrimary : DynamicColors.palette.m3onSurface
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
if (networkItem.isSecure && !networkItem.known) {
|
||||||
|
PopupManager.requestOpen(Qt.resolvedUrl("Network/PSKOverlay.qml"), {
|
||||||
|
network: networkItem.modelData
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
Network.requestConnect(networkItem.modelData);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
component Spacer: Item {
|
||||||
|
id: spacer
|
||||||
|
|
||||||
|
required property Repeater repeater
|
||||||
|
|
||||||
|
Layout.preferredHeight: repeater.count > 0 ? Appearance.spacing.extraSmall : 0
|
||||||
|
}
|
||||||
|
component Toggle: CustomSwitch {
|
||||||
|
id: toggleItem
|
||||||
|
|
||||||
|
readonly property alias bg: bg
|
||||||
|
property alias first: bg.first
|
||||||
|
property alias last: bg.last
|
||||||
|
property string subtext
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
cLayer: 2
|
||||||
|
horizontalPadding: Appearance.padding.largeIncreased
|
||||||
|
implicitHeight: Math.max(implicitContentHeight, implicitIndicatorHeight) + verticalPadding * 2
|
||||||
|
implicitWidth: implicitContentWidth + implicitIndicatorWidth + horizontalPadding * 2
|
||||||
|
indicator.anchors.right: right
|
||||||
|
indicator.anchors.rightMargin: toggleItem.horizontalPadding
|
||||||
|
indicator.anchors.verticalCenter: verticalCenter
|
||||||
|
verticalPadding: Appearance.padding.normal
|
||||||
|
|
||||||
|
background: ConnectedRect {
|
||||||
|
id: bg
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
id: stateLayer
|
||||||
|
|
||||||
|
manualPressOverride: toggleItem.pressed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
contentItem: Item {
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: toggleItem.horizontalPadding
|
||||||
|
anchors.right: toggleItem.indicator.left
|
||||||
|
anchors.rightMargin: Appearance.spacing.normal
|
||||||
|
implicitHeight: column.implicitHeight
|
||||||
|
implicitWidth: column.implicitWidth
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: column
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: label
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font: {
|
||||||
|
const f = Qt.font(label.font);
|
||||||
|
f.pointSize = Appearance.font.size.smaller;
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
text: toggleItem.text
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: subtext
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
color: DynamicColors.palette.m3outline
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font: {
|
||||||
|
const f = Qt.font(subtext.font);
|
||||||
|
f.pointSize = Appearance.font.size.small;
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
text: toggleItem.subtext
|
||||||
|
visible: toggleItem.subtext
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onPressed: stateLayer.press(stateLayer.mouseX, stateLayer.mouseY)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -8,7 +8,9 @@ PageBase {
|
|||||||
readonly property var builtinIcons: ({
|
readonly property var builtinIcons: ({
|
||||||
audio: qsTr("Speakers"),
|
audio: qsTr("Speakers"),
|
||||||
microphone: qsTr("Microphone"),
|
microphone: qsTr("Microphone"),
|
||||||
power: qsTr("Battery")
|
power: qsTr("Battery"),
|
||||||
|
network: qsTr("Network"),
|
||||||
|
bluetooth: qsTr("Bluetooth")
|
||||||
})
|
})
|
||||||
|
|
||||||
isSubPage: true
|
isSubPage: true
|
||||||
@@ -91,5 +93,15 @@ PageBase {
|
|||||||
|
|
||||||
onToggled: Config.bar.popouts.statusIcons = checked
|
onToggled: Config.bar.popouts.statusIcons = checked
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ToggleRow {
|
||||||
|
checked: Config.bar.popouts.network
|
||||||
|
last: true
|
||||||
|
settingAnchor: "bar-status-network-popout"
|
||||||
|
subtext: qsTr("Show a details popout when hovering the network icon")
|
||||||
|
text: qsTr("Network popout on hover")
|
||||||
|
|
||||||
|
onToggled: Config.bar.popouts.network = checked
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ pragma ComponentBehavior: Bound
|
|||||||
|
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import qs.Components
|
|
||||||
import qs.Modules.Settings.Common
|
import qs.Modules.Settings.Common
|
||||||
|
|
||||||
PageBase {
|
PageBase {
|
||||||
@@ -26,6 +25,7 @@ PageBase {
|
|||||||
ToggleRow {
|
ToggleRow {
|
||||||
checked: Config.bar.autoHide
|
checked: Config.bar.autoHide
|
||||||
first: true
|
first: true
|
||||||
|
last: true
|
||||||
settingAnchor: "bar-autohide"
|
settingAnchor: "bar-autohide"
|
||||||
subtext: qsTr("Hide the bar, reveal on hover")
|
subtext: qsTr("Hide the bar, reveal on hover")
|
||||||
text: qsTr("Auto hide")
|
text: qsTr("Auto hide")
|
||||||
@@ -33,34 +33,6 @@ PageBase {
|
|||||||
onToggled: Config.bar.autoHide = checked
|
onToggled: Config.bar.autoHide = checked
|
||||||
}
|
}
|
||||||
|
|
||||||
SelectRow {
|
|
||||||
active: Config.bar.position === "top" ? menuItems[0] : Config.bar.position === "left" ? menuItems[1] : menuItems[2]
|
|
||||||
last: true
|
|
||||||
settingAnchor: "bar-position"
|
|
||||||
subtext: qsTr("Change which edge the bar appears on")
|
|
||||||
text: qsTr("Position")
|
|
||||||
|
|
||||||
menuItems: [
|
|
||||||
MenuItem {
|
|
||||||
icon: "build"
|
|
||||||
text: qsTr("Top")
|
|
||||||
value: "top"
|
|
||||||
},
|
|
||||||
MenuItem {
|
|
||||||
icon: "rotate_auto"
|
|
||||||
text: qsTr("Left")
|
|
||||||
value: "left"
|
|
||||||
},
|
|
||||||
MenuItem {
|
|
||||||
icon: "rotate_auto"
|
|
||||||
text: qsTr("Bottom")
|
|
||||||
value: "bottom"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
onSelected: item => Config.bar.position = item.value
|
|
||||||
}
|
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
SectionHeader {
|
SectionHeader {
|
||||||
text: qsTr("Components")
|
text: qsTr("Components")
|
||||||
|
|||||||
@@ -70,7 +70,10 @@ PageBase {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
onSelected: item => Config.screenshot.mode = item.value
|
onSelected: item => {
|
||||||
|
Config.screenshot.mode = item.value;
|
||||||
|
Config.save();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SectionHeader {
|
SectionHeader {
|
||||||
|
|||||||
@@ -104,6 +104,7 @@ PageBase {
|
|||||||
onApplySettings: (start, end) => {
|
onApplySettings: (start, end) => {
|
||||||
Config.general.color.scheduleDarkStart = start;
|
Config.general.color.scheduleDarkStart = start;
|
||||||
Config.general.color.scheduleDarkEnd = end;
|
Config.general.color.scheduleDarkEnd = end;
|
||||||
|
Config.save();
|
||||||
ModeScheduler.checkStartup();
|
ModeScheduler.checkStartup();
|
||||||
PopupManager.requestClose();
|
PopupManager.requestClose();
|
||||||
}
|
}
|
||||||
@@ -145,6 +146,7 @@ PageBase {
|
|||||||
onApplySettings: (start, end) => {
|
onApplySettings: (start, end) => {
|
||||||
Config.general.color.scheduleHyprsunsetStart = start;
|
Config.general.color.scheduleHyprsunsetStart = start;
|
||||||
Config.general.color.scheduleHyprsunsetEnd = end;
|
Config.general.color.scheduleHyprsunsetEnd = end;
|
||||||
|
Config.save();
|
||||||
Hyprsunset.checkStartup();
|
Hyprsunset.checkStartup();
|
||||||
PopupManager.requestClose();
|
PopupManager.requestClose();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,388 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import QtQml.Models
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Bluetooth
|
||||||
|
import ZShell.Components
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Services
|
||||||
|
import qs.Components
|
||||||
|
import qs.Helpers
|
||||||
|
|
||||||
|
CustomClippingRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
implicitHeight: layout.implicitHeight + layout.anchors.margins * 2
|
||||||
|
implicitWidth: 500
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: layout
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: Tokens.padding.larger
|
||||||
|
spacing: Tokens.spacing.extraSmall / 2
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
Layout.rightMargin: Tokens.padding.extraSmall
|
||||||
|
Layout.topMargin: Tokens.padding.normal
|
||||||
|
font.pointSize: Tokens.font.size.large
|
||||||
|
text: qsTr("Bluetooth")
|
||||||
|
}
|
||||||
|
|
||||||
|
Toggle {
|
||||||
|
checked: Bluetooth.defaultAdapter?.enabled ?? false // qmllint disable unresolved-type
|
||||||
|
first: true
|
||||||
|
subtext: qsTr("Toggle bluetooth device state")
|
||||||
|
text: checked ? qsTr("Enabled") : qsTr("Disabled")
|
||||||
|
|
||||||
|
onToggled: {
|
||||||
|
const adapter = Bluetooth.defaultAdapter; // qmllint disable unresolved-type
|
||||||
|
if (adapter)
|
||||||
|
adapter.enabled = checked;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Toggle {
|
||||||
|
checked: Bluetooth.defaultAdapter?.discovering ?? false // qmllint disable unresolved-type
|
||||||
|
last: rows.sortedConnected.length === 0
|
||||||
|
subtext: qsTr("Enable scanning for new devices")
|
||||||
|
text: qsTr("Discover")
|
||||||
|
|
||||||
|
onToggled: {
|
||||||
|
const adapter = Bluetooth.defaultAdapter; // qmllint disable unresolved-type
|
||||||
|
if (adapter)
|
||||||
|
adapter.discovering = checked;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ListView {
|
||||||
|
id: rows
|
||||||
|
|
||||||
|
readonly property var sortedConnected: {
|
||||||
|
const byName = (a, b) => a.name.localeCompare(b.name);
|
||||||
|
return [...Bluetooth.devices.values].filter(d => d.connected).sort(byName).slice(0, 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: contentHeight
|
||||||
|
interactive: false
|
||||||
|
section.property: "connected"
|
||||||
|
spacing: Tokens.spacing.extraSmall / 2
|
||||||
|
|
||||||
|
add: Transition {
|
||||||
|
Anim {
|
||||||
|
from: 0
|
||||||
|
property: "opacity"
|
||||||
|
to: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
delegate: DelegateChooser {
|
||||||
|
role: "isDivider"
|
||||||
|
|
||||||
|
DelegateChoice {
|
||||||
|
roleValue: true
|
||||||
|
|
||||||
|
delegate: StatusDivider {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DelegateChoice {
|
||||||
|
delegate: BluetoothItem {
|
||||||
|
list: rows
|
||||||
|
width: rows.width
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
displaced: Transition {
|
||||||
|
Anim {
|
||||||
|
easing.type: Easing.OutCubic
|
||||||
|
property: "y"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
model: ScriptModel {
|
||||||
|
objectProp: "address"
|
||||||
|
values: {
|
||||||
|
const byName = (a, b) => a.name.localeCompare(b.name);
|
||||||
|
return [...[...Bluetooth.devices.values].filter(d => d.connected).sort(byName).slice(0, 5),
|
||||||
|
{
|
||||||
|
isDivider: true
|
||||||
|
},
|
||||||
|
...[...Bluetooth.devices.values].filter(d => !d.connected).sort(byName).slice(0, 5)];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
move: Transition {
|
||||||
|
Anim {
|
||||||
|
easing.type: Easing.OutCubic
|
||||||
|
property: "y"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
remove: Transition {
|
||||||
|
Anim {
|
||||||
|
property: "opacity"
|
||||||
|
to: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
section.delegate: Rectangle {
|
||||||
|
required property string section
|
||||||
|
|
||||||
|
color: "transparent"
|
||||||
|
height: childrenRect.height
|
||||||
|
width: ListView.view.width
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
text: parent.section
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
component BluetoothItem: ConnectedRect {
|
||||||
|
id: btItem
|
||||||
|
|
||||||
|
readonly property int connectedCount: rows.sortedConnected.length
|
||||||
|
readonly property bool connecting: Network.connectingNetwork === modelData
|
||||||
|
property int horizontalPadding: Tokens.padding.largeIncreased
|
||||||
|
readonly property bool inConnectedGroup: index < connectedCount
|
||||||
|
required property int index
|
||||||
|
required property ListView list
|
||||||
|
readonly property bool loading: modelData.state === BluetoothDeviceState.Connecting || modelData.state === BluetoothDeviceState.Disconnecting // qmllint disable unresolved-type
|
||||||
|
|
||||||
|
required property BluetoothDevice modelData
|
||||||
|
property int verticalPadding: Tokens.padding.smaller
|
||||||
|
|
||||||
|
first: !inConnectedGroup && index === connectedCount + 1
|
||||||
|
implicitHeight: rowLayout.implicitHeight + verticalPadding * 2
|
||||||
|
last: inConnectedGroup ? index === connectedCount - 1 : index === list.count - 1
|
||||||
|
radius: Tokens.rounding.small
|
||||||
|
|
||||||
|
Timer {
|
||||||
|
interval: 50
|
||||||
|
running: btItem.ListView.delayRemove
|
||||||
|
|
||||||
|
onTriggered: btItem.ListView.delayRemove = false
|
||||||
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
function onConnectedChanged(): void {
|
||||||
|
if (!btItem.modelData.connected)
|
||||||
|
btItem.ListView.delayRemove = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function onPairedChanged(): void {
|
||||||
|
if (btItem.modelData.paired)
|
||||||
|
btItem.modelData.connect();
|
||||||
|
}
|
||||||
|
|
||||||
|
target: btItem.modelData
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: rowLayout
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.leftMargin: btItem.horizontalPadding
|
||||||
|
anchors.rightMargin: btItem.horizontalPadding
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: column
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.leftMargin: Tokens.spacing.extraSmall
|
||||||
|
Layout.rightMargin: Tokens.spacing.extraSmall
|
||||||
|
elide: Text.ElideRight
|
||||||
|
text: btItem.modelData.name
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: subtext
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
color: Colors.palette.m3outline
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font.pointSize: Tokens.font.size.small
|
||||||
|
text: btItem.modelData.connected ? (btItem.modelData.batteryAvailable ? qsTr("%1 battery left").arg(Math.round(btItem.modelData.battery * 100) + "%") : qsTr("Battery status unknown")) : btItem.modelData.address
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.alignment: Qt.AlignRight
|
||||||
|
implicitHeight: icon.height
|
||||||
|
implicitWidth: icon.width
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
id: icon
|
||||||
|
|
||||||
|
font.pointSize: Tokens.font.size.large
|
||||||
|
opacity: btItem.connecting ? 0 : 1
|
||||||
|
text: btItem.modelData.batteryAvailable ? Icons.getBatteryIcon(btItem.modelData.battery) : "battery_unknown"
|
||||||
|
visible: btItem.modelData.state === BluetoothDeviceState.Connected // qmllint disable unresolved-type
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
active: opacity > 0
|
||||||
|
anchors.fill: parent
|
||||||
|
opacity: btItem.connecting ? 1 : 0
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sourceComponent: CircularIndicator {
|
||||||
|
bgColor: "transparent"
|
||||||
|
running: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ButtonRow {
|
||||||
|
spacing: Tokens.spacing.small
|
||||||
|
|
||||||
|
IconTextButton {
|
||||||
|
font.pointSize: Tokens.font.size.small
|
||||||
|
icon: btItem.modelData.connected ? "link_off" : btItem.modelData.paired ? "link" : "add_link"
|
||||||
|
text: btItem.modelData.connected ? qsTr("Disconnect") : btItem.modelData.paired ? qsTr("Connect") : qsTr("Pair")
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
if (btItem.modelData.connected)
|
||||||
|
btItem.modelData.disconnect();
|
||||||
|
else if (btItem.modelData.paired)
|
||||||
|
btItem.modelData.connect();
|
||||||
|
else if (!btItem.modelData.paired)
|
||||||
|
btItem.modelData.pair();
|
||||||
|
else if (btItem.modelData.pairing)
|
||||||
|
btItem.modelData.cancelPair();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
component ConnectedRect: CustomRect {
|
||||||
|
id: bg
|
||||||
|
|
||||||
|
property bool first
|
||||||
|
property bool last
|
||||||
|
|
||||||
|
bottomLeftRadius: last ? Tokens.rounding.large : Tokens.rounding.extraSmall
|
||||||
|
bottomRightRadius: last ? Tokens.rounding.large : Tokens.rounding.extraSmall
|
||||||
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
|
topLeftRadius: first ? Tokens.rounding.large : Tokens.rounding.extraSmall
|
||||||
|
topRightRadius: first ? Tokens.rounding.large : Tokens.rounding.extraSmall
|
||||||
|
|
||||||
|
Behavior on bottomLeftRadius {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on bottomRightRadius {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on topLeftRadius {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on topRightRadius {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
component StatusDivider: CustomText {
|
||||||
|
bottomPadding: Tokens.spacing.extraSmall
|
||||||
|
color: Colors.palette.m3onSurfaceVariant
|
||||||
|
font.pointSize: Tokens.font.size.smaller
|
||||||
|
text: {
|
||||||
|
const devices = Bluetooth.devices.values; // qmllint disable unresolved-type
|
||||||
|
const connectedCount = devices.filter(d => d.connected).length;
|
||||||
|
let available = qsTr("%1 device%2 available").arg(devices.length - connectedCount).arg(devices.length === 1 ? "" : "s");
|
||||||
|
return available;
|
||||||
|
}
|
||||||
|
topPadding: Tokens.spacing.small
|
||||||
|
}
|
||||||
|
component Toggle: CustomSwitch {
|
||||||
|
id: toggleItem
|
||||||
|
|
||||||
|
readonly property alias bg: bg
|
||||||
|
property alias first: bg.first
|
||||||
|
property alias last: bg.last
|
||||||
|
property string subtext
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
cLayer: 2
|
||||||
|
horizontalPadding: Tokens.padding.largeIncreased
|
||||||
|
implicitHeight: Math.max(implicitContentHeight, implicitIndicatorHeight) + verticalPadding * 2
|
||||||
|
implicitWidth: implicitContentWidth + implicitIndicatorWidth + horizontalPadding * 2
|
||||||
|
indicator.anchors.right: right
|
||||||
|
indicator.anchors.rightMargin: toggleItem.horizontalPadding
|
||||||
|
indicator.anchors.verticalCenter: verticalCenter
|
||||||
|
verticalPadding: Tokens.padding.normal
|
||||||
|
|
||||||
|
background: ConnectedRect {
|
||||||
|
id: bg
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
id: stateLayer
|
||||||
|
|
||||||
|
manualPressOverride: toggleItem.pressed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
contentItem: Item {
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: toggleItem.horizontalPadding
|
||||||
|
anchors.right: toggleItem.indicator.left
|
||||||
|
anchors.rightMargin: Tokens.spacing.normal
|
||||||
|
implicitHeight: column.implicitHeight
|
||||||
|
implicitWidth: column.implicitWidth
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: column
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: label
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font: {
|
||||||
|
const f = Qt.font(label.font);
|
||||||
|
f.pointSize = Tokens.font.size.smaller;
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
text: toggleItem.text
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: subtext
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
color: Colors.palette.m3outline
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font: {
|
||||||
|
const f = Qt.font(subtext.font);
|
||||||
|
f.pointSize = Tokens.font.size.small;
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
text: toggleItem.subtext
|
||||||
|
visible: toggleItem.subtext
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onPressed: stateLayer.press(stateLayer.mouseX, stateLayer.mouseY)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
import QtQuick
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Services
|
||||||
|
import qs.Helpers
|
||||||
|
import qs.Components
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
readonly property bool closing: PopupManager.closed
|
||||||
|
readonly property url currentPopup: PopupManager.currentPopup
|
||||||
|
property bool shouldBeVisible: loader.status === Loader.Ready
|
||||||
|
|
||||||
|
color: Qt.alpha(Colors.palette.m3shadow, 0.3)
|
||||||
|
opacity: shouldBeVisible && !closing ? 1 : 0
|
||||||
|
visible: opacity > 0
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onVisibleChanged: {
|
||||||
|
if (!visible) {
|
||||||
|
PopupManager.requestClose();
|
||||||
|
PopupManager.currentPopup = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomMouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
hoverEnabled: true
|
||||||
|
preventStealing: true
|
||||||
|
propagateComposedEvents: false
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
const insideItemWidth = mouseX < loader.x + loader.item.width && mouseX > loader.x;
|
||||||
|
const insideItemHeight = mouseY < loader.y + loader.item.height && mouseY > loader.y;
|
||||||
|
if (insideItemHeight && insideItemWidth)
|
||||||
|
return;
|
||||||
|
|
||||||
|
PopupManager.requestClose();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
id: loader
|
||||||
|
|
||||||
|
anchors.centerIn: parent
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
function onCurrentPopupChanged(): void {
|
||||||
|
if (PopupManager.currentPopup) {
|
||||||
|
loader.setSource(PopupManager.currentPopup, PopupManager.currentPopupProps);
|
||||||
|
} else {
|
||||||
|
loader.source = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
target: PopupManager
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
function onNetworkConnected(): void {
|
||||||
|
PopupManager.requestClose();
|
||||||
|
}
|
||||||
|
|
||||||
|
target: Network
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,103 @@
|
|||||||
|
import Quickshell
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import ZShell.Components
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Services
|
||||||
|
import qs.Components
|
||||||
|
import qs.Helpers
|
||||||
|
|
||||||
|
CustomClippingRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
required property var network
|
||||||
|
|
||||||
|
color: Colors.palette.m3surfaceContainer
|
||||||
|
implicitHeight: layout.implicitHeight + layout.anchors.margins * 2
|
||||||
|
implicitWidth: layout.implicitWidth + layout.anchors.margins * 2
|
||||||
|
radius: Tokens.rounding.large
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: layout
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: Tokens.padding.extraLarge
|
||||||
|
spacing: Tokens.spacing.normal
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
font.pointSize: Tokens.font.size.extraLarge * 2
|
||||||
|
text: "lock"
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
color: Colors.palette.m3onSurfaceVariant
|
||||||
|
text: qsTr("Connect to %1").arg(root.network.name)
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomTextField {
|
||||||
|
id: passwordField
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredWidth: 400
|
||||||
|
echoMode: CustomTextField.Password
|
||||||
|
errorText: qsTr("Failed to connect with given password")
|
||||||
|
isError: Network.failedNetwork
|
||||||
|
leadingIcon: "lock"
|
||||||
|
passwordMaskDelay: 5000
|
||||||
|
placeholderText: qsTr("Input password")
|
||||||
|
}
|
||||||
|
|
||||||
|
ButtonRow {
|
||||||
|
id: buttonRow
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
spacing: Tokens.spacing.smaller
|
||||||
|
|
||||||
|
IconTextButton {
|
||||||
|
fillWidth: true
|
||||||
|
font.pointSize: Tokens.font.size.normal
|
||||||
|
icon: "close"
|
||||||
|
inactiveColor: Colors.layer(Colors.palette.m3surfaceContainerHighest, 2)
|
||||||
|
inactiveOnColor: Colors.palette.m3onSurfaceVariant
|
||||||
|
isRound: true
|
||||||
|
isToggle: false
|
||||||
|
shapeMorph: true
|
||||||
|
text: "Cancel"
|
||||||
|
|
||||||
|
onClicked: PopupManager.requestClose()
|
||||||
|
}
|
||||||
|
|
||||||
|
IconTextButton {
|
||||||
|
fillWidth: true
|
||||||
|
font.pointSize: Tokens.font.size.normal
|
||||||
|
icon: Network.connectingNetwork ? "" : "check"
|
||||||
|
inactiveColor: Network.connectingNetwork ? Colors.palette.m3primaryContainer : Network.failedNetwork ? Colors.palette.m3error : Colors.palette.m3primary
|
||||||
|
inactiveOnColor: Network.connectingNetwork ? Colors.palette.m3onPrimaryContainer : Network.failedNetwork ? Colors.palette.m3onError : Colors.palette.m3onPrimary
|
||||||
|
isRound: true
|
||||||
|
isToggle: false
|
||||||
|
shapeMorph: true
|
||||||
|
text: Network.connectingNetwork ? "" : "Apply"
|
||||||
|
|
||||||
|
onClicked: Network.requestConnect(root.network, passwordField.text)
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
active: opacity > 0
|
||||||
|
anchors.centerIn: parent
|
||||||
|
opacity: Network.connectingNetwork ? 1 : 0
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sourceComponent: CircularIndicator {
|
||||||
|
bgColor: "transparent"
|
||||||
|
implicitSize: buttonRow.height - Tokens.padding.normal
|
||||||
|
running: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
pragma Singleton
|
||||||
|
|
||||||
|
import Quickshell
|
||||||
|
import QtQuick
|
||||||
|
|
||||||
|
Singleton {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property bool closed: true
|
||||||
|
property url currentPopup: ""
|
||||||
|
property var currentPopupProps: ({})
|
||||||
|
|
||||||
|
function requestClose(): void {
|
||||||
|
closed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function requestOpen(source: url, properties = {}): void {
|
||||||
|
currentPopupProps = properties;
|
||||||
|
currentPopup = source;
|
||||||
|
closed = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,342 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Services
|
||||||
|
import qs.Modules.SysTray.Popouts.Network
|
||||||
|
import qs.Components
|
||||||
|
import qs.Helpers
|
||||||
|
|
||||||
|
CustomClippingRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
required property var wrapper
|
||||||
|
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
implicitHeight: networkPopContent.height + networks.implicitHeight + networkPopContent.anchors.margins + networks.anchors.margins * 2
|
||||||
|
implicitWidth: 500 + 8 * 2
|
||||||
|
radius: (20 - Tokens.padding.small) * Tokens.rounding.scale
|
||||||
|
|
||||||
|
Component.onCompleted: Network.active = true
|
||||||
|
Component.onDestruction: Network.active = false
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: networkPopContent
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: Tokens.padding.large
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.top: parent.top
|
||||||
|
spacing: Tokens.spacing.extraSmall / 2
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
Layout.preferredHeight: visible ? implicitHeight : 0
|
||||||
|
Layout.rightMargin: Tokens.padding.extraSmall
|
||||||
|
font.pointSize: Tokens.font.size.large
|
||||||
|
text: qsTr("Wifi")
|
||||||
|
}
|
||||||
|
|
||||||
|
Toggle {
|
||||||
|
Layout.preferredHeight: visible ? implicitHeight : 0
|
||||||
|
checked: Network.wifiEnabled
|
||||||
|
first: true
|
||||||
|
last: connected.count === 0
|
||||||
|
subtext: qsTr("Toggle WiFi device state")
|
||||||
|
text: checked ? qsTr("Enabled") : qsTr("Disabled")
|
||||||
|
|
||||||
|
onToggled: Network.setWifi(checked)
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: connected
|
||||||
|
|
||||||
|
visible: Network.connectedNetworks.length > 0
|
||||||
|
|
||||||
|
model: ScriptModel {
|
||||||
|
values: [...Network.connectedNetworks].sort((a, b) => {
|
||||||
|
return b.signalStrength - a.signalStrength;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
NetworkItem {
|
||||||
|
first: false
|
||||||
|
known: true
|
||||||
|
repeater: connected
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: networks
|
||||||
|
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: Tokens.padding.large
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.top: networkPopContent.bottom
|
||||||
|
spacing: Tokens.spacing.extraSmall / 2
|
||||||
|
|
||||||
|
Spacer {
|
||||||
|
repeater: known
|
||||||
|
visible: Network.connectedNetworks.length > 0
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
Layout.leftMargin: Tokens.padding.normal
|
||||||
|
Layout.preferredHeight: visible ? implicitHeight : 0
|
||||||
|
color: Colors.palette.m3onSurfaceVariant
|
||||||
|
font.pointSize: Tokens.font.size.small
|
||||||
|
text: Network.knownNetworks.length > 1 ? qsTr("%1 known networks available").arg(Network.knownNetworks.length) : qsTr("1 known network available") // qmllint disable missing-property
|
||||||
|
visible: Network.knownNetworks.length > 0
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: known
|
||||||
|
|
||||||
|
visible: Network.knownNetworks.length > 0
|
||||||
|
|
||||||
|
model: ScriptModel {
|
||||||
|
values: [...Network.knownNetworks].sort((a, b) => {
|
||||||
|
return b.signalStrength - a.signalStrength;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
NetworkItem {
|
||||||
|
known: true
|
||||||
|
repeater: known
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer {
|
||||||
|
repeater: unknown
|
||||||
|
visible: Network.knownNetworks.length > 0
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
Layout.leftMargin: Tokens.padding.normal
|
||||||
|
Layout.preferredHeight: visible ? implicitHeight : 0
|
||||||
|
color: Colors.palette.m3onSurfaceVariant
|
||||||
|
font.pointSize: Tokens.font.size.small
|
||||||
|
text: Network.unknownNetworks.length > 1 ? qsTr("%1 networks available").arg(Network.unknownNetworks.length) : qsTr("1 network available") // qmllint disable missing-property
|
||||||
|
visible: Network.unknownNetworks.length > 0
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: unknown
|
||||||
|
|
||||||
|
model: ScriptModel {
|
||||||
|
values: [...Network.unknownNetworks].sort((a, b) => {
|
||||||
|
return b.signalStrength - a.signalStrength;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
NetworkItem {
|
||||||
|
known: false
|
||||||
|
repeater: unknown
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NetworkOverlay {
|
||||||
|
anchors.fill: parent
|
||||||
|
}
|
||||||
|
|
||||||
|
component ConnectedRect: CustomRect {
|
||||||
|
id: bg
|
||||||
|
|
||||||
|
property bool first
|
||||||
|
property bool last
|
||||||
|
|
||||||
|
bottomLeftRadius: last ? Tokens.rounding.large : Tokens.rounding.extraSmall
|
||||||
|
bottomRightRadius: last ? Tokens.rounding.large : Tokens.rounding.extraSmall
|
||||||
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
|
topLeftRadius: first ? Tokens.rounding.large : Tokens.rounding.extraSmall
|
||||||
|
topRightRadius: first ? Tokens.rounding.large : Tokens.rounding.extraSmall
|
||||||
|
}
|
||||||
|
component NetworkItem: ConnectedRect {
|
||||||
|
id: networkItem
|
||||||
|
|
||||||
|
readonly property bool connecting: Network.connectingNetwork === modelData
|
||||||
|
property int horizontalPadding: Tokens.padding.largeIncreased
|
||||||
|
required property int index
|
||||||
|
readonly property bool isSecure: Network.isSecure(modelData.security)
|
||||||
|
required property bool known
|
||||||
|
required property var modelData
|
||||||
|
required property Repeater repeater
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: visible ? rowLayout.implicitHeight + Tokens.padding.smaller * 2 : 0
|
||||||
|
first: index === 0
|
||||||
|
last: index === (repeater.count - 1)
|
||||||
|
radius: Tokens.rounding.small
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: rowLayout
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.leftMargin: networkItem.horizontalPadding
|
||||||
|
anchors.rightMargin: networkItem.horizontalPadding
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: column
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.leftMargin: Tokens.spacing.extraSmall
|
||||||
|
Layout.rightMargin: Tokens.spacing.extraSmall
|
||||||
|
color: networkItem.modelData.active ? Colors.palette.m3primary : Colors.palette.m3onSurface
|
||||||
|
elide: Text.ElideRight
|
||||||
|
text: networkItem.modelData.name
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: subtext
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
color: Colors.palette.m3outline
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font.pointSize: Tokens.font.size.small
|
||||||
|
text: qsTr("%1 strength").arg(Math.round(networkItem.modelData.signalStrength * 100) + "%")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.alignment: Qt.AlignRight
|
||||||
|
implicitHeight: icon.height
|
||||||
|
implicitWidth: icon.width
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
id: icon
|
||||||
|
|
||||||
|
color: networkItem.modelData.active ? Colors.palette.m3primary : Colors.palette.m3onSurfaceVariant
|
||||||
|
font.pointSize: Tokens.font.size.large
|
||||||
|
opacity: networkItem.connecting ? 0 : 1
|
||||||
|
text: Icons.getNetworkIcon(networkItem.modelData.signalStrength * 100, networkItem.isSecure)
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
active: opacity > 0
|
||||||
|
anchors.fill: parent
|
||||||
|
opacity: networkItem.connecting ? 1 : 0
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sourceComponent: CircularIndicator {
|
||||||
|
bgColor: "transparent"
|
||||||
|
running: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
color: networkItem.modelData.active ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
if (networkItem.isSecure && !networkItem.known) {
|
||||||
|
PopupManager.requestOpen(Qt.resolvedUrl("Network/PSKOverlay.qml"), {
|
||||||
|
network: networkItem.modelData
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
Network.requestConnect(networkItem.modelData);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
component Spacer: Item {
|
||||||
|
id: spacer
|
||||||
|
|
||||||
|
required property Repeater repeater
|
||||||
|
|
||||||
|
Layout.preferredHeight: repeater.count > 0 ? Tokens.spacing.extraSmall : 0
|
||||||
|
}
|
||||||
|
component Toggle: CustomSwitch {
|
||||||
|
id: toggleItem
|
||||||
|
|
||||||
|
readonly property alias bg: bg
|
||||||
|
property alias first: bg.first
|
||||||
|
property alias last: bg.last
|
||||||
|
property string subtext
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
cLayer: 2
|
||||||
|
horizontalPadding: Tokens.padding.largeIncreased
|
||||||
|
implicitHeight: Math.max(implicitContentHeight, implicitIndicatorHeight) + verticalPadding * 2
|
||||||
|
implicitWidth: implicitContentWidth + implicitIndicatorWidth + horizontalPadding * 2
|
||||||
|
indicator.anchors.right: right
|
||||||
|
indicator.anchors.rightMargin: toggleItem.horizontalPadding
|
||||||
|
indicator.anchors.verticalCenter: verticalCenter
|
||||||
|
verticalPadding: Tokens.padding.normal
|
||||||
|
|
||||||
|
background: ConnectedRect {
|
||||||
|
id: bg
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
id: stateLayer
|
||||||
|
|
||||||
|
manualPressOverride: toggleItem.pressed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
contentItem: Item {
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: toggleItem.horizontalPadding
|
||||||
|
anchors.right: toggleItem.indicator.left
|
||||||
|
anchors.rightMargin: Tokens.spacing.normal
|
||||||
|
implicitHeight: column.implicitHeight
|
||||||
|
implicitWidth: column.implicitWidth
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: column
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: label
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font: {
|
||||||
|
const f = Qt.font(label.font);
|
||||||
|
f.pointSize = Tokens.font.size.smaller;
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
text: toggleItem.text
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: subtext
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
color: Colors.palette.m3outline
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font: {
|
||||||
|
const f = Qt.font(subtext.font);
|
||||||
|
f.pointSize = Tokens.font.size.small;
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
text: toggleItem.subtext
|
||||||
|
visible: toggleItem.subtext
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onPressed: stateLayer.press(stateLayer.mouseX, stateLayer.mouseY)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,14 +3,13 @@ pragma ComponentBehavior: Bound
|
|||||||
import Quickshell
|
import Quickshell
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import ZShell.Config
|
|
||||||
import qs.Helpers
|
import qs.Helpers
|
||||||
import qs.Modules.Bar.Components.StatusIcons
|
import qs.Modules.SysTray.Widgets
|
||||||
import qs.Modules.Bar.Components.Common
|
import ZShell.Config
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
WidgetBase {
|
CustomClippingRect {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
readonly property int firstPresent: {
|
readonly property int firstPresent: {
|
||||||
@@ -22,7 +21,7 @@ WidgetBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Index of the first/last entry that isn't collapsed, for edge margin gating
|
// Index of the first/last entry that isn't collapsed, for edge margin gating
|
||||||
readonly property alias items: grid
|
readonly property alias items: row
|
||||||
readonly property int lastPresent: {
|
readonly property int lastPresent: {
|
||||||
const values = model.values;
|
const values = model.values;
|
||||||
for (let i = values.length - 1; i >= 0; i--)
|
for (let i = values.length - 1; i >= 0; i--)
|
||||||
@@ -30,7 +29,6 @@ WidgetBase {
|
|||||||
return i;
|
return i;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
readonly property real size: horizontal ? grid.implicitWidth + Tokens.padding.small * 2 : grid.implicitHeight + Tokens.padding.small * 2
|
|
||||||
readonly property int spacing: Tokens.spacing.normal / 2
|
readonly property int spacing: Tokens.spacing.normal / 2
|
||||||
|
|
||||||
// Entries that can shrink to nothing, spacing included
|
// Entries that can shrink to nothing, spacing included
|
||||||
@@ -40,36 +38,19 @@ WidgetBase {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bottomLeftRadius: horizontal ? Tokens.rounding.smallest / 2 : Tokens.rounding.full
|
bottomLeftRadius: Tokens.rounding.smallest / 2
|
||||||
color: Colors.tPalette.m3surfaceContainer
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
implicitHeight: horizontal ? baseSize : size
|
implicitHeight: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
implicitWidth: horizontal ? size : baseSize
|
implicitWidth: row.implicitWidth + Tokens.padding.small * 2
|
||||||
radius: Tokens.rounding.full
|
radius: Tokens.rounding.full
|
||||||
topLeftRadius: Tokens.rounding.smallest / 2
|
topLeftRadius: Tokens.rounding.smallest / 2
|
||||||
topRightRadius: horizontal ? Tokens.rounding.full : Tokens.rounding.smallest / 2
|
|
||||||
|
|
||||||
Behavior on implicitHeight {
|
RowLayout {
|
||||||
enabled: !root.horizontal
|
id: row
|
||||||
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Behavior on implicitWidth {
|
|
||||||
enabled: root.horizontal
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
GridLayout {
|
|
||||||
id: grid
|
|
||||||
|
|
||||||
anchors.bottomMargin: root.horizontal ? 0 : Tokens.padding.small
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.leftMargin: root.horizontal ? Tokens.padding.small : 0
|
anchors.leftMargin: Tokens.padding.small
|
||||||
anchors.rightMargin: root.horizontal ? Tokens.padding.small : 0
|
anchors.rightMargin: Tokens.padding.small
|
||||||
anchors.topMargin: root.horizontal ? 0 : Tokens.padding.small
|
|
||||||
columns: root.horizontal ? -1 : 1
|
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: ScriptModel {
|
model: ScriptModel {
|
||||||
@@ -88,7 +69,6 @@ WidgetBase {
|
|||||||
name: "audio"
|
name: "audio"
|
||||||
|
|
||||||
AudioWidget {
|
AudioWidget {
|
||||||
horizontal: root.horizontal
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -100,7 +80,28 @@ WidgetBase {
|
|||||||
name: "audio"
|
name: "audio"
|
||||||
|
|
||||||
MicWidget {
|
MicWidget {
|
||||||
horizontal: root.horizontal
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DelegateChoice {
|
||||||
|
roleValue: "bluetooth"
|
||||||
|
|
||||||
|
delegate: EntryWrapper {
|
||||||
|
name: "bluetooth"
|
||||||
|
|
||||||
|
BluetoothWidget {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DelegateChoice {
|
||||||
|
roleValue: "network"
|
||||||
|
|
||||||
|
delegate: EntryWrapper {
|
||||||
|
name: "network"
|
||||||
|
|
||||||
|
NetworkWidget {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -112,7 +113,6 @@ WidgetBase {
|
|||||||
name: "upower"
|
name: "upower"
|
||||||
|
|
||||||
UPowerWidget {
|
UPowerWidget {
|
||||||
horizontal: root.horizontal
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -131,10 +131,8 @@ WidgetBase {
|
|||||||
property real rightGap: present && index !== root.firstPresent ? margin : 0
|
property real rightGap: present && index !== root.firstPresent ? margin : 0
|
||||||
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
Layout.bottomMargin: root.horizontal ? 0 : Math.round(rightGap)
|
Layout.leftMargin: Math.round(leftGap)
|
||||||
Layout.leftMargin: root.horizontal ? Math.round(leftGap) : 0
|
Layout.rightMargin: Math.round(rightGap)
|
||||||
Layout.rightMargin: root.horizontal ? Math.round(rightGap) : 0
|
|
||||||
Layout.topMargin: root.horizontal ? 0 : Math.round(leftGap)
|
|
||||||
children: item
|
children: item
|
||||||
implicitHeight: item?.implicitHeight ?? 0
|
implicitHeight: item?.implicitHeight ?? 0
|
||||||
implicitWidth: item?.implicitWidth ?? 0
|
implicitWidth: item?.implicitWidth ?? 0
|
||||||
@@ -3,37 +3,33 @@ pragma ComponentBehavior: Bound
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import Quickshell.Services.SystemTray
|
import Quickshell.Services.SystemTray
|
||||||
import ZShell.Config
|
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Modules.Bar.Components.Common
|
import ZShell.Config
|
||||||
import qs.Modules.Bar.Components.Tray
|
import qs.Modules.SysTray.Widgets
|
||||||
import qs.Modules.Bar.Popouts
|
import qs.Modules
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
WidgetBase {
|
CustomClippingRect {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
readonly property alias items: repeater
|
readonly property alias items: repeater
|
||||||
readonly property alias layout: sysGrid
|
readonly property alias layout: sysRow
|
||||||
required property GridLayout loader
|
required property RowLayout loader
|
||||||
readonly property int padding: Tokens.padding.small
|
readonly property int padding: Tokens.padding.small
|
||||||
required property Wrapper popouts
|
required property Wrapper popouts
|
||||||
readonly property real size: horizontal ? sysGrid.implicitWidth + Tokens.padding.small : sysGrid.implicitHeight + Tokens.padding.small
|
|
||||||
|
|
||||||
bottomLeftRadius: horizontal ? Tokens.rounding.full : Tokens.rounding.smallest / 2
|
|
||||||
bottomRightRadius: Tokens.rounding.smallest / 2
|
bottomRightRadius: Tokens.rounding.smallest / 2
|
||||||
color: Colors.tPalette.m3surfaceContainer
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
implicitHeight: horizontal ? baseSize : size
|
implicitHeight: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
implicitWidth: horizontal ? size : baseSize
|
implicitWidth: sysRow.implicitWidth + Tokens.padding.small * 2
|
||||||
radius: Tokens.rounding.full
|
radius: Tokens.rounding.full
|
||||||
topRightRadius: horizontal ? Tokens.rounding.smallest / 2 : Tokens.rounding.full
|
topRightRadius: Tokens.rounding.smallest / 2
|
||||||
|
|
||||||
GridLayout {
|
RowLayout {
|
||||||
id: sysGrid
|
id: sysRow
|
||||||
|
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
columns: root.horizontal ? -1 : 1
|
spacing: 0
|
||||||
rowSpacing: -2
|
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
id: repeater
|
id: repeater
|
||||||
@@ -1,9 +1,10 @@
|
|||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import QtQuick
|
import QtQuick
|
||||||
|
import QtQuick.VectorImage
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Services.SystemTray
|
import Quickshell.Services.SystemTray
|
||||||
import qs.Helpers
|
import qs.Helpers
|
||||||
import qs.Modules.Bar.Popouts
|
import qs.Modules
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import qs.Services
|
import qs.Services
|
||||||
@@ -12,10 +13,10 @@ Item {
|
|||||||
id: root
|
id: root
|
||||||
|
|
||||||
property bool current: popouts.currentName.startsWith(`traymenu${ind}`) && popouts.hasCurrent
|
property bool current: popouts.currentName.startsWith(`traymenu${ind}`) && popouts.hasCurrent
|
||||||
readonly property real dpr: Hypr.monitorFor(loader?.screen).scale
|
readonly property real dpr: Hypr.monitorFor(loader.screen).scale
|
||||||
required property int ind
|
required property int ind
|
||||||
required property SystemTrayItem item
|
required property SystemTrayItem item
|
||||||
required property GridLayout loader
|
required property RowLayout loader
|
||||||
required property Wrapper popouts
|
required property Wrapper popouts
|
||||||
|
|
||||||
function resolveIcon(app: string, icon: string): string {
|
function resolveIcon(app: string, icon: string): string {
|
||||||
@@ -0,0 +1,154 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell.Services.SystemTray
|
||||||
|
import qs.Components
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Modules.SysTray.Widgets
|
||||||
|
import qs.Modules
|
||||||
|
import qs.Services
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
readonly property alias items: repeater
|
||||||
|
required property RowLayout loader
|
||||||
|
required property Wrapper popouts
|
||||||
|
|
||||||
|
function closestRowChild(row, x) {
|
||||||
|
let child = row.childAt(x, row.height / 2);
|
||||||
|
if (child)
|
||||||
|
return child;
|
||||||
|
|
||||||
|
let closest = null;
|
||||||
|
let closestDistance = Infinity;
|
||||||
|
|
||||||
|
for (let i = 0; i < row.children.length; ++i) {
|
||||||
|
let c = row.children[i];
|
||||||
|
|
||||||
|
if (!c.visible || c.width <= 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
let centerX = c.x + c.width / 2;
|
||||||
|
let dist = Math.abs(x - centerX);
|
||||||
|
|
||||||
|
if (dist < closestDistance) {
|
||||||
|
closestDistance = dist;
|
||||||
|
closest = c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return closest;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getHoveredSubItem(localX, localY) {
|
||||||
|
let modPos = mapToItem(sysTrayMod, localX, localY);
|
||||||
|
if (sysTrayMod.contains(Qt.point(modPos.x, modPos.y))) {
|
||||||
|
let modRowPos = sysTrayMod.mapToItem(sysIcons, modPos.x, modPos.y);
|
||||||
|
let child = closestRowChild(sysIcons, modRowPos.x);
|
||||||
|
if (child) {
|
||||||
|
if (child.objectName === "audio" && Config.bar.popouts.audio)
|
||||||
|
return {
|
||||||
|
id: "audio",
|
||||||
|
item: child
|
||||||
|
};
|
||||||
|
if (child.objectName === "networkWidget" && Config.bar.popouts.network)
|
||||||
|
return {
|
||||||
|
id: "network",
|
||||||
|
item: child
|
||||||
|
};
|
||||||
|
if (child.objectName === "microphone" && Config.bar.popouts.audio)
|
||||||
|
return {
|
||||||
|
id: "audio",
|
||||||
|
item: child
|
||||||
|
};
|
||||||
|
if (child.objectName === "upower" && Config.bar.popouts.upower)
|
||||||
|
return {
|
||||||
|
id: "upower",
|
||||||
|
item: child
|
||||||
|
};
|
||||||
|
if (child.objectName === "bluetoothWidget")
|
||||||
|
return {
|
||||||
|
id: "bluetooth",
|
||||||
|
item: child
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let trayPos = mapToItem(sysTray, localX, localY);
|
||||||
|
if (Config.bar.tray.showOnHover && sysTray.contains(Qt.point(trayPos.x, trayPos.y))) {
|
||||||
|
let trayRowPos = sysTray.mapToItem(sysRow, trayPos.x, trayPos.y);
|
||||||
|
let child = sysRow.childAt(trayRowPos.x, trayRowPos.y);
|
||||||
|
if (child && child.hasOwnProperty("ind")) {
|
||||||
|
return {
|
||||||
|
id: `traymenu${child.ind}`,
|
||||||
|
item: child
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
height: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
|
spacing: Tokens.padding.small
|
||||||
|
width: sysTray.implicitWidth + sysTrayMod.implicitWidth + Tokens.padding.small
|
||||||
|
|
||||||
|
CustomClippingRect {
|
||||||
|
id: sysTray
|
||||||
|
|
||||||
|
Layout.fillHeight: true
|
||||||
|
bottomRightRadius: Tokens.rounding.smallest / 2
|
||||||
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
|
implicitWidth: sysRow.width + Tokens.padding.small * 2
|
||||||
|
radius: Tokens.rounding.full
|
||||||
|
topRightRadius: Tokens.rounding.smallest / 2
|
||||||
|
|
||||||
|
Row {
|
||||||
|
id: sysRow
|
||||||
|
|
||||||
|
anchors.centerIn: parent
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: repeater
|
||||||
|
|
||||||
|
model: SystemTray.items
|
||||||
|
|
||||||
|
TrayItem {
|
||||||
|
id: trayItem
|
||||||
|
|
||||||
|
required property int index
|
||||||
|
required property SystemTrayItem modelData
|
||||||
|
|
||||||
|
implicitHeight: 34
|
||||||
|
implicitWidth: 34
|
||||||
|
ind: index
|
||||||
|
item: modelData
|
||||||
|
loader: root.loader
|
||||||
|
popouts: root.popouts
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomClippingRect {
|
||||||
|
id: sysTrayMod
|
||||||
|
|
||||||
|
Layout.fillHeight: true
|
||||||
|
bottomLeftRadius: Tokens.rounding.smallest / 2
|
||||||
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
|
implicitWidth: sysIcons.implicitWidth + Tokens.padding.smaller + Tokens.padding.normal
|
||||||
|
radius: Tokens.rounding.full
|
||||||
|
topLeftRadius: Tokens.rounding.smallest / 2
|
||||||
|
|
||||||
|
StatusIcons {
|
||||||
|
id: sysIcons
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.leftMargin: Tokens.padding.smaller
|
||||||
|
anchors.rightMargin: Tokens.padding.normal
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+4
-3
@@ -1,15 +1,16 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import ZShell.Config
|
import Quickshell.Io
|
||||||
|
import Quickshell.Services.Pipewire
|
||||||
import qs.Daemons
|
import qs.Daemons
|
||||||
|
import qs.Modules
|
||||||
|
import ZShell.Config
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
MaterialIcon {
|
MaterialIcon {
|
||||||
id: speaker
|
id: speaker
|
||||||
|
|
||||||
required property bool horizontal
|
|
||||||
|
|
||||||
animate: true
|
animate: true
|
||||||
color: Audio.muted ? Colors.palette.m3error : Colors.palette.m3onSurface
|
color: Audio.muted ? Colors.palette.m3error : Colors.palette.m3onSurface
|
||||||
fill: 1
|
fill: 1
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Services
|
||||||
|
import qs.Components
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
animate: true
|
||||||
|
color: Colors.palette.m3onSurface // Network.connected ? root.textColor : Colors.palette.m3error
|
||||||
|
fill: 1
|
||||||
|
font.pointSize: Tokens.font.size.larger
|
||||||
|
text: "bluetooth"
|
||||||
|
}
|
||||||
+4
-3
@@ -1,15 +1,16 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import ZShell.Config
|
import Quickshell.Io
|
||||||
|
import Quickshell.Services.Pipewire
|
||||||
import qs.Daemons
|
import qs.Daemons
|
||||||
|
import qs.Modules
|
||||||
|
import ZShell.Config
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
MaterialIcon {
|
MaterialIcon {
|
||||||
id: mic
|
id: mic
|
||||||
|
|
||||||
required property bool horizontal
|
|
||||||
|
|
||||||
animate: true
|
animate: true
|
||||||
color: (Audio.sourceMuted ?? false) ? Colors.palette.m3error : Colors.palette.m3onSurface
|
color: (Audio.sourceMuted ?? false) ? Colors.palette.m3error : Colors.palette.m3onSurface
|
||||||
fill: 1
|
fill: 1
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Services
|
||||||
|
import qs.Components
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
animate: true
|
||||||
|
color: Colors.palette.m3onSurface // Network.connected ? root.textColor : Colors.palette.m3error
|
||||||
|
fill: 1
|
||||||
|
font.pointSize: Tokens.font.size.larger
|
||||||
|
text: "android_wifi_4_bar"
|
||||||
|
}
|
||||||
+1
-4
@@ -1,15 +1,13 @@
|
|||||||
import Quickshell.Services.UPower
|
import Quickshell.Services.UPower
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import ZShell.Config
|
|
||||||
import qs.Components
|
import qs.Components
|
||||||
|
import ZShell.Config
|
||||||
import qs.Helpers
|
import qs.Helpers
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
required property bool horizontal
|
|
||||||
|
|
||||||
implicitHeight: Battery.isLaptop ? batteryIconLoader.item.implicitHeight : upowerIconLoader.item.implicitHeight
|
implicitHeight: Battery.isLaptop ? batteryIconLoader.item.implicitHeight : upowerIconLoader.item.implicitHeight
|
||||||
implicitWidth: Battery.isLaptop ? batteryIconLoader.item.implicitWidth : upowerIconLoader.item.implicitWidth
|
implicitWidth: Battery.isLaptop ? batteryIconLoader.item.implicitWidth : upowerIconLoader.item.implicitWidth
|
||||||
|
|
||||||
@@ -125,7 +123,6 @@ Item {
|
|||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
animate: true
|
animate: true
|
||||||
fill: 1
|
fill: 1
|
||||||
font.pointSize: Tokens.font.size.larger
|
|
||||||
text: {
|
text: {
|
||||||
if (PowerProfiles.profile === PowerProfile.PowerSaver)
|
if (PowerProfiles.profile === PowerProfile.PowerSaver)
|
||||||
return "energy_savings_leaf";
|
return "energy_savings_leaf";
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import qs.Components
|
||||||
|
import qs.Modules
|
||||||
|
import qs.Helpers
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Services
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property int countUpdates: Updates.availableUpdates
|
||||||
|
property color textColor: Colors.palette.m3onSurface
|
||||||
|
|
||||||
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
|
implicitHeight: Config.bar.height + Tokens.padding.smallest * 2
|
||||||
|
implicitWidth: contentRow.implicitWidth + Tokens.spacing.small * 2
|
||||||
|
radius: Tokens.rounding.full
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: contentRow
|
||||||
|
|
||||||
|
anchors.centerIn: parent
|
||||||
|
spacing: Tokens.spacing.small
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
font.pointSize: Tokens.font.size.larger
|
||||||
|
text: "package_2"
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
color: root.textColor
|
||||||
|
font.pointSize: Tokens.font.size.normal
|
||||||
|
text: root.countUpdates
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
import Quickshell
|
||||||
|
import Quickshell.Hyprland
|
||||||
|
import Quickshell.Wayland
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Components
|
||||||
|
import qs.Modules
|
||||||
|
import qs.Helpers
|
||||||
|
import qs.Services
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
required property ShellScreen screen
|
||||||
|
required property Item wrapper
|
||||||
|
|
||||||
|
implicitHeight: layout.implicitHeight + 16
|
||||||
|
implicitWidth: layout.implicitWidth + 16
|
||||||
|
|
||||||
|
GridLayout {
|
||||||
|
id: layout
|
||||||
|
|
||||||
|
anchors.centerIn: parent
|
||||||
|
columnSpacing: 8
|
||||||
|
rowSpacing: 8
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
model: Hypr.workspaces
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
id: workspacePreview
|
||||||
|
|
||||||
|
required property HyprlandWorkspace modelData
|
||||||
|
|
||||||
|
Layout.preferredHeight: 180 + 10
|
||||||
|
Layout.preferredWidth: 320 + 10
|
||||||
|
border.color: "white"
|
||||||
|
border.width: 1
|
||||||
|
radius: Tokens.rounding.smallest
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
model: workspacePreview.modelData.toplevels
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: preview
|
||||||
|
|
||||||
|
property rect appPosition: {
|
||||||
|
let {
|
||||||
|
at: [cx, cy],
|
||||||
|
size: [cw, ch]
|
||||||
|
} = modelData.lastIpcObject;
|
||||||
|
|
||||||
|
cx -= modelData.monitor.x;
|
||||||
|
cy -= modelData.monitor.y;
|
||||||
|
|
||||||
|
return Qt.rect((cx / 8), (cy / 8), (cw / 8), (ch / 8));
|
||||||
|
}
|
||||||
|
required property HyprlandToplevel modelData
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: 5
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
border.color: Colors.tPalette.m3outline
|
||||||
|
border.width: 1
|
||||||
|
implicitHeight: preview.appPosition.height
|
||||||
|
implicitWidth: preview.appPosition.width
|
||||||
|
radius: Tokens.rounding.smallest / 2
|
||||||
|
x: preview.appPosition.x
|
||||||
|
y: preview.appPosition.y - 3.4
|
||||||
|
|
||||||
|
ScreencopyView {
|
||||||
|
id: previewCopy
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
captureSource: preview.modelData.wayland
|
||||||
|
live: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import qs.Components
|
||||||
|
import ZShell.Config
|
||||||
|
import qs.Helpers
|
||||||
|
import qs.Services
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
required property var bar
|
||||||
|
property color colour: Colors.palette.m3primary
|
||||||
|
property Title current: text1
|
||||||
|
// readonly property int maxWidth: 300
|
||||||
|
readonly property int maxWidth: {
|
||||||
|
const otherModules = bar.children.filter(c => c.enabled && c.id && c.item !== this && c.id !== "spacer");
|
||||||
|
const otherWidth = otherModules.reduce((acc, curr) => {
|
||||||
|
return acc + (curr.item?.nonAnimWidth ?? curr.width ?? 0);
|
||||||
|
}, 0);
|
||||||
|
return bar.width - otherWidth - bar.spacing * (bar.children.length - 1) - bar.vPadding * 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
clip: true
|
||||||
|
implicitHeight: current.implicitHeight
|
||||||
|
implicitWidth: Math.min(current.implicitWidth, root.maxWidth)
|
||||||
|
|
||||||
|
Behavior on implicitWidth {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Title {
|
||||||
|
id: text1
|
||||||
|
}
|
||||||
|
|
||||||
|
Title {
|
||||||
|
id: text2
|
||||||
|
}
|
||||||
|
|
||||||
|
TextMetrics {
|
||||||
|
id: metrics
|
||||||
|
|
||||||
|
elide: Qt.ElideRight
|
||||||
|
elideWidth: root.maxWidth
|
||||||
|
font.family: "Rubik"
|
||||||
|
font.pointSize: Tokens.font.size.normal
|
||||||
|
text: Hypr.activeToplevel?.title ?? qsTr("Desktop")
|
||||||
|
|
||||||
|
onElideWidthChanged: root.current.text = elidedText
|
||||||
|
onTextChanged: {
|
||||||
|
const next = root.current === text1 ? text2 : text1;
|
||||||
|
next.text = elidedText;
|
||||||
|
root.current = next;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
component Title: CustomText {
|
||||||
|
id: text
|
||||||
|
|
||||||
|
anchors.leftMargin: 7
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
color: root.colour
|
||||||
|
font.family: metrics.font.family
|
||||||
|
font.pointSize: metrics.font.pointSize
|
||||||
|
height: implicitHeight
|
||||||
|
opacity: root.current === this ? 1 : 0
|
||||||
|
width: implicitWidth
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,10 +2,10 @@ pragma ComponentBehavior: Bound
|
|||||||
|
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
|
import QtQuick.Effects
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Hyprland
|
import Quickshell.Hyprland
|
||||||
import ZShell.Config
|
import ZShell.Config
|
||||||
import qs.Modules.Bar.Components.Workspaces
|
|
||||||
import qs.Components
|
import qs.Components
|
||||||
import qs.Services
|
import qs.Services
|
||||||
|
|
||||||
@@ -14,57 +14,41 @@ Item {
|
|||||||
|
|
||||||
property real activeWorkspaceMargin: Math.ceil(Tokens.padding.small / 2)
|
property real activeWorkspaceMargin: Math.ceil(Tokens.padding.small / 2)
|
||||||
readonly property int effectiveActiveWorkspaceId: monitor?.activeWorkspace?.id ?? 1
|
readonly property int effectiveActiveWorkspaceId: monitor?.activeWorkspace?.id ?? 1
|
||||||
required property bool horizontal
|
|
||||||
readonly property HyprlandMonitor monitor: Hyprland.monitorFor(root.screen)
|
readonly property HyprlandMonitor monitor: Hyprland.monitorFor(root.screen)
|
||||||
required property ShellScreen screen
|
required property ShellScreen screen
|
||||||
readonly property real shortSize: Math.max(Config.bar.height, Tokens.bar.innerSize)
|
property int workspaceButtonWidth: bgRect.implicitHeight - root.activeWorkspaceMargin * 2
|
||||||
readonly property real size: (workspaceButtonWidth * workspacesShown) + activeWorkspaceMargin * 2
|
|
||||||
property int workspaceButtonWidth: (horizontal ? bgRect.implicitHeight : bgRect.implicitWidth) - root.activeWorkspaceMargin * 2
|
|
||||||
property int workspaceIndexInGroup: (effectiveActiveWorkspaceId - 1) % root.workspacesShown
|
property int workspaceIndexInGroup: (effectiveActiveWorkspaceId - 1) % root.workspacesShown
|
||||||
readonly property list<var> workspaces: Hyprland.workspaces.values.filter(w => w.monitor === root.monitor)
|
readonly property list<var> workspaces: Hyprland.workspaces.values.filter(w => w.monitor === root.monitor)
|
||||||
readonly property int workspacesShown: workspaces.length
|
readonly property int workspacesShown: workspaces.length
|
||||||
|
|
||||||
implicitHeight: horizontal ? shortSize : size
|
height: implicitHeight
|
||||||
implicitWidth: horizontal ? size : shortSize
|
implicitHeight: Config.bar.height + Tokens.padding.smaller * 2
|
||||||
|
implicitWidth: (root.workspaceButtonWidth * root.workspacesShown) + root.activeWorkspaceMargin * 2
|
||||||
|
|
||||||
Behavior on implicitHeight {
|
|
||||||
enabled: !root.horizontal
|
|
||||||
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Behavior on implicitWidth {
|
Behavior on implicitWidth {
|
||||||
enabled: root.horizontal
|
|
||||||
|
|
||||||
Anim {
|
Anim {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CustomRect {
|
CustomRect {
|
||||||
// qmllint disable Quick.anchor-combinations
|
|
||||||
id: bgRect
|
id: bgRect
|
||||||
|
|
||||||
anchors.bottom: root.horizontal ? undefined : parent.bottom
|
anchors.left: parent.left
|
||||||
anchors.horizontalCenter: root.horizontal ? undefined : parent.horizontalCenter
|
anchors.right: parent.right
|
||||||
anchors.left: root.horizontal ? parent.left : undefined
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
anchors.right: root.horizontal ? parent.right : undefined
|
|
||||||
anchors.top: root.horizontal ? undefined : parent.top
|
|
||||||
anchors.verticalCenter: root.horizontal ? parent.verticalCenter : undefined
|
|
||||||
color: Colors.tPalette.m3surfaceContainer
|
color: Colors.tPalette.m3surfaceContainer
|
||||||
implicitHeight: root.horizontal ? root.implicitHeight : 0
|
implicitHeight: root.implicitHeight - ((Tokens.padding.small - 1) * 2)
|
||||||
implicitWidth: root.horizontal ? 0 : root.implicitWidth
|
|
||||||
radius: height / 2
|
radius: height / 2
|
||||||
|
|
||||||
// qmllint enable Quick.anchor-combinations
|
|
||||||
Grid {
|
Grid {
|
||||||
id: grid
|
id: grid
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: root.activeWorkspaceMargin
|
anchors.margins: root.activeWorkspaceMargin
|
||||||
columnSpacing: 0
|
columnSpacing: 0
|
||||||
columns: root.horizontal ? root.workspacesShown : 1
|
columns: root.workspacesShown
|
||||||
rowSpacing: 0
|
rowSpacing: 0
|
||||||
rows: root.horizontal ? 1 : root.workspacesShown
|
rows: 1
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: root.workspaces
|
model: root.workspaces
|
||||||
@@ -90,7 +74,7 @@ Item {
|
|||||||
color: Colors.palette.m3onSecondaryContainer
|
color: Colors.palette.m3onSecondaryContainer
|
||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
text: button.modelData?.name ?? ""
|
text: button.modelData.name
|
||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -110,15 +94,13 @@ Item {
|
|||||||
property real indicatorPosition: Math.min(idxPair.idx1, idxPair.idx2) * root.workspaceButtonWidth + root.activeWorkspaceMargin
|
property real indicatorPosition: Math.min(idxPair.idx1, idxPair.idx2) * root.workspaceButtonWidth + root.activeWorkspaceMargin
|
||||||
property real indicatorThickness: root.workspaceButtonWidth
|
property real indicatorThickness: root.workspaceButtonWidth
|
||||||
|
|
||||||
anchors.horizontalCenter: root.horizontal ? undefined : parent.horizontalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
anchors.verticalCenter: root.horizontal ? parent.verticalCenter : undefined
|
|
||||||
clip: true
|
clip: true
|
||||||
color: Colors.palette.m3primary
|
color: Colors.palette.m3primary
|
||||||
implicitHeight: root.horizontal ? indicatorThickness : indicatorLength
|
implicitHeight: indicatorThickness
|
||||||
implicitWidth: root.horizontal ? indicatorLength : indicatorThickness
|
implicitWidth: indicatorLength
|
||||||
radius: Tokens.rounding.full
|
radius: Tokens.rounding.full
|
||||||
x: root.horizontal ? indicatorPosition : 0
|
x: indicatorPosition
|
||||||
y: root.horizontal ? 0 : indicatorPosition
|
|
||||||
|
|
||||||
AnimatedTabIndexPair {
|
AnimatedTabIndexPair {
|
||||||
id: idxPair
|
id: idxPair
|
||||||
@@ -132,8 +114,7 @@ Item {
|
|||||||
implicitWidth: grid.width
|
implicitWidth: grid.width
|
||||||
source: grid
|
source: grid
|
||||||
sourceColor: Colors.palette.m3onSurface
|
sourceColor: Colors.palette.m3onSurface
|
||||||
x: root.horizontal ? -indicator.x + 3 : 0
|
x: -indicator.x + 3
|
||||||
y: root.horizontal ? 0 : -indicator.y + 3
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
#include "configlist.hpp"
|
#include "configlist.hpp"
|
||||||
#include "configobject.hpp"
|
#include "configobject.hpp"
|
||||||
#include <qcontainerfwd.h>
|
|
||||||
#include <qhashfunctions.h>
|
|
||||||
#include <qqmlregistration.h>
|
#include <qqmlregistration.h>
|
||||||
|
|
||||||
namespace ZShell::config {
|
namespace ZShell::config {
|
||||||
@@ -63,7 +61,6 @@ class Bar : public ConfigObject {
|
|||||||
CFG_PROPERTY(int, revealDelay, 100)
|
CFG_PROPERTY(int, revealDelay, 100)
|
||||||
CFG_PROPERTY(int, rounding, 14)
|
CFG_PROPERTY(int, rounding, 14)
|
||||||
CFG_PROPERTY(int, smoothing, 32)
|
CFG_PROPERTY(int, smoothing, 32)
|
||||||
CFG_PROPERTY(QString, position, QStringLiteral("top"))
|
|
||||||
CONFIG_SUBOBJECT(Tray, tray)
|
CONFIG_SUBOBJECT(Tray, tray)
|
||||||
CONFIG_LIST(
|
CONFIG_LIST(
|
||||||
EntryList,
|
EntryList,
|
||||||
|
|||||||
@@ -61,8 +61,6 @@ Config::Config(QObject* parent)
|
|||||||
m_reloadTimer.setInterval(50);
|
m_reloadTimer.setInterval(50);
|
||||||
connect(&m_reloadTimer, &QTimer::timeout, this, &Config::reloadAsync);
|
connect(&m_reloadTimer, &QTimer::timeout, this, &Config::reloadAsync);
|
||||||
|
|
||||||
connectAutoSave(this);
|
|
||||||
|
|
||||||
connect(
|
connect(
|
||||||
&m_watcher,
|
&m_watcher,
|
||||||
&QFileSystemWatcher::directoryChanged,
|
&QFileSystemWatcher::directoryChanged,
|
||||||
@@ -95,31 +93,15 @@ QString Config::filePath() const {
|
|||||||
|
|
||||||
void Config::loadSync() {
|
void Config::loadSync() {
|
||||||
m_loading = true;
|
m_loading = true;
|
||||||
|
|
||||||
QFile f(filePath());
|
QFile f(filePath());
|
||||||
QJsonObject before;
|
|
||||||
|
|
||||||
bool existed = false;
|
|
||||||
|
|
||||||
if (f.open(QIODevice::ReadOnly)) {
|
if (f.open(QIODevice::ReadOnly)) {
|
||||||
const auto doc = QJsonDocument::fromJson(f.readAll());
|
const auto doc = QJsonDocument::fromJson(f.readAll());
|
||||||
if (doc.isObject()) {
|
if (doc.isObject()) loadFromJson(QJsonValue(doc.object()));
|
||||||
before = doc.object();
|
|
||||||
existed = true;
|
|
||||||
} else {
|
|
||||||
qInfo() << "Config: existing config at" << filePath()
|
|
||||||
<< "is empty or not a valid JSON object - using defaults";
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
qInfo() << "Config: no existing config at" << filePath()
|
qInfo() << "Config: no existing config at" << filePath()
|
||||||
<< "- using defaults";
|
<< "- using defaults";
|
||||||
}
|
}
|
||||||
|
|
||||||
loadFromJson(QJsonValue(before));
|
|
||||||
m_loading = false;
|
m_loading = false;
|
||||||
|
|
||||||
const auto after = toJson().toObject();
|
|
||||||
if (!existed || after != before) saveNow();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Config::updateWatch() {
|
void Config::updateWatch() {
|
||||||
@@ -164,21 +146,27 @@ void Config::loadAsync() {
|
|||||||
|
|
||||||
if (f.open(QIODevice::ReadOnly)) {
|
if (f.open(QIODevice::ReadOnly)) {
|
||||||
const auto doc = QJsonDocument::fromJson(f.readAll());
|
const auto doc = QJsonDocument::fromJson(f.readAll());
|
||||||
const bool valid = doc.isObject();
|
|
||||||
const QJsonObject before = valid ? doc.object() : QJsonObject();
|
|
||||||
|
|
||||||
QMetaObject::invokeMethod(
|
if (doc.isObject()) {
|
||||||
this,
|
QMetaObject::invokeMethod(
|
||||||
[this, valid, before]() {
|
this,
|
||||||
loadFromJson(QJsonValue(before));
|
[this, doc]() {
|
||||||
m_loading = false;
|
loadFromJson(QJsonValue(doc.object()));
|
||||||
|
m_loading = false;
|
||||||
|
|
||||||
const auto after = toJson().toObject();
|
if (m_reloadPending) m_reloadTimer.start();
|
||||||
if (!valid || after != before) saveNow();
|
},
|
||||||
|
Qt::QueuedConnection);
|
||||||
|
} else {
|
||||||
|
QMetaObject::invokeMethod(
|
||||||
|
this,
|
||||||
|
[this]() {
|
||||||
|
m_loading = false;
|
||||||
|
|
||||||
if (m_reloadPending) m_reloadTimer.start();
|
if (m_reloadPending) m_reloadTimer.start();
|
||||||
},
|
},
|
||||||
Qt::QueuedConnection);
|
Qt::QueuedConnection);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
qInfo() << "Config: failed to reload from" << filePath()
|
qInfo() << "Config: failed to reload from" << filePath()
|
||||||
<< "- using in-memory values";
|
<< "- using in-memory values";
|
||||||
@@ -244,15 +232,6 @@ void Config::saveNow() {
|
|||||||
flushAsync();
|
flushAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Config::connectAutoSave(ConfigNode* node) {
|
|
||||||
connect(node, &ConfigNode::propertiesChanged, this, [this] {
|
|
||||||
scheduleSave();
|
|
||||||
});
|
|
||||||
|
|
||||||
for (auto* child : node->childNodes())
|
|
||||||
connectAutoSave(child);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Config::writeAtomically(const QByteArray& data) {
|
bool Config::writeAtomically(const QByteArray& data) {
|
||||||
QSaveFile f(filePath());
|
QSaveFile f(filePath());
|
||||||
|
|
||||||
|
|||||||
@@ -90,7 +90,6 @@ class Config : public ConfigObject {
|
|||||||
void updateWatch();
|
void updateWatch();
|
||||||
void loadSync();
|
void loadSync();
|
||||||
void loadAsync();
|
void loadAsync();
|
||||||
void connectAutoSave(ConfigNode* node);
|
|
||||||
|
|
||||||
QTimer m_saveTimer;
|
QTimer m_saveTimer;
|
||||||
QTimer m_reloadTimer;
|
QTimer m_reloadTimer;
|
||||||
|
|||||||
@@ -79,14 +79,13 @@ void ConfigList::loadFromJson(const QJsonValue& json) {
|
|||||||
if (!json.isArray()) {
|
if (!json.isArray()) {
|
||||||
qCWarning(
|
qCWarning(
|
||||||
lcConfig,
|
lcConfig,
|
||||||
"Option '%s' must be a list, resetting to default",
|
"Option '%s' must be a list, ignoring",
|
||||||
qUtf8Printable(propertyPath()));
|
qUtf8Printable(propertyPath()));
|
||||||
|
m_rejectedJson = json;
|
||||||
resetToDefaults();
|
|
||||||
materializeDefaults();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_rejectedJson = QJsonValue::Undefined;
|
||||||
populate(json.toArray());
|
populate(json.toArray());
|
||||||
m_loaded = true;
|
m_loaded = true;
|
||||||
}
|
}
|
||||||
@@ -94,11 +93,12 @@ void ConfigList::loadFromJson(const QJsonValue& json) {
|
|||||||
QJsonValue ConfigList::toJson() const {
|
QJsonValue ConfigList::toJson() const {
|
||||||
if (m_loaded) return elementsToJson();
|
if (m_loaded) return elementsToJson();
|
||||||
|
|
||||||
return QJsonValue::Undefined;
|
return m_rejectedJson;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfigList::clearLoadedKeys() {
|
void ConfigList::clearLoadedKeys() {
|
||||||
m_loaded = false;
|
m_loaded = false;
|
||||||
|
m_rejectedJson = QJsonValue::Undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList ConfigList::unknownKeys() const {
|
QStringList ConfigList::unknownKeys() const {
|
||||||
@@ -113,15 +113,6 @@ QStringList ConfigList::unknownKeys() const {
|
|||||||
return keys;
|
return keys;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfigList::materializeDefaults() {
|
|
||||||
for (auto* const item : m_items)
|
|
||||||
item->materializeDefaults();
|
|
||||||
|
|
||||||
if (m_global) return;
|
|
||||||
|
|
||||||
m_loaded = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void ConfigList::resyncFromGlobal() {
|
void ConfigList::resyncFromGlobal() {
|
||||||
syncValuesFromGlobal();
|
syncValuesFromGlobal();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ class ConfigList : public ConfigNode {
|
|||||||
[[nodiscard]] QJsonValue toJson() const override;
|
[[nodiscard]] QJsonValue toJson() const override;
|
||||||
void clearLoadedKeys() override;
|
void clearLoadedKeys() override;
|
||||||
[[nodiscard]] QStringList unknownKeys() const override;
|
[[nodiscard]] QStringList unknownKeys() const override;
|
||||||
void materializeDefaults() override;
|
|
||||||
void resyncFromGlobal() override;
|
void resyncFromGlobal() override;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
@@ -72,6 +71,7 @@ class ConfigList : public ConfigNode {
|
|||||||
QJsonArray m_defaults;
|
QJsonArray m_defaults;
|
||||||
QList<ConfigObject*> m_items;
|
QList<ConfigObject*> m_items;
|
||||||
bool m_loaded = false;
|
bool m_loaded = false;
|
||||||
|
QJsonValue m_rejectedJson = QJsonValue::Undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ZShell::config
|
} // namespace ZShell::config
|
||||||
@@ -103,6 +103,7 @@ class ConfigList : public ConfigNode {
|
|||||||
} \
|
} \
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_LIST(Type, name, ...) \
|
#define CONFIG_LIST(Type, name, ...) \
|
||||||
Q_PROPERTY(ZShell::config::Type* name READ name CONSTANT) \
|
Q_PROPERTY(ZShell::config::Type* name READ name CONSTANT) \
|
||||||
\
|
\
|
||||||
@@ -114,8 +115,6 @@ class ConfigList : public ConfigNode {
|
|||||||
private: \
|
private: \
|
||||||
Type* m_##name = new Type(this __VA_OPT__(, __VA_ARGS__));
|
Type* m_##name = new Type(this __VA_OPT__(, __VA_ARGS__));
|
||||||
|
|
||||||
#define LIST_ENTRY(id, enabled) \
|
|
||||||
vmap({{"id", QString::fromUtf8(#id)}, {"enabled", enabled}})
|
|
||||||
|
|
||||||
namespace ZShell::config {
|
namespace ZShell::config {
|
||||||
|
|
||||||
@@ -137,3 +136,6 @@ class ListEntry : public ConfigObject {
|
|||||||
CONFIG_LIST_TYPE(ListEntry, EntryList)
|
CONFIG_LIST_TYPE(ListEntry, EntryList)
|
||||||
|
|
||||||
} // namespace ZShell::config
|
} // namespace ZShell::config
|
||||||
|
|
||||||
|
#define LIST_ENTRY(id, enabled) \
|
||||||
|
vmap({{"id", QString::fromUtf8(#id)}, {"enabled", enabled}})
|
||||||
|
|||||||
@@ -26,8 +26,6 @@ class ConfigNode : public QObject {
|
|||||||
[[nodiscard]] virtual QStringList unknownKeys() const = 0;
|
[[nodiscard]] virtual QStringList unknownKeys() const = 0;
|
||||||
[[nodiscard]] virtual QList<ConfigNode*> childNodes() const;
|
[[nodiscard]] virtual QList<ConfigNode*> childNodes() const;
|
||||||
|
|
||||||
virtual void materializeDefaults() = 0;
|
|
||||||
|
|
||||||
void syncFromGlobal(ConfigNode* global);
|
void syncFromGlobal(ConfigNode* global);
|
||||||
virtual void resyncFromGlobal() = 0;
|
virtual void resyncFromGlobal() = 0;
|
||||||
|
|
||||||
|
|||||||
@@ -7,51 +7,6 @@
|
|||||||
|
|
||||||
namespace ZShell::config {
|
namespace ZShell::config {
|
||||||
|
|
||||||
namespace {
|
|
||||||
|
|
||||||
bool isStringArray(const QJsonArray& arr) {
|
|
||||||
for (const auto& v : arr) {
|
|
||||||
if (!v.isString()) return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool jsonValueMatchesType(const QJsonValue& val, QMetaType type) {
|
|
||||||
switch (val.type()) {
|
|
||||||
case QJsonValue::Bool:
|
|
||||||
return type.id() == QMetaType::Bool;
|
|
||||||
|
|
||||||
case QJsonValue::Double:
|
|
||||||
switch (type.id()) {
|
|
||||||
case QMetaType::Int:
|
|
||||||
case QMetaType::UInt:
|
|
||||||
case QMetaType::LongLong:
|
|
||||||
case QMetaType::ULongLong:
|
|
||||||
case QMetaType::Double:
|
|
||||||
case QMetaType::Float:
|
|
||||||
return true;
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
case QJsonValue::String:
|
|
||||||
return type.id() == QMetaType::QString;
|
|
||||||
|
|
||||||
case QJsonValue::Array:
|
|
||||||
if (type.id() == QMetaType::QStringList)
|
|
||||||
return isStringArray(val.toArray());
|
|
||||||
return type.id() == QMetaType::QVariantList;
|
|
||||||
|
|
||||||
case QJsonValue::Object:
|
|
||||||
case QJsonValue::Null:
|
|
||||||
case QJsonValue::Undefined:
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace
|
|
||||||
|
|
||||||
ConfigObject::ConfigObject(QObject* parent) : ConfigNode(parent) {}
|
ConfigObject::ConfigObject(QObject* parent) : ConfigNode(parent) {}
|
||||||
|
|
||||||
void ConfigObject::loadFromJson(const QJsonValue& json) {
|
void ConfigObject::loadFromJson(const QJsonValue& json) {
|
||||||
@@ -59,7 +14,6 @@ void ConfigObject::loadFromJson(const QJsonValue& json) {
|
|||||||
const auto* meta = metaObject();
|
const auto* meta = metaObject();
|
||||||
|
|
||||||
QSet<QString> known;
|
QSet<QString> known;
|
||||||
QSet<QString> invalid;
|
|
||||||
|
|
||||||
for (int i = basePropertyOffset(); i < meta->propertyCount(); ++i) {
|
for (int i = basePropertyOffset(); i < meta->propertyCount(); ++i) {
|
||||||
auto prop = meta->property(i);
|
auto prop = meta->property(i);
|
||||||
@@ -80,15 +34,6 @@ void ConfigObject::loadFromJson(const QJsonValue& json) {
|
|||||||
|
|
||||||
if (!prop.isWritable()) continue;
|
if (!prop.isWritable()) continue;
|
||||||
|
|
||||||
if (!jsonValueMatchesType(jsonVal, prop.metaType())) {
|
|
||||||
qWarning() << "Config: type mismatch for" << key << "in"
|
|
||||||
<< meta->className() << "- expected"
|
|
||||||
<< prop.metaType().name() << "got value" << jsonVal
|
|
||||||
<< "- resetting to default";
|
|
||||||
invalid.insert(key);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (prop.metaType().id() == QMetaType::QStringList) {
|
if (prop.metaType().id() == QMetaType::QStringList) {
|
||||||
QStringList list;
|
QStringList list;
|
||||||
const auto jsonArr = jsonVal.toArray();
|
const auto jsonArr = jsonVal.toArray();
|
||||||
@@ -111,12 +56,10 @@ void ConfigObject::loadFromJson(const QJsonValue& json) {
|
|||||||
|
|
||||||
m_extras = {};
|
m_extras = {};
|
||||||
for (auto it = obj.begin(); it != obj.end(); ++it) {
|
for (auto it = obj.begin(); it != obj.end(); ++it) {
|
||||||
if (!known.contains(it.key()) || invalid.contains(it.key())) {
|
if (!known.contains(it.key())) {
|
||||||
m_extras.insert(it.key(), it.value());
|
m_extras.insert(it.key(), it.value());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
materializeDefaults();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QJsonValue ConfigObject::toJson() const {
|
QJsonValue ConfigObject::toJson() const {
|
||||||
@@ -161,6 +104,9 @@ QJsonValue ConfigObject::toJson() const {
|
|||||||
obj.insert(key, QJsonValue::fromVariant(value));
|
obj.insert(key, QJsonValue::fromVariant(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (auto it = m_extras.begin(); it != m_extras.end(); ++it)
|
||||||
|
obj.insert(it.key(), it.value());
|
||||||
|
|
||||||
if (obj.isEmpty()) return QJsonValue::Undefined;
|
if (obj.isEmpty()) return QJsonValue::Undefined;
|
||||||
|
|
||||||
return obj;
|
return obj;
|
||||||
@@ -213,26 +159,6 @@ QList<ConfigNode*> ConfigObject::childNodes() const {
|
|||||||
return nodes;
|
return nodes;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfigObject::materializeDefaults() {
|
|
||||||
const auto* meta = metaObject();
|
|
||||||
|
|
||||||
for (int i = basePropertyOffset(); i < meta->propertyCount(); ++i) {
|
|
||||||
const auto prop = meta->property(i);
|
|
||||||
const auto key = QString::fromUtf8(prop.name());
|
|
||||||
|
|
||||||
if (auto* const node = prop.read(this).value<ConfigNode*>()) {
|
|
||||||
node->materializeDefaults();
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!prop.isWritable()) continue;
|
|
||||||
|
|
||||||
if (m_global) continue;
|
|
||||||
|
|
||||||
m_loadedKeys.insert(key);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void ConfigObject::syncValuesFromGlobal() {
|
void ConfigObject::syncValuesFromGlobal() {
|
||||||
const auto* meta = metaObject();
|
const auto* meta = metaObject();
|
||||||
|
|
||||||
|
|||||||
@@ -62,7 +62,6 @@ class ConfigObject : public ConfigNode {
|
|||||||
void clearLoadedKeys() override;
|
void clearLoadedKeys() override;
|
||||||
[[nodiscard]] QStringList unknownKeys() const override;
|
[[nodiscard]] QStringList unknownKeys() const override;
|
||||||
[[nodiscard]] QList<ConfigNode*> childNodes() const override;
|
[[nodiscard]] QList<ConfigNode*> childNodes() const override;
|
||||||
void materializeDefaults() override;
|
|
||||||
void resyncFromGlobal() override;
|
void resyncFromGlobal() override;
|
||||||
|
|
||||||
[[nodiscard]] virtual QStringList identityKeys() const;
|
[[nodiscard]] virtual QStringList identityKeys() const;
|
||||||
|
|||||||
@@ -3,9 +3,7 @@
|
|||||||
#include "configobject.hpp"
|
#include "configobject.hpp"
|
||||||
|
|
||||||
#include <QVariantList>
|
#include <QVariantList>
|
||||||
#include <qobject.h>
|
|
||||||
#include <qqmlengine.h>
|
#include <qqmlengine.h>
|
||||||
#include <qqmlintegration.h>
|
|
||||||
#include <qqmlregistration.h>
|
#include <qqmlregistration.h>
|
||||||
|
|
||||||
namespace ZShell::config {
|
namespace ZShell::config {
|
||||||
@@ -197,16 +195,6 @@ class AnimTokens : public ConfigObject {
|
|||||||
, m_durations(new AnimDurations(this)) {}
|
, m_durations(new AnimDurations(this)) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
class BarTokens : public ConfigObject {
|
|
||||||
Q_OBJECT
|
|
||||||
QML_ANONYMOUS
|
|
||||||
|
|
||||||
CFG_PROPERTY(int, innerSize, 28)
|
|
||||||
|
|
||||||
public:
|
|
||||||
explicit BarTokens(QObject* parent = nullptr) : ConfigObject(parent) {}
|
|
||||||
};
|
|
||||||
|
|
||||||
class Tokens : public ConfigObject {
|
class Tokens : public ConfigObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
QML_ELEMENT
|
QML_ELEMENT
|
||||||
@@ -217,7 +205,6 @@ class Tokens : public ConfigObject {
|
|||||||
CONFIG_SUBOBJECT(AppearanceSpacing, spacing)
|
CONFIG_SUBOBJECT(AppearanceSpacing, spacing)
|
||||||
CONFIG_SUBOBJECT(FontTokens, font)
|
CONFIG_SUBOBJECT(FontTokens, font)
|
||||||
CONFIG_SUBOBJECT(AnimTokens, anim)
|
CONFIG_SUBOBJECT(AnimTokens, anim)
|
||||||
CONFIG_SUBOBJECT(BarTokens, bar)
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit Tokens(QObject* parent = nullptr)
|
explicit Tokens(QObject* parent = nullptr)
|
||||||
@@ -226,8 +213,7 @@ class Tokens : public ConfigObject {
|
|||||||
, m_padding(new AppearancePadding(this))
|
, m_padding(new AppearancePadding(this))
|
||||||
, m_spacing(new AppearanceSpacing(this))
|
, m_spacing(new AppearanceSpacing(this))
|
||||||
, m_font(new FontTokens(this))
|
, m_font(new FontTokens(this))
|
||||||
, m_anim(new AnimTokens(this))
|
, m_anim(new AnimTokens(this)) {}
|
||||||
, m_bar(new BarTokens(this)) {}
|
|
||||||
|
|
||||||
static Tokens* create(QQmlEngine*, QJSEngine*) { return new Tokens(); }
|
static Tokens* create(QQmlEngine*, QJSEngine*) { return new Tokens(); }
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -113,6 +113,7 @@ Singleton {
|
|||||||
function setMode(mode: string): void {
|
function setMode(mode: string): void {
|
||||||
Quickshell.execDetached(["zshell-cli", "scheme", "generate", "--mode", mode]);
|
Quickshell.execDetached(["zshell-cli", "scheme", "generate", "--mode", mode]);
|
||||||
Config.general.color.mode = mode;
|
Config.general.color.mode = mode;
|
||||||
|
Config.save();
|
||||||
}
|
}
|
||||||
|
|
||||||
function swapRG(c: color): color {
|
function swapRG(c: color): color {
|
||||||
|
|||||||
Reference in New Issue
Block a user