Package | Description |
---|---|
draw.controller.handler |
Adapts low-level mouse events to events relevant for the application-domain.
|
draw.controller.json |
Responsible for converting Model into JSON and vice versa.
|
draw.controller.visitors |
All stand-alone visitor classes are contained in this package.
|
draw.model |
Entity classes that represent the application domain.
|
Modifier and Type | Class and Description |
---|---|
class |
ResizeHandler.AdjustLocation
Update based on ratios/dimensions.
|
class |
ResizeHandler.RelativeLocation
Retrieve positional locations for every element within selected group.
|
Modifier and Type | Class and Description |
---|---|
class |
JSON_Export |
Modifier and Type | Class and Description |
---|---|
class |
AnchorVisitor
Visitor that visits all elements and determines whether the target point is contained
within any anchor of a selected element (which might be a group one).
|
class |
ChooseVisitor
Find the most recent element that intersects given point.
|
class |
MoveIfSelectedVisitor
Move all selected items by the desired (deltaX, deltaY) relative to the one being chosen.
|
Modifier and Type | Method and Description |
---|---|
void |
Element.accept(Visitor visitor)
Accept a visitor and dispatch.
|
void |
Group.accept(Visitor visitor)
Accept a visitor and dispatch.
|
void |
Model.accept(Visitor v)
Model supports the request to accept a visitor for all toplevel elements.
|