mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
a599317624
This macro goes at the top of every CObject-derived class like so: class SomeClass : public CObject { C_OBJECT(SomeClass) public: ... At the moment, all it does is create an override for the class_name() getter but in the future this will be used to automatically insert member functions into these classes.
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <LibCore/CObject.h>
|
|
|
|
class CTimer final : public CObject {
|
|
C_OBJECT(CTimer)
|
|
public:
|
|
explicit CTimer(CObject* parent = nullptr);
|
|
CTimer(int interval, Function<void()>&& timeout_handler, CObject* parent = nullptr);
|
|
virtual ~CTimer() override;
|
|
|
|
void start();
|
|
void start(int interval);
|
|
void restart(int interval);
|
|
void stop();
|
|
|
|
bool is_active() const { return m_active; }
|
|
int interval() const { return m_interval; }
|
|
void set_interval(int interval)
|
|
{
|
|
if (m_interval == interval)
|
|
return;
|
|
m_interval = interval;
|
|
m_interval_dirty = true;
|
|
}
|
|
|
|
bool is_single_shot() const { return m_single_shot; }
|
|
void set_single_shot(bool single_shot) { m_single_shot = single_shot; }
|
|
|
|
Function<void()> on_timeout;
|
|
|
|
private:
|
|
virtual void timer_event(CTimerEvent&) override;
|
|
|
|
bool m_active { false };
|
|
bool m_single_shot { false };
|
|
bool m_interval_dirty { false };
|
|
int m_interval { 0 };
|
|
};
|