// Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef LINUXMOUSEINPUTPLUGIN_H #define LINUXMOUSEINPUTPLUGIN_H #include #include QT_BEGIN_NAMESPACE class LinuxMouseInputPlugin : public QMouseInputPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID QMouseInputFactoryInterface_iid FILE "linux.json") public: QMouseInput *create(const QString &key, const QStringList ¶mList) override; }; QT_END_NAMESPACE #endif // LINUXMOUSEINPUTPLUGIN_H