2023-04-24 10:25:14 +00:00
|
|
|
/*
|
2024-10-04 11:19:50 +00:00
|
|
|
* Copyright (c) 2023, Andreas Kling <andreas@ladybird.org>
|
2023-04-24 10:25:14 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/NonnullOwnPtr.h>
|
|
|
|
#include <LibCore/Event.h>
|
|
|
|
#include <LibCore/EventLoopImplementation.h>
|
|
|
|
#include <LibCore/ThreadEventQueue.h>
|
2024-10-31 07:44:19 +00:00
|
|
|
#ifdef AK_OS_WINDOWS
|
|
|
|
# include <LibCore/EventLoopImplementationWindows.h>
|
|
|
|
#else
|
|
|
|
# include <LibCore/EventLoopImplementationUnix.h>
|
|
|
|
#endif
|
2023-04-24 10:25:14 +00:00
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2023-04-26 16:51:07 +00:00
|
|
|
EventLoopImplementation::EventLoopImplementation()
|
|
|
|
: m_thread_event_queue(ThreadEventQueue::current())
|
|
|
|
{
|
|
|
|
}
|
2023-04-25 15:38:48 +00:00
|
|
|
|
|
|
|
EventLoopImplementation::~EventLoopImplementation() = default;
|
|
|
|
|
|
|
|
static EventLoopManager* s_event_loop_manager;
|
|
|
|
EventLoopManager& EventLoopManager::the()
|
|
|
|
{
|
|
|
|
if (!s_event_loop_manager)
|
2024-10-31 07:44:19 +00:00
|
|
|
s_event_loop_manager = new EventLoopManagerPlatform;
|
2023-04-25 15:38:48 +00:00
|
|
|
return *s_event_loop_manager;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventLoopManager::install(Core::EventLoopManager& manager)
|
|
|
|
{
|
|
|
|
s_event_loop_manager = &manager;
|
|
|
|
}
|
|
|
|
|
2023-04-26 16:51:07 +00:00
|
|
|
EventLoopManager::EventLoopManager() = default;
|
2023-04-24 10:25:14 +00:00
|
|
|
|
2023-04-25 15:38:48 +00:00
|
|
|
EventLoopManager::~EventLoopManager() = default;
|
2023-04-24 10:25:14 +00:00
|
|
|
|
|
|
|
}
|