summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer/Button.h
blob: 843d7c61d212e4c4d8048bda7ec9aa7915ed1f77 (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
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Function.h>
#include <AK/Weakable.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Rect.h>
#include <WindowServer/MultiScaleBitmaps.h>

namespace WindowServer {

class MouseEvent;
class Screen;
class WindowFrame;

class Button : public Weakable<Button> {
public:
    Button(WindowFrame&, Function<void(Button&)>&& on_click_handler);
    ~Button();

    Gfx::IntRect relative_rect() const { return m_relative_rect; }
    void set_relative_rect(const Gfx::IntRect& rect) { m_relative_rect = rect; }

    Gfx::IntRect rect() const { return { {}, m_relative_rect.size() }; }
    Gfx::IntRect screen_rect() const;

    void paint(Screen&, Gfx::Painter&);

    void on_mouse_event(const MouseEvent&);

    Function<void(Button&)> on_click;
    Function<void(Button&)> on_right_click;
    Function<void(Button&)> on_middle_click;

    bool is_visible() const { return m_visible; }

    void set_icon(const RefPtr<MultiScaleBitmaps>& icon) { m_icon = icon; }

private:
    WindowFrame& m_frame;
    Gfx::IntRect m_relative_rect;
    RefPtr<MultiScaleBitmaps> m_icon;
    bool m_pressed { false };
    bool m_visible { true };
    bool m_hovered { false };
};

}