mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
18 lines
783 B
C#
18 lines
783 B
C#
namespace Remotely.Desktop.Core.Interfaces
|
|
{
|
|
public interface IKeyboardMouseInput
|
|
{
|
|
void SendKeyDown(string key);
|
|
void SendKeyUp(string key);
|
|
void SendMouseMove(double percentX, double percentY, Services.Viewer viewer);
|
|
void SendLeftMouseDown(double percentX, double percentY, Services.Viewer viewer);
|
|
void SendLeftMouseUp(double percentX, double percentY, Services.Viewer viewer);
|
|
void SendRightMouseDown(double percentX, double percentY, Services.Viewer viewer);
|
|
void SendRightMouseUp(double percentX, double percentY, Services.Viewer viewer);
|
|
void SendMouseWheel(int deltaY);
|
|
void SendText(string transferText);
|
|
void ToggleBlockInput(bool toggleOn);
|
|
void SetKeyStatesUp();
|
|
}
|
|
}
|