blob: a5270470d7cd841e70955474b997d40a810b67df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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 WINDOWSMOUSEINPUTPLUGIN_H
#define WINDOWSMOUSEINPUTPLUGIN_H
#include <QtUniversalInput/private/qmouseinputplugin_p.h>
#include <QtUniversalInput/private/qmouseinput_p.h>
QT_BEGIN_NAMESPACE
class WindowsMouseInputPlugin : public QMouseInputPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID QMouseInputFactoryInterface_iid FILE "windows.json")
public:
QMouseInput *create(const QString &key, const QStringList ¶mList) override;
};
QT_END_NAMESPACE
#endif // WINDOWSMOUSEINPUTPLUGIN_H
|