com.threerings.opengl.gui.event
Interface ControllerListener

All Superinterfaces:
ComponentListener
All Known Implementing Classes:
ControllerAdapter, PseudoKeys.Unifier

public interface ControllerListener
extends ComponentListener

Dispatches controller events to listeners on a component.


Method Summary
 void controllerMoved(ControllerEvent event)
          Dispatched when the controller is moved on an axis.
 void controllerPovXMoved(ControllerEvent event)
          Dispatched when the controller's pov has moved on the x axis.
 void controllerPovYMoved(ControllerEvent event)
          Dispatched when the controller's pov has moved on the y axis.
 void controllerPressed(ControllerEvent event)
          Dispatched when a controller button is pressed.
 void controllerReleased(ControllerEvent event)
          Dispatched when a controller button is released.
 

Method Detail

controllerPressed

void controllerPressed(ControllerEvent event)
Dispatched when a controller button is pressed.


controllerReleased

void controllerReleased(ControllerEvent event)
Dispatched when a controller button is released.


controllerMoved

void controllerMoved(ControllerEvent event)
Dispatched when the controller is moved on an axis.


controllerPovXMoved

void controllerPovXMoved(ControllerEvent event)
Dispatched when the controller's pov has moved on the x axis.


controllerPovYMoved

void controllerPovYMoved(ControllerEvent event)
Dispatched when the controller's pov has moved on the y axis.