Uses of Interface
crystalspace.jbind.interfaces.iutil.event.iEvent

Packages that use iEvent
crystalspace.jbind.impl.csutil.event   
crystalspace.jbind.impl.csutil.eventq   
crystalspace.jbind.impl.csutil.evoutlet   
crystalspace.jbind.interfaces.iutil.evdefs   
crystalspace.jbind.interfaces.iutil.event   
crystalspace.jbind.interfaces.iutil.eventq   
crystalspace.jbind.tutorial   
 

Uses of iEvent in crystalspace.jbind.impl.csutil.event
 

Classes in crystalspace.jbind.impl.csutil.event that implement iEvent
 class csEvent
           
 

Methods in crystalspace.jbind.impl.csutil.event that return iEvent
 iEvent csEventOutlet.createEvent()
           
 

Methods in crystalspace.jbind.impl.csutil.event with parameters of type iEvent
 boolean csEventHandler.handleEvent(iEvent event)
           
static int csKeyEventHelper.getEventType(iEvent event)
           
static int csKeyEventHelper.getCookedCode(iEvent event)
           
 void csEventOutlet.post(iEvent event)
           
 

Uses of iEvent in crystalspace.jbind.impl.csutil.eventq
 

Methods in crystalspace.jbind.impl.csutil.eventq that return iEvent
 iEvent csEventQueue.createEvent(byte type)
           
 iEvent csEventQueue.get()
           
 

Methods in crystalspace.jbind.impl.csutil.eventq with parameters of type iEvent
 void csEventQueue.dispatch(iEvent event)
           
 void csEventQueue.post(iEvent event)
           
 

Uses of iEvent in crystalspace.jbind.impl.csutil.evoutlet
 

Methods in crystalspace.jbind.impl.csutil.evoutlet that return iEvent
 iEvent csEventOutlet.createEvent()
           
 

Methods in crystalspace.jbind.impl.csutil.evoutlet with parameters of type iEvent
 void csEventOutlet.post(iEvent event)
           
 

Uses of iEvent in crystalspace.jbind.interfaces.iutil.evdefs
 

Methods in crystalspace.jbind.interfaces.iutil.evdefs with parameters of type iEvent
static int iEvdefs.CS_IS_KEYBOARD_EVENT(iEvent e)
           
static int iEvdefs.CS_IS_MOUSE_EVENT(iEvent e)
           
static int iEvdefs.CS_IS_JOYSTICK_EVENT(iEvent e)
           
static int iEvdefs.CS_IS_INPUT_EVENT(iEvent e)
           
static int iEvdefs.CS_IS_NETWORK_EVENT(iEvent e)
           
 

Uses of iEvent in crystalspace.jbind.interfaces.iutil.event
 

Methods in crystalspace.jbind.interfaces.iutil.event that return iEvent
 iEvent iEventOutlet.createEvent()
          Create a event object on behalf of the event queue.
 

Methods in crystalspace.jbind.interfaces.iutil.event with parameters of type iEvent
 void iEventOutlet.post(iEvent event)
          Put a previously created event into system event queue.
 boolean iEventHandler.handleEvent(iEvent event)
          This is the basic event handling function.
 

Uses of iEvent in crystalspace.jbind.interfaces.iutil.eventq
 

Methods in crystalspace.jbind.interfaces.iutil.eventq that return iEvent
 iEvent iEventQueue.createEvent(byte type)
          Create an event, from the pool if there are any free events available.
 iEvent iEventQueue.get()
          Get next event from queue; returns a null reference if no events are present.
 

Methods in crystalspace.jbind.interfaces.iutil.eventq with parameters of type iEvent
 void iEventQueue.dispatch(iEvent event)
          Dispatch a single event from the queue.
 void iEventQueue.post(iEvent event)
          Place an event into queue.
 

Uses of iEvent in crystalspace.jbind.tutorial
 

Methods in crystalspace.jbind.tutorial with parameters of type iEvent
 boolean CTutorial2.handleEvent(iEvent event)
           
 boolean CTutorial3.handleEvent(iEvent event)
           
 boolean CTutorial4.handleEvent(iEvent event)