ladybird/Ladybird/Qt/EventLoopImplementationQtEventTarget.h
Andrew Kaster 391beef707 Ladybird: Move Qt-specific classes and functions to a Qt subdirectory
This will help a lot with developing chromes for different UI frameworks
where we can see which helper classes and processes are really using Qt
vs just using it to get at helper data.

As a bonus, remove Qt dependency from WebDriver.
2023-08-07 14:58:04 -06:00

23 lines
354 B
C++

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