diff options
| author | Don Williams <Don.e.williams@gmail.com> | 2026-07-11 20:50:52 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:34 -0700 |
| commit | 9dab91abe13fc6cf1c8e609f71131609ae9c64bb (patch) | |
| tree | d848f7b3c180aba0ae1576d1f7ede0f951e63f11 /config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml | |
| parent | cfdf5b2c2c24d312b2f2ff3da8eb73f9dced8dcf (diff) | |
Using previous version of overview config seems to work better
Signed-off-by: Don Williams <Don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
new file: overview-backup/README.md
renamed: overview/assets/Workspace_Wallpaper.png -> overview-backup/assets/Workspace_Wallpaper.png
new file: overview-backup/assets/image.png
new file: overview-backup/common/Appearance.qml
new file: overview-backup/common/Config.qml
new file: overview-backup/common/functions/ColorUtils.qml
new file: overview-backup/common/functions/qmldir
new file: overview-backup/common/qmldir
renamed: overview/common/widgets/RectangularShadow.qml -> overview-backup/common/widgets/RectangularShadow.qml
new file: overview-backup/common/widgets/StyledRectangularShadow.qml
new file: overview-backup/common/widgets/StyledText.qml
new file: overview-backup/common/widgets/StyledToolTip.qml
new file: overview-backup/common/widgets/StyledToolTipContent.qml
new file: overview-backup/common/widgets/qmldir
renamed: overview/config.example.json -> overview-backup/config.example.json
renamed: overview/config.json -> overview-backup/config.json
new file: overview-backup/modules/overview/Overview.qml
new file: overview-backup/modules/overview/OverviewWidget.qml
new file: overview-backup/modules/overview/OverviewWindow.qml
new file: overview-backup/modules/overview/qmldir
renamed: overview/quickshell-overview.qml -> overview-backup/quickshell-overview.qml
new file: overview-backup/services/GlobalStates.qml
new file: overview-backup/services/HyprlandData.qml
new file: overview-backup/services/qmldir
new file: overview-backup/shell.qml
modified: overview/README.md
modified: overview/assets/image.png
modified: overview/common/Appearance.qml
modified: overview/common/Config.qml
modified: overview/common/widgets/StyledRectangularShadow.qml
modified: overview/common/widgets/qmldir
modified: overview/modules/overview/Overview.qml
modified: overview/modules/overview/OverviewWidget.qml
modified: overview/modules/overview/OverviewWindow.qml
modified: overview/services/HyprlandData.qml
modified: overview/shell.qml
Diffstat (limited to 'config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml')
| -rw-r--r-- | config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml b/config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml new file mode 100644 index 00000000..b8c29c1a --- /dev/null +++ b/config/quickshell/overview-backup/common/widgets/StyledToolTipContent.qml @@ -0,0 +1,49 @@ +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 + } + } +} |
