JHotDraw 7.0.6

Uses of Interface
org.jhotdraw.draw.DrawingView

Packages that use DrawingView
org.jhotdraw.draw Defines a framework for drawing editors. 
org.jhotdraw.draw.action Provides Action objects for drawing editors as well as some specific user interface components to present them on a graphical user interface. 
org.jhotdraw.samples.draw A sample drawing editor showcasing the drawing capabilities of the framework. 
org.jhotdraw.samples.net A very simple network diagram editor. 
org.jhotdraw.samples.pert An editor for PERT (Program Evaluation and Review Technique) diagrams. 
org.jhotdraw.samples.svg A sample drawing editor with limited support for Scalable Vector Graphics Mobile 1.2 (SVG Mobile 1.2). 
org.jhotdraw.samples.svg.action Provides actions for editing SVG drawings. 
org.jhotdraw.samples.svg.figures Provides the figures for the SVG basic shapes. 
 

Uses of DrawingView in org.jhotdraw.draw
 

Classes in org.jhotdraw.draw that implement DrawingView
 class DefaultDrawingView
          DefaultDrawingView.
 

Fields in org.jhotdraw.draw declared as DrawingView
protected  DrawingView FloatingTextArea.view
          The drawing view.
protected  DrawingView AbstractHandle.view
           
 

Methods in org.jhotdraw.draw that return DrawingView
 DrawingView DrawingEditor.findView(java.awt.Container c)
          Finds a drawing view.
 DrawingView DefaultDrawingEditor.findView(java.awt.Container c)
           
 DrawingView DrawingEditor.getFocusedView()
          Gets the editor's focused view.
 DrawingView DefaultDrawingEditor.getFocusedView()
           
 DrawingView ToolEvent.getView()
          Gets the drawing view of the tool.
 DrawingView FigureSelectionEvent.getView()
           
 DrawingView DrawingEditor.getView()
          Gets the editor's active drawing view.
 DrawingView DefaultDrawingEditor.getView()
           
protected  DrawingView AbstractTool.getView()
           
 

Methods in org.jhotdraw.draw that return types with arguments of type DrawingView
 java.util.Collection<DrawingView> DrawingEditor.getDrawingViews()
          Gets all drawing views associated with this editor.
 java.util.Collection<DrawingView> DefaultDrawingEditor.getDrawingViews()
           
 

Methods in org.jhotdraw.draw with parameters of type DrawingView
 void DrawingEditor.add(DrawingView view)
          Adds a drawing view to the editor.
 void DefaultDrawingEditor.add(DrawingView view)
           
 void FloatingTextField.createOverlay(DrawingView view)
          Creates the overlay for the given Component.
 void FloatingTextArea.createOverlay(DrawingView view)
          Creates the overlay within the given container.
 void FloatingTextField.createOverlay(DrawingView view, TextHolder figure)
          Creates the overlay for the given Container using a specific font.
 void FloatingTextArea.createOverlay(DrawingView view, TextHolder figure)
          Creates the overlay for the given Container using a specific font.
 void GridConstrainer.draw(java.awt.Graphics2D g, DrawingView view)
           
 void Constrainer.draw(java.awt.Graphics2D g, DrawingView view)
          Draws the constrainer grid for the specified drawing view.
protected  void AbstractTool.fireToolStarted(DrawingView view)
          Notify all listenerList that have registered interest for notification on this event type.
 boolean Figure.handleDrop(java.awt.geom.Point2D.Double p, java.util.Collection<Figure> droppedFigures, DrawingView view)
          Handles a drop.
 boolean AbstractFigure.handleDrop(java.awt.geom.Point2D.Double p, java.util.Collection<Figure> droppedFigures, DrawingView view)
           
 boolean LineFigure.handleMouseClick(java.awt.geom.Point2D.Double p, java.awt.event.MouseEvent evt, DrawingView view)
          Handles a mouse click.
 boolean LineConnectionFigure.handleMouseClick(java.awt.geom.Point2D.Double p, java.awt.event.MouseEvent evt, DrawingView view)
          Handles a mouse click.
 boolean Figure.handleMouseClick(java.awt.geom.Point2D.Double p, java.awt.event.MouseEvent evt, DrawingView view)
          Handles a mouse click.
 boolean BezierFigure.handleMouseClick(java.awt.geom.Point2D.Double p, java.awt.event.MouseEvent evt, DrawingView view)
          Handles a mouse click.
 boolean AbstractFigure.handleMouseClick(java.awt.geom.Point2D.Double p, java.awt.event.MouseEvent evt, DrawingView view)
          Handles a mouse click.
 void DrawingEditor.remove(DrawingView view)
          Removes a drawing view from the editor.
 void DefaultDrawingEditor.remove(DrawingView view)
           
 void Handle.setView(DrawingView view)
          Sets the view of the handle.
 void DrawingEditor.setView(DrawingView newValue)
          Sets the editor's active drawing view.
 void DefaultDrawingEditor.setView(DrawingView newValue)
           
 void AbstractHandle.setView(DrawingView view)
           
 void HandleMulticaster.trackDoubleClick(java.awt.Point p, int modifiersEx, DrawingView view)
           
 void HandleMulticaster.trackEnd(java.awt.Point current, java.awt.Point anchor, int modifiersEx, DrawingView view)
           
 void HandleMulticaster.trackStart(java.awt.Point anchor, int modifiersEx, DrawingView view)
           
 void HandleMulticaster.trackStep(java.awt.Point anchor, java.awt.Point lead, int modifiersEx, DrawingView view)
           
 void AbstractTool.updateCursor(DrawingView view, java.awt.Point p)
           
 

