1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/*
This file is part of libuInputPlus.
Copyright (C) 2018 YukiWorkshop
This program is free software: you can redistribute it and/or modify
it under the terms of the MIT License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef LIBUINPUTPLUS_UINPUT_HPP
#define LIBUINPUTPLUS_UINPUT_HPP
#include "CommonIncludes.hpp"
#include "uInputSetup.hpp"
namespace uInputPlus {
struct uInputRawData {
uint16_t type;
uint16_t code;
int32_t value;
} __attribute__((packed));
class uInputCoordinate {
public:
int32_t X = 0, Y = 0, Z = 0;
uInputCoordinate() = default;
uInputCoordinate(int32_t x, int32_t y) {
X = x; Y = y;
}
uInputCoordinate(int32_t x, int32_t y, int32_t z) {
X = x; Y = y; Z = z;
}
};
class uInput {
private:
int (*custom_callback)(uint16_t type, uint16_t code, int32_t val, void *userp) = nullptr;
void *custom_data = nullptr;
public:
uInput() = default;
uInput(const uInputSetup &setup);
~uInput();
int FD = -1;
void Init(const uInputSetup &setup);
void Init(int (*__custom_callback)(uint16_t type, uint16_t code, int32_t val, void *userp), void *__userp);
void Destroy();
void Emit(uint16_t type, uint16_t code, int32_t val) const;
void SendKey(uint16_t key_code, uint32_t value, bool report = true) const;
void SendKeyPress(const std::initializer_list<uint16_t> &keycodes, bool report = true) const;
void SendKeyPress(std::vector<std::pair<int, int>> keys, bool report = true) const;
void RelativeMove(const uInputCoordinate &movement, bool report = true) const;
void RelativeWheel(int32_t movement, bool h = false, bool report = true) const;
void AbsolutePosition(const uInputCoordinate &pos, int32_t mt_slot = -1, bool report = true) const;
void AbsoluteWheel(int32_t movement, bool report = true) const;
void EmulateSmoothScroll(int offset, bool report = true) const;
};
}
#endif //LIBUINPUTPLUS_UINPUT_HPP
|