Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
InputDeviceWindows.h
1// Author: Kang Lin <kl222@126.com>
2
3#ifndef CINPUTDEVICEWINDOWS_H
4#define CINPUTDEVICEWINDOWS_H
5
6#pragma once
7#include "InputDevice.h"
8
10{
11public:
12 explicit CInputDeviceWindows();
13 virtual ~CInputDeviceWindows();
14
15 virtual int KeyEvent(quint32 keysym, quint32 keycode, bool down = true);
16 virtual int MouseEvent(MouseButtons buttons, QPoint pos);
17 virtual int MouseEvent(MouseButtons buttons, int x, int y);
18};
19
20#endif // CINPUTDEVICEWINDOWS_H