Uses of Class
de.sciss.app.BasicEvent

Packages that use BasicEvent
de.sciss.app   
de.sciss.common   
de.sciss.gui   
 

Uses of BasicEvent in de.sciss.app
 

Subclasses of BasicEvent in de.sciss.app
 class DocumentEvent
          This kind of event is fired from a DocumentHandler when a document as been created, destroyed or switched.
 

Methods in de.sciss.app with parameters of type BasicEvent
 void EventManager.dispatchEvent(BasicEvent e)
          Puts a new event in the queue.
 boolean DocumentEvent.incorporate(BasicEvent oldEvent)
           
abstract  boolean BasicEvent.incorporate(BasicEvent oldEvent)
          Asks the event to incorporate the action described by another (older) event.
 void LaterInvocationManager.processEvent(BasicEvent e)
          This is called by the EventManager which is in fact ourself ;-) if new events are to be processed.
 void EventManager.Processor.processEvent(BasicEvent e)
          Processes the next event in the queue.
 void AbstractDocumentHandler.processEvent(BasicEvent e)
          This is called by the EventManager if new events are to be processed.
 

Uses of BasicEvent in de.sciss.common
 

Subclasses of BasicEvent in de.sciss.common
static class ProcessingThread.Event
           
 

Methods in de.sciss.common with parameters of type BasicEvent
 boolean ProcessingThread.Event.incorporate(BasicEvent oldEvent)
           
 void ProcessingThread.processEvent(BasicEvent e)
           
 

Uses of BasicEvent in de.sciss.gui
 

Subclasses of BasicEvent in de.sciss.gui
 class NumberEvent
          This kind of event is fired from a NumberField gadget when the user modified its contents.
static class ParamField.Event
           
 class PathEvent
          This kind of event is fired from a PathField or PathButton gadget when the user modified the path.
 

Methods in de.sciss.gui with parameters of type BasicEvent
 boolean PathEvent.incorporate(BasicEvent oldEvent)
           
 boolean ParamField.Event.incorporate(BasicEvent oldEvent)
           
 boolean NumberEvent.incorporate(BasicEvent oldEvent)
           
 void PathField.processEvent(BasicEvent e)
           
 void PathButton.processEvent(BasicEvent e)
           
 void ParamField.processEvent(BasicEvent e)
           
 void NumberField.processEvent(BasicEvent e)
           
 void Jog.processEvent(BasicEvent e)