kwin/was_user_interaction_x11_fi...

27 lines
520 B
C++

/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2017 Martin Flöser <mgraesslin@kde.org>
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