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
qlibinputhandler_p.h
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#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
29
31
32class QSocketNotifier;
33class QLibInputPointer;
34class QLibInputKeyboard;
35class QLibInputTouch;
36
38{
39public:
40 QLibInputHandler(const QString &key, const QString &spec);
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
QLibInputHandler(const QString &key, const QString &spec)
Q_LOGGING_CATEGORY(lcEventDispatcher, "qt.eventdispatcher")
QT_BEGIN_NAMESPACE Q_DECLARE_LOGGING_CATEGORY(lcEventDispatcher)
static void liClose(int fd, void *user_data)
static QT_BEGIN_NAMESPACE int liOpen(const char *path, int flags, void *user_data)
static const struct libinput_interface liInterface
static void liLogHandler(libinput *libinput, libinput_log_priority priority, const char *format, va_list args)