Constructors in org.jhotdraw.draw with parameters of type DrawingView
FigureSelectionEvent(DrawingView source)
          Creates a new instance.
ToolEvent(Tool src, DrawingView view, java.awt.Rectangle invalidatedArea)
          Creates a new instance.
 

Uses of DrawingView in org.jhotdraw.draw.action
 

Methods in org.jhotdraw.draw.action that return DrawingView
 DrawingView AttributeToggler.getView()
           
protected  DrawingView AbstractViewAction.getView()
           
protected  DrawingView AbstractSelectedAction.getView()
           
protected  DrawingView AbstractEditorAction.getView()
           
 

Methods in org.jhotdraw.draw.action with parameters of type DrawingView
static void MoveToFrontAction.bringToFront(DrawingView view, java.util.Collection<Figure> figures)
           
static javax.swing.AbstractButton ToolBarButtonFactory.createToggleGridButton(DrawingView view)
          Creates toolbar buttons and adds them to the specified JToolBar
static javax.swing.AbstractButton ToolBarButtonFactory.createZoomButton(DrawingView view)
           
 void UngroupAction.groupFigures(DrawingView view, CompositeFigure group, java.util.Collection<Figure> figures)
           
 void GroupAction.groupFigures(DrawingView view, CompositeFigure group, java.util.Collection<Figure> figures)
           
static void MoveToBackAction.sendToBack(DrawingView view, java.util.Collection figures)
           
 java.util.Collection<Figure> UngroupAction.ungroupFigures(DrawingView view, CompositeFigure group)
           
 java.util.Collection<Figure> GroupAction.ungroupFigures(DrawingView view, CompositeFigure group)
           
 

Constructors in org.jhotdraw.draw.action with parameters of type DrawingView
AbstractViewAction(DrawingView view)
          Creates a view action which acts on the specified view.
ToggleGridAction(DrawingView view, Constrainer onConstrainer, Constrainer offConstrainer)
          Creates a new instance.
ZoomAction(DrawingView view, double scaleFactor, javax.swing.AbstractButton button)
          Creates a new instance.
 

Uses of DrawingView in org.jhotdraw.samples.draw
 

Methods in org.jhotdraw.samples.draw that return DrawingView
 DrawingView DrawingPanel.getView()
           
 

Uses of DrawingView in org.jhotdraw.samples.net
 

Methods in org.jhotdraw.samples.net that return DrawingView
 DrawingView NetPanel.getView()
           
 

Uses of DrawingView in org.jhotdraw.samples.pert
 

Methods in org.jhotdraw.samples.pert that return DrawingView
 DrawingView PertPanel.getView()
           
 

Uses of DrawingView in org.jhotdraw.samples.svg
 

Methods in org.jhotdraw.samples.svg that return DrawingView
 DrawingView SVGPanel.getView()
           
 

Uses of DrawingView in org.jhotdraw.samples.svg.action
 

Methods in org.jhotdraw.samples.svg.action with parameters of type DrawingView
 void SplitAction.groupFigures(DrawingView view, CompositeFigure group, java.util.Collection<Figure> figures)
           
 void CombineAction.groupFigures(DrawingView view, CompositeFigure group, java.util.Collection<Figure> figures)
           
 java.util.Collection<Figure> SplitAction.ungroupFigures(DrawingView view, CompositeFigure group)
           
 java.util.Collection<Figure> CombineAction.ungroupFigures(DrawingView view, CompositeFigure group)
           
 

Uses of DrawingView in org.jhotdraw.samples.svg.figures
 

Methods in org.jhotdraw.samples.svg.figures with parameters of type DrawingView
 boolean SVGLine.handleMouseClick(java.awt.geom.Point2D.Double p, java.awt.event.MouseEvent evt, DrawingView view)
          Handles a mouse click.
 


Copyright 1996-2006 © JHotDraw.org