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#ifndef QLIBINPUTHANDLER_P_H
5#define QLIBINPUTHANDLER_P_H
6
7#include <QtCore/QObject>
8#include <QtCore/QScopedPointer>
9#include <QtCore/QMap>
10#include <QtCore/QLoggingCategory>
11#include <QtCore/private/qglobal_p.h>
12
13//
14// W A R N I N G
15// -------------
16//
17// This file is not part of the Qt API. It exists purely as an
18// implementation detail. This header file may change from version to
19// version without notice, or even be removed.
20//
21// We mean it.
22//
23
24struct udev;
25struct libinput;
26struct libinput_event;
27
28QT_BEGIN_NAMESPACE
29
30Q_DECLARE_LOGGING_CATEGORY(qLcLibInput)
31
32class QSocketNotifier;
33class QLibInputPointer;
34class QLibInputKeyboard;
35class QLibInputTouch;
36
37class QLibInputHandler : public QObject
38{
39public:
40 QLibInputHandler(const QString &key, const QString &spec);
41 ~QLibInputHandler();
42
43 void onReadyRead();
44
45private:
46 void processEvent(libinput_event *ev);
47
48 udev *m_udev;
49 libinput *m_li;
50 int m_liFd;
51 QScopedPointer<QSocketNotifier> m_notifier;
52 QScopedPointer<QLibInputPointer> m_pointer;
53 QScopedPointer<QLibInputKeyboard> m_keyboard;
54 QScopedPointer<QLibInputTouch> m_touch;
55 QMap<int, int> m_devCount;
56};
57
58QT_END_NAMESPACE
59
60#endif
61

source code of qtbase/src/platformsupport/input/libinput/qlibinputhandler_p.h