2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2017-09-13 19:44:07 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2017 Martin Flöser <mgraesslin@kde.org>
|
2017-09-13 19:44:07 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2017-09-13 19:44:07 +00:00
|
|
|
#include "rootinfo_filter.h"
|
|
|
|
#include "netinfo.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
RootInfoFilter::RootInfoFilter(RootInfo *parent)
|
2024-01-30 09:57:08 +00:00
|
|
|
: X11EventFilter(QList<int>{XCB_CLIENT_MESSAGE})
|
2017-09-13 19:44:07 +00:00
|
|
|
, m_rootInfo(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RootInfoFilter::event(xcb_generic_event_t *event)
|
|
|
|
{
|
|
|
|
NET::Properties dirtyProtocols;
|
|
|
|
NET::Properties2 dirtyProtocols2;
|
|
|
|
m_rootInfo->event(event, &dirtyProtocols, &dirtyProtocols2);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|