serenity/Widgets/Object.h
Andreas Kling 959a1b0750 Close the MsgBox when clicking the OK button.
This feels vaguely crashy. I haven't tested window/widget destruction
before so there's sure to be bugs.
2018-10-14 01:23:01 +02:00

41 lines
789 B
C++

#pragma once
#include <AK/Vector.h>
#include <AK/Weakable.h>
class Event;
class TimerEvent;
class Object : public Weakable<Object> {
public:
Object(Object* parent = nullptr);
virtual ~Object();
virtual const char* className() const { return "Object"; }
virtual void event(Event&);
Vector<Object*>& children() { return m_children; }
Object* parent() { return m_parent; }
const Object* parent() const { return m_parent; }
void startTimer(int ms);
void stopTimer();
bool hasTimer() const { return m_timerID; }
void addChild(Object&);
void removeChild(Object&);
void deleteLater();
private:
virtual void timerEvent(TimerEvent&);
Object* m_parent { nullptr };
int m_timerID { 0 };
Vector<Object*> m_children;
};