mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
51 lines
1.0 KiB
C#
51 lines
1.0 KiB
C#
using Remotely_ScreenCast.Core.Input;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Remotely_ScreenCast.Linux.Input
|
|
{
|
|
public class X11Input : IKeyboardMouseInput
|
|
{
|
|
public void SendKeyDown(string key)
|
|
{
|
|
|
|
}
|
|
|
|
public void SendKeyUp(string key)
|
|
{
|
|
|
|
}
|
|
|
|
public uint SendLeftMouseDown(double percentX, double percentY)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public uint SendLeftMouseUp(double percentX, double percentY)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public uint SendMouseMove(double percentX, double percentY)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public uint SendMouseWheel(int deltaY)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public uint SendRightMouseDown(double percentX, double percentY)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public uint SendRightMouseUp(double percentX, double percentY)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|