1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4#ifndef APPINPUTPANEL_P_H
5#define APPINPUTPANEL_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <QtVirtualKeyboard/private/abstractinputpanel_p.h>
19
20QT_BEGIN_NAMESPACE
21namespace QtVirtualKeyboard {
22
23class AppInputPanelPrivate;
24
25/*!
26 \class QtVirtualKeyboard::AppInputPanel
27 \internal
28*/
29
30class Q_VIRTUALKEYBOARD_EXPORT AppInputPanel : public AbstractInputPanel
31{
32 Q_OBJECT
33 Q_DECLARE_PRIVATE(AppInputPanel)
34
35protected:
36 AppInputPanel(AppInputPanelPrivate &dd, QObject *parent = nullptr);
37
38public:
39 explicit AppInputPanel(QObject *parent = nullptr);
40 ~AppInputPanel();
41
42 void show() override;
43 void hide() override;
44 bool isVisible() const override;
45};
46
47} // namespace QtVirtualKeyboard
48QT_END_NAMESPACE
49
50#endif // APPINPUTPANEL_P_H
51

source code of qtvirtualkeyboard/src/virtualkeyboard/appinputpanel_p.h