summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer/WindowSwitcher.h
blob: a59a20f963c55f0fbc0f6ea72819cc72a1082ceb (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
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Vector.h>
#include <AK/WeakPtr.h>
#include <LibCore/Object.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Rect.h>

namespace WindowServer {

class KeyEvent;
class Window;

class WindowSwitcher final : public Core::Object {
    C_OBJECT(WindowSwitcher)
public:
    enum class Mode {
        ShowAllWindows,
        ShowCurrentDesktop
    };
    static WindowSwitcher& the();

    WindowSwitcher();
    virtual ~WindowSwitcher() override;

    bool is_visible() const { return m_visible; }
    void set_visible(bool);

    void show(Mode mode)
    {
        m_mode = mode;
        set_visible(true);
    }
    void hide() { set_visible(false); }

    void on_key_event(const KeyEvent&);

    void refresh();
    void refresh_if_needed();

    void select_window(Window&);

    Mode mode() const { return m_mode; }

private:
    int thumbnail_width() const { return 40; }
    int thumbnail_height() const { return 40; }
    int item_height() const { return 10 + thumbnail_height(); }
    int padding() const { return 8; }
    int item_padding() const { return 8; }

    void draw();
    void redraw();
    void select_window_at_index(int index);
    Gfx::IntRect item_rect(int index) const;
    Window* selected_window();

    virtual void event(Core::Event&) override;

    RefPtr<Window> m_switcher_window;
    Mode m_mode { Mode::ShowCurrentDesktop };
    Gfx::IntRect m_rect;
    bool m_visible { false };
    bool m_windows_on_multiple_stacks { false };
    Vector<WeakPtr<Window>> m_windows;
    int m_selected_index { 0 };
    int m_hovered_index { -1 };
};

}