Files
krfb/events/xdp/xdpevents.h
Nicolas Fella f5df4d7603 Add and make use of ECM clang-format integration
This formats the code according to the KDE coding style and ensures it stays that way
2024-08-08 13:16:41 +02:00

23 lines
453 B
C++

/*
This file is part of the KDE project
SPDX-FileCopyrightText: 2018-2019 Jan Grulich <jgrulich@redhat.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef EVENTS_XDPEVENTS_H
#define EVENTS_XDPEVENTS_H
#include "../../krfb/events.h"
class XdpEventHandler : public EventHandler
{
Q_OBJECT
public:
void handleKeyboard(bool down, rfbKeySym key) override;
void handlePointer(int buttonMask, int x, int y) override;
};
#endif