mirror of
https://github.com/KDE/krfb
synced 2026-07-01 07:31:16 -07:00
25 lines
455 B
C++
25 lines
455 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
|
|
|
|
|