Uses of Interface
com.tensegrity.composite.CompositeView

Packages that use CompositeView
com.tensegrity.composite The Tensgrity Graph Framework supports complex visual representations of nodes and edges.  
com.tensegrity.composite.event Provides interfaces and classes for dealing with events fired by base composites. 
com.tensegrity.composite.event.view Holds the classes representing the events fired by composite views. 
com.tensegrity.composite.util   
com.tensegrity.graph.view Contains the graph view interface.  
 

Uses of CompositeView in com.tensegrity.composite
 

Methods in com.tensegrity.composite that return CompositeView
abstract  CompositeView CompositeFactory.newCompositeView()
          Creates a new CompositeView.
abstract  CompositeView CompositeFactory.newCompositeView(java.util.List composites)
          Creates a new CompositeView.
abstract  CompositeView CompositeFactory.newCompositeView(CompositeView view)
          Creates a new CompositeView which is an exact copy of the given CompositeView.
 

Methods in com.tensegrity.composite with parameters of type CompositeView
 void CompositeInteractionHandler.preAction(CompositeView compositeview, CompositeGroup compositegroup, InteractionInfo interactionInfo)
          TODO : comment
 void CompositeInteractionHandler.startActionAt(CompositeView compositeview, CompositeGroup compositegroup, InteractionInfo interactionInfo)
          Called when a user interaction starts.
 void CompositeInteractionHandler.actAt(CompositeView compositeView, CompositeGroup compositeGroup, InteractionInfo interactionInfo, int actionID)
          Called during the acting part (drag) of a user interaction on the involved CompositeGroup.
 void CompositeInteractionHandler.stopActionAt(CompositeView compositeview, CompositeGroup compositegroup, InteractionInfo interactionInfo, int actionID)
          Called when a user interaction stops.
 void CompositeInteractionHandler.postAction(CompositeView compositeview, CompositeGroup compositegroup, InteractionInfo interactionInfo)
          TODO : comment
static void CompositeViewOperations.translateSelection(CompositeView compositview, int mode)
          Translates the current selection of the CompositeView given by compositeview so that it becomes visible in the CompositeViews viewport.
static void CompositeViewOperations.translateViewport(CompositeView compositeview, Boundary bbox, int mode)
          Translates the viewport of the CompositeView given by compositeview with regard to the translation mode given by mode.
static int CompositeViewOperations.getModifierMask(CompositeView view)
          Creates a modifier mask from the pressed keys SHIFT, ALT and CONTROL in the given CompositeView.
static java.util.Map CompositeViewOperations.recursiveEventDisable_SelectionChange(CompositeView compositeview)
           Recursively disables selection-change events and returns a Map that is filled with Lists of the currently selected BaseComposite objects.
static void CompositeViewOperations.recursiveEventEnable_SelectionChange(CompositeView compositeview, java.util.Map mappedSelectionOld)
           Recursively enables beforehand disabled selection-change events and raises those events if a corresponding List with the old selected BaseComposite objects can be found in the Map given by mappedSelectionOld.
static void CompositeViewOperations.recursiveSelection(CompositeView compositeview, boolean selection)
           Recursively sets all the BaseComposite objects that are contained in the specified CompositeView to the desired selection-state.
static BoundingBox CompositeViewOperations.getViewBoundingBox(CompositeView view, int calculationFlags)
          Returns the view boundaries of the given view.
static BaseComposite CompositeUtilities.findDeepestBaseCompositeAt(CompositeView compositeview, int x, int y)
          Returns the deepest nested BaseComposite in the given CompositeView at location (x, y).
static BaseComposite CompositeUtilities.findDeepestBaseCompositeAt(CompositeView compositeview, int x, int y, boolean includeExternalPrimitives)
          Returns the deepest nested BaseComposite in the given CompositeView at location (x, y).
static BaseComposite CompositeUtilities.findDeepestBaseCompositeAt(CompositeView compositeview, int x, int y, boolean includeExternalPrimitives, int minLabelWidth, int minLabelHeight)
          Returns the deepest nested BaseComposite in the given CompositeView at location (x, y).
static Composite CompositeUtilities.findDeepestCompositeAt(CompositeView compositeview, int x, int y)
          Returns the deepest nested Composite in the given CompositeView at location (x, y).
static CompositeGroup CompositeUtilities.findDeepestCompositeGroupAt(CompositeView compositeview, int x, int y)
          Returns the deepest nested CompositeGroup in the given CompositeView at location (x, y).
static Composite CompositeUtilities.findDeepestCompositeAt(CompositeView compositeview, int x, int y, boolean traverseFoldedGroups)
           Returns the deepest nested Composite in the given CompositeView at location (x, y).
abstract  CompositeView CompositeFactory.newCompositeView(CompositeView view)
          Creates a new CompositeView which is an exact copy of the given CompositeView.
