From a2b924d7e9492b978ad6dc33b6c1ffcb304b4bc5 Mon Sep 17 00:00:00 2001 From: Nippy Date: Sat, 9 May 2026 13:33:09 +0200 Subject: raveos update --- .../Modals/Clipboard/ClipboardHeader.qml | 87 ---------------------- 1 file changed, 87 deletions(-) delete mode 100644 raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Clipboard/ClipboardHeader.qml (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Clipboard/ClipboardHeader.qml') diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Clipboard/ClipboardHeader.qml b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Clipboard/ClipboardHeader.qml deleted file mode 100644 index fedba15..0000000 --- a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Clipboard/ClipboardHeader.qml +++ /dev/null @@ -1,87 +0,0 @@ -import QtQuick -import qs.Common -import qs.Widgets -import qs.Modals.Clipboard - -Item { - id: header - - property int totalCount: 0 - property bool showKeyboardHints: false - property string activeTab: "recents" - property int pinnedCount: 0 - - signal keyboardHintsToggled - signal clearAllClicked - signal closeClicked - signal tabChanged(string tabName) - - height: ClipboardConstants.headerHeight - - Row { - anchors.left: parent.left - anchors.verticalCenter: parent.verticalCenter - spacing: Theme.spacingM - - DankIcon { - name: "content_paste" - size: Theme.iconSize - color: Theme.primary - anchors.verticalCenter: parent.verticalCenter - } - - StyledText { - text: I18n.tr("Clipboard History") + ` (${totalCount})` - font.pixelSize: Theme.fontSizeLarge - color: Theme.surfaceText - font.weight: Font.Medium - anchors.verticalCenter: parent.verticalCenter - } - } - - Row { - anchors.right: parent.right - anchors.verticalCenter: parent.verticalCenter - spacing: Theme.spacingS - - DankActionButton { - iconName: "push_pin" - iconSize: Theme.iconSize - 4 - iconColor: header.activeTab === "saved" ? Theme.primary : Theme.surfaceText - visible: header.pinnedCount > 0 - tooltipText: I18n.tr("Saved") - onClicked: tabChanged("saved") - } - - DankActionButton { - iconName: "history" - iconSize: Theme.iconSize - 4 - iconColor: header.activeTab === "recents" ? Theme.primary : Theme.surfaceText - tooltipText: I18n.tr("History") - onClicked: tabChanged("recents") - } - - DankActionButton { - iconName: "info" - iconSize: Theme.iconSize - 4 - iconColor: showKeyboardHints ? Theme.primary : Theme.surfaceText - tooltipText: I18n.tr("Keyboard Shortcuts") - onClicked: keyboardHintsToggled() - } - - DankActionButton { - iconName: "delete_sweep" - iconSize: Theme.iconSize - iconColor: Theme.surfaceText - tooltipText: I18n.tr("Clear All") - onClicked: clearAllClicked() - } - - DankActionButton { - iconName: "close" - iconSize: Theme.iconSize - 4 - iconColor: Theme.surfaceText - onClicked: closeClicked() - } - } -} -- cgit v1.3