ladybird/Widgets/Event.h

169 lines
3 KiB
C
Raw Normal View History

2018-10-10 13:12:38 +00:00
#pragma once
2018-10-11 23:20:06 +00:00
#include "Point.h"
#include "Rect.h"
#include <AK/String.h>
#include <AK/Types.h>
2018-10-10 13:12:38 +00:00
static const char* eventNames[] = {
"Invalid",
"Quit",
"Show",
"Hide",
"Paint",
"MouseMove",
"MouseDown",
"MouseUp",
"KeyDown",
"KeyUp",
2018-10-12 10:18:59 +00:00
"Timer",
"DeferredDestroy",
2018-10-10 13:12:38 +00:00
};
class Event {
public:
enum Type {
Invalid = 0,
Quit,
Show,
Hide,
Paint,
MouseMove,
MouseDown,
MouseUp,
KeyDown,
KeyUp,
2018-10-12 10:18:59 +00:00
Timer,
DeferredDestroy,
2018-10-10 13:12:38 +00:00
};
Event() { }
~Event() { }
Type type() const { return m_type; }
const char* name() const { return eventNames[(unsigned)m_type]; }
2018-10-11 23:20:06 +00:00
bool isMouseEvent() const { return m_type == MouseMove || m_type == MouseDown || m_type == MouseUp; }
bool isKeyEvent() const { return m_type == KeyUp || m_type == KeyDown; }
bool isPaintEvent() const { return m_type == Paint; }
2018-10-11 23:20:06 +00:00
2018-10-10 13:12:38 +00:00
protected:
explicit Event(Type type) : m_type(type) { }
private:
Type m_type { Invalid };
};
class DeferredDestroyEvent final : public Event {
public:
DeferredDestroyEvent()
: Event(Event::DeferredDestroy)
{
}
};
2018-10-10 13:12:38 +00:00
class QuitEvent final : public Event {
public:
QuitEvent()
: Event(Event::Quit)
{
}
};
class PaintEvent final : public Event {
public:
explicit PaintEvent(const Rect& rect = Rect())
2018-10-10 13:12:38 +00:00
: Event(Event::Paint)
, m_rect(rect)
2018-10-10 13:12:38 +00:00
{
}
const Rect& rect() const { return m_rect; }
private:
friend class WindowManager;
Rect m_rect;
2018-10-10 13:12:38 +00:00
};
class ShowEvent final : public Event {
public:
ShowEvent()
: Event(Event::Show)
{
}
};
class HideEvent final : public Event {
public:
HideEvent()
: Event(Event::Hide)
{
}
};
enum class MouseButton : byte {
None = 0,
Left,
2018-10-10 23:48:09 +00:00
Middle,
2018-10-10 13:12:38 +00:00
Right,
};
enum KeyboardKey {
Invalid,
LeftArrow,
RightArrow,
UpArrow,
DownArrow,
Backspace,
2018-10-13 21:19:44 +00:00
Return,
};
2018-10-12 10:18:59 +00:00
class KeyEvent final : public Event {
2018-10-10 13:12:38 +00:00
public:
KeyEvent(Type type, int key)
: Event(type)
, 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 EventLoopSDL;
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
};
2018-10-12 10:18:59 +00:00
class MouseEvent final : public Event {
2018-10-10 13:12:38 +00:00
public:
MouseEvent(Type type, int x, int y, MouseButton button = MouseButton::None)
: Event(type)
2018-10-11 23:20:06 +00:00
, m_position(x, y)
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(); }
2018-10-10 13:12:38 +00:00
MouseButton button() const { return m_button; }
private:
2018-10-11 23:20:06 +00:00
Point m_position;
2018-10-10 13:12:38 +00:00
MouseButton m_button { MouseButton::None };
};
2018-10-12 10:18:59 +00:00
class TimerEvent final : public Event {
public:
TimerEvent() : Event(Event::Timer) { }
~TimerEvent() { }
};