LibWebView+Services+UI: Move the EventLoop implementations to LibWebView

We currently compile the Qt event loop files multiple times, for every
target which wants to use them. This patch moves these to LibWebView as
a central location to avoid this.
This commit is contained in:
Timothy Flynn 2024-11-10 09:23:10 -05:00 committed by Tim Flynn
commit 9e1f001ffe
Notes: github-actions[bot] 2024-11-11 12:36:54 +00:00
17 changed files with 98 additions and 91 deletions

View file

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