forked from Qortal/Brooklyn
44 lines
842 B
C++
44 lines
842 B
C++
/*
|
|
SPDX-FileCopyrightText: 2013 Alexander Mezin <mezin.alexander@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef XLIBNOTIFICATIONS_H
|
|
#define XLIBNOTIFICATIONS_H
|
|
|
|
#include <QSocketNotifier>
|
|
#include <QWidget>
|
|
#include <QX11Info>
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <xcb/xcb.h>
|
|
|
|
class XlibNotifications : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
XlibNotifications(Display *display, int device);
|
|
~XlibNotifications();
|
|
|
|
Q_SIGNALS:
|
|
void propertyChanged(xcb_atom_t);
|
|
void devicePlugged(int);
|
|
void touchpadDetached();
|
|
|
|
private Q_SLOTS:
|
|
void processEvents();
|
|
|
|
private:
|
|
void processEvent(XEvent *);
|
|
|
|
Display *m_display;
|
|
xcb_connection_t *m_connection;
|
|
QSocketNotifier *m_notifier;
|
|
xcb_window_t m_inputWindow;
|
|
uint8_t m_inputOpcode;
|
|
int m_device;
|
|
};
|
|
|
|
#endif // XLIBNOTIFICATIONS_H
|