use of limelight.ui.Panel in project limelight by slagyr.
the class Mouse method enter.
public static void enter(PropProxy prop, int x, int y, int modifiers, int click_count) {
Point location = pointFor(prop, x, y);
Panel owner = ownerOf(location, prop);
new MouseEnteredEvent(modifiers, location, click_count).dispatch(owner);
}
use of limelight.ui.Panel in project limelight by slagyr.
the class Mouse method exit.
public static void exit(PropProxy prop, int x, int y, int modifiers, int click_count) {
Point location = pointFor(prop, x, y);
Panel owner = ownerOf(location, prop);
new MouseExitedEvent(modifiers, location, click_count).dispatch(owner);
}
use of limelight.ui.Panel in project limelight by slagyr.
the class Mouse method click.
public static void click(PropProxy prop, int x, int y, int modifiers, int click_count) {
Point location = pointFor(prop, x, y);
Panel owner = ownerOf(location, prop);
new MouseClickedEvent(modifiers, location, click_count).dispatch(owner);
}
use of limelight.ui.Panel in project limelight by slagyr.
the class Mouse method move.
public static void move(PropProxy prop, int x, int y, int modifiers, int click_count) {
Point location = pointFor(prop, x, y);
Panel owner = ownerOf(location, prop);
new MouseMovedEvent(modifiers, location, click_count).dispatch(owner);
}
use of limelight.ui.Panel in project limelight by slagyr.
the class Mouse method press.
public static void press(PropProxy prop, int x, int y, int modifiers, int click_count) {
Point location = pointFor(prop, x, y);
Panel owner = ownerOf(location, prop);
new MousePressedEvent(modifiers, location, click_count).dispatch(owner);
}
Aggregations