Package com.teamviewer.sdk.screensharing
Interface InputCallback
public interface InputCallback
Callback for input of the remote supporter.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Flag indicating that the input is from type mouse.static final int
Flag indicating that the left mouse button is clicked. -
Method Summary
Modifier and TypeMethodDescriptionvoid
onInput
(int x, int y, int flags) Called when input is received from the remote supporter.
-
Field Details
-
FLAG_MOUSE
static final int FLAG_MOUSEFlag indicating that the input is from type mouse.- See Also:
-
FLAG_MOUSE_BUTTON_LEFT
static final int FLAG_MOUSE_BUTTON_LEFTFlag indicating that the left mouse button is clicked.- See Also:
-
-
Method Details
-
onInput
void onInput(int x, int y, int flags) Called when input is received from the remote supporter.- Parameters:
x
- The horizontal position of the inputy
- The vertical position of the inputflags
- Flags describing the input
-