Home | History | Annotate | Download | only in input

Lines Matching defs:mouse

48  * received from the Key, Mouse and Joy Input implementations into an

57 * or a mouse axis. A mapping represents a link onto one or several triggers,
87 private final MouseInput mouse;
125 * @param mouse
131 public InputManager(MouseInput mouse, KeyInput keys, JoyInput joystick, TouchInput touch) {
132 if (keys == null || mouse == null) {
133 throw new NullPointerException("Mouse or keyboard cannot be null");
137 this.mouse = mouse;
142 mouse.setInputListener(this);
627 * Returns whether the mouse cursor is visible or not.
631 * @return whether the mouse cursor is visible or not.
640 * Set whether the mouse cursor should be visible or not.
642 * @param visible whether the mouse cursor should be visible or not.
647 mouse.setCursorVisible(mouseVisible);
725 * Enable simulation of mouse events. Used for touchscreen input only.
727 * @param value True to enable simulation of mouse events
735 * Returns state of simulation of mouse events. Used for touchscreen input only.
841 mouse.update();