|
JHotDraw 7.0.6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DrawingEditor | |
|---|---|
| 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. |
| Uses of DrawingEditor in org.jhotdraw.draw |
|---|
| Classes in org.jhotdraw.draw that implement DrawingEditor | |
|---|---|
class |
DefaultDrawingEditor
DefaultDrawingEditor. |
| Fields in org.jhotdraw.draw declared as DrawingEditor | |
|---|---|
protected DrawingEditor |
AbstractTool.editor
|
| Methods in org.jhotdraw.draw that return DrawingEditor | |
|---|---|
protected DrawingEditor |
AbstractTool.getEditor()
|
| Methods in org.jhotdraw.draw with parameters of type DrawingEditor | |
|---|---|
void |
Tool.activate(DrawingEditor editor)
Activates the tool for the given view. |
void |
SelectionTool.activate(DrawingEditor editor)
|
void |
HandleTracker.activate(DrawingEditor editor)
|
void |
CreationTool.activate(DrawingEditor editor)
|
void |
ConnectionTool.activate(DrawingEditor editor)
|
void |
BidirectionalConnectionTool.activate(DrawingEditor editor)
|
void |
BezierTool.activate(DrawingEditor editor)
|
void |
AbstractTool.activate(DrawingEditor editor)
|
void |
DrawingView.addNotify(DrawingEditor editor)
Informs the view that it has been added to the specified editor. |
void |
DefaultDrawingView.addNotify(DrawingEditor editor)
|
void |
Tool.deactivate(DrawingEditor editor)
Deactivates the tool. |
void |
TextTool.deactivate(DrawingEditor editor)
|
void |
TextAreaTool.deactivate(DrawingEditor editor)
|
void |
SelectionTool.deactivate(DrawingEditor editor)
|
void |
HandleTracker.deactivate(DrawingEditor editor)
|
void |
CreationTool.deactivate(DrawingEditor editor)
|
void |
ConnectionTool.deactivate(DrawingEditor editor)
|
void |
BidirectionalConnectionTool.deactivate(DrawingEditor editor)
|
void |
BezierTool.deactivate(DrawingEditor editor)
|
void |
AbstractTool.deactivate(DrawingEditor editor)
|
void |
DrawingView.removeNotify(DrawingEditor editor)
Informs the view that it has been removed from the specified editor. |
void |
DefaultDrawingView.removeNotify(DrawingEditor editor)
|
| Uses of DrawingEditor in org.jhotdraw.draw.action |
|---|
| Fields in org.jhotdraw.draw.action declared as DrawingEditor | |
|---|---|
protected DrawingEditor |
AbstractEditorAction.editor
|
| Methods in org.jhotdraw.draw.action that return DrawingEditor | |
|---|---|
DrawingEditor |
AttributeToggler.getEditor()
|
DrawingEditor |
AbstractSelectedAction.getEditor()
|
DrawingEditor |
AbstractEditorAction.getEditor()
|
| Methods in org.jhotdraw.draw.action with parameters of type DrawingEditor | |
|---|---|
static void |
ToolBarButtonFactory.addAlignmentButtonsTo(javax.swing.JToolBar bar,
DrawingEditor editor)
Creates toolbar buttons and adds them to the specified JToolBar |
static void |
ToolBarButtonFactory.addAttributesButtonsTo(javax.swing.JToolBar bar,
DrawingEditor editor)
Creates toolbar buttons and adds them to the specified JToolBar |
static void |
ToolBarButtonFactory.addColorButtonsTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addColorButtonTo(javax.swing.JToolBar bar,
DrawingEditor editor,
AttributeKey attributeKey,
java.util.Map<java.lang.String,java.awt.Color> colorMap,
int columnCount,
java.lang.String labelKey,
ResourceBundleUtil labels)
|
static void |
ToolBarButtonFactory.addFontButtonsTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addSelectionToolTo(javax.swing.JToolBar tb,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addSelectionToolTo(javax.swing.JToolBar tb,
DrawingEditor editor,
java.util.Collection<javax.swing.Action> drawingActions,
java.util.Collection<javax.swing.Action> selectionActions)
|
static void |
ToolBarButtonFactory.addStrokeButtonsTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addStrokeDashesButtonTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addStrokeDecorationButtonTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addStrokePlacementButtonTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addStrokeTypeButtonTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addStrokeWidthButtonTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static void |
ToolBarButtonFactory.addToolTo(javax.swing.JToolBar tb,
DrawingEditor editor,
Tool tool,
java.lang.String labelKey,
ResourceBundleUtil labels)
Method addSelectionToolTo must have been invoked prior to this on the JToolBar. |
static void |
ToolBarButtonFactory.addZoomButtonsTo(javax.swing.JToolBar bar,
DrawingEditor editor)
|
static java.util.Collection<javax.swing.Action> |
ToolBarButtonFactory.createDrawingActions(DrawingEditor editor)
|
static java.util.Collection<javax.swing.Action> |
ToolBarButtonFactory.createSelectionActions(DrawingEditor editor)
|
static javax.swing.AbstractButton |
ToolBarButtonFactory.createToggleGridButton(DrawingEditor editor)
Creates toolbar buttons and adds them to the specified JToolBar |
static javax.swing.AbstractButton |
ToolBarButtonFactory.createZoomButton(DrawingEditor editor)
|
protected void |
AbstractViewAction.setEditor(DrawingEditor newValue)
|
void |
AbstractSelectedAction.setEditor(DrawingEditor editor)
|
void |
AbstractEditorAction.setEditor(DrawingEditor newValue)
|
| Constructors in org.jhotdraw.draw.action with parameters of type DrawingEditor | |
|---|---|
AbstractEditorAction(DrawingEditor editor)
Creates a new instance. |
|
AbstractSelectedAction(DrawingEditor editor)
Creates an action which acts on the selected figures on the current view of the specified editor. |
|
AbstractViewAction(DrawingEditor editor)
Creates a view action which acts on the current view of the editor. |
|
AlignAction.East(DrawingEditor editor)
|
|
AlignAction.Horizontal(DrawingEditor editor)
|
|
AlignAction.North(DrawingEditor editor)
|
|
AlignAction.South(DrawingEditor editor)
|
|
AlignAction.Vertical(DrawingEditor editor)
|
|
AlignAction.West(DrawingEditor editor)
|
|
AlignAction(DrawingEditor editor)
Creates a new instance. |
|
ApplyAttributesAction(DrawingEditor editor)
Creates a new instance. |
|
AttributeAction(DrawingEditor editor,
AttributeKey key,
java.lang.Object value)
Creates a new instance. |
|
AttributeAction(DrawingEditor editor,
AttributeKey key,
java.lang.Object value,
javax.swing.Icon icon)
Creates a new instance. |
|
AttributeAction(DrawingEditor editor,
AttributeKey key,
java.lang.Object value,
java.lang.String name)
Creates a new instance. |
|
AttributeAction(DrawingEditor editor,
AttributeKey key,
java.lang.Object value,
java.lang.String name,
javax.swing.Icon icon)
|
|
AttributeAction(DrawingEditor editor,
AttributeKey key,
java.lang.Object value,
java.lang.String name,
javax.swing.Icon icon,
javax.swing.Action compatibleTextAction)
|
|
AttributeAction(DrawingEditor editor,
java.util.Map<AttributeKey,java.lang.Object> attributes,
java.lang.String name,
javax.swing.Icon icon)
|
|
AttributeToggler(DrawingEditor editor,
AttributeKey key,
java.lang.Object value1,
java.lang.Object value2)
Creates a new instance. |
|
AttributeToggler(DrawingEditor editor,
AttributeKey key,
java.lang.Object value1,
java.lang.Object value2,
javax.swing.Action compatibleTextAction)
|
|
ColorAttributeIcon(DrawingEditor editor,
AttributeKey<java.awt.Color> key,
java.awt.Image image)
|
|
ColorAttributeIcon(DrawingEditor editor,
AttributeKey<java.awt.Color> key,
java.net.URL imageLocation)
Creates a new instance. |
|
ColorChooserAction(DrawingEditor editor,
AttributeKey key)
Creates a new instance. |
|
ColorChooserAction(DrawingEditor editor,
AttributeKey key,
javax.swing.Icon icon)
Creates a new instance. |
|
ColorChooserAction(DrawingEditor editor,
AttributeKey key,
java.lang.String name)
Creates a new instance. |
|
ColorChooserAction(DrawingEditor editor,
AttributeKey key,
java.lang.String name,
javax.swing.Icon icon)
|
|
DefaultAttributeAction(DrawingEditor editor,
AttributeKey key)
Creates a new instance. |
|
DefaultAttributeAction(DrawingEditor editor,
AttributeKey[] keys)
|
|
DefaultAttributeAction(DrawingEditor editor,
AttributeKey[] keys,
java.lang.String name,
javax.swing.Icon icon)
|
|
DefaultAttributeAction(DrawingEditor editor,
AttributeKey key,
javax.swing.Icon icon)
Creates a new instance. |
|
DefaultAttributeAction(DrawingEditor editor,
AttributeKey key,
java.lang.String name)
Creates a new instance. |
|
DefaultAttributeAction(DrawingEditor editor,
AttributeKey key,
java.lang.String name,
javax.swing.Icon icon)
|
|
GroupAction(DrawingEditor editor)
Creates a new instance. |
|
GroupAction(DrawingEditor editor,
CompositeFigure prototype)
|
|
MoveAction.East(DrawingEditor editor)
|
|
MoveAction.North(DrawingEditor editor)
|
|
MoveAction.South(DrawingEditor editor)
|
|
MoveAction.West(DrawingEditor editor)
|
|
MoveAction(DrawingEditor editor,
int dx,
int dy)
Creates a new instance. |
|
MoveToBackAction(DrawingEditor editor)
Creates a new instance. |
|
MoveToFrontAction(DrawingEditor editor)
Creates a new instance. |
|
PickAttributesAction(DrawingEditor editor)
Creates a new instance. |
|
SelectSameAction(DrawingEditor editor)
Creates a new instance. |
|
ToggleGridAction(DrawingEditor editor)
Creates a new instance. |
|
ToggleGridAction(DrawingEditor editor,
Constrainer onConstrainer,
Constrainer offConstrainer)
|
|
UngroupAction(DrawingEditor editor)
Creates a new instance. |
|
UngroupAction(DrawingEditor editor,
CompositeFigure prototype)
|
|
ZoomAction(DrawingEditor editor,
double scaleFactor,
javax.swing.AbstractButton button)
Creates a new instance. |
|
ZoomEditorAction(DrawingEditor editor,
double scaleFactor,
javax.swing.AbstractButton button)
Creates a new instance. |
|
ZoomEditorAction(DrawingEditor editor,
double scaleFactor,
javax.swing.AbstractButton button,
boolean updateAllViews)
Creates a new instance. |
|
| Uses of DrawingEditor in org.jhotdraw.samples.draw |
|---|
| Methods in org.jhotdraw.samples.draw that return DrawingEditor | |
|---|---|
DrawingEditor |
DrawProject.getDrawingEditor()
Gets the drawing editor of the project. |
DrawingEditor |
DrawProject.getEditor()
|
DrawingEditor |
DrawingPanel.getEditor()
|
| Methods in org.jhotdraw.samples.draw with parameters of type DrawingEditor | |
|---|---|
void |
DrawingPanel.addDefaultCreationButtonsTo(javax.swing.JToolBar tb,
DrawingEditor editor,
java.util.Collection<javax.swing.Action> drawingActions,
java.util.Collection<javax.swing.Action> selectionActions)
|
void |
DrawApplicationModel.addDefaultCreationButtonsTo(javax.swing.JToolBar tb,
DrawingEditor editor,
java.util.Collection<javax.swing.Action> drawingActions,
java.util.Collection<javax.swing.Action> selectionActions)
|
void |
DrawProject.setDrawingEditor(DrawingEditor newValue)
Sets a drawing editor for the project. |
void |
DrawProject.setEditor(DrawingEditor newValue)
|
| Uses of DrawingEditor in org.jhotdraw.samples.net |
|---|
| Methods in org.jhotdraw.samples.net that return DrawingEditor | |
|---|---|
DrawingEditor |
NetProject.getDrawingEditor()
Gets the drawing editor of the project. |
DrawingEditor |
NetProject.getEditor()
|
DrawingEditor |
NetPanel.getEditor()
|
| Methods in org.jhotdraw.samples.net with parameters of type DrawingEditor | |
|---|---|
void |
NetProject.setDrawingEditor(DrawingEditor newValue)
Sets a drawing editor for the project. |
void |
NetProject.setEditor(DrawingEditor newValue)
|
| Uses of DrawingEditor in org.jhotdraw.samples.pert |
|---|
| Methods in org.jhotdraw.samples.pert that return DrawingEditor | |
|---|---|
DrawingEditor |
PertProject.getDrawingEditor()
Gets the drawing editor of the project. |
DrawingEditor |
PertProject.getEditor()
|
DrawingEditor |
PertPanel.getEditor()
|
| Methods in org.jhotdraw.samples.pert with parameters of type DrawingEditor | |
|---|---|
void |
PertProject.setDrawingEditor(DrawingEditor newValue)
Sets a drawing editor for the project. |
void |
PertProject.setEditor(DrawingEditor newValue)
|
| Uses of DrawingEditor in org.jhotdraw.samples.svg |
|---|
| Methods in org.jhotdraw.samples.svg that return DrawingEditor | |
|---|---|
DrawingEditor |
SVGProject.getDrawingEditor()
Gets the drawing editor of the project. |
DrawingEditor |
SVGProject.getEditor()
|
DrawingEditor |
SVGPanel.getEditor()
|
| Methods in org.jhotdraw.samples.svg with parameters of type DrawingEditor | |
|---|---|
static java.util.Collection<javax.swing.Action> |
SVGApplicationModel.createDrawingActions(DrawingEditor editor)
|
static java.util.Collection<javax.swing.Action> |
SVGPanel.createSelectionActions(DrawingEditor editor)
|
static java.util.Collection<javax.swing.Action> |
SVGApplicationModel.createSelectionActions(DrawingEditor editor)
|
void |
SVGProject.setDrawingEditor(DrawingEditor newValue)
Sets a drawing editor for the project. |
void |
SVGProject.setEditor(DrawingEditor newValue)
|
| Uses of DrawingEditor in org.jhotdraw.samples.svg.action |
|---|
| Constructors in org.jhotdraw.samples.svg.action with parameters of type DrawingEditor | |
|---|---|
CombineAction(DrawingEditor editor)
Creates a new instance. |
|
SplitAction(DrawingEditor editor)
Creates a new instance. |
|
|
Copyright 1996-2006 © JHotDraw.org | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||