blob: e0656b20193ec330ea33e9153f162ac3fb58cb67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#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, bool is_widget = false);
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&)>);
bool is_widget() const { return m_widget; }
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 };
bool m_widget { false };
Vector<CObject*> m_children;
};
|