mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
85 lines
1.6 KiB
C++
85 lines
1.6 KiB
C++
#include "Object.h"
|
|
#include "Event.h"
|
|
#include "EventLoop.h"
|
|
#include <AK/Assertions.h>
|
|
|
|
#ifdef USE_SDL
|
|
#include <SDL.h>
|
|
#endif
|
|
|
|
Object::Object(Object* parent)
|
|
: m_parent(parent)
|
|
{
|
|
if (m_parent)
|
|
m_parent->addChild(*this);
|
|
}
|
|
|
|
Object::~Object()
|
|
{
|
|
if (m_parent)
|
|
m_parent->removeChild(*this);
|
|
auto childrenToDelete = std::move(m_children);
|
|
for (auto* child : childrenToDelete)
|
|
delete child;
|
|
}
|
|
|
|
void Object::event(Event& event)
|
|
{
|
|
switch (event.type()) {
|
|
case Event::Timer:
|
|
return onTimer(static_cast<TimerEvent&>(event));
|
|
case Event::Invalid:
|
|
ASSERT_NOT_REACHED();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void Object::addChild(Object& object)
|
|
{
|
|
m_children.append(&object);
|
|
}
|
|
|
|
void Object::removeChild(Object& object)
|
|
{
|
|
// Oh geez, Vector needs a remove() huh...
|
|
Vector<Object*> newList;
|
|
for (auto* child : m_children) {
|
|
if (child != &object)
|
|
newList.append(child);
|
|
}
|
|
m_children = std::move(newList);
|
|
}
|
|
|
|
void Object::onTimer(TimerEvent&)
|
|
{
|
|
}
|
|
|
|
#ifdef USE_SDL
|
|
static dword sdlTimerCallback(dword interval, void* param)
|
|
{
|
|
EventLoop::main().postEvent(static_cast<Object*>(param), make<TimerEvent>());
|
|
return interval;
|
|
}
|
|
#endif
|
|
|
|
void Object::startTimer(int ms)
|
|
{
|
|
if (m_timerID) {
|
|
printf("Object{%p} already has a timer!\n", this);
|
|
ASSERT_NOT_REACHED();
|
|
}
|
|
#if USE_SDL
|
|
m_timerID = SDL_AddTimer(ms, sdlTimerCallback, this);
|
|
#endif
|
|
}
|
|
|
|
void Object::stopTimer()
|
|
{
|
|
if (!m_timerID)
|
|
return;
|
|
SDL_RemoveTimer(m_timerID);
|
|
m_timerID = 0;
|
|
}
|
|
|