static BaseComposite CompositeSelectionUtilities.getFirstSelectedBaseComposite(CompositeView compositeview)
          Returns the first selected BaseComposite of the given CompositeView.
static boolean CompositeSelectionUtilities.checkForSubSelection(CompositeView compositeview)
          Returns a boolean that indicates whether the CompositeView given by compositeview has a subselection or not.
 

Uses of CompositeView in com.tensegrity.composite.event
 

Methods in com.tensegrity.composite.event that return CompositeView
 CompositeView CompositeViewEvent.getCompositeView()
          returns the CompositeView which generates the event.
 

Uses of CompositeView in com.tensegrity.composite.event.view
 

Fields in com.tensegrity.composite.event.view declared as CompositeView
protected  CompositeView AbstractCompositeViewEvent.compositeView
          The CompositeView the event has occured on
 

Methods in com.tensegrity.composite.event.view that return CompositeView
 CompositeView AbstractCompositeViewEvent.getCompositeView()
           
 

Constructors in com.tensegrity.composite.event.view with parameters of type CompositeView
ViewScrolledEvent(CompositeView compositeView)
          Constructor for ViewParameterChangeEvent.
ViewRemoveCompositesEvent(CompositeView compositeView, java.util.List composites)
          Constructor for ViewRemoveCompositesEvent specifying the CompositeView and the List containing the removed Composites.
ViewAddCompositeEvent(CompositeView compositeView, BaseComposite composite)
          Constructor for ViewAddCompositeEvent.
ViewCompositeOrderChangeEvent(CompositeView compositeView, java.util.List composites, java.util.Map composite2PrecursorOld, java.util.Map composite2PrecursorNew)
          Constructor for ViewCompositeOrderChangeEvent.
AbstractCompositeViewEvent(CompositeView compositeView)
          Constructor for AbstractCompositeViewEvent.
AbstractCompositeViewEvent(CompositeView compositeView, BaseComposite composite)
          Constructor for AbstractCompositeViewEvent.
AbstractCompositeViewEvent(CompositeView compositeView, java.util.List composites)
          Constructor for AbstractCompositeViewEvent.
ViewParameterChangeEvent(CompositeView compositeView)
          Constructor for ViewParameterChangeEvent.
ViewParameterChangeEvent(CompositeView compositeView, int mask)
          Constructor for ViewParameterChangeEvent.
ViewAddCompositesEvent(CompositeView compositeView, java.util.List composites)
          Constructor specifying the CompositeView and the added Composites.
ViewMoveCompositesEvent(CompositeView compositeView, java.util.List composites)
          Constructor specifying the CompositeView and the moved Composites.
ViewRemoveCompositeEvent(CompositeView compositeView, BaseComposite composite)
          Constructor for ViewRemoveCompositeEvent.
ViewModeChangeEvent(CompositeView compositeView, int previousModeMask)
          Constructor for ViewParameterChangeEvent.
ViewSelectionChangeEvent(CompositeView compositeView, java.util.List selection)
          Constructor for ViewSelectionChangeEvent.
 

Uses of CompositeView in com.tensegrity.composite.util
 

Methods in com.tensegrity.composite.util that return CompositeView
 CompositeView CompositeHierarchyPath.getCompositeView()
          Deprecated. since leveled hierarchies can be build starting from a CompositeGroup it is not ensured that the BaseCompositeContainer at index 0 is a CompositeView. Use #getBaseCompositeContainer(int) or #getBaseCompositeContainerArray() instead.
 

Methods in com.tensegrity.composite.util with parameters of type CompositeView
 void RepaintBuffer.drawIntoBuffer(Renderer renderer, CompositeView compositeview, int drawflags)
          Draws the specified items from the given CompositeView into the buffer.
 void ActionLog.addStartActionAt(CompositeView compositeView, InteractionInfo interactionInfo)
          Add a start action.
 void ActionLog.addActAt(CompositeView compositeView, InteractionInfo interactionInfo)
          Add an act action.
 void ActionLog.addStopActionAt(CompositeView compositeView, InteractionInfo interactionInfo)
          Add a stop action.
 void ActionLog.play(CompositeView compositeView)
          Playback the entire list of recorded calls on the given provider.
 void RamRepaintBuffer.drawIntoBuffer(Renderer renderer, CompositeView compositeview, int drawflags)
           
static CompositeHierarchy CompositeHierarchyUtilities.buildCompleteHierarchy(CompositeView compositeview, int type)
          Returns the complete CompositeHierarchy of type type for the given CompositeView.
static CompositeHierarchy CompositeHierarchyUtilities.buildLeveledSelectionHierarchy(CompositeView compositeview, int type, int maxlevel)
          Return the CompositeHierarchy of type type up to level maxlevel for the given CompositeGroup.
static CompositeHierarchy CompositeHierarchyUtilities.findSelectionHierarchy(CompositeView compositeview)
          Return the CompositeHierarchyPath for the current selection in the given CompositeView.
