summaryrefslogtreecommitdiff
path: root/modules/launcher/Launcher.qml
blob: 849a5692877dd61d8b8bfcad26020efd8bf0a075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import "root:/widgets"
import "root:/config"
import Quickshell
import Quickshell.Wayland

Scope {
    id: root

    property bool bindInterrupted
    property bool launcherVisible

    LazyLoader {
        id: loader

        loading: true

        StyledWindow {
            id: win

            name: "launcher"
            keyboardFocus: root.launcherVisible ? WlrKeyboardFocus.Exclusive : WlrKeyboardFocus.None
            visible: wrapper.shouldBeVisible

            width: content.width + bg.rounding * 2
            height: content.implicitHeight

            anchors.bottom: true

            Background {
                id: bg

                realWrapperHeight: wrapper.height
            }

            Wrapper {
                id: wrapper

                launcherVisible: root.launcherVisible

                Content {
                    id: content
                }
            }
        }
    }

    CustomShortcut {
        name: "launcher"
        description: "Toggle launcher"
        onPressed: root.bindInterrupted = false
        onReleased: {
            if (!root.bindInterrupted)
                root.launcherVisible = !root.launcherVisible;
            root.bindInterrupted = false;
        }
    }

    CustomShortcut {
        name: "launcherInterrupt"
        description: "Interrupt launcher keybind"
        onPressed: root.bindInterrupted = true
    }
}