mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
43 lines
1,017 B
C++
43 lines
1,017 B
C++
/*
|
|
* Copyright (c) 2023, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/NonnullOwnPtr.h>
|
|
#include <LibCore/Event.h>
|
|
#include <LibCore/EventLoopImplementation.h>
|
|
#include <LibCore/ThreadEventQueue.h>
|
|
#ifdef AK_OS_WINDOWS
|
|
# include <LibCore/EventLoopImplementationWindows.h>
|
|
#else
|
|
# include <LibCore/EventLoopImplementationUnix.h>
|
|
#endif
|
|
|
|
namespace Core {
|
|
|
|
EventLoopImplementation::EventLoopImplementation()
|
|
: m_thread_event_queue(ThreadEventQueue::current())
|
|
{
|
|
}
|
|
|
|
EventLoopImplementation::~EventLoopImplementation() = default;
|
|
|
|
static EventLoopManager* s_event_loop_manager;
|
|
EventLoopManager& EventLoopManager::the()
|
|
{
|
|
if (!s_event_loop_manager)
|
|
s_event_loop_manager = new EventLoopManagerPlatform;
|
|
return *s_event_loop_manager;
|
|
}
|
|
|
|
void EventLoopManager::install(Core::EventLoopManager& manager)
|
|
{
|
|
s_event_loop_manager = &manager;
|
|
}
|
|
|
|
EventLoopManager::EventLoopManager() = default;
|
|
|
|
EventLoopManager::~EventLoopManager() = default;
|
|
|
|
}
|