ladybird/LibGUI/GEvent.h

144 lines
2.9 KiB
C
Raw Normal View History

2018-10-10 13:12:38 +00:00
#pragma once
2019-01-19 22:49:56 +00:00
#include <SharedGraphics/Point.h>
#include <SharedGraphics/Rect.h>
#include <AK/AKString.h>
#include <AK/Types.h>
2018-10-10 13:12:38 +00:00
class GEvent {
2018-10-10 13:12:38 +00:00
public:
enum Type {
Invalid = 0,
Quit,
Show,
Hide,
Paint,
MouseMove,
MouseDown,
MouseUp,
KeyDown,
KeyUp,
2018-10-12 10:18:59 +00:00
Timer,
DeferredDestroy,
WindowBecameInactive,
WindowBecameActive,
FocusIn,
FocusOut,
WindowCloseRequest,
2018-10-10 13:12:38 +00:00
};
GEvent() { }
explicit GEvent(Type type) : m_type(type) { }
virtual ~GEvent() { }
2018-10-10 13:12:38 +00:00
Type type() const { return m_type; }
bool is_mouse_event() const { return m_type == MouseMove || m_type == MouseDown || m_type == MouseUp; }
bool is_key_event() const { return m_type == KeyUp || m_type == KeyDown; }
bool is_paint_event() const { return m_type == Paint; }
2018-10-11 23:20:06 +00:00
2018-10-10 13:12:38 +00:00
private:
Type m_type { Invalid };
};
class QuitEvent final : public GEvent {
2018-10-10 13:12:38 +00:00
public:
QuitEvent()
: GEvent(GEvent::Quit)
2018-10-10 13:12:38 +00:00
{
}
};
class GPaintEvent final : public GEvent {
2018-10-10 13:12:38 +00:00
public:
explicit GPaintEvent(const Rect& rect = Rect())
: GEvent(GEvent::Paint)
, m_rect(rect)
2018-10-10 13:12:38 +00:00
{
}
const Rect& rect() const { return m_rect; }
private:
Rect m_rect;
2018-10-10 13:12:38 +00:00
};
class GShowEvent final : public GEvent {
2018-10-10 13:12:38 +00:00
public:
GShowEvent()
: GEvent(GEvent::Show)
2018-10-10 13:12:38 +00:00
{
}
};
class GHideEvent final : public GEvent {
2018-10-10 13:12:38 +00:00
public:
GHideEvent()
: GEvent(GEvent::Hide)
2018-10-10 13:12:38 +00:00
{
}
};
enum GMouseButton : byte {
2018-10-10 13:12:38 +00:00
None = 0,
Left = 1,
Right = 2,
Middle = 4,
2018-10-10 13:12:38 +00:00
};
class GKeyEvent final : public GEvent {
2018-10-10 13:12:38 +00:00
public:
GKeyEvent(Type type, int key)
: GEvent(type)
2018-10-10 13:12:38 +00:00
, m_key(key)
{
}
int key() const { return m_key; }
bool ctrl() const { return m_ctrl; }
bool alt() const { return m_alt; }
bool shift() const { return m_shift; }
String text() const { return m_text; }
2018-10-10 13:12:38 +00:00
private:
friend class GEventLoop;
2018-10-10 13:12:38 +00:00
int m_key { 0 };
bool m_ctrl { false };
bool m_alt { false };
bool m_shift { false };
String m_text;
2018-10-10 13:12:38 +00:00
};
class GMouseEvent final : public GEvent {
2018-10-10 13:12:38 +00:00
public:
GMouseEvent(Type type, const Point& position, unsigned buttons, GMouseButton button = GMouseButton::None)
: GEvent(type)
, m_position(position)
, m_buttons(buttons)
2018-10-10 13:12:38 +00:00
, m_button(button)
{
}
2018-10-11 23:20:06 +00:00
Point position() const { return m_position; }
int x() const { return m_position.x(); }
int y() const { return m_position.y(); }
GMouseButton button() const { return m_button; }
unsigned buttons() const { return m_buttons; }
2018-10-10 13:12:38 +00:00
private:
2018-10-11 23:20:06 +00:00
Point m_position;
unsigned m_buttons { 0 };
GMouseButton m_button { GMouseButton::None };
2018-10-10 13:12:38 +00:00
};
class GTimerEvent final : public GEvent {
2018-10-12 10:18:59 +00:00
public:
explicit GTimerEvent(int timer_id) : GEvent(GEvent::Timer), m_timer_id(timer_id) { }
~GTimerEvent() { }
int timer_id() const { return m_timer_id; }
private:
int m_timer_id;
2018-10-12 10:18:59 +00:00
};