Merge pull request 'Status icons' (#142) from refactor/status-icons into main
Reviewed-on: #142
This commit was merged in pull request #142.
This commit is contained in:
+113
-7
@@ -1,13 +1,119 @@
|
|||||||
pragma Singleton
|
pragma Singleton
|
||||||
|
|
||||||
import Quickshell
|
import Quickshell
|
||||||
|
import QtQuick
|
||||||
|
|
||||||
Singleton {
|
Singleton {
|
||||||
readonly property AppearanceConf.Anim anim: Config.appearance.anim
|
property Anim anim: Anim {
|
||||||
readonly property AppearanceConf.Deform deform: Config.appearance.deform
|
}
|
||||||
readonly property AppearanceConf.FontStuff font: Config.appearance.font
|
property Deform deform: Deform {
|
||||||
readonly property AppearanceConf.Padding padding: Config.appearance.padding
|
}
|
||||||
readonly property AppearanceConf.Rounding rounding: Config.appearance.rounding
|
property FontStuff font: FontStuff {
|
||||||
readonly property AppearanceConf.Spacing spacing: Config.appearance.spacing
|
}
|
||||||
readonly property AppearanceConf.Transparency transparency: Config.appearance.transparency
|
property Padding padding: Padding {
|
||||||
|
}
|
||||||
|
property Rounding rounding: Rounding {
|
||||||
|
}
|
||||||
|
property Spacing spacing: Spacing {
|
||||||
|
}
|
||||||
|
property Transparency transparency: Transparency {
|
||||||
|
}
|
||||||
|
|
||||||
|
component Anim: QtObject {
|
||||||
|
property AnimCurves curves: AnimCurves {
|
||||||
|
}
|
||||||
|
property AnimDurations durations: AnimDurations {
|
||||||
|
}
|
||||||
|
property real mediaGifSpeedAdjustment: Config.appearance.anim.mediaGifSpeedAdjustment
|
||||||
|
property real sessionGifSpeed: Config.appearance.anim.sessionGifSpeed
|
||||||
|
}
|
||||||
|
component AnimCurves: QtObject {
|
||||||
|
property list<real> emphasized: [0.05, 0, 2 / 15, 0.06, 1 / 6, 0.4, 5 / 24, 0.82, 0.25, 1, 1, 1]
|
||||||
|
property list<real> emphasizedAccel: [0.3, 0, 0.8, 0.15, 1, 1]
|
||||||
|
property list<real> emphasizedDecel: [0.05, 0.7, 0.1, 1, 1, 1]
|
||||||
|
property list<real> expressiveDefaultEffects: [0.34, 0.8, 0.34, 1, 1, 1]
|
||||||
|
property list<real> expressiveDefaultSpatial: [0.38, 1.21, 0.22, 1, 1, 1]
|
||||||
|
property list<real> expressiveEffects: [0.34, 0.8, 0.34, 1, 1, 1]
|
||||||
|
property list<real> expressiveFastEffects: [0.31, 0.94, 0.34, 1, 1, 1]
|
||||||
|
property list<real> expressiveFastSpatial: [0.42, 1.67, 0.21, 0.9, 1, 1]
|
||||||
|
property list<real> expressiveSlowEffects: [0.34, 0.88, 0.34, 1, 1, 1]
|
||||||
|
property list<real> expressiveSlowSpatial: [0.39, 1.29, 0.35, 0.98, 1, 1]
|
||||||
|
property list<real> standard: [0.2, 0, 0, 1, 1, 1]
|
||||||
|
property list<real> standardAccel: [0.3, 0, 1, 1, 1, 1]
|
||||||
|
property list<real> standardDecel: [0, 0, 0, 1, 1, 1]
|
||||||
|
}
|
||||||
|
component AnimDurations: QtObject {
|
||||||
|
property int expressiveDefaultSpatial: 500 * scale
|
||||||
|
property int expressiveEffects: 200 * scale
|
||||||
|
property int expressiveFastEffects: 150 * scale
|
||||||
|
property int expressiveFastSpatial: 350 * scale
|
||||||
|
property int expressiveSlowEffects: 300 * scale
|
||||||
|
property int extraLarge: 1000 * scale
|
||||||
|
property int large: 600 * scale
|
||||||
|
property int normal: 400 * scale
|
||||||
|
property real scale: 1
|
||||||
|
property int small: 200 * scale
|
||||||
|
}
|
||||||
|
component Deform: QtObject {
|
||||||
|
property real scale: Config.appearance.deform.scale
|
||||||
|
}
|
||||||
|
component FontFamily: QtObject {
|
||||||
|
property string clock: Config.appearance.font.family.clock
|
||||||
|
property string material: Config.appearance.font.family.material
|
||||||
|
property string mono: Config.appearance.font.family.mono
|
||||||
|
property string sans: Config.appearance.font.family.sans
|
||||||
|
}
|
||||||
|
component FontSize: QtObject {
|
||||||
|
property int extraLarge: 28 * scale
|
||||||
|
property int large: 18 * scale
|
||||||
|
property int larger: 16 * scale
|
||||||
|
property int medium: 14 * scale
|
||||||
|
property int normal: 13 * scale
|
||||||
|
property real scale: 1
|
||||||
|
property int small: 11 * scale
|
||||||
|
property int smaller: 12 * scale
|
||||||
|
}
|
||||||
|
component FontStuff: QtObject {
|
||||||
|
property FontFamily family: FontFamily {
|
||||||
|
}
|
||||||
|
property FontSize size: FontSize {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
component Padding: QtObject {
|
||||||
|
property int extraLarge: 28 * scale
|
||||||
|
property int extraLargeIncreased: 32 * scale
|
||||||
|
property int extraSmall: 4 * scale
|
||||||
|
property int large: 16 * scale
|
||||||
|
property int largeIncreased: 20 * scale
|
||||||
|
property int larger: 12 * scale
|
||||||
|
property int normal: 8 * scale
|
||||||
|
property real scale: 1
|
||||||
|
property int small: 5 * scale
|
||||||
|
property int smaller: 7 * scale
|
||||||
|
property int smallest: 2 * scale
|
||||||
|
}
|
||||||
|
component Rounding: QtObject {
|
||||||
|
property int extraSmall: 4 * scale
|
||||||
|
property int full: 1000 * scale
|
||||||
|
property int large: 24 * scale
|
||||||
|
property int medium: 16 * scale
|
||||||
|
property int normal: 18 * scale
|
||||||
|
property real scale: 1
|
||||||
|
property int small: 12 * scale
|
||||||
|
property int smallest: 8 * scale
|
||||||
|
}
|
||||||
|
component Spacing: QtObject {
|
||||||
|
property int extraSmall: 4 * scale
|
||||||
|
property int large: 20 * scale
|
||||||
|
property int larger: 16 * scale
|
||||||
|
property int normal: 12 * scale
|
||||||
|
property real scale: 1
|
||||||
|
property int small: 8 * scale
|
||||||
|
property int smaller: 10 * scale
|
||||||
|
}
|
||||||
|
component Transparency: QtObject {
|
||||||
|
property real base: Config.appearance.transparency.base
|
||||||
|
property bool enabled: Config.appearance.transparency.enabled
|
||||||
|
property real layers: Config.appearance.transparency.layers
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,50 +7,13 @@ JsonObject {
|
|||||||
}
|
}
|
||||||
property FontStuff font: FontStuff {
|
property FontStuff font: FontStuff {
|
||||||
}
|
}
|
||||||
property Padding padding: Padding {
|
|
||||||
}
|
|
||||||
property Rounding rounding: Rounding {
|
|
||||||
}
|
|
||||||
property Spacing spacing: Spacing {
|
|
||||||
}
|
|
||||||
property Transparency transparency: Transparency {
|
property Transparency transparency: Transparency {
|
||||||
}
|
}
|
||||||
|
|
||||||
component Anim: JsonObject {
|
component Anim: JsonObject {
|
||||||
property AnimCurves curves: AnimCurves {
|
|
||||||
}
|
|
||||||
property AnimDurations durations: AnimDurations {
|
|
||||||
}
|
|
||||||
property real mediaGifSpeedAdjustment: 300
|
property real mediaGifSpeedAdjustment: 300
|
||||||
property real sessionGifSpeed: 0.7
|
property real sessionGifSpeed: 0.7
|
||||||
}
|
}
|
||||||
component AnimCurves: JsonObject {
|
|
||||||
property list<real> emphasized: [0.05, 0, 2 / 15, 0.06, 1 / 6, 0.4, 5 / 24, 0.82, 0.25, 1, 1, 1]
|
|
||||||
property list<real> emphasizedAccel: [0.3, 0, 0.8, 0.15, 1, 1]
|
|
||||||
property list<real> emphasizedDecel: [0.05, 0.7, 0.1, 1, 1, 1]
|
|
||||||
property list<real> expressiveDefaultEffects: [0.34, 0.8, 0.34, 1, 1, 1]
|
|
||||||
property list<real> expressiveDefaultSpatial: [0.38, 1.21, 0.22, 1, 1, 1]
|
|
||||||
property list<real> expressiveEffects: [0.34, 0.8, 0.34, 1, 1, 1]
|
|
||||||
property list<real> expressiveFastEffects: [0.31, 0.94, 0.34, 1, 1, 1]
|
|
||||||
property list<real> expressiveFastSpatial: [0.42, 1.67, 0.21, 0.9, 1, 1]
|
|
||||||
property list<real> expressiveSlowEffects: [0.34, 0.88, 0.34, 1, 1, 1]
|
|
||||||
property list<real> expressiveSlowSpatial: [0.39, 1.29, 0.35, 0.98, 1, 1]
|
|
||||||
property list<real> standard: [0.2, 0, 0, 1, 1, 1]
|
|
||||||
property list<real> standardAccel: [0.3, 0, 1, 1, 1, 1]
|
|
||||||
property list<real> standardDecel: [0, 0, 0, 1, 1, 1]
|
|
||||||
}
|
|
||||||
component AnimDurations: JsonObject {
|
|
||||||
property int expressiveDefaultSpatial: 500 * scale
|
|
||||||
property int expressiveEffects: 200 * scale
|
|
||||||
property int expressiveFastEffects: 150 * scale
|
|
||||||
property int expressiveFastSpatial: 350 * scale
|
|
||||||
property int expressiveSlowEffects: 300 * scale
|
|
||||||
property int extraLarge: 1000 * scale
|
|
||||||
property int large: 600 * scale
|
|
||||||
property int normal: 400 * scale
|
|
||||||
property real scale: 1
|
|
||||||
property int small: 200 * scale
|
|
||||||
}
|
|
||||||
component Deform: JsonObject {
|
component Deform: JsonObject {
|
||||||
property real scale: 1
|
property real scale: 1
|
||||||
}
|
}
|
||||||
@@ -60,53 +23,9 @@ JsonObject {
|
|||||||
property string mono: "CaskaydiaCove NF"
|
property string mono: "CaskaydiaCove NF"
|
||||||
property string sans: "Segoe UI Variable Text"
|
property string sans: "Segoe UI Variable Text"
|
||||||
}
|
}
|
||||||
component FontSize: JsonObject {
|
|
||||||
property int extraLarge: 28 * scale
|
|
||||||
property int large: 18 * scale
|
|
||||||
property int larger: 16 * scale
|
|
||||||
property int medium: 14 * scale
|
|
||||||
property int normal: 13 * scale
|
|
||||||
property real scale: 1
|
|
||||||
property int small: 11 * scale
|
|
||||||
property int smaller: 12 * scale
|
|
||||||
}
|
|
||||||
component FontStuff: JsonObject {
|
component FontStuff: JsonObject {
|
||||||
property FontFamily family: FontFamily {
|
property FontFamily family: FontFamily {
|
||||||
}
|
}
|
||||||
property FontSize size: FontSize {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
component Padding: JsonObject {
|
|
||||||
property int extraLarge: 28 * scale
|
|
||||||
property int extraLargeIncreased: 32 * scale
|
|
||||||
property int extraSmall: 4 * scale
|
|
||||||
property int large: 16 * scale
|
|
||||||
property int largeIncreased: 20 * scale
|
|
||||||
property int larger: 12 * scale
|
|
||||||
property int normal: 8 * scale
|
|
||||||
property real scale: 1
|
|
||||||
property int small: 5 * scale
|
|
||||||
property int smaller: 7 * scale
|
|
||||||
property int smallest: 2 * scale
|
|
||||||
}
|
|
||||||
component Rounding: JsonObject {
|
|
||||||
property int extraSmall: 4 * scale
|
|
||||||
property int full: 1000 * scale
|
|
||||||
property int large: 24 * scale
|
|
||||||
property int medium: 16 * scale
|
|
||||||
property int normal: 18 * scale
|
|
||||||
property real scale: 1
|
|
||||||
property int small: 12 * scale
|
|
||||||
property int smallest: 8 * scale
|
|
||||||
}
|
|
||||||
component Spacing: JsonObject {
|
|
||||||
property int extraSmall: 4 * scale
|
|
||||||
property int large: 20 * scale
|
|
||||||
property int larger: 16 * scale
|
|
||||||
property int normal: 12 * scale
|
|
||||||
property real scale: 1
|
|
||||||
property int small: 8 * scale
|
|
||||||
property int smaller: 10 * scale
|
|
||||||
}
|
}
|
||||||
component Transparency: JsonObject {
|
component Transparency: JsonObject {
|
||||||
property real base: 0.85
|
property real base: 0.85
|
||||||
|
|||||||
@@ -4,11 +4,4 @@ import qs.Config
|
|||||||
JsonObject {
|
JsonObject {
|
||||||
property bool enabled: true
|
property bool enabled: true
|
||||||
property int wallFadeDuration: MaterialEasing.standardTime
|
property int wallFadeDuration: MaterialEasing.standardTime
|
||||||
property real alignX: 0.5
|
|
||||||
property real alignY: 0.5
|
|
||||||
property real zoom: 1.0
|
|
||||||
property real sourceClipX: 0
|
|
||||||
property real sourceClipY: 0
|
|
||||||
property real sourceClipW: 0
|
|
||||||
property real sourceClipH: 0
|
|
||||||
}
|
}
|
||||||
|
|||||||
+31
-12
@@ -40,6 +40,10 @@ JsonObject {
|
|||||||
id: "tray",
|
id: "tray",
|
||||||
enabled: true
|
enabled: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "statusIcons",
|
||||||
|
enabled: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "network",
|
id: "network",
|
||||||
enabled: false
|
enabled: false
|
||||||
@@ -63,23 +67,38 @@ JsonObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
component Popouts: JsonObject {
|
component Popouts: JsonObject {
|
||||||
property bool activeWindow: true
|
property bool statusIcons: true
|
||||||
property bool audio: true
|
|
||||||
property bool clock: true
|
|
||||||
property bool network: true
|
|
||||||
property bool resources: true
|
|
||||||
property bool tray: true
|
property bool tray: true
|
||||||
property bool upower: true
|
|
||||||
}
|
}
|
||||||
component Tray: JsonObject {
|
component Tray: JsonObject {
|
||||||
property bool recolorIcons: false
|
property bool recolorIcons: false
|
||||||
property bool showAudio: true
|
|
||||||
property bool showBluetooth: false
|
|
||||||
property bool showMicrophone: true
|
|
||||||
property bool showNetwork: false
|
|
||||||
property bool showOnHover: false
|
property bool showOnHover: false
|
||||||
property bool showPower: true
|
property list<var> statusIcons: [
|
||||||
property bool showWifi: false
|
{
|
||||||
|
id: "audio",
|
||||||
|
enabled: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "microphone",
|
||||||
|
enabled: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "bluetooth",
|
||||||
|
enabled: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "network",
|
||||||
|
enabled: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "wifi",
|
||||||
|
enabled: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "power",
|
||||||
|
enabled: true
|
||||||
|
},
|
||||||
|
]
|
||||||
property int trayIconSize: 24
|
property int trayIconSize: 24
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+13
-1
@@ -20,7 +20,19 @@ Singleton {
|
|||||||
readonly property string timeStr: format("hh:mm:ss")
|
readonly property string timeStr: format("hh:mm:ss")
|
||||||
|
|
||||||
function format(fmt: string): string {
|
function format(fmt: string): string {
|
||||||
return Qt.formatDateTime(clock.date, fmt);
|
return Qt.formatDateTime(clock.date, resolveFormat(fmt));
|
||||||
|
}
|
||||||
|
|
||||||
|
function resolveFormat(fmt: string): string {
|
||||||
|
if (!Config.services.useTwelveHourClock)
|
||||||
|
return fmt;
|
||||||
|
|
||||||
|
let f = fmt.replace(/hh/g, "h");
|
||||||
|
|
||||||
|
if (/h/.test(f) && !/AP|ap/.test(f))
|
||||||
|
f += " AP";
|
||||||
|
|
||||||
|
return f;
|
||||||
}
|
}
|
||||||
|
|
||||||
SystemClock {
|
SystemClock {
|
||||||
|
|||||||
+68
-67
@@ -12,17 +12,18 @@ import qs.Modules.Updates
|
|||||||
RowLayout {
|
RowLayout {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
required property bool fullscreen
|
||||||
required property Wrapper popouts
|
required property Wrapper popouts
|
||||||
required property ClipWrapper popoutsWrapper
|
required property ClipWrapper popoutsWrapper
|
||||||
required property ShellScreen screen
|
required property ShellScreen screen
|
||||||
required property bool fullscreen
|
|
||||||
readonly property int vPadding: 6
|
readonly property int vPadding: 6
|
||||||
required property PersistentProperties visibilities
|
required property PersistentProperties visibilities
|
||||||
|
|
||||||
function checkPopout(x: real): void {
|
function checkPopout(x: real): void {
|
||||||
const ch = childAt(x, height / 2) as WrappedLoader;
|
const ch = childAt(x, height / 2) as EntryWrapper;
|
||||||
|
const id = ch?.entryId;
|
||||||
|
|
||||||
if (!ch || ch?.id === "spacer") {
|
if (!ch || id === undefined) {
|
||||||
if (!popouts.currentName.startsWith("traymenu") || Config.bar.tray.showOnHover)
|
if (!popouts.currentName.startsWith("traymenu") || Config.bar.tray.showOnHover)
|
||||||
popouts.hasCurrent = false;
|
popouts.hasCurrent = false;
|
||||||
return;
|
return;
|
||||||
@@ -31,32 +32,38 @@ RowLayout {
|
|||||||
if (visibilities.sidebar || visibilities.dashboard || visibilities.resources || visibilities.settings)
|
if (visibilities.sidebar || visibilities.dashboard || visibilities.resources || visibilities.settings)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (ch.id === "tray") {
|
if (id === "statusIcons" && Config.bar.popouts.statusIcons) {
|
||||||
const tray = ch.item;
|
const items = (ch.item as StatusIcons).items;
|
||||||
const localPos = tray.mapFromItem(root, x, height / 2);
|
const localX = mapToItem(items, x, 0).x;
|
||||||
const sub = tray.getHoveredSubItem(localPos.x, localPos.y);
|
const icon = items.childAt(localX, items.height / 2);
|
||||||
if (sub) {
|
if (icon) {
|
||||||
popouts.currentName = sub.id;
|
popouts.currentName = icon.name;
|
||||||
|
popouts.currentCenter = Qt.binding(() => icon.mapToItem(root, icon.implicitWidth / 2, 0).x);
|
||||||
|
popouts.hasCurrent = true;
|
||||||
|
}
|
||||||
|
} else if (id === "tray" && Config.bar.popouts.tray && Config.bar.tray.showOnHover) {
|
||||||
|
const tray = ch.item as TrayIcons;
|
||||||
|
const layout = tray.layout;
|
||||||
|
const localX = mapToItem(layout, x, 0).x;
|
||||||
|
const trayItem = layout.childAt(localX, layout.height / 2);
|
||||||
|
|
||||||
|
if (trayItem) {
|
||||||
|
const idx = trayItem.index;
|
||||||
|
popouts.currentName = `traymenu${idx}`;
|
||||||
popouts.currentCenter = Qt.binding(() => {
|
popouts.currentCenter = Qt.binding(() => {
|
||||||
const centerX = sub.item.mapToItem(root, sub.item.width / 2, 0).x;
|
const it = tray.items.itemAt(idx);
|
||||||
return centerX;
|
return it ? it.mapToItem(root, it.implicitWidth / 2, 0).x : popouts.currentCenter;
|
||||||
});
|
});
|
||||||
popouts.hasCurrent = true;
|
popouts.hasCurrent = true;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!popouts.currentName.startsWith("traymenu") || Config.bar.tray.showOnHover)
|
if (!popouts.currentName.startsWith("traymenu"))
|
||||||
popouts.hasCurrent = false;
|
popouts.hasCurrent = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const id = ch.id;
|
|
||||||
const top = ch.x;
|
|
||||||
const item = ch.item;
|
|
||||||
const itemWidth = item.implicitWidth;
|
|
||||||
|
|
||||||
if (id === "updates") {
|
if (id === "updates") {
|
||||||
popouts.currentName = "updates";
|
popouts.currentName = "updates";
|
||||||
popouts.currentCenter = Qt.binding(() => item.mapToItem(root, itemWidth / 2, 0).x);
|
popouts.currentCenter = Qt.binding(() => ch.item.mapToItem(root, (ch.item as Item).implicitWidth / 2, 0).x);
|
||||||
popouts.hasCurrent = true;
|
popouts.hasCurrent = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -66,7 +73,9 @@ RowLayout {
|
|||||||
Repeater {
|
Repeater {
|
||||||
id: repeater
|
id: repeater
|
||||||
|
|
||||||
model: Config.bar.entries
|
model: ScriptModel {
|
||||||
|
values: Config.bar.entries.filter(e => e.enabled)
|
||||||
|
}
|
||||||
|
|
||||||
DelegateChooser {
|
DelegateChooser {
|
||||||
role: "id"
|
role: "id"
|
||||||
@@ -74,8 +83,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "hyprsunset"
|
roleValue: "hyprsunset"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: HyprsunsetWidget {
|
HyprsunsetWidget {
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -84,7 +93,7 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "spacer"
|
roleValue: "spacer"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -92,8 +101,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "workspaces"
|
roleValue: "workspaces"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: Workspaces {
|
Workspaces {
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
@@ -103,8 +112,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "tray"
|
roleValue: "tray"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: TrayWidget {
|
TrayIcons {
|
||||||
loader: root
|
loader: root
|
||||||
popouts: root.popouts
|
popouts: root.popouts
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
@@ -112,11 +121,20 @@ RowLayout {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DelegateChoice {
|
||||||
|
roleValue: "statusIcons"
|
||||||
|
|
||||||
|
delegate: EntryWrapper {
|
||||||
|
StatusIcons {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "resources"
|
roleValue: "resources"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: Resources {
|
Resources {
|
||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
@@ -126,8 +144,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "updates"
|
roleValue: "updates"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: UpdatesWidget {
|
UpdatesWidget {
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -136,8 +154,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "notifBell"
|
roleValue: "notifBell"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: NotifBell {
|
NotifBell {
|
||||||
popouts: root.popouts
|
popouts: root.popouts
|
||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
@@ -148,8 +166,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "clock"
|
roleValue: "clock"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: Clock {
|
Clock {
|
||||||
loader: root
|
loader: root
|
||||||
popouts: root.popouts
|
popouts: root.popouts
|
||||||
visibilities: root.visibilities
|
visibilities: root.visibilities
|
||||||
@@ -161,8 +179,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "activeWindow"
|
roleValue: "activeWindow"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: WindowTitle {
|
WindowTitle {
|
||||||
bar: root
|
bar: root
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
@@ -172,8 +190,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "network"
|
roleValue: "network"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: NetworkWidget {
|
NetworkWidget {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -181,8 +199,8 @@ RowLayout {
|
|||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "media"
|
roleValue: "media"
|
||||||
|
|
||||||
delegate: WrappedLoader {
|
delegate: EntryWrapper {
|
||||||
sourceComponent: MediaWidget {
|
MediaWidget {
|
||||||
visible: !root.fullscreen
|
visible: !root.fullscreen
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -190,34 +208,17 @@ RowLayout {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
component WrappedLoader: Loader {
|
component EntryWrapper: Item {
|
||||||
required property bool enabled
|
readonly property string entryId: modelData.id
|
||||||
required property string id
|
|
||||||
required property int index
|
required property int index
|
||||||
|
default property Item item
|
||||||
function findFirstEnabled(): Item {
|
required property var modelData
|
||||||
const count = repeater.count;
|
|
||||||
for (let i = 0; i < count; i++) {
|
|
||||||
const item = repeater.itemAt(i);
|
|
||||||
if (item?.enabled)
|
|
||||||
return item;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
function findLastEnabled(): Item {
|
|
||||||
for (let i = repeater.count - 1; i >= 0; i--) {
|
|
||||||
const item = repeater.itemAt(i);
|
|
||||||
if (item?.enabled)
|
|
||||||
return item;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
Layout.leftMargin: findFirstEnabled() === this ? root.vPadding : 0
|
Layout.leftMargin: index === 0 ? root.vPadding : (entryId === "statusIcons") ? -root.spacing + Appearance.spacing.extraSmall : 0
|
||||||
Layout.rightMargin: findLastEnabled() === this ? root.vPadding : 0
|
Layout.rightMargin: index === repeater.count - 1 ? root.vPadding : 0
|
||||||
active: enabled
|
children: item
|
||||||
visible: enabled
|
implicitHeight: item?.implicitHeight ?? 0
|
||||||
|
implicitWidth: item?.implicitWidth ?? 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,9 +16,15 @@ CustomRect {
|
|||||||
bottomLeftRadius: last ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
bottomLeftRadius: last ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
||||||
bottomRightRadius: last ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
bottomRightRadius: last ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
||||||
color: DynamicColors.tPalette.m3surfaceContainer
|
color: DynamicColors.tPalette.m3surfaceContainer
|
||||||
|
opacity: enabled && parent.enabled ? 1 : 0.5
|
||||||
topLeftRadius: first ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
topLeftRadius: first ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
||||||
topRightRadius: first ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
topRightRadius: first ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
CustomRect {
|
CustomRect {
|
||||||
id: highlight
|
id: highlight
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,249 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import ZShell.Blobs
|
||||||
|
import qs.Components
|
||||||
|
import qs.Config
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property bool acceptAllowed: true
|
||||||
|
required property string acceptLabel
|
||||||
|
required property Component content
|
||||||
|
required property string header
|
||||||
|
property int horizontalContentMargin
|
||||||
|
required property string icon
|
||||||
|
required property string label
|
||||||
|
property bool open
|
||||||
|
property real openHeight: Math.min(rootParent.height * 0.8, 600)
|
||||||
|
property real openWidth: Math.min(rootParent.width * 0.8, 400)
|
||||||
|
required property Item rootParent
|
||||||
|
property bool separateContent
|
||||||
|
|
||||||
|
signal accepted
|
||||||
|
signal cancelled
|
||||||
|
|
||||||
|
function reparentWrapper(): void {
|
||||||
|
const newParent = open ? rootParent : root;
|
||||||
|
const pos = dialogWrapper.mapToItem(newParent, 0, 0);
|
||||||
|
dialogWrapper.parent = newParent;
|
||||||
|
dialogWrapper.x = pos.x;
|
||||||
|
dialogWrapper.y = pos.y;
|
||||||
|
}
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
implicitHeight: openButton.implicitHeight
|
||||||
|
z: open || dialogTransition.running ? 2 : 0
|
||||||
|
|
||||||
|
BlobGroup {
|
||||||
|
id: blobGroup
|
||||||
|
|
||||||
|
color: root.open ? DynamicColors.palette.m3surfaceContainerHighest : DynamicColors.tPalette.m3surfaceContainer
|
||||||
|
|
||||||
|
Behavior on color {
|
||||||
|
CAnim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: backdrop
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
enabled: false
|
||||||
|
hoverEnabled: enabled
|
||||||
|
parent: root.open ? root.rootParent : root
|
||||||
|
|
||||||
|
onClicked: root.open = false
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: dialogWrapper
|
||||||
|
|
||||||
|
height: openButton.implicitHeight
|
||||||
|
width: root.width
|
||||||
|
z: 1
|
||||||
|
|
||||||
|
states: State {
|
||||||
|
name: "open"
|
||||||
|
when: root.open
|
||||||
|
|
||||||
|
PropertyChanges {
|
||||||
|
backdrop.enabled: true
|
||||||
|
dialogBg.bottomLeftRadius: Appearance.rounding.large
|
||||||
|
dialogBg.bottomRightRadius: Appearance.rounding.large
|
||||||
|
dialogBg.radius: Appearance.rounding.large
|
||||||
|
dialogContent.opacity: 1
|
||||||
|
dialogWrapper.height: root.openHeight
|
||||||
|
dialogWrapper.width: root.openWidth
|
||||||
|
dialogWrapper.x: (root.rootParent.width - root.openWidth) / 2
|
||||||
|
dialogWrapper.y: (root.rootParent.height - root.openHeight) / 2
|
||||||
|
elevation.opacity: 1
|
||||||
|
openButton.opacity: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
transitions: Transition {
|
||||||
|
id: dialogTransition
|
||||||
|
|
||||||
|
SequentialAnimation {
|
||||||
|
ScriptAction {
|
||||||
|
script: root.reparentWrapper()
|
||||||
|
}
|
||||||
|
|
||||||
|
Anim {
|
||||||
|
properties: "x,y"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
PropertyAction {
|
||||||
|
property: "enabled"
|
||||||
|
}
|
||||||
|
|
||||||
|
Anim {
|
||||||
|
properties: "opacity,radius,bottomLeftRadius,bottomRightRadius"
|
||||||
|
type: Anim.DefaultEffects
|
||||||
|
}
|
||||||
|
|
||||||
|
Anim {
|
||||||
|
properties: "width,height"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Elevation {
|
||||||
|
id: elevation
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
bottomLeftRadius: dialogBg.bottomLeftRadius
|
||||||
|
bottomRightRadius: dialogBg.bottomRightRadius
|
||||||
|
level: 4
|
||||||
|
opacity: 0
|
||||||
|
radius: dialogBg.radius
|
||||||
|
|
||||||
|
transform: Matrix4x4 {
|
||||||
|
matrix: dialogBg.deformMatrix
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
BlobRect {
|
||||||
|
id: dialogBg
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
bottomLeftRadius: Appearance.rounding.large
|
||||||
|
bottomRightRadius: Appearance.rounding.large
|
||||||
|
deformScale: 0
|
||||||
|
group: blobGroup
|
||||||
|
opacity: blobGroup.color.a * (root.enabled ? 1 : 0.5)
|
||||||
|
radius: Appearance.rounding.extraSmall
|
||||||
|
}
|
||||||
|
|
||||||
|
RowButton {
|
||||||
|
id: openButton
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
color: "transparent"
|
||||||
|
height: Math.min(implicitHeight, parent.height) // Clamp to parent height due to overshoot anim
|
||||||
|
icon: root.icon
|
||||||
|
last: true
|
||||||
|
text: root.label
|
||||||
|
|
||||||
|
transform: Matrix4x4 {
|
||||||
|
matrix: dialogBg.deformMatrix
|
||||||
|
}
|
||||||
|
|
||||||
|
onClicked: root.open = true
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
id: dialogContent
|
||||||
|
|
||||||
|
active: opacity > 0
|
||||||
|
anchors.fill: parent
|
||||||
|
asynchronous: true
|
||||||
|
opacity: 0
|
||||||
|
|
||||||
|
sourceComponent: MouseArea {
|
||||||
|
onWheel: event => event.accepted = true
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
anchors.bottomMargin: Appearance.padding.largeIncreased
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: Appearance.padding.extraLarge
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
font.pointSize: Appearance.font.size.large
|
||||||
|
text: root.header
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.topMargin: Appearance.spacing.normal
|
||||||
|
active: root.separateContent
|
||||||
|
|
||||||
|
sourceComponent: CustomRect {
|
||||||
|
color: DynamicColors.palette.m3outline
|
||||||
|
implicitHeight: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
Layout.fillHeight: true
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.leftMargin: root.horizontalContentMargin
|
||||||
|
Layout.rightMargin: root.horizontalContentMargin
|
||||||
|
sourceComponent: root.content
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
Layout.bottomMargin: Appearance.spacing.normal
|
||||||
|
Layout.fillWidth: true
|
||||||
|
active: root.separateContent
|
||||||
|
|
||||||
|
sourceComponent: CustomRect {
|
||||||
|
color: DynamicColors.palette.m3outline
|
||||||
|
implicitHeight: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
Layout.alignment: Qt.AlignRight
|
||||||
|
spacing: Appearance.spacing.extraSmall
|
||||||
|
|
||||||
|
TextButton {
|
||||||
|
horizontalPadding: Appearance.padding.largeIncreased
|
||||||
|
isRound: true
|
||||||
|
text: qsTr("Cancel")
|
||||||
|
type: TextButton.Text
|
||||||
|
verticalPadding: Appearance.padding.normal
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
root.cancelled();
|
||||||
|
root.open = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TextButton {
|
||||||
|
enabled: root.acceptAllowed
|
||||||
|
horizontalPadding: Appearance.padding.largeIncreased
|
||||||
|
isRound: true
|
||||||
|
text: root.acceptLabel
|
||||||
|
type: TextButton.Text
|
||||||
|
verticalPadding: Appearance.padding.normal
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
root.accepted();
|
||||||
|
root.open = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
transform: Matrix4x4 {
|
||||||
|
matrix: dialogBg.deformMatrix
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,96 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import qs.Config
|
||||||
|
import qs.Components
|
||||||
|
|
||||||
|
DialogRowButton {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
required property var model
|
||||||
|
property var selectedItem
|
||||||
|
|
||||||
|
function keyFor(item: var): string {
|
||||||
|
return item.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
function labelFor(item: var): string {
|
||||||
|
return item.label;
|
||||||
|
}
|
||||||
|
|
||||||
|
acceptAllowed: !!selectedItem
|
||||||
|
horizontalContentMargin: -Appearance.padding.small
|
||||||
|
separateContent: true
|
||||||
|
|
||||||
|
content: Component {
|
||||||
|
VerticalFadeListView {
|
||||||
|
bottomMargin: Appearance.padding.large
|
||||||
|
model: root.model
|
||||||
|
spacing: 0
|
||||||
|
topMargin: Appearance.padding.large
|
||||||
|
|
||||||
|
delegate: CustomRect {
|
||||||
|
id: item
|
||||||
|
|
||||||
|
required property var modelData
|
||||||
|
readonly property bool selected: root.selectedItem === root.keyFor(modelData)
|
||||||
|
|
||||||
|
anchors.left: ListView.view.contentItem.left
|
||||||
|
anchors.margins: 1 // Gets cut off for some reason without this
|
||||||
|
anchors.right: ListView.view.contentItem.right
|
||||||
|
color: Qt.alpha(DynamicColors.palette.m3tertiaryContainer, selected ? 1 : 0)
|
||||||
|
implicitHeight: label.implicitHeight + Appearance.padding.normal * 2
|
||||||
|
radius: stateLayer.pressed ? Appearance.rounding.extraSmall : selected ? Appearance.rounding.large : Appearance.rounding.normal
|
||||||
|
|
||||||
|
Behavior on radius {
|
||||||
|
Anim {
|
||||||
|
type: Anim.SlowEffects
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
id: stateLayer
|
||||||
|
|
||||||
|
onClicked: root.selectedItem = root.keyFor(item.modelData)
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: label
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: Appearance.padding.large
|
||||||
|
anchors.right: item.selected ? checkIcon.left : parent.right
|
||||||
|
anchors.rightMargin: item.selected ? Appearance.spacing.normal : anchors.margins
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
color: item.selected ? DynamicColors.palette.m3onTertiaryContainer : DynamicColors.palette.m3onSurface
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font.pointSize: Appearance.font.size.smaller
|
||||||
|
text: root.labelFor(item.modelData)
|
||||||
|
}
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
id: checkIcon
|
||||||
|
|
||||||
|
anchors.margins: Appearance.padding.large
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
color: DynamicColors.palette.m3onTertiaryContainer
|
||||||
|
font.pointSize: Appearance.font.size.medium
|
||||||
|
opacity: item.selected ? 1 : 0
|
||||||
|
text: "check"
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
type: Anim.SlowEffects
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onOpenChanged: {
|
||||||
|
if (open)
|
||||||
|
selectedItem = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,317 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
|
import qs.Config
|
||||||
|
import qs.Components
|
||||||
|
|
||||||
|
ListView {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property bool first
|
||||||
|
property alias values: valuesModel.values
|
||||||
|
|
||||||
|
signal itemMoved(from: int, to: int)
|
||||||
|
signal itemRemoved(index: int)
|
||||||
|
signal itemToggled(index: int, checked: bool)
|
||||||
|
|
||||||
|
function dampOvershoot(overshoot: real, maxOvershoot: real): real {
|
||||||
|
return overshoot / (1 + overshoot / maxOvershoot);
|
||||||
|
}
|
||||||
|
|
||||||
|
function labelFor(item: var): string {
|
||||||
|
return item.label;
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggledFor(item: var): bool {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
implicitHeight: contentHeight
|
||||||
|
interactive: false
|
||||||
|
spacing: Appearance.spacing.extraSmall / 2
|
||||||
|
|
||||||
|
add: Transition {
|
||||||
|
Anim {
|
||||||
|
from: 0
|
||||||
|
properties: "opacity"
|
||||||
|
to: 1
|
||||||
|
type: Anim.DefaultEffects
|
||||||
|
}
|
||||||
|
}
|
||||||
|
displaced: Transition {
|
||||||
|
Anim {
|
||||||
|
properties: "opacity"
|
||||||
|
to: 1
|
||||||
|
type: Anim.DefaultEffects
|
||||||
|
}
|
||||||
|
|
||||||
|
Anim {
|
||||||
|
properties: "y"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on implicitHeight {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
model: DelegateModel {
|
||||||
|
id: visualModel
|
||||||
|
|
||||||
|
delegate: ListRow {
|
||||||
|
}
|
||||||
|
model: ScriptModel {
|
||||||
|
id: valuesModel
|
||||||
|
}
|
||||||
|
}
|
||||||
|
move: Transition {
|
||||||
|
Anim {
|
||||||
|
properties: "opacity"
|
||||||
|
to: 1
|
||||||
|
type: Anim.DefaultEffects
|
||||||
|
}
|
||||||
|
|
||||||
|
Anim {
|
||||||
|
properties: "y"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
remove: Transition {
|
||||||
|
Anim {
|
||||||
|
properties: "opacity"
|
||||||
|
to: 0
|
||||||
|
type: Anim.DefaultEffects
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
component ListRow: Item {
|
||||||
|
id: item
|
||||||
|
|
||||||
|
property bool held
|
||||||
|
property real lastMoveY
|
||||||
|
required property var modelData
|
||||||
|
property int pressIndex
|
||||||
|
property point pressPos
|
||||||
|
property real radiusLerpProg
|
||||||
|
property real topRadius: root?.first && DelegateModel.itemsIndex === 0 ? Appearance.rounding.large : Appearance.rounding.extraSmall
|
||||||
|
|
||||||
|
function lerpRadius(a: real, b: real): real {
|
||||||
|
return a + (b - a) * radiusLerpProg;
|
||||||
|
}
|
||||||
|
|
||||||
|
anchors.left: root?.contentItem.left
|
||||||
|
anchors.right: root?.contentItem.right
|
||||||
|
implicitHeight: row.implicitHeight + row.anchors.margins * 2
|
||||||
|
state: held ? "held" : ""
|
||||||
|
z: held || returnAnim.running ? 1 : 0
|
||||||
|
|
||||||
|
states: State {
|
||||||
|
name: "held"
|
||||||
|
|
||||||
|
PropertyChanges {
|
||||||
|
dragIcon.color: DynamicColors.palette.m3onPrimaryContainer
|
||||||
|
elevation.opacity: 1
|
||||||
|
item.radiusLerpProg: 1
|
||||||
|
itemBg.color: DynamicColors.palette.m3primaryContainer
|
||||||
|
label.color: DynamicColors.palette.m3onPrimaryContainer
|
||||||
|
placeholder.opacity: 0.1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on topRadius {
|
||||||
|
Anim {
|
||||||
|
type: Anim.DefaultEffects
|
||||||
|
}
|
||||||
|
}
|
||||||
|
transitions: Transition {
|
||||||
|
Anim {
|
||||||
|
properties: "opacity,radiusLerpProg"
|
||||||
|
type: Anim.SlowEffects
|
||||||
|
}
|
||||||
|
|
||||||
|
PropertyAction {
|
||||||
|
properties: "color,inactiveOnColor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
id: placeholder
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
color: DynamicColors.palette.m3primary
|
||||||
|
opacity: 0
|
||||||
|
radius: Appearance.rounding.extraSmall
|
||||||
|
topLeftRadius: item.topRadius
|
||||||
|
topRightRadius: item.topRadius
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: mouse
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
preventStealing: true
|
||||||
|
|
||||||
|
onPositionChanged: e => {
|
||||||
|
item.lastMoveY = item.y;
|
||||||
|
const absY = item.mapToItem(root.contentItem, 0, e.y).y;
|
||||||
|
|
||||||
|
const swap = root.itemAt(0, absY);
|
||||||
|
if (!swap || swap === item)
|
||||||
|
return;
|
||||||
|
|
||||||
|
const idx = item.DelegateModel.itemsIndex;
|
||||||
|
const swapIdx = swap.DelegateModel.itemsIndex;
|
||||||
|
visualModel.items.move(idx, swapIdx);
|
||||||
|
}
|
||||||
|
onPressed: e => {
|
||||||
|
returnAnim.stop();
|
||||||
|
item.pressPos = Qt.point(e.x, e.y);
|
||||||
|
item.pressIndex = item.DelegateModel.itemsIndex;
|
||||||
|
item.lastMoveY = item.y;
|
||||||
|
item.held = true;
|
||||||
|
|
||||||
|
itemContent.x = Qt.binding(() => {
|
||||||
|
if (!root)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
const maxOvershoot = Appearance.padding.extraExtraLarge;
|
||||||
|
const x = mouse.mouseX - item.pressPos.x;
|
||||||
|
return root.dampOvershoot(Math.abs(x), maxOvershoot) * Math.sign(x);
|
||||||
|
});
|
||||||
|
itemContent.y = Qt.binding(() => {
|
||||||
|
if (!root)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
const maxOvershoot = Appearance.padding.extraLarge;
|
||||||
|
const yDiff = item.y - item.lastMoveY; // Extra offset if the y of the item changed between mouseY updates
|
||||||
|
const y = mouse.mouseY - item.pressPos.y - yDiff;
|
||||||
|
const absY = item.mapToItem(root.contentItem, 0, y).y;
|
||||||
|
const maxY = root.implicitHeight - item.implicitHeight;
|
||||||
|
if (absY < 0)
|
||||||
|
return y - absY - root.dampOvershoot(-absY, maxOvershoot);
|
||||||
|
if (absY > maxY)
|
||||||
|
return y - absY + maxY + root.dampOvershoot(absY - maxY, maxOvershoot);
|
||||||
|
return y;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
onReleased: e => {
|
||||||
|
// Break bindings
|
||||||
|
itemContent.x = itemContent.x;
|
||||||
|
itemContent.y = itemContent.y;
|
||||||
|
returnAnim.start();
|
||||||
|
item.held = false;
|
||||||
|
|
||||||
|
const idx = item.DelegateModel.itemsIndex;
|
||||||
|
if (idx !== item.pressIndex)
|
||||||
|
root.itemMoved(item.pressIndex, idx);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Anim {
|
||||||
|
id: returnAnim
|
||||||
|
|
||||||
|
properties: "x,y"
|
||||||
|
target: itemContent
|
||||||
|
to: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: itemContent
|
||||||
|
|
||||||
|
implicitHeight: item.implicitHeight
|
||||||
|
implicitWidth: item.width
|
||||||
|
|
||||||
|
Elevation {
|
||||||
|
id: elevation
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
level: 3
|
||||||
|
opacity: 0
|
||||||
|
radius: itemBg.radius
|
||||||
|
topLeftRadius: itemBg.topLeftRadius
|
||||||
|
topRightRadius: itemBg.topRightRadius
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
id: itemBg
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
color: DynamicColors.tPalette.m3surfaceContainer
|
||||||
|
radius: item.lerpRadius(Appearance.rounding.extraSmall, Appearance.rounding.large)
|
||||||
|
topLeftRadius: item.lerpRadius(item.topRadius, Appearance.rounding.large)
|
||||||
|
topRightRadius: item.lerpRadius(item.topRadius, Appearance.rounding.large)
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: stateLayer
|
||||||
|
|
||||||
|
acceptedButtons: Qt.NoButton
|
||||||
|
anchors.fill: parent
|
||||||
|
cursorShape: mouse.pressed ? Qt.ClosedHandCursor : Qt.OpenHandCursor
|
||||||
|
hoverEnabled: true
|
||||||
|
|
||||||
|
CustomRect {
|
||||||
|
anchors.fill: parent
|
||||||
|
color: DynamicColors.palette.m3onSurface
|
||||||
|
opacity: parent.containsMouse && !item.held ? 0.08 : 0
|
||||||
|
radius: itemBg.radius
|
||||||
|
topLeftRadius: itemBg.topLeftRadius
|
||||||
|
topRightRadius: itemBg.topRightRadius
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
type: Anim.DefaultEffects
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: row
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.leftMargin: Appearance.padding.largeIncreased
|
||||||
|
anchors.margins: Appearance.padding.normal
|
||||||
|
anchors.rightMargin: Appearance.padding.large
|
||||||
|
spacing: Appearance.spacing.normal
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
id: dragIcon
|
||||||
|
|
||||||
|
color: Qt.alpha(DynamicColors.palette.m3onSurfaceVariant, enabledSwitch.checked ? 1 : 0.5)
|
||||||
|
font.pointSize: Appearance.font.size.medium
|
||||||
|
text: "drag_indicator"
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: label
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
color: Qt.alpha(DynamicColors.palette.m3onSurface, enabledSwitch.checked ? 1 : 0.5)
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font.pointSize: Appearance.font.size.smaller
|
||||||
|
text: root.labelFor(item.modelData)
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomSwitch {
|
||||||
|
id: enabledSwitch
|
||||||
|
|
||||||
|
checked: root.toggledFor(item.modelData)
|
||||||
|
font.pointSize: Appearance.font.size.medium
|
||||||
|
|
||||||
|
onToggled: root.itemToggled(item.DelegateModel.itemsIndex, checked)
|
||||||
|
}
|
||||||
|
|
||||||
|
IconButton {
|
||||||
|
font.pointSize: Appearance.font.size.large
|
||||||
|
icon: "delete"
|
||||||
|
inactiveOnColor: DynamicColors.palette.m3error
|
||||||
|
isRound: true
|
||||||
|
label.fill: 0
|
||||||
|
type: IconButton.Text
|
||||||
|
|
||||||
|
onClicked: root.itemRemoved(item.DelegateModel.itemsIndex)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import qs.Config
|
||||||
|
import qs.Components
|
||||||
|
|
||||||
|
ConnectedRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property alias icon: iconLabel.text
|
||||||
|
readonly property alias iconLabel: iconLabel
|
||||||
|
readonly property alias label: label
|
||||||
|
property alias stateEnabled: stateLayer.enabled
|
||||||
|
readonly property alias subLabel: subLabel
|
||||||
|
property alias subtext: subLabel.text
|
||||||
|
property alias text: label.text
|
||||||
|
property string trailingIcon
|
||||||
|
|
||||||
|
signal clicked(event: MouseEvent)
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
implicitHeight: row.implicitHeight + Appearance.padding.normal * 2
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
id: stateLayer
|
||||||
|
|
||||||
|
onClicked: e => root.clicked(e)
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: row
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: Appearance.padding.largeIncreased
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
opacity: root.enabled ? 1 : 0.5
|
||||||
|
spacing: Appearance.spacing.normal
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
id: iconLabel
|
||||||
|
|
||||||
|
color: DynamicColors.palette.m3onSurfaceVariant
|
||||||
|
fill: 1
|
||||||
|
font.pointSize: Appearance.font.size.medium
|
||||||
|
}
|
||||||
|
|
||||||
|
Column {
|
||||||
|
id: column
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: label
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font.pointSize: Appearance.font.size.small
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomText {
|
||||||
|
id: subLabel
|
||||||
|
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
color: DynamicColors.palette.m3outline
|
||||||
|
elide: Text.ElideRight
|
||||||
|
font.pointSize: Appearance.font.size.small
|
||||||
|
visible: text
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
active: root.trailingIcon
|
||||||
|
asynchronous: true
|
||||||
|
visible: active
|
||||||
|
|
||||||
|
sourceComponent: MaterialIcon {
|
||||||
|
color: DynamicColors.palette.m3onSurfaceVariant
|
||||||
|
font.pointSize: Appearance.font.size.medium
|
||||||
|
text: root.trailingIcon
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -62,7 +62,13 @@ CustomSwitch {
|
|||||||
f.pointSize = Appearance.font.size.smaller;
|
f.pointSize = Appearance.font.size.smaller;
|
||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
|
opacity: root.enabled ? 1 : 0.5
|
||||||
text: root.text
|
text: root.text
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CustomText {
|
CustomText {
|
||||||
@@ -77,8 +83,14 @@ CustomSwitch {
|
|||||||
f.pointSize = Appearance.font.size.small;
|
f.pointSize = Appearance.font.size.small;
|
||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
|
opacity: root.enabled ? 1 : 0.5
|
||||||
text: root.subtext
|
text: root.subtext
|
||||||
visible: root.subtext
|
visible: root.subtext
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,12 @@ import qs.Modules.Settings.Common
|
|||||||
PageBase {
|
PageBase {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
readonly property var builtinIcons: ({
|
||||||
|
audio: qsTr("Speakers"),
|
||||||
|
microphone: qsTr("Microphone"),
|
||||||
|
power: qsTr("Battery")
|
||||||
|
})
|
||||||
|
|
||||||
isSubPage: true
|
isSubPage: true
|
||||||
title: qsTr("System icons")
|
title: qsTr("System icons")
|
||||||
|
|
||||||
@@ -22,77 +28,89 @@ PageBase {
|
|||||||
text: qsTr("Visible icons")
|
text: qsTr("Visible icons")
|
||||||
}
|
}
|
||||||
|
|
||||||
ToggleRow {
|
ListEditor {
|
||||||
checked: Config.bar.tray.showAudio
|
function labelFor(item: var): string {
|
||||||
|
const prettyName = root.builtinIcons[item.id];
|
||||||
|
if (prettyName)
|
||||||
|
return prettyName;
|
||||||
|
const label = item.id.replace(/([A-Z])/g, " $1");
|
||||||
|
return label.charAt(0).toUpperCase() + label.slice(1).toLowerCase();
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggledFor(item: var): bool {
|
||||||
|
return item.enabled;
|
||||||
|
}
|
||||||
|
|
||||||
first: true
|
first: true
|
||||||
settingAnchor: "bar-status-speakers"
|
values: Config.bar.tray.statusIcons
|
||||||
text: qsTr("Speakers")
|
z: 1
|
||||||
|
|
||||||
onToggled: Config.bar.tray.showAudio = checked
|
onItemMoved: (from, to) => {
|
||||||
|
const icons = Config.bar.tray.statusIcons.slice();
|
||||||
|
const [moved] = icons.splice(from, 1);
|
||||||
|
icons.splice(to, 0, moved);
|
||||||
|
Config.bar.tray.statusIcons = icons;
|
||||||
|
}
|
||||||
|
onItemRemoved: index => {
|
||||||
|
const icons = Config.bar.tray.statusIcons.slice();
|
||||||
|
icons.splice(index, 1);
|
||||||
|
Config.bar.tray.statusIcons = icons;
|
||||||
|
}
|
||||||
|
onItemToggled: (index, checked) => {
|
||||||
|
const icons = Config.bar.tray.statusIcons.slice();
|
||||||
|
icons[index] = Object.assign({}, icons[index], {
|
||||||
|
enabled: checked
|
||||||
|
});
|
||||||
|
Config.bar.tray.statusIcons = icons;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ToggleRow {
|
DialogSelectButton {
|
||||||
checked: Config.bar.tray.showMicrophone
|
id: addItemContainer
|
||||||
settingAnchor: "bar-status-mic"
|
|
||||||
text: qsTr("Microphone")
|
|
||||||
|
|
||||||
onToggled: Config.bar.tray.showMicrophone = checked
|
acceptLabel: qsTr("Add")
|
||||||
|
enabled: {
|
||||||
|
console.log(Object.keys(model).length);
|
||||||
|
return Object.keys(model).length > 0;
|
||||||
|
}
|
||||||
|
header: qsTr("Add new entry")
|
||||||
|
icon: "add"
|
||||||
|
label: qsTr("Add entry")
|
||||||
|
model: {
|
||||||
|
const present = new Set(Config.bar.tray.statusIcons.map(item => item.id));
|
||||||
|
return Object.keys(root.builtinIcons).filter(id => !present.has(id)).map(id => ({
|
||||||
|
id: id,
|
||||||
|
label: root.builtinIcons[id]
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
rootParent: root.flickable
|
||||||
|
|
||||||
|
onAccepted: {
|
||||||
|
if (!selectedItem)
|
||||||
|
return;
|
||||||
|
|
||||||
|
const icons = Config.bar.tray.statusIcons.slice();
|
||||||
|
icons.push({
|
||||||
|
id: selectedItem,
|
||||||
|
enabled: true
|
||||||
|
});
|
||||||
|
Config.bar.tray.statusIcons = icons;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//////// FOR LATER:
|
// Behavior
|
||||||
// ToggleRow {
|
|
||||||
// checked: Config.bar.tray.showNetwork
|
|
||||||
// text: qsTr("Network")
|
|
||||||
//
|
|
||||||
// onToggled: Config.bar.tray.showNetwork = checked
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// ToggleRow {
|
|
||||||
// checked: Config.bar.tray.showWifi
|
|
||||||
// text: qsTr("Wi-Fi")
|
|
||||||
//
|
|
||||||
// onToggled: Config.bar.tray.showWifi = checked
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// ToggleRow {
|
|
||||||
// checked: Config.bar.tray.showBluetooth
|
|
||||||
// text: qsTr("Bluetooth")
|
|
||||||
//
|
|
||||||
// onToggled: Config.bar.tray.showBluetooth = checked
|
|
||||||
// }
|
|
||||||
|
|
||||||
ToggleRow {
|
|
||||||
checked: Config.bar.tray.showPower
|
|
||||||
last: true
|
|
||||||
settingAnchor: "bar-status-power"
|
|
||||||
text: qsTr("Battery")
|
|
||||||
|
|
||||||
onToggled: Config.bar.tray.showPower = checked
|
|
||||||
}
|
|
||||||
|
|
||||||
// Behaviour
|
|
||||||
SectionHeader {
|
SectionHeader {
|
||||||
text: qsTr("Behavior")
|
text: qsTr("Behavior")
|
||||||
}
|
}
|
||||||
|
|
||||||
ToggleRow {
|
ToggleRow {
|
||||||
checked: Config.bar.popouts.audio
|
checked: Config.bar.popouts.statusIcons
|
||||||
first: true
|
first: true
|
||||||
settingAnchor: "bar-status-audio-popout"
|
settingAnchor: "bar-status-popout-on-hover"
|
||||||
subtext: qsTr("Show a details popout when hovering the audio icons")
|
subtext: qsTr("Show a details popout when hovering the status icons")
|
||||||
text: qsTr("Audio popout on hover")
|
text: qsTr("Popout on hover")
|
||||||
|
|
||||||
onToggled: Config.bar.popouts.audio = checked
|
onToggled: Config.bar.popouts.statusIcons = checked
|
||||||
}
|
|
||||||
|
|
||||||
ToggleRow {
|
|
||||||
checked: Config.bar.popouts.upower
|
|
||||||
last: true
|
|
||||||
settingAnchor: "bar-status-power-popout"
|
|
||||||
subtext: qsTr("Show a details popout when hovering the power icon")
|
|
||||||
text: qsTr("Power popout on hover")
|
|
||||||
|
|
||||||
onToggled: Config.bar.popouts.upower = checked
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,8 +28,18 @@ PageBase {
|
|||||||
onMoved: value => Config.bar.tray.trayIconSize = value
|
onMoved: value => Config.bar.tray.trayIconSize = value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ToggleRow {
|
||||||
|
checked: Config.bar.popouts.tray
|
||||||
|
settingAnchor: "bar-tray-enable-tray-popouts"
|
||||||
|
subtext: Config.bar.popouts.tray ? qsTr("Enabled") : qsTr("Disabled")
|
||||||
|
text: qsTr("Enable tray menu popouts")
|
||||||
|
|
||||||
|
onToggled: Config.bar.popouts.tray = checked
|
||||||
|
}
|
||||||
|
|
||||||
ToggleRow {
|
ToggleRow {
|
||||||
checked: Config.bar.tray.showOnHover
|
checked: Config.bar.tray.showOnHover
|
||||||
|
enabled: Config.bar.popouts.tray
|
||||||
settingAnchor: "bar-tray-show-popout-on-hover"
|
settingAnchor: "bar-tray-show-popout-on-hover"
|
||||||
subtext: Config.bar.tray.showOnHover ? qsTr("Will show context menu on hover") : qsTr("Will show context menu on right-click")
|
subtext: Config.bar.tray.showOnHover ? qsTr("Will show context menu on hover") : qsTr("Will show context menu on right-click")
|
||||||
text: qsTr("Show popout on hover")
|
text: qsTr("Show popout on hover")
|
||||||
|
|||||||
@@ -0,0 +1,128 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import Quickshell
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import qs.Helpers
|
||||||
|
import qs.Modules.SysTray.Widgets
|
||||||
|
import qs.Config
|
||||||
|
import qs.Components
|
||||||
|
|
||||||
|
CustomClippingRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
readonly property int firstPresent: {
|
||||||
|
const values = model.values;
|
||||||
|
for (let i = 0; i < values.length; i++)
|
||||||
|
if (!collapsed(values[i]))
|
||||||
|
return i;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Index of the first/last entry that isn't collapsed, for edge margin gating
|
||||||
|
readonly property alias items: row
|
||||||
|
readonly property int lastPresent: {
|
||||||
|
const values = model.values;
|
||||||
|
for (let i = values.length - 1; i >= 0; i--)
|
||||||
|
if (!collapsed(values[i]))
|
||||||
|
return i;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
readonly property int spacing: Appearance.spacing.normal / 2
|
||||||
|
|
||||||
|
// Entries that can shrink to nothing, spacing included
|
||||||
|
function collapsed(entry: var): bool {
|
||||||
|
if (entry.id === "lockStatus")
|
||||||
|
return !Hypr.capsLock && !Hypr.numLock;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bottomLeftRadius: Appearance.rounding.smallest / 2
|
||||||
|
color: DynamicColors.tPalette.m3surfaceContainer
|
||||||
|
implicitHeight: Config.bar.height + Appearance.padding.smallest * 2
|
||||||
|
implicitWidth: row.implicitWidth + Appearance.padding.small * 2
|
||||||
|
radius: Appearance.rounding.full
|
||||||
|
topLeftRadius: Appearance.rounding.smallest / 2
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: row
|
||||||
|
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.leftMargin: Appearance.padding.small
|
||||||
|
anchors.rightMargin: Appearance.padding.small
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
model: ScriptModel {
|
||||||
|
id: model
|
||||||
|
|
||||||
|
values: Config.bar.tray.statusIcons.filter(e => e.enabled)
|
||||||
|
}
|
||||||
|
|
||||||
|
DelegateChooser {
|
||||||
|
role: "id"
|
||||||
|
|
||||||
|
DelegateChoice {
|
||||||
|
roleValue: "audio"
|
||||||
|
|
||||||
|
delegate: EntryWrapper {
|
||||||
|
name: "audio"
|
||||||
|
|
||||||
|
AudioWidget {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DelegateChoice {
|
||||||
|
roleValue: "microphone"
|
||||||
|
|
||||||
|
delegate: EntryWrapper {
|
||||||
|
name: "audio"
|
||||||
|
|
||||||
|
MicWidget {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DelegateChoice {
|
||||||
|
roleValue: "power"
|
||||||
|
|
||||||
|
delegate: EntryWrapper {
|
||||||
|
name: "upower"
|
||||||
|
|
||||||
|
UPowerWidget {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
component EntryWrapper: Item {
|
||||||
|
required property int index
|
||||||
|
default property Item item
|
||||||
|
property real leftGap: present && index !== root.lastPresent ? margin : 0
|
||||||
|
property int margin: root.spacing / 2
|
||||||
|
required property var modelData
|
||||||
|
property string name: modelData.id.toLowerCase()
|
||||||
|
readonly property bool present: !root.collapsed(modelData)
|
||||||
|
property real rightGap: present && index !== root.firstPresent ? margin : 0
|
||||||
|
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
Layout.leftMargin: Math.round(leftGap)
|
||||||
|
Layout.rightMargin: Math.round(rightGap)
|
||||||
|
children: item
|
||||||
|
implicitHeight: item?.implicitHeight ?? 0
|
||||||
|
implicitWidth: item?.implicitWidth ?? 0
|
||||||
|
|
||||||
|
Behavior on leftGap {
|
||||||
|
Anim {
|
||||||
|
type: Anim.SlowEffects
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on rightGap {
|
||||||
|
Anim {
|
||||||
|
type: Anim.SlowEffects
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell.Services.SystemTray
|
||||||
|
import qs.Components
|
||||||
|
import qs.Config
|
||||||
|
import qs.Modules.SysTray.Widgets
|
||||||
|
import qs.Modules
|
||||||
|
|
||||||
|
CustomClippingRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
readonly property alias items: repeater
|
||||||
|
readonly property alias layout: sysRow
|
||||||
|
required property RowLayout loader
|
||||||
|
readonly property int padding: Appearance.padding.small
|
||||||
|
required property Wrapper popouts
|
||||||
|
|
||||||
|
bottomRightRadius: Appearance.rounding.smallest / 2
|
||||||
|
color: DynamicColors.tPalette.m3surfaceContainer
|
||||||
|
implicitHeight: Config.bar.height + Appearance.padding.smallest * 2
|
||||||
|
implicitWidth: sysRow.implicitWidth + Appearance.padding.small * 2
|
||||||
|
radius: Appearance.rounding.full
|
||||||
|
topRightRadius: Appearance.rounding.smallest / 2
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -44,15 +44,20 @@ RowLayout {
|
|||||||
function getHoveredSubItem(localX, localY) {
|
function getHoveredSubItem(localX, localY) {
|
||||||
let modPos = mapToItem(sysTrayMod, localX, localY);
|
let modPos = mapToItem(sysTrayMod, localX, localY);
|
||||||
if (sysTrayMod.contains(Qt.point(modPos.x, modPos.y))) {
|
if (sysTrayMod.contains(Qt.point(modPos.x, modPos.y))) {
|
||||||
let modRowPos = sysTrayMod.mapToItem(sysModRow, modPos.x, modPos.y);
|
let modRowPos = sysTrayMod.mapToItem(sysIcons, modPos.x, modPos.y);
|
||||||
let child = closestRowChild(sysModRow, modRowPos.x);
|
let child = closestRowChild(sysIcons, modRowPos.x);
|
||||||
if (child) {
|
if (child) {
|
||||||
if (child.objectName === "audioWidget" && Config.bar.popouts.audio)
|
if (child.objectName === "audio" && Config.bar.popouts.audio)
|
||||||
return {
|
return {
|
||||||
id: "audio",
|
id: "audio",
|
||||||
item: child
|
item: child
|
||||||
};
|
};
|
||||||
if (child.objectName === "upowerWidget" && Config.bar.popouts.upower)
|
if (child.objectName === "microphone" && Config.bar.popouts.audio)
|
||||||
|
return {
|
||||||
|
id: "audio",
|
||||||
|
item: child
|
||||||
|
};
|
||||||
|
if (child.objectName === "upower" && Config.bar.popouts.upower)
|
||||||
return {
|
return {
|
||||||
id: "upower",
|
id: "upower",
|
||||||
item: child
|
item: child
|
||||||
@@ -123,33 +128,16 @@ RowLayout {
|
|||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
bottomLeftRadius: Appearance.rounding.smallest / 2
|
bottomLeftRadius: Appearance.rounding.smallest / 2
|
||||||
color: DynamicColors.tPalette.m3surfaceContainer
|
color: DynamicColors.tPalette.m3surfaceContainer
|
||||||
implicitWidth: sysModRow.implicitWidth + Appearance.padding.smaller + Appearance.padding.normal
|
implicitWidth: sysIcons.implicitWidth + Appearance.padding.smaller + Appearance.padding.normal
|
||||||
radius: Appearance.rounding.full
|
radius: Appearance.rounding.full
|
||||||
topLeftRadius: Appearance.rounding.smallest / 2
|
topLeftRadius: Appearance.rounding.smallest / 2
|
||||||
|
|
||||||
RowLayout {
|
StatusIcons {
|
||||||
id: sysModRow
|
id: sysIcons
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.leftMargin: Appearance.padding.smaller
|
anchors.leftMargin: Appearance.padding.smaller
|
||||||
anchors.rightMargin: Appearance.padding.normal
|
anchors.rightMargin: Appearance.padding.normal
|
||||||
|
|
||||||
AudioWidget {
|
|
||||||
Layout.fillHeight: true
|
|
||||||
Layout.rightMargin: hasContent ? Appearance.spacing.extraSmall / 2 : 0
|
|
||||||
objectName: "audioWidget"
|
|
||||||
|
|
||||||
Behavior on Layout.rightMargin {
|
|
||||||
Anim {
|
|
||||||
type: Anim.FastEffects
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
UPowerWidget {
|
|
||||||
Layout.fillHeight: true
|
|
||||||
objectName: "upowerWidget"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,72 +7,25 @@ import qs.Modules
|
|||||||
import qs.Config
|
import qs.Config
|
||||||
import qs.Components
|
import qs.Components
|
||||||
|
|
||||||
RowLayout {
|
MaterialIcon {
|
||||||
id: root
|
id: speaker
|
||||||
|
|
||||||
property color barColor: DynamicColors.palette.m3primary
|
animate: true
|
||||||
readonly property bool hasContent: mic.visible || speaker.visible
|
color: Audio.muted ? DynamicColors.palette.m3error : DynamicColors.palette.m3onSurface
|
||||||
property color textColor: DynamicColors.palette.m3onSurface
|
fill: 1
|
||||||
|
font.pointSize: Appearance.font.size.larger
|
||||||
|
text: Audio.muted ? "volume_off" : "volume_up"
|
||||||
|
|
||||||
width: hasContent ? implicitWidth : 0
|
Behavior on Layout.maximumWidth {
|
||||||
|
Anim {
|
||||||
MaterialIcon {
|
|
||||||
id: mic
|
|
||||||
|
|
||||||
readonly property bool shouldBeVisible: Config.bar.tray.showMicrophone
|
|
||||||
|
|
||||||
Layout.alignment: Qt.AlignVCenter
|
|
||||||
Layout.maximumWidth: shouldBeVisible ? implicitWidth : 0
|
|
||||||
animate: true
|
|
||||||
color: (Audio.sourceMuted ?? false) ? DynamicColors.palette.m3error : root.textColor
|
|
||||||
fill: 1
|
|
||||||
font.pointSize: Appearance.font.size.larger
|
|
||||||
opacity: shouldBeVisible ? 1 : 0
|
|
||||||
scale: shouldBeVisible ? 1 : 0
|
|
||||||
text: Audio.sourceMuted ? "mic_off" : "mic"
|
|
||||||
visible: opacity > 0
|
|
||||||
|
|
||||||
Behavior on Layout.maximumWidth {
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Behavior on opacity {
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Behavior on scale {
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Behavior on opacity {
|
||||||
MaterialIcon {
|
Anim {
|
||||||
id: speaker
|
|
||||||
|
|
||||||
readonly property bool shouldBeVisible: Config.bar.tray.showAudio
|
|
||||||
|
|
||||||
Layout.alignment: Qt.AlignVCenter
|
|
||||||
Layout.maximumWidth: shouldBeVisible ? implicitWidth : 0
|
|
||||||
animate: true
|
|
||||||
color: Audio.muted ? DynamicColors.palette.m3error : root.textColor
|
|
||||||
fill: 1
|
|
||||||
font.pointSize: Appearance.font.size.larger
|
|
||||||
opacity: shouldBeVisible ? 1 : 0
|
|
||||||
scale: shouldBeVisible ? 1 : 0
|
|
||||||
text: Audio.muted ? "volume_off" : "volume_up"
|
|
||||||
visible: opacity > 0
|
|
||||||
|
|
||||||
Behavior on Layout.maximumWidth {
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Behavior on opacity {
|
}
|
||||||
Anim {
|
Behavior on scale {
|
||||||
}
|
Anim {
|
||||||
}
|
|
||||||
Behavior on scale {
|
|
||||||
Anim {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell.Io
|
||||||
|
import Quickshell.Services.Pipewire
|
||||||
|
import qs.Daemons
|
||||||
|
import qs.Modules
|
||||||
|
import qs.Config
|
||||||
|
import qs.Components
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
id: mic
|
||||||
|
|
||||||
|
animate: true
|
||||||
|
color: (Audio.sourceMuted ?? false) ? DynamicColors.palette.m3error : DynamicColors.palette.m3onSurface
|
||||||
|
fill: 1
|
||||||
|
font.pointSize: Appearance.font.size.larger
|
||||||
|
text: Audio.sourceMuted ? "mic_off" : "mic"
|
||||||
|
|
||||||
|
Behavior on Layout.maximumWidth {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on opacity {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Behavior on scale {
|
||||||
|
Anim {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -8,15 +8,8 @@ import qs.Helpers
|
|||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
readonly property bool shouldBeActive: Config.bar.tray.showPower
|
|
||||||
|
|
||||||
Layout.preferredHeight: shouldBeActive ? implicitHeight : 0
|
|
||||||
Layout.preferredWidth: shouldBeActive ? implicitWidth : 0
|
|
||||||
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
|
||||||
opacity: shouldBeActive ? 1 : 0
|
|
||||||
scale: shouldBeActive ? 1 : 0
|
|
||||||
visible: opacity > 0
|
|
||||||
|
|
||||||
Behavior on Layout.preferredHeight {
|
Behavior on Layout.preferredHeight {
|
||||||
Anim {
|
Anim {
|
||||||
|
|||||||
Reference in New Issue
Block a user