Uses of Interface
quicktime.app.spaces.Space

Packages that use Space
quicktime.app.actions   
quicktime.app.anim   
quicktime.app.display   
quicktime.app.event   
quicktime.app.spaces   
 

Uses of Space in quicktime.app.actions
 

Methods in quicktime.app.actions that return Space
abstract  Space MouseController.getSpace()
          Deprecated. This method returns the Space which the MouseController has been attached to.
 

Methods in quicktime.app.actions with parameters of type Space
 void TickleList.addedToSpace(Space s)
          This method is called by the Space when a Controller is being addedTo the Space s.
 void MouseController.addedToSpace(Space s)
          Deprecated. This method is called by the space when a Controller is being addedTo the Space s.
protected abstract  void MouseController.setTargetSpace(Space s)
          Deprecated. This method is defined by the subclass to ensure that the incoming Space is an appropriate kind of space for the MouseController to be attached too.
 

Uses of Space in quicktime.app.anim
 

Classes in quicktime.app.anim that implement Space
 class Compositor
          The Compositor uses the SpriteWorld compositing services of the SWCompositor to composit an image out of its member objects.
 class SWCompositor
          SWCompositor provides the capability to composit a complex image together of disparate image sources and then treat the result as a single image which is presented to the user.
 

Methods in quicktime.app.anim that return Space
 Space SWController.getSpace()
          Deprecated. Returns the current Space that the SWController is attached to.
 

Methods in quicktime.app.anim with parameters of type Space
protected  void SWController.setTargetSpace(Space target)
          Deprecated. Sets the target Space of the MouseController.
 

Uses of Space in quicktime.app.display
 

Subinterfaces of Space in quicktime.app.display
 interface QTDisplaySpace
          This interface defines the minimum API that a QTDisplay space provides.
 

Classes in quicktime.app.display that implement Space
 class DirectGroup
          A DirectGroup contains a set of QTDrawable objects that present their visual contents directly to the screen.
 class GroupDrawable
          This forms the base class for grouping QTDrawable objects within a single display space that is controlled by this group.
 

Methods in quicktime.app.display that return Space
 Space GroupController.getSpace()
          Deprecated. Returns the current GroupDrawable space that the controller is controlling.
 

Methods in quicktime.app.display with parameters of type Space
protected  void GroupController.setTargetSpace(Space target)
          Deprecated. Set the target space.
 

Uses of Space in quicktime.app.event
 

Fields in quicktime.app.event declared as Space
protected  Space QTMouseController.space
          The space which the controller is attached too.
protected  Space AWTMouseEventDispatcher.space
          The space that is the source of the QTMouseEvent that is broadcast to the QTMouseController
 

Methods in quicktime.app.event that return Space
 Space QTMouseController.getSpace()
          This method returns the Space which the MouseController has been attached to.
 

Methods in quicktime.app.event with parameters of type Space
 void QTMouseController.addedToSpace(Space s)
          This method is called by the space when a Controller is being addedTo the Space s.
 void QTMouseTargetController.addedToSpace(Space s)
          This method is called by the space when a Controller is being addedTo the Space s.
 EventDispatcher EventDispatcherMaker.make(ListenerController cont, Space s, java.lang.Object interest)
          Make an EventDispathcer for the specified ListenerController, where the events originate from the interest object.
 

Constructors in quicktime.app.event with parameters of type Space
AWTMouseEventDispatcher(QTMouseController cont, Space space, java.lang.Object interest)
          Creates an AWTMouseEventDispatcher for the specified QTMouseController.
 

Uses of Space in quicktime.app.spaces
 

Classes in quicktime.app.spaces that implement Space
 class SimpleSpace
          SimpleSpace provides a default reference implementation of the Space interface.
 

Methods in quicktime.app.spaces with parameters of type Space
 void Controller.addedToSpace(Space s)
          This method is called by the Space when a Controller is being addedTo the Space s.