kwin/was_user_interaction_x11_fi...

27 lines
520 B
C
Raw Normal View History

2020-08-03 01:22:19 +03:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
2020-08-03 01:22:19 +03:00
SPDX-FileCopyrightText: 2017 Martin Flöser <mgraesslin@kde.org>
2020-08-03 01:22:19 +03:00
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KWIN_WAS_USER_INTERACTION_X11_FILTER_H
#define KWIN_WAS_USER_INTERACTION_X11_FILTER_H
#include "x11eventfilter.h"
namespace KWin
{
class WasUserInteractionX11Filter : public X11EventFilter
{
public:
explicit WasUserInteractionX11Filter();
bool event(xcb_generic_event_t *event) override;
};
}
#endif