From 54b56290253719aa71d8ccfddff6fa0424e22804 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Mon, 13 Jul 2026 14:55:49 -0400 Subject: Moved quickshell-backtup to -trixie Signed-off-by: Don Williams --- .../common/widgets/RectangularShadow.qml | 28 ------------- .../common/widgets/StyledRectangularShadow.qml | 13 ------ .../overview-backup/common/widgets/StyledText.qml | 16 ------- .../common/widgets/StyledToolTip.qml | 23 ---------- .../common/widgets/StyledToolTipContent.qml | 49 ---------------------- .../overview-backup/common/widgets/qmldir | 5 --- 6 files changed, 134 deletions(-) delete mode 100644 config/quickshell/overview-backup/common/widgets/RectangularShadow.qml delete mode 100644 config/quickshell/overview-backup/common/widgets/StyledRectangularShadow.qml delete mode 100644 config/quickshell/overview-backup/common/widgets/StyledText.qml delete mode 100644 config/quickshell/overview-backup/common/widgets/StyledToolTip.qml delete mode 100644 config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml delete mode 100644 config/quickshell/overview-backup/common/widgets/qmldir (limited to 'config/quickshell/overview-backup/common/widgets') diff --git a/config/quickshell/overview-backup/common/widgets/RectangularShadow.qml b/config/quickshell/overview-backup/common/widgets/RectangularShadow.qml deleted file mode 100644 index 2289d4c0..00000000 --- a/config/quickshell/overview-backup/common/widgets/RectangularShadow.qml +++ /dev/null @@ -1,28 +0,0 @@ -import QtQuick -import QtQuick.Effects - -Item { - id: root - - property var target: parent - property real radius: 0 - property real blur: 0 - property vector2d offset: Qt.vector2d(0.0, 0.0) - property real spread: 0 - property color color: "black" - property bool cached: false - - anchors.fill: target - visible: target !== null - - MultiEffect { - anchors.fill: target - source: target - shadowEnabled: true - shadowColor: root.color - shadowBlur: root.blur - shadowHorizontalOffset: root.offset.x - shadowVerticalOffset: root.offset.y - shadowOpacity: 1.0 - } -} diff --git a/config/quickshell/overview-backup/common/widgets/StyledRectangularShadow.qml b/config/quickshell/overview-backup/common/widgets/StyledRectangularShadow.qml deleted file mode 100644 index dba2159f..00000000 --- a/config/quickshell/overview-backup/common/widgets/StyledRectangularShadow.qml +++ /dev/null @@ -1,13 +0,0 @@ -import QtQuick -import QtQuick.Effects -import ".." - -RectangularShadow { - anchors.fill: target - radius: 20 - blur: 0.9 * Appearance.sizes.elevationMargin - offset: Qt.vector2d(0.0, 1.0) - spread: 1 - color: Appearance.colors.colShadow - cached: true -} diff --git a/config/quickshell/overview-backup/common/widgets/StyledText.qml b/config/quickshell/overview-backup/common/widgets/StyledText.qml deleted file mode 100644 index abfcefae..00000000 --- a/config/quickshell/overview-backup/common/widgets/StyledText.qml +++ /dev/null @@ -1,16 +0,0 @@ -import QtQuick -import ".." - -Text { - id: root - property bool animateChange: false - - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter - font { - hintingPreference: Font.PreferFullHinting - family: Appearance?.font.family.main ?? "sans-serif" - pixelSize: Appearance?.font.pixelSize.small ?? 15 - } - color: Appearance?.m3colors.m3onBackground ?? "white" -} diff --git a/config/quickshell/overview-backup/common/widgets/StyledToolTip.qml b/config/quickshell/overview-backup/common/widgets/StyledToolTip.qml deleted file mode 100644 index 4d4678c8..00000000 --- a/config/quickshell/overview-backup/common/widgets/StyledToolTip.qml +++ /dev/null @@ -1,23 +0,0 @@ -import QtQuick -import QtQuick.Controls -import "." - -ToolTip { - id: root - property bool extraVisibleCondition: true - property bool alternativeVisibleCondition: false - readonly property bool internalVisibleCondition: (extraVisibleCondition && (parent.hovered === undefined || parent?.hovered)) || alternativeVisibleCondition - verticalPadding: 5 - horizontalPadding: 10 - background: null - - visible: internalVisibleCondition - - contentItem: StyledToolTipContent { - id: contentItem - text: root.text - shown: root.internalVisibleCondition - horizontalPadding: root.horizontalPadding - verticalPadding: root.verticalPadding - } -} diff --git a/config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml b/config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml deleted file mode 100644 index b8c29c1a..00000000 --- a/config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml +++ /dev/null @@ -1,49 +0,0 @@ -import QtQuick -import "." -import "../" - -Item { - id: root - required property string text - property bool shown: false - property real horizontalPadding: 10 - property real verticalPadding: 5 - implicitWidth: tooltipTextObject.implicitWidth + 2 * root.horizontalPadding - implicitHeight: tooltipTextObject.implicitHeight + 2 * root.verticalPadding - - property bool isVisible: backgroundRectangle.implicitHeight > 0 - - Rectangle { - id: backgroundRectangle - anchors { - bottom: root.bottom - horizontalCenter: root.horizontalCenter - } - color: Appearance?.colors.colTooltip ?? "#3C4043" - radius: Appearance?.rounding.verysmall ?? 7 - opacity: shown ? 1 : 0 - implicitWidth: shown ? (tooltipTextObject.implicitWidth + 2 * root.horizontalPadding) : 0 - implicitHeight: shown ? (tooltipTextObject.implicitHeight + 2 * root.verticalPadding) : 0 - clip: true - - Behavior on implicitWidth { - animation: Appearance?.animation.elementMoveFast.numberAnimation.createObject(this) - } - Behavior on implicitHeight { - animation: Appearance?.animation.elementMoveFast.numberAnimation.createObject(this) - } - Behavior on opacity { - animation: Appearance?.animation.elementMoveFast.numberAnimation.createObject(this) - } - - StyledText { - id: tooltipTextObject - anchors.centerIn: parent - text: root.text - font.pixelSize: Appearance?.font.pixelSize.smaller ?? 14 - font.hintingPreference: Font.PreferNoHinting - color: Appearance?.colors.colOnTooltip ?? "#FFFFFF" - wrapMode: Text.Wrap - } - } -} diff --git a/config/quickshell/overview-backup/common/widgets/qmldir b/config/quickshell/overview-backup/common/widgets/qmldir deleted file mode 100644 index c974f193..00000000 --- a/config/quickshell/overview-backup/common/widgets/qmldir +++ /dev/null @@ -1,5 +0,0 @@ -StyledText 1.0 StyledText.qml -StyledRectangularShadow 1.0 StyledRectangularShadow.qml -RectangularShadow 1.0 RectangularShadow.qml -StyledToolTip 1.0 StyledToolTip.qml -StyledToolTipContent 1.0 StyledToolTipContent.qml -- cgit v1.2.3