2023-07-04 06:37:36 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2023, Gregory Bertilson <zaggy1024@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2024-11-10 11:23:10 -03:00
|
|
|
#include <LibWebView/EventLoop/EventLoopImplementationQt.h>
|
|
|
|
|
#include <LibWebView/EventLoop/EventLoopImplementationQtEventTarget.h>
|
2023-07-04 06:37:36 -03:00
|
|
|
|
2024-11-10 11:23:10 -03:00
|
|
|
namespace WebView {
|
2023-07-04 06:37:36 -03:00
|
|
|
|
|
|
|
|
bool EventLoopImplementationQtEventTarget::event(QEvent* event)
|
|
|
|
|
{
|
|
|
|
|
return EventLoopManagerQt::event_target_received_event({}, event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|