raven/src/Events.hpp

124 lines
2.9 KiB
C++
Raw Normal View History

#pragma once
2022-03-08 02:25:22 +02:00
#include <stdint.h>
#include "Point.hpp"
#include "Box.hpp"
2022-03-08 02:25:22 +02:00
namespace Raven {
enum class EventType {
NoneEvent,
2022-03-08 02:25:22 +02:00
MouseButton,
MouseMove,
Reflow,
2022-03-18 02:49:16 +02:00
FocusUpdate,
2022-04-02 21:41:35 +03:00
ActivationUpdate,
};
enum class ReflowType {
RepaintSubtree,
RelayoutSubtree,
RepaintSelf
};
enum class ReflowGrouping {
Yes,
No
2022-03-08 02:25:22 +02:00
};
class Event {
private:
bool m_accepted { false };
public:
Event() {}
2022-04-30 09:40:09 +03:00
virtual EventType type() { return EventType::NoneEvent; }
virtual const char *name() { return "NoneEvent"; }
2022-03-18 02:49:16 +02:00
void accept() { m_accepted = true; }
2022-04-30 09:40:09 +03:00
bool accepted() { return m_accepted; }
2022-03-18 02:49:16 +02:00
virtual ~Event() = default;
2022-03-08 02:25:22 +02:00
};
class MouseButtonEvent : public Event {
private:
bool m_was_left_button_pressed;
bool m_was_right_button_pressed;
Point m_point;
2022-03-08 02:25:22 +02:00
public:
MouseButtonEvent(bool was_left_button_pressed, bool was_right_button_pressed, Point point)
2022-03-08 02:25:22 +02:00
: m_was_left_button_pressed(was_left_button_pressed)
, m_was_right_button_pressed(was_right_button_pressed)
, m_point(point) {}
2022-03-08 02:25:22 +02:00
2022-04-30 09:40:09 +03:00
EventType type() { return EventType::MouseButton; }
const char *name() { return "MouseButton"; }
2022-03-08 02:25:22 +02:00
2022-04-30 09:40:09 +03:00
bool was_left_button_pressed() { return m_was_left_button_pressed; }
bool was_right_button_pressed() { return m_was_right_button_pressed; }
2022-04-30 09:40:09 +03:00
Point &point() { return m_point; }
2022-03-08 02:25:22 +02:00
};
class MouseMoveEvent : public Event {
private:
Point m_point;
public:
MouseMoveEvent(Point point)
: m_point(point) {}
2022-04-30 09:40:09 +03:00
EventType type() { return EventType::MouseMove; }
const char *name() { return "MouseMove"; }
2022-03-08 02:25:22 +02:00
2022-04-30 09:40:09 +03:00
Point &point() { return m_point; }
2022-03-08 02:25:22 +02:00
};
class ReflowEvent: public Event {
private:
ReflowType m_reflow_type;
ReflowGrouping m_reflow_grouping;
public:
ReflowEvent(ReflowType type, ReflowGrouping grouping)
: m_reflow_type(type)
, m_reflow_grouping(grouping) {}
EventType type() { return EventType::Reflow; }
const char *name() { return "Reflow"; }
ReflowType reflow_type() { return m_reflow_type; }
ReflowGrouping reflow_grouping() { return m_reflow_grouping; }
2022-04-02 21:41:35 +03:00
void set_reflow_grouping(ReflowGrouping reflow_grouping) { m_reflow_grouping = reflow_grouping; }
void set_reflow_type(ReflowType reflow_type) { m_reflow_type = reflow_type; }
2022-04-02 21:41:35 +03:00
};
2022-03-18 02:49:16 +02:00
class FocusUpdateEvent : public Event {
private:
bool m_focus_status;
public:
FocusUpdateEvent(bool focus_status)
: m_focus_status(focus_status) {}
2022-04-30 09:40:09 +03:00
EventType type() { return EventType::FocusUpdate; }
const char *name() { return "FocusUpdate"; }
2022-03-18 02:49:16 +02:00
2022-04-30 09:40:09 +03:00
bool focus_status() { return m_focus_status; }
2022-03-18 02:49:16 +02:00
};
class ActivationUpdateEvent : public Event {
private:
bool m_activation_status;
public:
ActivationUpdateEvent(bool activation_status)
: m_activation_status(activation_status) {}
2022-04-30 09:40:09 +03:00
EventType type() { return EventType::ActivationUpdate; }
const char *name() { return "ActivationUpdate"; }
2022-03-18 02:49:16 +02:00
2022-04-30 09:40:09 +03:00
bool activation_status() { return m_activation_status; }
2022-03-18 02:49:16 +02:00
};
}