mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-29 09:01:54 +08:00
next
This commit is contained in:
@@ -57,14 +57,22 @@ class BaseHid(BasePlugin):
|
||||
raise NotImplementedError
|
||||
|
||||
def send_mouse_move_event(self, to_x: int, to_y: int) -> None:
|
||||
raise NotImplementedError
|
||||
_ = to_x
|
||||
_ = to_y
|
||||
|
||||
def send_mouse_relative_event(self, delta_x: int, delta_y: int) -> None:
|
||||
raise NotImplementedError
|
||||
_ = delta_x
|
||||
_ = delta_y
|
||||
|
||||
def send_mouse_wheel_event(self, delta_x: int, delta_y: int) -> None:
|
||||
raise NotImplementedError
|
||||
|
||||
def set_keyboard_output(self, output: str) -> None:
|
||||
_ = output
|
||||
|
||||
def set_mouse_output(self, output: str) -> None:
|
||||
_ = output
|
||||
|
||||
def clear_events(self) -> None:
|
||||
raise NotImplementedError
|
||||
|
||||
|
||||
Reference in New Issue
Block a user