static CompositeHierarchyPath CompositeHierarchyUtilities.findSingleSelectionHierarchyPath(CompositeView compositeview)
          Return the CompositeHierarchyPath for the current selection in the given CompositeView.
static CompositeHierarchyPath CompositeHierarchyUtilities.findCompositeHierarchyAt(CompositeView compositeview, int x, int y)
          Returns the CompositeHierarchyPath found int the specified CompositeView at location (x, y).
static CompositeHierarchyPath CompositeHierarchyUtilities.findCompositeHierarchyAt(CompositeView compositeview, int x, int y, java.lang.Class[] instanceclass)
          Returns the CompositeHierarchyPath found int the specified CompositeView at location (x, y) that matches the class given by instanceclass.
static CompositeHierarchyPath CompositeHierarchyUtilities.findZOrderedBaseCompositeHierarchyAt(CompositeView compositeview, int x, int y, boolean checkInvisible, java.lang.Class[] instanceclass, int minLabelWidth, int minLabelHeight)
          Returns the CompositeHierarchyPath found in the specified CompositeView at location (x, y) that matches the class given by instanceclass.
static CompositeHierarchyPath CompositeHierarchyUtilities.findZOrderedBaseCompositeHierarchyAt(CompositeView compositeview, int x, int y, boolean checkInvisible, java.lang.Class[] instanceclass)
          Returns the CompositeHierarchyPath found in the specified CompositeView at location (x, y) that matches the class given by instanceclass.
static CompositeHierarchyPath CompositeHierarchyUtilities.findZOrderedBaseCompositeHierarchyAt(CompositeView compositeview, int x, int y, boolean checkInvisible, java.lang.Class[] instanceclass, boolean includeExternalPrimitives)
          Returns the CompositeHierarchyPath found in the specified CompositeView at location (x, y) that matches the class given by instanceclass.
static CompositeHierarchyPath CompositeHierarchyUtilities.findZOrderedBaseCompositeHierarchyAt(CompositeView compositeview, int x, int y, boolean checkInvisible, java.lang.Class[] instanceclass, boolean includeExternalPrimitives, int minLabelWidth, int minLabelHeight)
          Returns the CompositeHierarchyPath found in the specified CompositeView at location (x, y) that matches the class given by instanceclass.
static CompositeHierarchyPath CompositeHierarchyUtilities.findZOrderedBaseCompositeHierarchyAt(CompositeView compositeview, int x, int y, boolean checkInvisible, java.lang.Class[] instanceclass, boolean includeExternalPrimitives, boolean ignoreSelected)
          Returns the CompositeHierarchyPath found in the specified CompositeView at location (x, y) that matches the class given by instanceclass.
static CompositeHierarchyPath CompositeHierarchyUtilities.findZOrderedBaseCompositeHierarchyAt(CompositeView compositeview, int x, int y, boolean checkInvisible, java.lang.Class[] instanceclass, boolean includeExternalPrimitives, boolean ignoreSelected, int minLabelWidth, int minLabelHeight)
          Returns the CompositeHierarchyPath found in the specified CompositeView at location (x, y) that matches the class given by instanceclass.
 

Constructors in com.tensegrity.composite.util with parameters of type CompositeView
RepaintManager(CompositeView compositeview)
          Constructs a new RepaintManager.
 

Uses of CompositeView in com.tensegrity.graph.view
 

Subinterfaces of CompositeView in com.tensegrity.graph.view
 interface VisualGraphView
           This interface defines a view of a Graph model as well but adds additional functional specifications.
 

Methods in com.tensegrity.graph.view with parameters of type CompositeView
static Boundary VisualOperations.computeVisibleRegion(CompositeView compositeview)
          Computes the visible region of the given CompositeView.
static void VisualOperations.translateViewportAccordingToComposite(CompositeView compositeview, Composite composite)
          This method does the same as method VisualOperations.translateViewportAccordingToBoundary(com.tensegrity.composite.CompositeView, com.tensegrity.graphics.Boundary), but is a convenience wrapper that operates on composites directly.
static void VisualOperations.translateViewportAccordingToBoundary(CompositeView compositeview, Boundary boundary)
          This method will set the viewport of the given CompositeView, so that the given boundary is visible.
static void VisualOperations.translateViewportAccordingToBoundary(CompositeView compositeview, Boundary boundary, boolean validatePosition)
          This method will set the viewport of the given CompositeView, so that the given boundary is visible.
static void VisualOperations.translateViewportAccordingToBoundary(CompositeView compositeview, Boundary boundary, boolean validatePosition, boolean updateView)
          This method will set the viewport of the given CompositeView, so that the given boundary is visible.
static void VisualOperations.translateViewportAroundCenter(CompositeView compositeview, double cx, double cy)
          This method will set the viewport so that it is centered around the given coordinates.
 



Copyright © 2005 Tensegrity Software GmbH. All Rights Reserved. Date of creation: 09.06.2006.