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