Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#include <QtGui/qgenericplugin.h>
5#include <QtInputSupport/private/qtslib_p.h>
6
7QT_BEGIN_NAMESPACE
8
9class QTsLibPlugin : public QGenericPlugin
10{
11 Q_OBJECT
12 Q_PLUGIN_METADATA(IID QGenericPluginFactoryInterface_iid FILE "tslib.json")
13
14public:
15 QObject* create(const QString &key, const QString &specification) override;
16};
17
18QObject* QTsLibPlugin::create(const QString &key,
19 const QString &specification)
20{
21 if (!key.compare(QLatin1String("Tslib"), Qt::CaseInsensitive)
22 || !key.compare(QLatin1String("TslibRaw"), Qt::CaseInsensitive))
23 return new QTsLibMouseHandler(key, specification);
24
25 return nullptr;
26}
27
28QT_END_NAMESPACE
29
30#include "main.moc"