Uses of Class
org.deken.game.input.InputMonitor.Mouse

Packages that use InputMonitor.Mouse
org.deken.game.component Components package holds game components, which are striped down version of java components. 
org.deken.game.input The Input package holds all the classes and interface for handling input events. 
 

Uses of InputMonitor.Mouse in org.deken.game.component
 

Fields in org.deken.game.component with type parameters of type InputMonitor.Mouse
protected  java.util.List<InputMonitor.Mouse> GComponent.mouseActions
           
 

Methods in org.deken.game.component that return types with arguments of type InputMonitor.Mouse
 java.util.List<InputMonitor.Mouse> GComponent.getMouseActions()
          Returns a list of MouseActions that this component will listen for.
 

Methods in org.deken.game.component with parameters of type InputMonitor.Mouse
 void GComponent.addMouseAction(InputMonitor.Mouse mouseAction)
           
 

Constructors in org.deken.game.component with parameters of type InputMonitor.Mouse
GComponent(InputMonitor.Mouse mouseAction)
           
GContainer(int screenWidth, int screenHeight, InputMonitor.Mouse mouseAction)
           
GContainer(int screenWidth, int screenHeight, InputMonitor.Mouse mouseAction, int width, int height)
           
GDecoratedContainer(int screenWidth, int screenHeight, InputMonitor.Mouse mouseAction, GContainer gameContainer)
           
 

Uses of InputMonitor.Mouse in org.deken.game.input
 

Methods in org.deken.game.input that return InputMonitor.Mouse
 InputMonitor.Mouse InputMouseAction.getMouseID()
           
static InputMonitor.Mouse InputMonitor.Mouse.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static InputMonitor.Mouse[] InputMonitor.Mouse.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.deken.game.input with parameters of type InputMonitor.Mouse
 boolean Actions.addMouseButtonListener(InputMouseListener listener, InputMonitor.Mouse mouseEnum)
          Takes an InputMouseListener and adds it to a mouse button action, to be notified when the mouse button is pressed.
static boolean InputMonitor.addMouseButtonListener(InputMouseListener listener, InputMonitor.Mouse mouseEnum)
          addMouseButtonListener Takes an InputMouseListener and adds it to a mouse button action, to be notified when the mouse button is pressed.
static InputMouseAction InputMonitor.getInputMouseActionForCode(InputMonitor.Mouse mouseEnum)
          getInputMouseActionForCode Creates an InputMouseAction with the given name and default behavior, and maps it to the given Mouse enum.
 boolean InputMouseAction.isEqual(InputMonitor.Mouse mouse)
           
 void Actions.mapToMouse(InputMouseAction inputAction, InputMonitor.Mouse mouseEnum)
          Deprecated. Not used
 void InputMonitor.mapToMouse(InputMouseAction inputAction, InputMonitor.Mouse mouseEnum)
          Deprecated. Not used
static boolean InputMonitor.removeMouseButtonListener(InputMouseListener listener, InputMonitor.Mouse mouseEnum)
          removeMouseButtonListener This removes an InputMouseListener from the MouseList, for the Mouse enum entered.
 boolean Actions.removeMouseListener(InputMouseListener listener, InputMonitor.Mouse mouseEnum)
          This removes an InputMouseListener from the MouseList, for the Mouse enum entered.
static boolean InputMonitor.removeMouseMotionListener(InputMouseListener listener, InputMonitor.Mouse mouseEnum)
          removeMouseMotionListener This removes an InputMouseListener from the Mouse Motion List.
 void Actions.unwireInputMouseListener(InputMonitor.Mouse mouseAction, InputMouseListener inputMouseListener)
          Wires in a Mouse Listener into this action.
 void Actions.wireInputMouseListener(InputMonitor.Mouse mouseAction, InputMouseListener inputMouseListener)
          Wires in a Mouse Listener into this action.
 

Constructors in org.deken.game.input with parameters of type InputMonitor.Mouse
InputMouseAction(InputMonitor.Mouse mouseID, Action.Behavior behavior)