1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 06:45:07 +00:00
serenity/LibCore/CObject.h
Andreas Kling 04500c1ae2 GWidget: Add some new child z-ordering facilities.
- child_at(Point)
- move_to_front()
- move_to_back()
- is_frontmost()
- is_backmost()

This patch also makes it possible to receive the mouse event that triggers
a context menu before the context menu is shown. I'm not sure this is the
best design for context menus but it works for now.
2019-04-16 03:47:55 +02:00

50 lines
1.2 KiB
C++

#pragma once
#include <AK/Function.h>
#include <AK/Vector.h>
#include <AK/Weakable.h>
class CEvent;
class CChildEvent;
class CTimerEvent;
class CObject : public Weakable<CObject> {
public:
CObject(CObject* parent = nullptr);
virtual ~CObject();
virtual const char* class_name() const { return "CObject"; }
virtual void event(CEvent&);
Vector<CObject*>& children() { return m_children; }
const Vector<CObject*>& children() const { return m_children; }
CObject* parent() { return m_parent; }
const CObject* parent() const { return m_parent; }
void start_timer(int ms);
void stop_timer();
bool has_timer() const { return m_timer_id; }
void add_child(CObject&);
void remove_child(CObject&);
void delete_later();
void dump_tree(int indent = 0);
void deferred_invoke(Function<void(CObject&)>);
virtual bool is_widget() const { return false; }
virtual bool is_window() const { return false; }
protected:
virtual void timer_event(CTimerEvent&);
virtual void child_event(CChildEvent&);
private:
CObject* m_parent { nullptr };
int m_timer_id { 0 };
Vector<CObject*> m_children;
};