aboutsummaryrefslogtreecommitdiffstats
path: root/config/quickshell/qs-hyprview-unified/modules/SearchBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'config/quickshell/qs-hyprview-unified/modules/SearchBox.qml')
-rw-r--r--config/quickshell/qs-hyprview-unified/modules/SearchBox.qml53
1 files changed, 53 insertions, 0 deletions
diff --git a/config/quickshell/qs-hyprview-unified/modules/SearchBox.qml b/config/quickshell/qs-hyprview-unified/modules/SearchBox.qml
new file mode 100644
index 00000000..42971bd1
--- /dev/null
+++ b/config/quickshell/qs-hyprview-unified/modules/SearchBox.qml
@@ -0,0 +1,53 @@
+import QtQuick
+import Quickshell
+
+Rectangle {
+ id: searchBar
+ width: Math.min(parent.width * 0.6, 480)
+ height: 40
+ radius: 20
+ color: "#66000000"
+ border.width: 1
+ border.color: m3.m3Primary
+ anchors.horizontalCenter: parent.horizontalCenter
+
+ property var onTextChanged: null
+
+ function reset() {
+ searchInput.text = ""
+ }
+
+ function focusInput() {
+ searchInput.forceActiveFocus(Qt.ActiveWindowFocusReason)
+ }
+
+ function releaseInputFocus() {
+ searchInput.focus = false
+ }
+
+ TextInput {
+ id: searchInput
+ anchors.fill: parent
+ anchors.leftMargin: 16
+ anchors.rightMargin: 16
+ verticalAlignment: TextInput.AlignVCenter
+ color: "white"
+ font.pixelSize: 16
+ activeFocusOnTab: false
+ selectByMouse: true
+ focus: false
+
+ onTextChanged: {
+ searchBar.onTextChanged(text)
+ }
+
+ Text {
+ anchors.fill: parent
+ verticalAlignment: Text.AlignVCenter
+ color: "#88ffffff"
+ font.pixelSize: 14
+ text: "Type to filter windows..."
+ visible: !searchInput.text || searchInput.text.length === 0
+ }
+ }
+}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage