2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2017-09-22 18:35:50 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2017 Martin Flöser <mgraesslin@kde.org>
|
2017-09-22 18:35:50 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2020-04-27 11:01:17 +00:00
|
|
|
|
|
|
|
#include "syncalarmx11filter.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
#include "utils/xcbutils.h"
|
2017-09-22 18:35:50 +00:00
|
|
|
#include "workspace.h"
|
2022-04-22 17:54:31 +00:00
|
|
|
#include "x11window.h"
|
2017-09-22 18:35:50 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2020-04-27 11:01:17 +00:00
|
|
|
SyncAlarmX11Filter::SyncAlarmX11Filter()
|
2023-10-19 06:50:15 +00:00
|
|
|
: X11EventFilter(QList<int>{Xcb::Extensions::self()->syncAlarmNotifyEvent()})
|
2017-09-22 18:35:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-04-27 11:01:17 +00:00
|
|
|
bool SyncAlarmX11Filter::event(xcb_generic_event_t *event)
|
2017-09-22 18:35:50 +00:00
|
|
|
{
|
2020-04-27 11:01:17 +00:00
|
|
|
auto alarmEvent = reinterpret_cast<xcb_sync_alarm_notify_event_t *>(event);
|
2022-04-22 17:54:31 +00:00
|
|
|
auto client = workspace()->findClient([alarmEvent](const X11Window *client) {
|
2020-04-27 11:01:17 +00:00
|
|
|
const auto syncRequest = client->syncRequest();
|
|
|
|
return alarmEvent->alarm == syncRequest.alarm && alarmEvent->counter_value.hi == syncRequest.value.hi && alarmEvent->counter_value.lo == syncRequest.value.lo;
|
|
|
|
});
|
2017-09-22 18:35:50 +00:00
|
|
|
if (client) {
|
|
|
|
client->handleSync();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-27 11:01:17 +00:00
|
|
|
} // namespace KWin
|