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/qvxkeyboardmanager_p.h>
6
7QT_BEGIN_NAMESPACE
8
9class QVxKeyboardPlugin : public QGenericPlugin
10{
11 Q_OBJECT
12 Q_PLUGIN_METADATA(IID QGenericPluginFactoryInterface_iid FILE "vxkeyboard.json")
13
14public:
15 QVxKeyboardPlugin();
16
17 QObject* create(const QString &key, const QString &specification) override;
18};
19
20QVxKeyboardPlugin::QVxKeyboardPlugin()
21 : QGenericPlugin()
22{
23}
24
25QObject* QVxKeyboardPlugin::create(const QString &key,
26 const QString &specification)
27{
28 if (!key.compare(QLatin1String("VxKeyboard"), Qt::CaseInsensitive))
29 return new QVxKeyboardManager(key, specification);
30
31 return nullptr;
32}
33
34QT_END_NAMESPACE
35
36#include "main.moc"