1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

LibCore: Put all classes in the Core namespace and remove the leading C

I've been wanting to do this for a long time. It's time we start being
consistent about how this stuff works.

The new convention is:

- "LibFoo" is a userspace library that provides the "Foo" namespace.

That's it :^) This was pretty tedious to convert and I didn't even
start on LibGUI yet. But it's coming up next.
This commit is contained in:
Andreas Kling 2020-02-02 12:34:39 +01:00
parent b7e3810b5c
commit 2d39da5405
265 changed files with 1380 additions and 1167 deletions

View file

@ -26,28 +26,30 @@
#include <LibCore/CTimer.h>
CTimer::CTimer(CObject* parent)
: CObject(parent)
namespace Core {
Timer::Timer(Object* parent)
: Object(parent)
{
}
CTimer::CTimer(int interval, Function<void()>&& timeout_handler, CObject* parent)
: CObject(parent)
Timer::Timer(int interval, Function<void()>&& timeout_handler, Object* parent)
: Object(parent)
, on_timeout(move(timeout_handler))
{
start(interval);
}
CTimer::~CTimer()
Timer::~Timer()
{
}
void CTimer::start()
void Timer::start()
{
start(m_interval);
}
void CTimer::start(int interval)
void Timer::start(int interval)
{
if (m_active)
return;
@ -56,14 +58,14 @@ void CTimer::start(int interval)
m_active = true;
}
void CTimer::restart(int interval)
void Timer::restart(int interval)
{
if (m_active)
stop();
start(interval);
}
void CTimer::stop()
void Timer::stop()
{
if (!m_active)
return;
@ -71,7 +73,7 @@ void CTimer::stop()
m_active = false;
}
void CTimer::timer_event(CTimerEvent&)
void Timer::timer_event(TimerEvent&)
{
if (m_single_shot)
stop();
@ -85,3 +87,5 @@ void CTimer::timer_event(CTimerEvent&)
if (on_timeout)
on_timeout();
}
}