public class TLspCircleBy3PointsEditor extends ALspEditor
ILcd2DEditableCircleBy3Points
objects in an ILspView
.
MOVE
operations, with a HANDLE_IDENTIFIER
property and
START_POINT
, INTERMEDIATE_POINT
or END_POINT
as value.MOVE
operations, with a HANDLE_IDENTIFIER
property with
CENTER
as value.MOVE
operations,
without any additional properties.TLspEditOperation
, generated by an edit handle (see description
of handles above), this editor performs different edit operations on the associated circle object.
The images below illustrate the effect of the different handles. In each image the
gray color represents the previous state of the object and the red color represents the edited object:
![]() |
![]() |
![]() |
||
Setting the first intermediate point | Setting the second intermediate point | Setting the start point |
Modifier and Type | Class and Description |
---|---|
static class |
TLspCircleBy3PointsEditor.HandleIdentifier
Describes a control point of a circle-by-3-points shape.
|
static class |
TLspCircleBy3PointsEditor.PropertyKeys
Defines keys used by the enclosing editor implementation to store user properties in its
edit handles.
|
Constructor and Description |
---|
TLspCircleBy3PointsEditor()
Creates a new
TLspCircleBy3PointsEditor . |
Modifier and Type | Method and Description |
---|---|
boolean |
canEdit(TLspEditContext aContext)
Returns
true if super returns true and the given object is an
instance of ILcd2DEditableCircleBy3Points . |
protected ALspEditHandle |
createCenterHandle(ILcd2DEditableCircleBy3Points aCircle,
TLspEditContext aContext)
Creates an edit handle that allows the user to translate the given circle by translating
its center point.
|
protected ALspEditHandle |
createFirstIntermediateHandle(ILcd2DEditableCircleBy3Points aCircle,
TLspEditContext aContext)
Creates an edit handle that allows the user to edit the given arc by translating
its first intermediate point.
|
protected ALspEditHandle |
createObjectTranslationHandle(ILcd2DEditableCircleBy3Points aCircle,
TLspEditContext aContext)
Creates an edit handle that allows the user to translate the given shape.
|
protected ALspEditHandle |
createSecondIntermediateHandle(ILcd2DEditableCircleBy3Points aCircle,
TLspEditContext aContext)
Creates an edit handle that allows the user to edit the given circle by translating
its second intermediate point.
|
protected ALspEditHandle |
createStartPointHandle(ILcd2DEditableCircleBy3Points aCircle,
TLspEditContext aContext)
Creates an edit handle that allows the user to edit the given circle by translating
its start point.
|
protected TLspEditOperationResult |
editImpl(TLspEditOperation aOperation,
ELspInteractionStatus aInteractionStatus,
TLspEditContext aContext)
Called by the
edit method to edit the given object based on the given
edit operation . |
ALspEditHandle |
getCreateHandle(TLspEditContext aContext)
Returns a handle that is used to create the given object.
|
List<ALspEditHandle> |
getEditHandles(TLspEditContext aContext)
Returns a set of handles for editing the given object.
|
canCopyGeometry, canPerformOperation, copyGeometrySFCT, edit, fireUndoableHappened
public TLspCircleBy3PointsEditor()
TLspCircleBy3PointsEditor
. This constructor does not initialize any state.public boolean canEdit(TLspEditContext aContext)
true
if super
returns true
and the given object is an
instance of ILcd2DEditableCircleBy3Points
.canEdit
in interface ILspEditor
canEdit
in class ALspEditor
aContext
- provides context information to the editortrue
if the above conditions are met, false
otherwise.protected TLspEditOperationResult editImpl(TLspEditOperation aOperation, ELspInteractionStatus aInteractionStatus, TLspEditContext aContext)
edit
method to edit the given object based on the given
edit operation
.
Note that this method does not need to lock the model of the object, this already happens in the
edit
method.
By default, this editor can handle the following operations:
If any of the operations contains the HANDLE_IDENTIFIER
property, with a HandleIdentifier
as value, then this editor will only
perform the operation on that particular point, otherwise it will perform it on the entire object.editImpl
in class ALspEditor
aOperation
- the event that contains the information on how to edit the objectaInteractionStatus
- the interaction statusaContext
- the edit contextpublic ALspEditHandle getCreateHandle(TLspEditContext aContext)
ALspCreateHandle
which is a specialized handle implementation used for creating an object.
By default, this method returns an ALspCreateHandle
capable of creating an ILcd2DEditableCircleBy3Points
, as described in the class javadoc.aContext
- provides context information such as the layer for which the object
is being creatednull
if creation should not be allowed.ALspCreateHandle
,
TLspCreateController
public List<ALspEditHandle> getEditHandles(TLspEditContext aContext)
edit
method. As a way to communicate with this method,
handles will copy their properties to the edit operation properties.
By default this method delegates to the following methods:
It returns a list containing the handles returned by those methods. These methods are
added for convenience, so they can easily be overridden.aContext
- provides context information such as the layer for which the object
is being editedTLspEditController
protected ALspEditHandle createObjectTranslationHandle(ILcd2DEditableCircleBy3Points aCircle, TLspEditContext aContext)
TLspObjectTranslationHandle
.aCircle
- the shape for which the handle is createdaContext
- the current contextnull
if no handle is neededprotected ALspEditHandle createCenterHandle(ILcd2DEditableCircleBy3Points aCircle, TLspEditContext aContext)
TLspPointTranslationHandle
with a HANDLE_IDENTIFIER
user
property with CENTER_POINT
as value.aCircle
- the circle for which the handle is createdaContext
- the current contextnull
if no handle is neededprotected ALspEditHandle createStartPointHandle(ILcd2DEditableCircleBy3Points aCircle, TLspEditContext aContext)
TLspPointTranslationHandle
with a HANDLE_IDENTIFIER
user
property with START_POINT
as value.aCircle
- the circle for which the handle is createdaContext
- the current contextnull
if no handle is neededprotected ALspEditHandle createSecondIntermediateHandle(ILcd2DEditableCircleBy3Points aCircle, TLspEditContext aContext)
TLspPointTranslationHandle
with a HANDLE_IDENTIFIER
user
property with END_POINT
as value.aCircle
- the circle for which the handle is createdaContext
- the current contextnull
if no handle is neededprotected ALspEditHandle createFirstIntermediateHandle(ILcd2DEditableCircleBy3Points aCircle, TLspEditContext aContext)
TLspPointTranslationHandle
with a HANDLE_IDENTIFIER
user
property with INTERMEDIATE_POINT
as value.aCircle
- the circle for which the handle is createdaContext
- the current contextnull
if no handle is needed