2018-10-10 16:12:38 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-01-20 01:49:56 +03:00
|
|
|
#include <SharedGraphics/Point.h>
|
|
|
|
#include <SharedGraphics/Rect.h>
|
2018-12-21 04:18:16 +03:00
|
|
|
#include <AK/AKString.h>
|
2018-10-12 21:55:06 +03:00
|
|
|
#include <AK/Types.h>
|
2019-03-15 18:12:06 +03:00
|
|
|
#include <AK/WeakPtr.h>
|
2019-03-03 14:32:15 +03:00
|
|
|
#include <Kernel/KeyCode.h>
|
2019-04-04 17:23:23 +03:00
|
|
|
#include <LibGUI/GWindowType.h>
|
2018-10-10 16:12:38 +03:00
|
|
|
|
2019-03-15 18:12:06 +03:00
|
|
|
class GObject;
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
class GEvent {
|
2018-10-10 16:12:38 +03:00
|
|
|
public:
|
|
|
|
enum Type {
|
|
|
|
Invalid = 0,
|
|
|
|
Quit,
|
|
|
|
Show,
|
|
|
|
Hide,
|
|
|
|
Paint,
|
2019-02-09 13:19:38 +03:00
|
|
|
Resize,
|
2018-10-10 16:12:38 +03:00
|
|
|
MouseMove,
|
|
|
|
MouseDown,
|
|
|
|
MouseUp,
|
2019-02-20 12:12:19 +03:00
|
|
|
Enter,
|
|
|
|
Leave,
|
2018-10-10 16:12:38 +03:00
|
|
|
KeyDown,
|
|
|
|
KeyUp,
|
2018-10-12 13:18:59 +03:00
|
|
|
Timer,
|
2018-10-14 02:23:01 +03:00
|
|
|
DeferredDestroy,
|
2019-02-20 12:12:19 +03:00
|
|
|
WindowEntered,
|
|
|
|
WindowLeft,
|
2019-01-09 06:15:17 +03:00
|
|
|
WindowBecameInactive,
|
|
|
|
WindowBecameActive,
|
2019-01-26 13:24:16 +03:00
|
|
|
FocusIn,
|
|
|
|
FocusOut,
|
2019-02-05 12:31:37 +03:00
|
|
|
WindowCloseRequest,
|
2019-03-15 18:12:06 +03:00
|
|
|
ChildAdded,
|
|
|
|
ChildRemoved,
|
2019-04-03 22:03:12 +03:00
|
|
|
WM_WindowRemoved,
|
|
|
|
WM_WindowStateChanged,
|
2018-10-10 16:12:38 +03:00
|
|
|
};
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
GEvent() { }
|
|
|
|
explicit GEvent(Type type) : m_type(type) { }
|
|
|
|
virtual ~GEvent() { }
|
2018-10-10 16:12:38 +03:00
|
|
|
|
|
|
|
Type type() const { return m_type; }
|
|
|
|
|
2019-01-20 09:03:38 +03:00
|
|
|
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-12 02:20:06 +03:00
|
|
|
|
2018-10-10 16:12:38 +03:00
|
|
|
private:
|
|
|
|
Type m_type { Invalid };
|
|
|
|
};
|
|
|
|
|
2019-04-03 22:03:12 +03:00
|
|
|
class GWMEvent : public GEvent {
|
|
|
|
public:
|
|
|
|
GWMEvent(Type type, int client_id, int window_id)
|
|
|
|
: GEvent(type)
|
|
|
|
, m_client_id(client_id)
|
|
|
|
, m_window_id(window_id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int client_id() const { return m_client_id; }
|
|
|
|
int window_id() const { return m_window_id; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_client_id { -1 };
|
|
|
|
int m_window_id { -1 };
|
|
|
|
};
|
|
|
|
|
|
|
|
class GWMWindowRemovedEvent : public GWMEvent {
|
|
|
|
public:
|
|
|
|
GWMWindowRemovedEvent(int client_id, int window_id)
|
|
|
|
: GWMEvent(GEvent::Type::WM_WindowRemoved, client_id, window_id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class GWMWindowStateChangedEvent : public GWMEvent {
|
|
|
|
public:
|
2019-04-06 01:57:51 +03:00
|
|
|
GWMWindowStateChangedEvent(int client_id, int window_id, const String& title, const Rect& rect, bool is_active, GWindowType window_type, bool is_minimized)
|
2019-04-03 22:03:12 +03:00
|
|
|
: GWMEvent(GEvent::Type::WM_WindowStateChanged, client_id, window_id)
|
|
|
|
, m_title(title)
|
|
|
|
, m_rect(rect)
|
2019-04-04 14:19:26 +03:00
|
|
|
, m_active(is_active)
|
2019-04-04 17:23:23 +03:00
|
|
|
, m_window_type(window_type)
|
2019-04-06 01:57:51 +03:00
|
|
|
, m_minimized(is_minimized)
|
2019-04-03 22:03:12 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
String title() const { return m_title; }
|
|
|
|
Rect rect() const { return m_rect; }
|
2019-04-04 14:19:26 +03:00
|
|
|
bool is_active() const { return m_active; }
|
2019-04-04 17:23:23 +03:00
|
|
|
GWindowType window_type() const { return m_window_type; }
|
2019-04-06 01:57:51 +03:00
|
|
|
bool is_minimized() const { return m_minimized; }
|
2019-04-03 22:03:12 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
String m_title;
|
|
|
|
Rect m_rect;
|
2019-04-04 14:19:26 +03:00
|
|
|
bool m_active;
|
2019-04-04 17:23:23 +03:00
|
|
|
GWindowType m_window_type;
|
2019-04-06 01:57:51 +03:00
|
|
|
bool m_minimized;
|
2019-04-03 22:03:12 +03:00
|
|
|
};
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
class QuitEvent final : public GEvent {
|
2018-10-10 16:12:38 +03:00
|
|
|
public:
|
|
|
|
QuitEvent()
|
2019-01-20 06:49:48 +03:00
|
|
|
: GEvent(GEvent::Quit)
|
2018-10-10 16:12:38 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
class GPaintEvent final : public GEvent {
|
2018-10-10 16:12:38 +03:00
|
|
|
public:
|
2019-02-26 12:50:25 +03:00
|
|
|
explicit GPaintEvent(const Rect& rect, const Size& window_size = Size())
|
2019-01-20 06:49:48 +03:00
|
|
|
: GEvent(GEvent::Paint)
|
2018-10-12 20:39:48 +03:00
|
|
|
, m_rect(rect)
|
2019-02-26 12:50:25 +03:00
|
|
|
, m_window_size(window_size)
|
2018-10-10 16:12:38 +03:00
|
|
|
{
|
|
|
|
}
|
2018-10-12 20:39:48 +03:00
|
|
|
|
2019-02-26 12:50:25 +03:00
|
|
|
Rect rect() const { return m_rect; }
|
|
|
|
Size window_size() const { return m_window_size; }
|
|
|
|
|
2018-10-12 20:39:48 +03:00
|
|
|
private:
|
|
|
|
Rect m_rect;
|
2019-02-26 12:50:25 +03:00
|
|
|
Size m_window_size;
|
2018-10-10 16:12:38 +03:00
|
|
|
};
|
|
|
|
|
2019-02-09 13:19:38 +03:00
|
|
|
class GResizeEvent final : public GEvent {
|
|
|
|
public:
|
|
|
|
explicit GResizeEvent(const Size& old_size, const Size& size)
|
|
|
|
: GEvent(GEvent::Resize)
|
|
|
|
, m_old_size(old_size)
|
|
|
|
, m_size(size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const Size& old_size() const { return m_old_size; }
|
|
|
|
const Size& size() const { return m_size; }
|
|
|
|
private:
|
|
|
|
Size m_old_size;
|
|
|
|
Size m_size;
|
|
|
|
};
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
class GShowEvent final : public GEvent {
|
2018-10-10 16:12:38 +03:00
|
|
|
public:
|
2019-01-20 06:49:48 +03:00
|
|
|
GShowEvent()
|
|
|
|
: GEvent(GEvent::Show)
|
2018-10-10 16:12:38 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
class GHideEvent final : public GEvent {
|
2018-10-10 16:12:38 +03:00
|
|
|
public:
|
2019-01-20 06:49:48 +03:00
|
|
|
GHideEvent()
|
|
|
|
: GEvent(GEvent::Hide)
|
2018-10-10 16:12:38 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-02 10:05:14 +03:00
|
|
|
enum GMouseButton : byte {
|
2018-10-10 16:12:38 +03:00
|
|
|
None = 0,
|
2019-01-21 04:18:16 +03:00
|
|
|
Left = 1,
|
|
|
|
Right = 2,
|
|
|
|
Middle = 4,
|
2018-10-10 16:12:38 +03:00
|
|
|
};
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
class GKeyEvent final : public GEvent {
|
2018-10-10 16:12:38 +03:00
|
|
|
public:
|
2019-03-03 14:32:15 +03:00
|
|
|
GKeyEvent(Type type, int key, byte modifiers)
|
2019-01-20 06:49:48 +03:00
|
|
|
: GEvent(type)
|
2018-10-10 16:12:38 +03:00
|
|
|
, m_key(key)
|
2019-03-03 14:32:15 +03:00
|
|
|
, m_modifiers(modifiers)
|
2018-10-10 16:12:38 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int key() const { return m_key; }
|
2019-03-03 14:32:15 +03:00
|
|
|
bool ctrl() const { return m_modifiers & Mod_Ctrl; }
|
|
|
|
bool alt() const { return m_modifiers & Mod_Alt; }
|
|
|
|
bool shift() const { return m_modifiers & Mod_Shift; }
|
2019-03-03 14:56:48 +03:00
|
|
|
bool logo() const { return m_modifiers & Mod_Logo; }
|
2019-03-03 14:32:15 +03:00
|
|
|
byte modifiers() const { return m_modifiers; }
|
2018-10-12 21:55:06 +03:00
|
|
|
String text() const { return m_text; }
|
2018-10-10 16:12:38 +03:00
|
|
|
|
|
|
|
private:
|
2019-01-20 06:49:48 +03:00
|
|
|
friend class GEventLoop;
|
2018-10-10 16:12:38 +03:00
|
|
|
int m_key { 0 };
|
2019-03-03 14:32:15 +03:00
|
|
|
byte m_modifiers { 0 };
|
2018-10-12 21:55:06 +03:00
|
|
|
String m_text;
|
2018-10-10 16:12:38 +03:00
|
|
|
};
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
class GMouseEvent final : public GEvent {
|
2018-10-10 16:12:38 +03:00
|
|
|
public:
|
2019-03-08 19:53:02 +03:00
|
|
|
GMouseEvent(Type type, const Point& position, unsigned buttons, GMouseButton button, unsigned modifiers)
|
2019-01-20 06:49:48 +03:00
|
|
|
: GEvent(type)
|
2019-01-20 07:48:43 +03:00
|
|
|
, m_position(position)
|
2019-01-20 09:03:38 +03:00
|
|
|
, m_buttons(buttons)
|
2018-10-10 16:12:38 +03:00
|
|
|
, m_button(button)
|
2019-03-08 19:53:02 +03:00
|
|
|
, m_modifiers(modifiers)
|
2018-10-10 16:12:38 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-10-12 02:20:06 +03:00
|
|
|
Point position() const { return m_position; }
|
|
|
|
int x() const { return m_position.x(); }
|
|
|
|
int y() const { return m_position.y(); }
|
2019-01-20 06:49:48 +03:00
|
|
|
GMouseButton button() const { return m_button; }
|
2019-01-20 09:03:38 +03:00
|
|
|
unsigned buttons() const { return m_buttons; }
|
2019-03-08 19:53:02 +03:00
|
|
|
unsigned modifiers() const { return m_modifiers; }
|
2018-10-10 16:12:38 +03:00
|
|
|
|
|
|
|
private:
|
2018-10-12 02:20:06 +03:00
|
|
|
Point m_position;
|
2019-01-20 09:03:38 +03:00
|
|
|
unsigned m_buttons { 0 };
|
2019-01-20 06:49:48 +03:00
|
|
|
GMouseButton m_button { GMouseButton::None };
|
2019-03-08 19:53:02 +03:00
|
|
|
unsigned m_modifiers { 0 };
|
2018-10-10 16:12:38 +03:00
|
|
|
};
|
|
|
|
|
2019-01-20 06:49:48 +03:00
|
|
|
class GTimerEvent final : public GEvent {
|
2018-10-12 13:18:59 +03:00
|
|
|
public:
|
2019-02-01 05:50:06 +03:00
|
|
|
explicit GTimerEvent(int timer_id) : GEvent(GEvent::Timer), m_timer_id(timer_id) { }
|
2019-01-20 06:49:48 +03:00
|
|
|
~GTimerEvent() { }
|
2019-02-01 05:50:06 +03:00
|
|
|
|
|
|
|
int timer_id() const { return m_timer_id; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_timer_id;
|
2018-10-12 13:18:59 +03:00
|
|
|
};
|
2019-03-15 18:12:06 +03:00
|
|
|
|
|
|
|
class GChildEvent final : public GEvent {
|
|
|
|
public:
|
|
|
|
GChildEvent(Type, GObject& child);
|
|
|
|
~GChildEvent();
|
|
|
|
|
|
|
|
GObject* child() { return m_child.ptr(); }
|
|
|
|
const GObject* child() const { return m_child.ptr(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
WeakPtr<GObject> m_child;
|
|
|
|
};
|