// 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 QVXKEYBOARDMANAGER_P_H #define QVXKEYBOARDMANAGER_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "qvxkeyboardhandler_p.h" #include #include #include #include #include QT_BEGIN_NAMESPACE class QVxKeyboardManager : public QObject { public: QVxKeyboardManager(const QString &key, const QString &specification, QObject *parent = nullptr); ~QVxKeyboardManager(); void loadKeymap(const QString &file); void switchLang(); void addKeyboard(const QString &deviceNode = QString()); void removeKeyboard(const QString &deviceNode); private: void updateDeviceCount(); QString m_spec; QtInputSupport::DeviceHandlerList m_keyboards; QString m_defaultKeymapFile; }; QT_END_NAMESPACE #endif // QVXKEYBOARDMANAGER_P_H