mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
Once upon a time, we needed the UI-specific event loops outside of the UI process. This is no longer the case. Let's move the event loops back to the UI folder to remove the awkward interface library we were left with.
74 lines
2.1 KiB
C++
74 lines
2.1 KiB
C++
/*
|
|
* Copyright (c) 2022-2023, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <AK/NonnullOwnPtr.h>
|
|
#include <LibCore/EventLoopImplementation.h>
|
|
|
|
class QEvent;
|
|
class QEventLoop;
|
|
class QSocketNotifier;
|
|
|
|
namespace Ladybird {
|
|
|
|
class EventLoopImplementationQt;
|
|
class EventLoopImplementationQtEventTarget;
|
|
|
|
class EventLoopManagerQt final : public Core::EventLoopManager {
|
|
public:
|
|
EventLoopManagerQt();
|
|
virtual ~EventLoopManagerQt() override;
|
|
virtual NonnullOwnPtr<Core::EventLoopImplementation> make_implementation() override;
|
|
|
|
virtual intptr_t register_timer(Core::EventReceiver&, int milliseconds, bool should_reload) override;
|
|
virtual void unregister_timer(intptr_t timer_id) override;
|
|
|
|
virtual void register_notifier(Core::Notifier&) override;
|
|
virtual void unregister_notifier(Core::Notifier&) override;
|
|
|
|
virtual void did_post_event() override;
|
|
static bool event_target_received_event(Badge<EventLoopImplementationQtEventTarget>, QEvent* event);
|
|
|
|
virtual int register_signal(int, Function<void(int)>) override;
|
|
virtual void unregister_signal(int) override;
|
|
|
|
void set_main_loop_signal_notifiers(Badge<EventLoopImplementationQt>);
|
|
|
|
private:
|
|
static void handle_signal(int);
|
|
|
|
NonnullOwnPtr<EventLoopImplementationQtEventTarget> m_main_thread_event_target;
|
|
QSocketNotifier* m_signal_socket_notifier { nullptr };
|
|
int m_signal_socket_fds[2] = { -1, -1 };
|
|
};
|
|
|
|
class EventLoopImplementationQt final : public Core::EventLoopImplementation {
|
|
public:
|
|
static NonnullOwnPtr<EventLoopImplementationQt> create() { return adopt_own(*new EventLoopImplementationQt); }
|
|
|
|
virtual ~EventLoopImplementationQt() override;
|
|
|
|
virtual int exec() override;
|
|
virtual size_t pump(PumpMode) override;
|
|
virtual void quit(int) override;
|
|
virtual void wake() override;
|
|
virtual bool was_exit_requested() const override;
|
|
|
|
void set_main_loop();
|
|
|
|
private:
|
|
friend class EventLoopManagerQt;
|
|
|
|
EventLoopImplementationQt();
|
|
bool is_main_loop() const { return m_main_loop; }
|
|
|
|
NonnullOwnPtr<QEventLoop> m_event_loop;
|
|
bool m_main_loop { false };
|
|
};
|
|
|
|
}
|