ladybird/UI/Qt/EventLoopImplementationQtEventTarget.h
Timothy Flynn 7d6616669c LibWebView+UI: Move the UI event loops to the UI folder
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.
2025-12-05 14:24:05 -05:00

21 lines
333 B
C++

/*
* Copyright (c) 2023, Gregory Bertilson <zaggy1024@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <QEvent>
#include <QObject>
namespace Ladybird {
class EventLoopImplementationQtEventTarget final : public QObject {
Q_OBJECT
public:
virtual bool event(QEvent* event) override;
};
}