public class DrawItem extends BaseWidget implements HasClickHandlers, HasDrawEndHandlers, HasDrawStartHandlers, HasMouseDownHandlers, HasMouseMoveHandlers, HasMouseOutHandlers, HasMouseOverHandlers, HasMouseUpHandlers, HasMovedHandlers, HasDragMoveHandlers, HasDragResizeMoveHandlers, HasDragResizeStartHandlers, HasDragResizeStopHandlers, HasDragStartHandlers, HasDragStopHandlers, HasResizedHandlers, HasShowContextMenuHandlers
Each DrawItem has its own local transform that maps its local coordinate system
to the drawing coordinate system that is shared by
all DrawItems in the same DrawPane (explained here
). The local
transform is a combination of rotation, scaling, and other affine transformations. The DrawItem is first translated
, then scaled
, then sheared
in the direction of the x-axis, then sheared
in the directiton of the y-axis, and then finally
rotated
.
Note that DrawItems as such should never
be created, only concrete subclasses such as DrawGroup
and DrawLine
.
See DrawPane
for the
different approaches to create DrawItems.
config, configOnly, factoryCreated, factoryProperties, id, nativeObject, scClassName
Constructor and Description |
---|
DrawItem() |
DrawItem(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.event.shared.HandlerRegistration |
addClickHandler(ClickHandler handler)
Add a click handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addDragMoveHandler(DragMoveHandler handler)
Add a dragMove handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addDragResizeMoveHandler(DragResizeMoveHandler handler)
Add a dragResizeMove handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addDragResizeStartHandler(DragResizeStartHandler handler)
Add a dragResizeStart handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addDragResizeStopHandler(DragResizeStopHandler handler)
Add a dragResizeStop handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addDragStartHandler(DragStartHandler handler)
Add a dragStart handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addDragStopHandler(DragStopHandler handler)
Add a dragStop handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addDrawEndHandler(DrawEndHandler handler)
Add a drawEnd handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addDrawStartHandler(DrawStartHandler handler)
Add a drawStart handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addMouseDownHandler(MouseDownHandler handler)
Add a mouseDown handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addMouseMoveHandler(MouseMoveHandler handler)
Add a mouseMove handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addMouseOutHandler(MouseOutHandler handler)
Add a mouseOut handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addMouseOverHandler(MouseOverHandler handler)
Add a mouseOver handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addMouseUpHandler(MouseUpHandler handler)
Add a mouseUp handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addMovedHandler(MovedHandler handler)
Add a moved handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addResizedHandler(ResizedHandler handler)
Add a resized handler.
|
com.google.gwt.event.shared.HandlerRegistration |
addShowContextMenuHandler(ShowContextMenuHandler handler)
Add a showContextMenu handler.
|
void |
bringToFront()
|
static void |
changeAutoChildDefaults(java.lang.String autoChildName,
Canvas defaults)
Changes the defaults for Canvas AutoChildren named
autoChildName . |
static void |
changeAutoChildDefaults(java.lang.String autoChildName,
DrawItem defaults)
Changes the defaults for DrawItem AutoChildren named
autoChildName . |
static void |
changeAutoChildDefaults(java.lang.String autoChildName,
FormItem defaults)
Changes the defaults for FormItem AutoChildren named
autoChildName . |
static float |
computeAngle(double px1,
double py1,
double px2,
double py2)
Deprecated.
|
static double |
computeAngleAsDouble(double px1,
double py1,
double px2,
double py2)
Computes the angle in degrees from the positive X axis to the difference vector
|
protected com.google.gwt.core.client.JavaScriptObject |
create() |
void |
dragResizeMove(java.lang.String position,
java.lang.Integer x,
java.lang.Integer y,
java.lang.Integer dX,
java.lang.Integer dY)
If
canDrag is true and the control knobs include "resize" knobs, then this notification
method will be fired when the user drag-resizes the draw item. |
void |
draw()
Draws this item into its current
drawPane . |
void |
erase()
Erase this drawItem's visual representation and remove it from its DrawGroup (if any) and DrawPane.
|
java.lang.Boolean |
getAttributeAsBoolean(java.lang.String property) |
java.util.Date |
getAttributeAsDate(java.lang.String property) |
java.lang.Double |
getAttributeAsDouble(java.lang.String property) |
com.google.gwt.dom.client.Element |
getAttributeAsElement(java.lang.String property) |
java.lang.Float |
getAttributeAsFloat(java.lang.String property) |
java.lang.Integer |
getAttributeAsInt(java.lang.String property) |
com.google.gwt.core.client.JavaScriptObject |
getAttributeAsJavaScriptObject(java.lang.String property) |
java.util.Map |
getAttributeAsMap(java.lang.String property) |
java.lang.String |
getAttributeAsString(java.lang.String property)
Expose as public the getAttributeAsXXX() methods of BaseWidget
|
int[] |
getBoundingBox()
Returns the startPoint endPoint
|
java.lang.Double[] |
getBoundingBoxAsDouble()
Returns the startPoint endPoint
|
static DrawItem |
getById(java.lang.String ID)
Retrieve a DrawItem by its global
ID . |
static DrawItem |
getByJSObject(com.google.gwt.core.client.JavaScriptObject jsObj)
Retrieve a DrawItem from its
JavaScriptObject . |
java.lang.Boolean |
getCanDrag()
Is this DrawItem draggable? If true, then the DrawItem can be drag-repositioned by the user.
|
java.lang.Boolean |
getCanHover()
Will this DrawItem fire hover events when the user hovers over it?
|
Canvas |
getCanvasAutoChild(java.lang.String autoChildName)
Returns the
Canvas AutoChild named autoChildName if already created. |
Point |
getCenter()
Returns the center point of this draw item in local coordinates.
|
Menu |
getContextMenu()
Context menu to show for this object, an instance of the Menu widget.
|
DrawKnob |
getCornerResizeKnob()
Note : This API is non-functional (always returns null) and exists only to make
you aware that this MultiAutoChild exists.
|
Cursor |
getCursor()
If set, specifies the cursor to display when the mouse pointer is over this DrawItem.
|
java.lang.Boolean |
getDestroyed()
Flag indicating a drawItem has been destroyed, similar to
Canvas.destroyed . |
java.lang.Boolean |
getDestroying()
Flag indicating a drawItem is mid-destruction, similar to
Canvas.destroying . |
int |
getDragStartDistance()
Number of pixels the cursor needs to move before the EventHandler starts a drag operation.
|
DrawGroup |
getDrawGroup()
DrawGroup this drawItem is a member of. |
DrawItem |
getDrawItemAutoChild(java.lang.String autoChildName)
Returns the
DrawItem AutoChild named autoChildName if already created. |
DrawPane |
getDrawPane()
|
java.lang.String |
getDrawPaneAsString()
|
java.lang.String |
getEditProxyConstructor()
Default class used to construct the
EditProxy for this component when the component is
first placed into edit mode . |
ArrowStyle |
getEndArrow()
Style of arrow head to draw at the end of the line or path.
|
DrawKnob |
getEndKnob()
If this item is showing
KnobType.ENDPOINT control knobs , this attribute specifies the AutoChild for the
DrawKnob for end point of current drawItem. |
boolean |
getEventOpaque()
Should events inside this DrawItem be attributed to it regardless of which pixels are actually set, if no fill is
specified? If set for DrawItems that aren't closed, will capture events occurring in the region that would filled if a
fill were specified.
|
java.lang.String |
getFillColor()
Fill color to use for shapes.
|
Gradient |
getFillGradient()
Fill gradient to use for shapes.
|
java.lang.String |
getFillGradientAsString()
Fill gradient to use for shapes.
|
float |
getFillOpacity()
Opacity of the fillColor, as a number between 0 (transparent) and 1 (opaque).
|
FormItem |
getFormItemAutoChild(java.lang.String autoChildName)
Returns the
FormItem AutoChild named autoChildName if already created. |
int |
getHoverDelay()
If
this.canHover is true, how long should the mouse be kept over this widget before the hover event is
fired |
java.lang.String |
getHoverHTML()
If
showHover is true, when the user holds the mouse
over this DrawItem for long enough to trigger a hover event, a hover canvas is shown by default. |
java.lang.Boolean |
getKeepInParentRect()
Constrains drag-resizing and drag-repositioning of this draw item to either the current visible area of the
draw pane or an arbitrary bounding box (if set to an array of the form
[left, top, left + width, top + height] ). |
KnobType[] |
getKnobs()
Array of control knobs to display for this item.
|
LineCap |
getLineCap()
Style of drawing the endpoints of a line.
|
java.lang.String |
getLineColor()
Line color
|
float |
getLineOpacity()
Opacity for lines, as a number between 0 (transparent) and 1 (opaque).
|
LinePattern |
getLinePattern()
Pattern for lines, eg "solid" or "dash".
|
int |
getLineWidth()
Pixel width for lines.
|
com.smartgwt.logicalstructure.core.LogicalStructureObject |
getLogicalStructure()
Getter implementing the
LogicalStructure interface,
which supports Eclipse's logical structure debugging facility. |
DrawKnob |
getMoveKnob()
If this item is showing
KnobType.MOVE control knobs , this attribute specifies the AutoChild for the
DrawKnob that allows a user to move the DrawItem with help of a knob located
at moveKnobPoint . |
int[] |
getMoveKnobOffset()
If this item is showing a
"move" control
knob , this attribute allows you to specify an offset in pixels from the moveKnobPoint for the move knob. |
MoveKnobPoint |
getMoveKnobPoint()
If this item is showing a
KnobType.MOVE control knob , this attribute specifies where the knob should
appear with respect to the draw item. |
static DrawItem |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
int |
getPageLeft()
Returns the page-relative left coordinate of the widget on the page, in pixels.
|
int |
getPageTop()
Returns the page-relative top coordinate of the widget on the page, in pixels
|
java.util.Map |
getPaletteDefaults()
This method returns a Map of config properties suitable for use as the "defaults"
attribute of a
PaletteNode . |
java.lang.String |
getPrompt()
Default
hover HTML that is displayed in the global
hover canvas if the user hovers over this DrawItem and showHover is true. |
java.lang.String[] |
getProportionalResizeModifiers()
If
proportionalResizing is set to
ProportionalResizeMode.MODIFIER or
ProportionalResizeMode.MODIFIER_OFF then proportional resizing of the DrawItem
is activated or deactivated, respectively, whenever at least one key in this set of modifier keys is pressed. |
ProportionalResizeMode |
getProportionalResizing()
This property specifies the conditions for when proportional resizing is used.
|
static DrawItem |
getRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
int[] |
getResizeBoundingBox()
Returns the bounding box of the shape reflected by the
resize outline shown when dragging the resize knobs . |
java.lang.Double[] |
getResizeBoundingBoxAsDouble()
Returns the bounding box of the shape reflected by the
resize outline shown when dragging the resize knobs . |
ResizeKnobPoint[] |
getResizeKnobPoints()
If this item is showing
KnobType.RESIZE control knobs , this attribute specifies the points with respect
to the draw item where resize knobs should appear. |
DrawRect |
getResizeOutline()
If this item is showing
KnobType.RESIZE control knobs , this attribute specifies the AutoChild for the
DrawRect that draws a rectangle frame which connects all resize knobs of
current DrawItem. |
boolean |
getResizeViaLocalTransformOnly()
If this DrawItem is showing
KnobType.RESIZE control knobs , should resizing the shape solely update the local
transform (for example, the DrawItem's scale or translation )?. |
DrawKnob |
getRotateKnob()
If this item is showing
KnobType.ROTATE control knobs , this attribute specifies the AutoChild for the
DrawKnob that allows a user to rotate the DrawItem with help of a knob
located above. |
float |
getRotation()
Deprecated.
|
double |
getRotationAsDouble()
Rotation in degrees about the
center point . |
float[] |
getScale()
Array holds 2 values representing scaling along x and y dimensions.
|
Shadow |
getShadow()
Shadow used for all DrawItem subtypes.
|
boolean |
getShowHover()
If
canHover is true, should we show the global hover
canvas by default when the user hovers over this DrawItem? |
boolean |
getShowResizeOutline()
If this item is showing
KnobType.RESIZE control knobs will the resize outline be shown or not. |
boolean |
getShowTitleLabelBackground()
If the
titleLabel is showing, should the titleLabelBackground be created and placed behind
the titleLabel ? |
DrawKnob |
getSideResizeKnob()
Note : This API is non-functional (always returns null) and exists only to make
you aware that this MultiAutoChild exists.
|
ArrowStyle |
getStartArrow()
Style of arrow head to draw at the beginning of the line or path.
|
DrawKnob |
getStartKnob()
If this item is showing
KnobType.STARTPOINT control knobs , this attribute specifies the AutoChild for the
DrawKnob for start point of current drawItem. |
void |
getSvgString()
Generates a string containing the SVG source of this DrawItem.
|
java.lang.String |
getTitle()
A string to show at the
center point of this
DrawItem . |
boolean |
getTitleAutoFit()
Whether the
titleLabel should be scaled to the
maximum possible size that fits inside the bounds of this item. |
int |
getTitleAutoFitMargin()
Specifies margin between label and item edges when using
titleAutoFit . |
TitleAutoFitRotationMode |
getTitleAutoFitRotationMode()
Whether to rotate the
titleLabel 90 degrees clockwise
while trying to maximize its size in accordance with titleAutoFit . |
DrawLabel |
getTitleLabel()
|
DrawRect |
getTitleLabelBackground()
When the
titleLabel is showing and showTitleLabelBackground is true ,
this DrawRect AutoChild is created and placed behind the
titleLabel . |
int |
getTitleLabelPadding()
If the
titleLabelBackground is visible, how
much padding should be left between the bounds of the titleLabel and the edges of the titleLabelBackground ? |
TitleRotationMode |
getTitleRotationMode()
The mode in which the
titleLabel (if shown) is
rotated with this draw item. |
float[] |
getTranslate()
Array holds two values representing translation along the x and y dimensions.
|
com.google.gwt.canvas.client.Canvas |
getUnderlyingGWTCanvas()
Returns the GWT Canvas associated with this DrawItem.
|
boolean |
getUseSimpleTransform()
|
double |
getXShearFactor()
The slope of an x-shearing transformation applied to this DrawItem.
|
double |
getYShearFactor()
The slope of a y-shearing transformation applied to this DrawItem.
|
java.lang.Integer |
getZIndex()
|
void |
hide()
Hide this drawItem.
|
void |
hideAllKnobs()
Hides all control knobs for this drawItem.
|
void |
hideKnobs(KnobType... knobType)
Hides a set of control knobs for this drawItem.
|
void |
hideKnobs(KnobType knobType)
Hides a set of control knobs for this drawItem.
|
boolean |
hover()
If
canHover is true for this DrawItem, the hover()
string method will be fired when the user hovers over this DrawItem. |
boolean |
isInBounds(int x,
int y)
Returns true if the given point in the drawing coordinate system, when converted to coordinates in this DrawItem's local
coordinate system, is within the
bounding box of
this DrawItem's shape. |
boolean |
isPointInPath(int x,
int y)
Returns true if the given point in the drawing coordinate system is within this DrawItem's shape, taking into account
local transforms.
|
void |
moveBy(int dX,
int dY)
Move the shape by the specified deltas for the left and top coordinate.
|
void |
moveTo(java.lang.Integer left,
java.lang.Integer top)
Move the DrawItem to the specified coordinates in the global coordinate system.
|
void |
resizeBy(int dX,
int dY)
Resize the shape by the specified deltas.
|
void |
resizeTo(java.lang.Integer width,
java.lang.Integer height)
Resize to the specified size
|
void |
rotateBy(double degrees)
Rotate the shape by the relative rotation in degrees
|
void |
rotateTo(double degrees)
Rotate the shape by the absolute rotation in degrees
|
void |
scaleBy(double x,
double y)
Scale the shape by the x, y multipliers
|
void |
scaleTo(double x,
double y)
Scale the shape by the x, y multipliers
|
void |
sendToBack()
|
DrawItem |
setAttribute(java.lang.String attribute,
BaseClass[] value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
java.lang.Boolean value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
DataClass[] value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
DataClass value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
java.util.Date value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
double value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
com.google.gwt.dom.client.Element value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
int[] value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
com.google.gwt.core.client.JavaScriptObject value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
java.util.Map value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
java.lang.String[] value,
boolean allowPostCreate) |
DrawItem |
setAttribute(java.lang.String attribute,
java.lang.String value,
boolean allowPostCreate)
Expose as public the setAttribute() methods of BaseWidget
|
DrawItem |
setAttribute(java.lang.String attribute,
ValueEnum[] value,
boolean allowPostCreate) |
void |
setAutoChildConstructor(java.lang.String autoChildName,
java.lang.String className)
Sets the SmartClient constructor for the AutoChild named
autoChildName . |
void |
setAutoChildProperties(java.lang.String autoChildName,
Canvas properties)
Sets the properties for creating a
Canvas AutoChild named autoChildName . |
void |
setAutoChildProperties(java.lang.String autoChildName,
DrawItem properties)
Sets the properties for creating a
DrawItem AutoChild named autoChildName . |
void |
setAutoChildProperties(java.lang.String autoChildName,
EditProxy properties)
Sets the properties for creating an AutoChild named
autoChildName . |
void |
setAutoChildProperties(java.lang.String autoChildName,
FormItem properties)
Sets the properties for creating a
FormItem AutoChild named autoChildName . |
void |
setAutoChildVisibility(java.lang.String autoChildName,
boolean visible)
Sets whether to create and show the AutoChild named
autoChildName . |
DrawItem |
setCanDrag(java.lang.Boolean canDrag)
Is this DrawItem draggable? If true, then the DrawItem can be drag-repositioned by the user.
|
DrawItem |
setCanHover(java.lang.Boolean canHover)
Will this DrawItem fire hover events when the user hovers over it?
|
void |
setCenterPoint(int left,
int top)
Change the center point for this DrawItem.
|
DrawItem |
setContextMenu(Menu contextMenu)
Context menu to show for this object, an instance of the Menu widget.
|
DrawItem |
setCursor(Cursor cursor)
If set, specifies the cursor to display when the mouse pointer is over this DrawItem.
|
static void |
setDefaultProperties(DrawItem drawItemProperties)
Class level method to set the default properties of this class.
|
DrawItem |
setDragStartDistance(int dragStartDistance)
Number of pixels the cursor needs to move before the EventHandler starts a drag operation.
|
DrawItem |
setDrawGroup(DrawGroup drawGroup)
DrawGroup this drawItem is a member of. |
DrawItem |
setDrawPane(DrawPane drawPane)
|
DrawItem |
setDrawPane(java.lang.String drawPane)
|
DrawItem |
setEditProxyConstructor(java.lang.String editProxyConstructor)
Default class used to construct the
EditProxy for this component when the component is
first placed into edit mode . |
DrawItem |
setEndArrow(ArrowStyle endArrow)
Style of arrow head to draw at the end of the line or path.
|
DrawItem |
setEventOpaque(boolean eventOpaque)
Should events inside this DrawItem be attributed to it regardless of which pixels are actually set, if no fill is
specified? If set for DrawItems that aren't closed, will capture events occurring in the region that would filled if a
fill were specified.
|
DrawItem |
setFillColor(java.lang.String fillColor)
Fill color to use for shapes.
|
DrawItem |
setFillGradient(Gradient fillGradient)
Fill gradient to use for shapes.
|
DrawItem |
setFillGradient(java.lang.String fillGradient)
Fill gradient to use for shapes.
|
DrawItem |
setFillOpacity(float fillOpacity)
Opacity of the fillColor, as a number between 0 (transparent) and 1 (opaque).
|
DrawItem |
setHoverDelay(int hoverDelay)
If
this.canHover is true, how long should the mouse be kept over this widget before the hover event is
fired |
DrawItem |
setKeepInParentRect(java.lang.Boolean keepInParentRect)
Constrains drag-resizing and drag-repositioning of this draw item to either the current visible area of the
draw pane or an arbitrary bounding box (if set to an array of the form
[left, top, left + width, top + height] ). |
DrawItem |
setKeepInParentRect(float... keepInParentRect)
Constrains drag-resizing and drag-repositioning of this draw item to either the current visible area of the
draw pane or an arbitrary bounding box (if set to an array of the form
[left, top, left + width, top + height] ). |
DrawItem |
setKnobs(KnobType... knobs)
Array of control knobs to display for this item.
|
DrawItem |
setLineCap(LineCap lineCap)
Style of drawing the endpoints of a line.
|
DrawItem |
setLineColor(java.lang.String lineColor)
Line color
If this method is called after the component has been drawn/initialized: Update lineColor for this drawItem. |
DrawItem |
setLineOpacity(float lineOpacity)
Opacity for lines, as a number between 0 (transparent) and 1 (opaque).
|
DrawItem |
setLinePattern(LinePattern linePattern)
Pattern for lines, eg "solid" or "dash".
|
DrawItem |
setLineWidth(int lineWidth)
Pixel width for lines.
|
com.smartgwt.logicalstructure.core.LogicalStructureObject |
setLogicalStructure(com.smartgwt.logicalstructure.widgets.drawing.DrawItemLogicalStructure s)
Setter implementing the
LogicalStructure interface,
which supports Eclipse's logical structure debugging facility. |
DrawItem |
setMoveKnobOffset(int[] moveKnobOffset)
If this item is showing a
"move" control
knob , this attribute allows you to specify an offset in pixels from the moveKnobPoint for the move knob. |
DrawItem |
setMoveKnobPoint(MoveKnobPoint moveKnobPoint)
If this item is showing a
KnobType.MOVE control knob , this attribute specifies where the knob should
appear with respect to the draw item. |
DrawItem |
setPrompt(java.lang.String prompt)
Default
hover HTML that is displayed in the global
hover canvas if the user hovers over this DrawItem and showHover is true. |
void |
setPropertyValue(java.lang.String propertyName,
java.lang.Object newValue)
Sets a property on this DrawItem, calling the appropriate setter method if one is found and is supported.
|
void |
setProportionalResizeModifiers(java.lang.String... proportionalResizeModifiers)
If
proportionalResizing is set to
ProportionalResizeMode.MODIFIER or
ProportionalResizeMode.MODIFIER_OFF then proportional resizing of the DrawItem
is activated or deactivated, respectively, whenever at least one key in this set of modifier keys is pressed. |
DrawItem |
setProportionalResizing(ProportionalResizeMode proportionalResizing)
This property specifies the conditions for when proportional resizing is used.
|
DrawItem |
setResizeKnobPoints(ResizeKnobPoint... resizeKnobPoints)
If this item is showing
KnobType.RESIZE control knobs , this attribute specifies the points with respect
to the draw item where resize knobs should appear. |
DrawItem |
setResizeViaLocalTransformOnly(boolean resizeViaLocalTransformOnly)
If this DrawItem is showing
KnobType.RESIZE control knobs , should resizing the shape solely update the local
transform (for example, the DrawItem's scale or translation )?. |
DrawItem |
setRotation(double rotation)
Rotation in degrees about the
center point . |
DrawItem |
setRotation(float rotation)
Deprecated.
|
DrawItem |
setScale(float[] scale)
Array holds 2 values representing scaling along x and y dimensions.
|
DrawItem |
setShadow(Shadow shadow)
Shadow used for all DrawItem subtypes.
|
DrawItem |
setShapeData(java.util.Map shapeData)
An opaque object specifying the local transformation that should be applied to this
DrawItem , obtained
through a call to getShapeData() . |
DrawItem |
setShowHover(boolean showHover)
If
canHover is true, should we show the global hover
canvas by default when the user hovers over this DrawItem? |
DrawItem |
setShowResizeOutline(boolean showResizeOutline)
If this item is showing
KnobType.RESIZE control knobs will the resize outline be shown or not. |
DrawItem |
setShowTitleLabelBackground(boolean showTitleLabelBackground)
If the
titleLabel is showing, should the titleLabelBackground be created and placed behind
the titleLabel ? |
DrawItem |
setStartArrow(ArrowStyle startArrow)
Style of arrow head to draw at the beginning of the line or path.
|
void |
setTitle(java.lang.String title)
A string to show at the
center point of this
DrawItem . |
DrawItem |
setTitleAutoFit(boolean titleAutoFit)
Whether the
titleLabel should be scaled to the
maximum possible size that fits inside the bounds of this item. |
DrawItem |
setTitleAutoFitMargin(int titleAutoFitMargin)
Specifies margin between label and item edges when using
titleAutoFit . |
DrawItem |
setTitleAutoFitRotationMode(TitleAutoFitRotationMode titleAutoFitRotationMode)
Whether to rotate the
titleLabel 90 degrees clockwise
while trying to maximize its size in accordance with titleAutoFit . |
DrawItem |
setTitleLabelPadding(int titleLabelPadding)
If the
titleLabelBackground is visible, how
much padding should be left between the bounds of the titleLabel and the edges of the titleLabelBackground ? |
DrawItem |
setTitleRotationMode(TitleRotationMode titleRotationMode)
The mode in which the
titleLabel (if shown) is
rotated with this draw item. |
DrawItem |
setTranslate(float[] translate)
Array holds two values representing translation along the x and y dimensions.
|
DrawItem |
setUseSimpleTransform(boolean useSimpleTransform)
|
DrawItem |
setXShearFactor(double xShearFactor)
The slope of an x-shearing transformation applied to this DrawItem.
|
DrawItem |
setYShearFactor(double yShearFactor)
The slope of a y-shearing transformation applied to this DrawItem.
|
DrawItem |
setZIndex(java.lang.Integer zIndex)
|
void |
show()
Make this drawItem visible.
|
void |
showAllKnobs()
Shows all supported control knobs for this drawItem.
|
void |
showKnobs(KnobType... knobType)
Shows a set of control knobs for this drawItem.
|
void |
showKnobs(KnobType knobType)
Shows a set of control knobs for this drawItem.
|
boolean |
supportsEndArrow()
Does this DrawItem support
setEndArrow() ? For example,
this is false for DrawRect and DrawOval , and true for DrawLine . |
boolean |
supportsStartArrow()
Does this DrawItem support
setStartArrow() ? For
example, this is false for DrawRect and DrawOval , and true for DrawLine . |
addDrawHandler, addDynamicProperty, addDynamicProperty, addDynamicProperty, addDynamicProperty, applyFactoryProperties, clearDynamicProperty, completeCreation, destroy, doAddHandler, doInit, doOnRender, equals, error, errorIfNotCreated, getAttribute, getAttributeAsDateArray, getAttributeAsFloatArray, getAttributeAsIntArray, getAttributeAsObject, getAttributeAsRecord, getAttributeAsStringArray, getClassName, getConfig, getDOM, getHandlerCount, getID, getInnerHTML, getJsObj, getOrCreateJsObj, getScClassName, hasAutoAssignedID, hasDynamicProperty, hashCode, initNativeObject, internalSetID, internalSetID, isConfigOnly, isCreated, isDrawn, isFactoryCreated, onBind, onDestroy, onDraw, onInit, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setConfig, setConfigOnly, setDefaultProperties, setDragTracker, setFactoryCreated, setHtmlElement, setID, setJavaScriptObject, setLogicalStructure, setLogicalStructure, setNullProperty, setPosition, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setScClassName, toString
addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, doAttachChildren, doDetachChildren, fireEvent, getLayoutData, getParent, isAttached, isOrWasAttached, onAttach, onBrowserEvent, onDetach, onLoad, onUnload, removeFromParent, setLayoutData, sinkEvents, unsinkEvents
addStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, isVisible, isVisible, onEnsureDebugId, removeStyleDependentName, removeStyleName, resolvePotentialElement, setElement, setElement, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setVisible, setVisible, setWidth, sinkBitlessEvent
public DrawItem()
public DrawItem(com.google.gwt.core.client.JavaScriptObject jsObj)
public static DrawItem getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public java.util.Map getPaletteDefaults()
PaletteNode
. Use it when you need to
work with PaletteNodes indirectly, such when setting up
TileRecord
s that will be used in a
TilePalette
. See
the dev tools overview
for examples of how to
assemble and acquire a suitable defaults object when you are creating a PaletteNode
indirectlypublic static void changeAutoChildDefaults(java.lang.String autoChildName, Canvas defaults)
autoChildName
.autoChildName
- name of an AutoChild to customize the defaults for.defaults
- Canvas defaults to apply. These defaults override any existing properties
without destroying or wiping out non-overridden properties. For usage tips on this
param, see SGWTProperties
.AutoChildUsage
public static void changeAutoChildDefaults(java.lang.String autoChildName, FormItem defaults)
autoChildName
.autoChildName
- name of an AutoChild to customize the defaults for.defaults
- FormItem defaults to apply. These defaults override any existing properties
without destroying or wiping out non-overridden properties. For usage tips on this
param, see SGWTProperties
.AutoChildUsage
public static void changeAutoChildDefaults(java.lang.String autoChildName, DrawItem defaults)
autoChildName
.autoChildName
- name of an AutoChild to customize the defaults for.defaults
- DrawItem defaults to apply. These defaults override any existing properties
without destroying or wiping out non-overridden properties. For usage tips on this
param, see SGWTProperties
.AutoChildUsage
protected com.google.gwt.core.client.JavaScriptObject create()
create
in class BaseWidget
public DrawItem setCanDrag(java.lang.Boolean canDrag)
canDrag
.
Note : This is an advanced setting
canDrag
- new value for this.canDrag
. Default value is falseDrawItem
instance, for chaining setter callspublic java.lang.Boolean getCanDrag()
public DrawItem setCanHover(java.lang.Boolean canHover)
canHover
- New canHover value. Default value is nullDrawItem
instance, for chaining setter callssetShowHover(boolean)
public java.lang.Boolean getCanHover()
getShowHover()
public DrawItem setContextMenu(Menu contextMenu)
Note: if Canvas.destroy()
is called on a canvas, any specified context menu is not
automatically destroyed as well. This is in contrast to MenuButton
s which
automatically destroy their specified MenuButton.menu
by
default. The behavior is intentional as context menus are commonly reused across components.
contextMenu
- New contextMenu value. Default value is nullDrawItem
instance, for chaining setter callsShowContextMenuEvent
,
Cues overview and related methods
,
Context menus Examplepublic Menu getContextMenu()
Note: if Canvas.destroy()
is called on a canvas, any specified context menu is not
automatically destroyed as well. This is in contrast to MenuButton
s which
automatically destroy their specified MenuButton.menu
by
default. The behavior is intentional as context menus are commonly reused across components.
ShowContextMenuEvent
,
Cues overview and related methods
,
Context menus Examplepublic DrawKnob getCornerResizeKnob()
Using AutoChildren
for details.
If this item is showing KnobType.RESIZE
control knobs
, this attribute specifies the MultiAutoChild for
the DrawKnob
that allows a user to resize the DrawItem with help of knobs
located at corners of a bounding rectangle of current DrawItem. The default shape is a light teal circle.
public DrawItem setCursor(Cursor cursor)
Note : This is an advanced setting
cursor
- new cursor. Default value is nullDrawItem
instance, for chaining setter callspublic Cursor getCursor()
public java.lang.Boolean getDestroyed() throws java.lang.IllegalStateException
Canvas.destroyed
.
Note : This method should be called only after the widget has been rendered.
java.lang.IllegalStateException
- if this widget has not yet been rendered.public java.lang.Boolean getDestroying() throws java.lang.IllegalStateException
Canvas.destroying
.
Note : This method should be called only after the widget has been rendered.
java.lang.IllegalStateException
- if this widget has not yet been rendered.public DrawItem setDragStartDistance(int dragStartDistance)
Note : This is an advanced setting
dragStartDistance
- New dragStartDistance value. Default value is 5DrawItem
instance, for chaining setter callsDrag and Drop
public int getDragStartDistance()
Drag and Drop
public DrawItem setDrawGroup(DrawGroup drawGroup) throws java.lang.IllegalStateException
DrawGroup
this drawItem is a member of.drawGroup
- New drawGroup value. Default value is nullDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic DrawGroup getDrawGroup()
DrawGroup
this drawItem is a member of.public DrawItem setDrawPane(DrawPane drawPane)
DrawPane
or global ID
of
the DrawPane this drawItem should draw in. If this item has a DrawGroup
,
the drawGroup's drawPane is automatically used.
If this method is called after the component has been drawn/initialized:
Setter for drawPane
.
drawPane
- new value for this.drawPane
. Default value is nullDrawItem
instance, for chaining setter callspublic DrawPane getDrawPane()
DrawPane
or global ID
of
the DrawPane this drawItem should draw in. If this item has a DrawGroup
,
the drawGroup's drawPane is automatically used.
public DrawItem setDrawPane(java.lang.String drawPane)
DrawPane
or global ID
of
the DrawPane this drawItem should draw in. If this item has a DrawGroup
,
the drawGroup's drawPane is automatically used.
If this method is called after the component has been drawn/initialized:
Setter for drawPane
.
drawPane
- new value for this.drawPane
. Default value is nullDrawItem
instance, for chaining setter callspublic java.lang.String getDrawPaneAsString()
DrawPane
or global ID
of
the DrawPane this drawItem should draw in. If this item has a DrawGroup
,
the drawGroup's drawPane is automatically used.
public DrawItem setEditProxyConstructor(java.lang.String editProxyConstructor) throws java.lang.IllegalStateException
EditProxy
for this component when the component is
first placed into edit mode
.editProxyConstructor
- New editProxyConstructor value. Default value is "DrawItemEditProxy"DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdSCClassName
public java.lang.String getEditProxyConstructor()
EditProxy
for this component when the component is
first placed into edit mode
.SCClassName
public DrawItem setEndArrow(ArrowStyle endArrow)
NOTE: Not all DrawItem classes support arrowheads. You can use supportsEndArrow()
to dynamically check whether a DrawItem instance supports this method.
endArrow
- style of arrow to use. Default value is nullDrawItem
instance, for chaining setter callspublic ArrowStyle getEndArrow()
public DrawKnob getEndKnob() throws java.lang.IllegalStateException
KnobType.ENDPOINT
control knobs
, this attribute specifies the AutoChild for the
DrawKnob
for end point of current drawItem.
This component is an AutoChild named "endKnob". For an overview of how to use and
configure AutoChildren, see Using AutoChildren
.
java.lang.IllegalStateException
- if this widget has not yet been rendered.public DrawItem setEventOpaque(boolean eventOpaque) throws java.lang.IllegalStateException
Note: this property must be true if you're writing to an HTML5 <canvas> element directly in your code (only
applies to DrawingType
DrawingType.BITMAP
).
Note : This is an advanced setting
eventOpaque
- New eventOpaque value. Default value is variesDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdsetFillColor(java.lang.String)
,
setFillOpacity(float)
,
DrawPane.getBitmap()
public boolean getEventOpaque()
Note: this property must be true if you're writing to an HTML5 <canvas> element directly in your code (only
applies to DrawingType
DrawingType.BITMAP
).
getFillColor()
,
getFillOpacity()
,
DrawPane.getBitmap()
public DrawItem setFillColor(java.lang.String fillColor)
public java.lang.String getFillColor()
CSSColor
public DrawItem setFillGradient(Gradient fillGradient)
DrawPane.addGradient()
. Otherwise it expects one of SimpleGradient
, LinearGradient
or RadialGradient
.
public Gradient getFillGradient()
DrawPane.addGradient()
. Otherwise it expects one of SimpleGradient
, LinearGradient
or RadialGradient
.Gradient
public DrawItem setFillGradient(java.lang.String fillGradient)
DrawPane.addGradient()
. Otherwise it expects one of SimpleGradient
, LinearGradient
or RadialGradient
.
public java.lang.String getFillGradientAsString()
DrawPane.addGradient()
. Otherwise it expects one of SimpleGradient
, LinearGradient
or RadialGradient
.Gradient
public DrawItem setFillOpacity(float fillOpacity)
fillOpacity
- new opacity, as a number between 0 (transparent) and 1 (opaque). Default value is 1.0DrawItem
instance, for chaining setter callspublic float getFillOpacity()
public DrawItem setHoverDelay(int hoverDelay)
this.canHover
is true, how long should the mouse be kept over this widget before the hover event is
firedhoverDelay
- New hoverDelay value. Default value is 300DrawItem
instance, for chaining setter callssetCanHover(java.lang.Boolean)
,
hover()
public int getHoverDelay()
this.canHover
is true, how long should the mouse be kept over this widget before the hover event is
firedgetCanHover()
,
hover()
public DrawItem setKeepInParentRect(java.lang.Boolean keepInParentRect)
draw pane
or an arbitrary bounding box (if set to an array of the form
[left, top, left + width, top + height]
). When using a bounding box-type argument the left/top values can
be negative, or the width/height values can be greater than the dimensions of the viewable area, to allow positioning or
resizing the draw item beyond the confines of the draw pane. Note: keepInParentRect affects only user drag interactions, not programmatic moves or resizes.
Note : This is an advanced setting
keepInParentRect
- New keepInParentRect value. Default value is nullDrawItem
instance, for chaining setter callspublic java.lang.Boolean getKeepInParentRect()
draw pane
or an arbitrary bounding box (if set to an array of the form
[left, top, left + width, top + height]
). When using a bounding box-type argument the left/top values can
be negative, or the width/height values can be greater than the dimensions of the viewable area, to allow positioning or
resizing the draw item beyond the confines of the draw pane. Note: keepInParentRect affects only user drag interactions, not programmatic moves or resizes.
public DrawItem setKeepInParentRect(float... keepInParentRect)
draw pane
or an arbitrary bounding box (if set to an array of the form
[left, top, left + width, top + height]
). When using a bounding box-type argument the left/top values can
be negative, or the width/height values can be greater than the dimensions of the viewable area, to allow positioning or
resizing the draw item beyond the confines of the draw pane. Note: keepInParentRect affects only user drag interactions, not programmatic moves or resizes.
Note : This is an advanced setting
keepInParentRect
- New keepInParentRect value. Default value is nullDrawItem
instance, for chaining setter callspublic DrawItem setKnobs(KnobType... knobs) throws java.lang.IllegalStateException
KnobType
specified in this array
will turn on UI element(s) allowing the user to manipulate this drawItem. To update the set of knobs at runtime use
showKnobs()
and hideKnobs()
. NOTE: Unless otherwise documented,
DrawItem types only support KnobType.RESIZE
and KnobType.MOVE
knobs.
knobs
- New knobs value. Default value is nullDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic KnobType[] getKnobs()
KnobType
specified in this array
will turn on UI element(s) allowing the user to manipulate this drawItem. To update the set of knobs at runtime use
showKnobs()
and hideKnobs()
. NOTE: Unless otherwise documented,
DrawItem types only support KnobType.RESIZE
and KnobType.MOVE
knobs.
public DrawItem setLineCap(LineCap lineCap)
Note that for dashed and dotted lines, the lineCap style affects each dash
or dot.
If this method is called after the component has been drawn/initialized:
Update lineCap for this drawItem.
lineCap
- new lineCap to use. Default value is "round"DrawItem
instance, for chaining setter callspublic LineCap getLineCap()
Note that for dashed and dotted lines, the lineCap style affects each dash or dot.
public DrawItem setLineColor(java.lang.String lineColor)
public java.lang.String getLineColor()
CSSColor
public DrawItem setLineOpacity(float lineOpacity)
lineOpacity
- new opacity, as a number between 0 (transparent) and 1 (opaque). Default value is 1.0DrawItem
instance, for chaining setter callspublic float getLineOpacity()
public DrawItem setLinePattern(LinePattern linePattern)
Note that support in old browsers, such as Internet Explorer versions
before IE11, is limited for drawingType
"bitmap" to
items with straight edges - DrawLine
s, DrawPath
s, and DrawRect
s with no
rounding
.
If this method is called after the component has been drawn/initialized:
Update linePattern for this drawItem.
linePattern
- new linePattern to use. Default value is "solid"DrawItem
instance, for chaining setter callspublic LinePattern getLinePattern()
Note that support in old browsers, such as Internet Explorer versions
before IE11, is limited for drawingType
"bitmap" to
items with straight edges - DrawLine
s, DrawPath
s, and DrawRect
s with no
rounding
.
public DrawItem setLineWidth(int lineWidth)
lineWidth
- new pixel lineWidth. Default value is 3DrawItem
instance, for chaining setter callspublic int getLineWidth()
public DrawKnob getMoveKnob() throws java.lang.IllegalStateException
KnobType.MOVE
control knobs
, this attribute specifies the AutoChild for the
DrawKnob
that allows a user to move the DrawItem with help of a knob located
at moveKnobPoint
. Default move knob shape is green
circle.
This component is an AutoChild named "moveKnob". For an overview of how to use and
configure AutoChildren, see Using AutoChildren
.
java.lang.IllegalStateException
- if this widget has not yet been rendered.public DrawItem setMoveKnobOffset(int[] moveKnobOffset)
"move"
control
knob
, this attribute allows you to specify an offset in pixels from the moveKnobPoint
for the move knob. Offset should be
specified as a 2-element array of [left offset, top offset]. This offset overrides the built-in offset used when
showing both resize and move knobs.
If this method is called after the component has been drawn/initialized:
Setter for moveKnobOffset
.
Note : This is an advanced setting
moveKnobOffset
- the new move knob offset. This is a 2-element array of [left offset, top offset]. If null, then new int[] {0,
0}
is assumed. Default value is nullDrawItem
instance, for chaining setter callssetMoveKnobPoint(com.smartgwt.client.types.MoveKnobPoint)
public int[] getMoveKnobOffset()
"move"
control
knob
, this attribute allows you to specify an offset in pixels from the moveKnobPoint
for the move knob. Offset should be
specified as a 2-element array of [left offset, top offset]. This offset overrides the built-in offset used when showing both resize and move knobs.
getMoveKnobPoint()
public DrawItem setMoveKnobPoint(MoveKnobPoint moveKnobPoint) throws java.lang.IllegalStateException
KnobType.MOVE
control knob
, this attribute specifies where the knob should
appear with respect to the draw item. The resize and move knobs show at the same position by default. However, when
both knobs are shown the move knob is offset slightly to allow access to both. This position can be adjusted manually
with moveKnobOffset
.
moveKnobPoint
- New moveKnobPoint value. Default value is "TL"DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdsetMoveKnobOffset(int[])
public MoveKnobPoint getMoveKnobPoint()
KnobType.MOVE
control knob
, this attribute specifies where the knob should
appear with respect to the draw item. The resize and move knobs show at the same position by default. However, when
both knobs are shown the move knob is offset slightly to allow access to both. This position can be adjusted manually
with moveKnobOffset
.
getMoveKnobOffset()
public DrawItem setPrompt(java.lang.String prompt)
hover HTML
that is displayed in the global
hover canvas if the user hovers over this DrawItem and showHover
is true.prompt
- New prompt value. Default value is nullDrawItem
instance, for chaining setter callsHTMLString
public java.lang.String getPrompt()
hover HTML
that is displayed in the global
hover canvas if the user hovers over this DrawItem and showHover
is true.HTMLString
public DrawItem setProportionalResizing(ProportionalResizeMode proportionalResizing) throws java.lang.IllegalStateException
By default the DrawItem is forced to
only resize proportionally while any modifier key specified in proportionalResizeModifiers
is pressed.
For example, the DrawItem will change its width and height by the same percentage as long as the "Shift" key is held
down.
Note that this property only has an effect if the DrawItem is showing KnobType.RESIZE
control knobs
.
proportionalResizing
- New proportionalResizing value. Default value is "modifier"DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic ProportionalResizeMode getProportionalResizing()
By default the DrawItem is forced to
only resize proportionally while any modifier key specified in proportionalResizeModifiers
is pressed.
For example, the DrawItem will change its width and height by the same percentage as long as the "Shift" key is held
down.
Note that this property only has an effect if the DrawItem is showing KnobType.RESIZE
control knobs
.
public DrawItem setResizeKnobPoints(ResizeKnobPoint... resizeKnobPoints) throws java.lang.IllegalStateException
KnobType.RESIZE
control knobs
, this attribute specifies the points with respect
to the draw item where resize knobs should appear.resizeKnobPoints
- New resizeKnobPoints value. Default value is ["TL","TR","BL","BR","T","R","B","L"]DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic ResizeKnobPoint[] getResizeKnobPoints()
KnobType.RESIZE
control knobs
, this attribute specifies the points with respect
to the draw item where resize knobs should appear.public DrawRect getResizeOutline() throws java.lang.IllegalStateException
KnobType.RESIZE
control knobs
, this attribute specifies the AutoChild for the
DrawRect
that draws a rectangle frame which connects all resize knobs of
current DrawItem.
This component is an AutoChild named "resizeOutline". For an overview of how to use and
configure AutoChildren, see Using AutoChildren
.
java.lang.IllegalStateException
- if this widget has not yet been rendered.public DrawItem setResizeViaLocalTransformOnly(boolean resizeViaLocalTransformOnly) throws java.lang.IllegalStateException
KnobType.RESIZE
control knobs
, should resizing the shape solely update the local
transform (for example, the DrawItem's scale
or translation
)?. The default is false
, which
means that the DrawItem is allowed to modify its shape properties in order to fit within a given width and height. Some
examples:
DrawOval
might decrease its radius
when resized to a smaller size.DrawPath
might change its points
to lengthen all line segments in the path by some
proportion so that it fits into a larger size.line width
even as it is being resized. If this property
is set to true
then all visual aspects of the DrawItem, including the line width and the fill, will be
magnified or reduced during resizes as if the DrawItem were placed under a lens.
resizeViaLocalTransformOnly
- New resizeViaLocalTransformOnly value. Default value is falseDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic boolean getResizeViaLocalTransformOnly()
KnobType.RESIZE
control knobs
, should resizing the shape solely update the local
transform (for example, the DrawItem's scale
or translation
)?. The default is false
, which
means that the DrawItem is allowed to modify its shape properties in order to fit within a given width and height. Some
examples:
DrawOval
might decrease its radius
when resized to a smaller size.DrawPath
might change its points
to lengthen all line segments in the path by some
proportion so that it fits into a larger size.line width
even as it is being resized. If this property
is set to true
then all visual aspects of the DrawItem, including the line width and the fill, will be
magnified or reduced during resizes as if the DrawItem were placed under a lens.
public DrawKnob getRotateKnob() throws java.lang.IllegalStateException
KnobType.ROTATE
control knobs
, this attribute specifies the AutoChild for the
DrawKnob
that allows a user to rotate the DrawItem with help of a knob
located above. Default rotate knob shape is green circle.
This component is an AutoChild named "rotateKnob". For an overview of how to use and
configure AutoChildren, see Using AutoChildren
.
java.lang.IllegalStateException
- if this widget has not yet been rendered.public DrawItem setRotation(float rotation) throws java.lang.IllegalStateException
GwtFloatVsDouble
center point
. The positive
direction is clockwise.rotation
- New rotation value. Default value is 0.0DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic float getRotation()
GwtFloatVsDouble
center point
. The positive
direction is clockwise.public DrawItem setRotation(double rotation) throws java.lang.IllegalStateException
center point
. The positive
direction is clockwise.rotation
- New rotation value. Default value is 0.0DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic double getRotationAsDouble()
center point
. The positive
direction is clockwise.public DrawItem setScale(float[] scale) throws java.lang.IllegalStateException
Note : This is an advanced setting
scale
- New scale value. Default value is nullDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic float[] getScale()
public DrawItem setShadow(Shadow shadow)
shadow
- new shadow. Default value is nullDrawItem
instance, for chaining setter callspublic Shadow getShadow()
public DrawItem setShapeData(java.util.Map shapeData) throws java.lang.IllegalStateException
DrawItem
, obtained
through a call to getShapeData()
. Note: if
this property is specified, you should avoid also specifying a translate
, scale
, xShearFactor
, yShearFactor
, or rotation
.
shapeData
- New shapeData value. Default value is nullDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic DrawItem setShowHover(boolean showHover)
canHover
is true, should we show the global hover
canvas by default when the user hovers over this DrawItem?showHover
- New showHover value. Default value is trueDrawItem
instance, for chaining setter callsgetHoverHTML()
public boolean getShowHover()
canHover
is true, should we show the global hover
canvas by default when the user hovers over this DrawItem?getHoverHTML()
public DrawItem setShowResizeOutline(boolean showResizeOutline)
KnobType.RESIZE
control knobs
will the resize outline be shown or not.showResizeOutline
- New showResizeOutline value. Default value is trueDrawItem
instance, for chaining setter callscom.smartgwt.client.widgets.drawing.DrawItem#setResizeOutline
public boolean getShowResizeOutline()
KnobType.RESIZE
control knobs
will the resize outline be shown or not.getResizeOutline()
public DrawItem setShowTitleLabelBackground(boolean showTitleLabelBackground) throws java.lang.IllegalStateException
titleLabel
is showing, should the titleLabelBackground
be created and placed behind
the titleLabel
? This defaults to true for DrawSector
s and
shapes that are not commonly filled (e.g. DrawLine
s).
Note : This is an advanced setting
showTitleLabelBackground
- New showTitleLabelBackground value. Default value is falseDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic boolean getShowTitleLabelBackground()
titleLabel
is showing, should the titleLabelBackground
be created and placed behind
the titleLabel
? This defaults to true for DrawSector
s and
shapes that are not commonly filled (e.g. DrawLine
s).
public DrawKnob getSideResizeKnob()
Using AutoChildren
for details.
If this item is showing KnobType.RESIZE
control knobs
, this attribute specifies the MultiAutoChild for
the DrawKnob
that allows a user to resize the DrawItem with help of knobs
located at centers of edges of a bounding rectangle of current DrawItem. The default shape is a light teal square.
public DrawItem setStartArrow(ArrowStyle startArrow)
NOTE: Not all DrawItem classes support arrowheads. You can use supportsStartArrow()
to dynamically check whether a DrawItem instance supports this method.
startArrow
- style of arrow to use. Default value is nullDrawItem
instance, for chaining setter callspublic ArrowStyle getStartArrow()
public DrawKnob getStartKnob() throws java.lang.IllegalStateException
KnobType.STARTPOINT
control knobs
, this attribute specifies the AutoChild for the
DrawKnob
for start point of current drawItem.
This component is an AutoChild named "startKnob". For an overview of how to use and
configure AutoChildren, see Using AutoChildren
.
java.lang.IllegalStateException
- if this widget has not yet been rendered.public void setTitle(java.lang.String title)
center point
of this
DrawItem
. When set to a non-null value (including an empty string), the titleLabel
DrawLabel
AutoChild will be created automatically and positioned at the center of
this DrawItem
.
If this method is called after the component has been drawn/initialized:
Setter for the title
of this DrawItem
.
Note : This is an advanced setting
setTitle
in class BaseWidget
title
- new title
. Default value is nullsetTitleRotationMode(com.smartgwt.client.types.TitleRotationMode)
public java.lang.String getTitle()
center point
of this
DrawItem
. When set to a non-null value (including an empty string), the titleLabel
DrawLabel
AutoChild will be created automatically and positioned at the center of
this DrawItem
.
getTitle
in class BaseWidget
getTitleRotationMode()
public DrawItem setTitleAutoFit(boolean titleAutoFit) throws java.lang.IllegalStateException
titleLabel
should be scaled to the
maximum possible size that fits inside the bounds of this item. Currently only DrawRect
s and DrawPolygon
s with 90
degree angles are supported. Note that titleAutoFit
isn't supported for rotated, sheared, or scaled DrawItem
s, and
that therefore the value of TitleRotationMode
, which relates to rotation of the item,
is ignored when this property is set. However, we do support having the label automatically rotate to run vertically if
there's more space - see titleAutoFitRotationMode
.
titleAutoFit
- New titleAutoFit value. Default value is falseDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdcom.smartgwt.client.widgets.drawing.DrawItem#setTitleLabel
public boolean getTitleAutoFit()
titleLabel
should be scaled to the
maximum possible size that fits inside the bounds of this item. Currently only DrawRect
s and DrawPolygon
s with 90
degree angles are supported. Note that titleAutoFit
isn't supported for rotated, sheared, or scaled DrawItem
s, and
that therefore the value of TitleRotationMode
, which relates to rotation of the item,
is ignored when this property is set. However, we do support having the label automatically rotate to run vertically if
there's more space - see titleAutoFitRotationMode
.
getTitleLabel()
public DrawItem setTitleAutoFitMargin(int titleAutoFitMargin) throws java.lang.IllegalStateException
titleAutoFit
.titleAutoFitMargin
- New titleAutoFitMargin value. Default value is 2DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdcom.smartgwt.client.widgets.drawing.DrawItem#setTitleLabel
public int getTitleAutoFitMargin()
titleAutoFit
.getTitleLabel()
public DrawItem setTitleAutoFitRotationMode(TitleAutoFitRotationMode titleAutoFitRotationMode) throws java.lang.IllegalStateException
titleLabel
90 degrees clockwise
while trying to maximize its size in accordance with titleAutoFit
. If automatic rotation is specified, the default, the label will be rotated if and only if it allows the
label to become larger.titleAutoFitRotationMode
- New titleAutoFitRotationMode value. Default value is "auto"DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdcom.smartgwt.client.widgets.drawing.DrawItem#setTitleLabel
,
setTitleAutoFit(boolean)
public TitleAutoFitRotationMode getTitleAutoFitRotationMode()
titleLabel
90 degrees clockwise
while trying to maximize its size in accordance with titleAutoFit
. If automatic rotation is specified, the default, the label will be rotated if and only if it allows the
label to become larger.getTitleLabel()
,
getTitleAutoFit()
public DrawLabel getTitleLabel() throws java.lang.IllegalStateException
title
is set, this AutoChild is created
automatically and positioned at the center
of this
DrawItem
. The titleLabel
moves with this DrawItem
and, depending on titleRotationMode
, can rotate with this DrawItem
as well.
The following passthrough
applies:
title
for DrawLabel.contents
.
Related to the
titleLabel
is the titleLabelBackground
which allows a border to be placed around the titleLabel
and/or a background added.
By default, shapes that are commonly filled such as DrawTriangle
s, with the
exception of DrawSector
s, do not show the titleLabelBackground
(see showTitleLabelBackground
).
This component is an AutoChild named "titleLabel". For an overview of how to use and
configure AutoChildren, see Using AutoChildren
.
java.lang.IllegalStateException
- if this widget has not yet been rendered.getShowTitleLabelBackground()
public DrawRect getTitleLabelBackground() throws java.lang.IllegalStateException
titleLabel
is showing and showTitleLabelBackground
is true
,
this DrawRect
AutoChild is created and placed behind the
titleLabel
.
This component is an AutoChild named "titleLabelBackground". For an overview of how to use and
configure AutoChildren, see Using AutoChildren
.
java.lang.IllegalStateException
- if this widget has not yet been rendered.getTitleLabelPadding()
public DrawItem setTitleLabelPadding(int titleLabelPadding) throws java.lang.IllegalStateException
titleLabelBackground
is visible, how
much padding should be left between the bounds of the titleLabel
and the edges of the titleLabelBackground
?
Note : This is an advanced setting
titleLabelPadding
- New titleLabelPadding value. Default value is 2DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic int getTitleLabelPadding()
titleLabelBackground
is visible, how
much padding should be left between the bounds of the titleLabel
and the edges of the titleLabelBackground
?public DrawItem setTitleRotationMode(TitleRotationMode titleRotationMode) throws java.lang.IllegalStateException
titleLabel
(if shown) is
rotated with this draw item.
Note : This is an advanced setting
titleRotationMode
- New titleRotationMode value. Default value is "neverRotate"DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdsetTitle(java.lang.String)
public TitleRotationMode getTitleRotationMode()
titleLabel
(if shown) is
rotated with this draw item.getTitle()
public DrawItem setTranslate(float[] translate) throws java.lang.IllegalStateException
Note : This is an advanced setting
translate
- New translate value. Default value is nullDrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic float[] getTranslate()
public DrawItem setUseSimpleTransform(boolean useSimpleTransform)
moved
or resized
, the transform is applied by manipulating the shape
coordinates, if possible, rather than by introducing scaling, shearing, rotation, or translation. This is only
supported currently for DrawRect
, DrawOval
, DrawDiamond
, DrawImage
, and DrawLabel
, and only if
no shearing is already present. Further, it's only possible to keep the transform simple if both axes are scaled by the
same amount during the resize (or end up at the same scale if the DrawItem is already scaled unevenly), unless the
rotation angle is a multiple of 90 degrees. For DrawPolygon
and other
shapes not based on a box (top/left/width/height), we can't safely just modify coordinates to effect a resize as we can
do for DrawRect
(and similar), so resizing will normally introduce or
modify the transform, potentially introducing scaling or shearing, rather than modifying coordinates. For such DrawItem
s, we avoid trying to manipulate the coordinates, in part, because there's
a danger that the floating point error may accumulate over time and warp the shape.
Note : This is an advanced setting
useSimpleTransform
- New useSimpleTransform value. Default value is trueDrawItem
instance, for chaining setter callsmoveTo(java.lang.Integer, java.lang.Integer)
,
moveBy(int, int)
,
resizeTo(java.lang.Integer, java.lang.Integer)
,
resizeBy(int, int)
public boolean getUseSimpleTransform()
moved
or resized
, the transform is applied by manipulating the shape
coordinates, if possible, rather than by introducing scaling, shearing, rotation, or translation. This is only
supported currently for DrawRect
, DrawOval
, DrawDiamond
, DrawImage
, and DrawLabel
, and only if
no shearing is already present. Further, it's only possible to keep the transform simple if both axes are scaled by the
same amount during the resize (or end up at the same scale if the DrawItem is already scaled unevenly), unless the
rotation angle is a multiple of 90 degrees. For DrawPolygon
and other
shapes not based on a box (top/left/width/height), we can't safely just modify coordinates to effect a resize as we can
do for DrawRect
(and similar), so resizing will normally introduce or
modify the transform, potentially introducing scaling or shearing, rather than modifying coordinates. For such DrawItem
s, we avoid trying to manipulate the coordinates, in part, because there's
a danger that the floating point error may accumulate over time and warp the shape.
moveTo(java.lang.Integer, java.lang.Integer)
,
moveBy(int, int)
,
resizeTo(java.lang.Integer, java.lang.Integer)
,
resizeBy(int, int)
public DrawItem setXShearFactor(double xShearFactor) throws java.lang.IllegalStateException
Note : This is an advanced setting
xShearFactor
- New xShearFactor value. Default value is 0.0DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic double getXShearFactor()
public DrawItem setYShearFactor(double yShearFactor) throws java.lang.IllegalStateException
Note : This is an advanced setting
yShearFactor
- New yShearFactor value. Default value is 0.0DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdpublic double getYShearFactor()
public DrawItem setZIndex(java.lang.Integer zIndex) throws java.lang.IllegalStateException
DrawPane
or DrawGroup
. null means
that the zIndex has not been resolved. Upon adding this draw item to a DrawPane
or DrawGroup
,
this item's zIndex will be resolved to the next higher auto-assigned zIndex. Note that this may still be less than
another item's zIndex if bringToFront()
was called on
that item.
If two items within the same DrawPane
or DrawGroup
have the same zIndex, then
they are stacked in the order in which they were added to the DrawPane
or DrawGroup
.
When
the DrawPane
's drawingType
is DrawingType.BITMAP
, zIndex, bringToFront()
, and sendToBack()
are not supported for
DrawLabel
s on iOS due to platform limitations.
If this method is called after the component has been drawn/initialized:
Setter for zIndex
.
zIndex
- new zIndex
. If null and this draw item is already in a DrawPane
or DrawGroup
,
then this item's zIndex will be set to the next higher auto-assigned zIndex. Note that when setting draw items'
zIndexes via this advanced API, the application should take over management of all draw items' zIndexes, and bringToFront()
/ sendToBack()
should not be used, as those APIs assume automatic
management of zIndexes. Default value is null
DrawItem
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the component has been createdZIndex overview and related methods
public java.lang.Integer getZIndex()
DrawPane
or DrawGroup
. null means
that the zIndex has not been resolved. Upon adding this draw item to a DrawPane
or DrawGroup
,
this item's zIndex will be resolved to the next higher auto-assigned zIndex. Note that this may still be less than
another item's zIndex if bringToFront()
was called on
that item.
If two items within the same DrawPane
or DrawGroup
have the same zIndex, then
they are stacked in the order in which they were added to the DrawPane
or DrawGroup
.
When
the DrawPane
's drawingType
is DrawingType.BITMAP
, zIndex, bringToFront()
, and sendToBack()
are not supported for
DrawLabel
s on iOS due to platform limitations.
zIndex
of this draw item. Default value is nullZIndex overview and related methods
public void bringToFront()
DrawPane
or DrawGroup
. When
the DrawPane
's drawingType
is DrawingType.BITMAP
, zIndex
,
bringToFront(), and sendToBack()
are not supported for
DrawLabel
s on iOS due to platform limitations.
public com.google.gwt.event.shared.HandlerRegistration addClickHandler(ClickHandler handler)
Notification fired when the user clicks on this DrawItem.
Note that if this item is part of a DrawGroup
, then the group's useGroupRect
setting affects whether this item receives
the notification. If useGroupRect is true, then this item will not receive the notification. Otherwise, the
item receives the notification and notification bubbles up to the group.
addClickHandler
in interface HasClickHandlers
handler
- the click handlerHandlerRegistration
used to remove this handlerpublic void dragResizeMove(java.lang.String position, java.lang.Integer x, java.lang.Integer y, java.lang.Integer dX, java.lang.Integer dY)
canDrag
is true and the control knobs
include "resize" knobs, then this notification
method will be fired when the user drag-resizes the draw item.position
- provides which knob of the resizeKnobPoints
was
draggedx
- new x-coordinate of the knoby
- new y-coordinate of the knobdX
- horizontal distance moveddY
- vertical distance movedpublic void draw()
drawPane
. NOTE:
For performance reasons, the DrawPane
may draw this item on a delay to allow multiple items to be added and
drawn at one time. The DrawPane.refreshNow()
API will
force this item to be drawn immediately.
draw
in class BaseWidget
public com.google.gwt.event.shared.HandlerRegistration addDrawEndHandler(DrawEndHandler handler)
Called when we finish drawing for this DrawItem to the DrawItem.drawPane
's underlying HTML5 <canvas> element. Only called if the DrawingType
is DrawingType.BITMAP
.
addDrawEndHandler
in interface HasDrawEndHandlers
handler
- the drawEnd handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addDrawStartHandler(DrawStartHandler handler)
Called when we start drawing for this DrawItem to the DrawItem.drawPane
's underlying HTML5 <canvas> element. Only called if the DrawingType
is DrawingType.BITMAP
.
addDrawStartHandler
in interface HasDrawStartHandlers
handler
- the drawStart handlerHandlerRegistration
used to remove this handlerpublic void erase()
To re-draw the
item within the DrawPane, call draw()
again, or use DrawPane.addDrawItem()
to move to another DrawGroup.
public Point getCenter()
bounding box
, but some item types may use a different
point. For example, DrawTriangle
uses the incenter of the triangle.public java.lang.String getHoverHTML()
showHover
is true, when the user holds the mouse
over this DrawItem for long enough to trigger a hover event, a hover canvas is shown by default. This method returns the
contents of that hover canvas. Default implementation returns prompt
- override for custom hover HTML. Note that returning
null
or an empty string will suppress the hover canvas altogether.HTMLString
public int getPageLeft()
Positioning overview and related methods
public int getPageTop()
Positioning overview and related methods
public void getSvgString()
NOTE: The generated SVG source assumes that the
default namespace is http://www.w3.org/2000/svg
and that namespace prefix xlink
refers to
namespace name http://www.w3.org/1999/xlink
.
public void hide()
public void hideAllKnobs()
knobs
to remove all knobTypes and clears any drawn knobs.public void hideKnobs(KnobType knobType)
knobs
to remove the specified knobType, and clears any drawn knobs for this knobType.knobType
- knobs to hidepublic void hideKnobs(KnobType... knobType)
knobs
to remove the specified knobType, and clears any drawn knobs for this knobType.knobType
- knobs to hidepublic boolean hover()
canHover
is true for this DrawItem, the hover()
string method will be fired when the user hovers over this DrawItem. If this method returns false, it will suppress the
default behavior of showing a hover canvas if showHover
is true.public boolean isInBounds(int x, int y)
bounding box
of
this DrawItem's shape. This method can be used to quickly check whether the given point is definitely not
within the DrawItem shape. To check whether the point is within the DrawItem shape, use the slower but exact isPointInPath()
method.
x
- X coordinate of the point in the drawing coordinate system.y
- Y coordinate of the point in the drawing coordinate system.public boolean isPointInPath(int x, int y)
x
- X coordinate of the test point.y
- Y coordinate of the test point.public com.google.gwt.event.shared.HandlerRegistration addMouseDownHandler(MouseDownHandler handler)
Notification fired when the user presses the left mouse button on this DrawItem.
Note that if this item is part of a
DrawGroup
, then the group's useGroupRect
setting affects whether this item receives
the notification. If useGroupRect is true, then this item will not receive the notification. Otherwise, the
item receives the notification and notification bubbles up to the group.
addMouseDownHandler
in interface HasMouseDownHandlers
handler
- the mouseDown handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addMouseMoveHandler(MouseMoveHandler handler)
Notification fired when the user moves the mouse over this DrawItem.
Note that if this item is part of a DrawGroup
, then the group's useGroupRect
setting affects whether this item receives
the notification. If useGroupRect is true, then this item will not receive the notification. Otherwise, the
item receives the notification and notification bubbles up to the group.
addMouseMoveHandler
in interface HasMouseMoveHandlers
handler
- the mouseMove handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addMouseOutHandler(MouseOutHandler handler)
Notification fired when the mouse leaves this DrawItem.
Note that if this item is part of a DrawGroup
, then the group's useGroupRect
setting affects whether this item receives
the notification. If useGroupRect is true, then this item will not receive the notification. Otherwise, the
item receives the notification and notification bubbles up to the group.
addMouseOutHandler
in interface HasMouseOutHandlers
handler
- the mouseOut handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addMouseOverHandler(MouseOverHandler handler)
Notification fired when the mouse enters this DrawItem.
Note that if this item is part of a DrawGroup
, then the group's useGroupRect
setting affects whether this item receives
the notification. If useGroupRect is true, then this item will not receive the notification. Otherwise, the
item receives the notification and notification bubbles up to the group.
addMouseOverHandler
in interface HasMouseOverHandlers
handler
- the mouseOver handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addMouseUpHandler(MouseUpHandler handler)
Notification fired when the user releases the left mouse button on this DrawItem.
Note that if this item is part of
a DrawGroup
, then the group's useGroupRect
setting affects whether this item receives
the notification. If useGroupRect is true, then this item will not receive the notification. Otherwise, the
item receives the notification and notification bubbles up to the group.
addMouseUpHandler
in interface HasMouseUpHandlers
handler
- the mouseUp handlerHandlerRegistration
used to remove this handlerpublic void moveBy(int dX, int dY)
dX
- change to left coordinate in pixelsdY
- change to top coordinate in pixelspublic com.google.gwt.event.shared.HandlerRegistration addMovedHandler(MovedHandler handler)
Notification method fired when this component is explicitly moved. Note that a component's position on the screen may
also be changed due to an ancestor being moved. The parentMoved()
method provides a notification entry point to catch that case as well.
addMovedHandler
in interface HasMovedHandlers
handler
- the moved handlerHandlerRegistration
used to remove this handlerpublic void moveTo(java.lang.Integer left, java.lang.Integer top)
resize bounding box
.left
- new left coordinate in pixelstop
- new top coordinate in pixelspublic com.google.gwt.event.shared.HandlerRegistration addDragMoveHandler(DragMoveHandler handler)
If DrawItem.canDrag
is true, this notification method
will be fired when the user drags the draw item.
addDragMoveHandler
in interface HasDragMoveHandlers
handler
- the dragMove handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addDragResizeMoveHandler(DragResizeMoveHandler handler)
If DrawItem.canDrag
is true and the control knobs
include "resize" knobs then this notification
method will be fired when the user drags the resize knobs of the draw item.
addDragResizeMoveHandler
in interface HasDragResizeMoveHandlers
handler
- the dragResizeMove handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addDragResizeStartHandler(DragResizeStartHandler handler)
If DrawItem.canDrag
is true and the control knobs
include "resize" knobs then this notification
method will be fired when the user starts to drag the resize knobs of the draw item.
addDragResizeStartHandler
in interface HasDragResizeStartHandlers
handler
- the dragResizeStart handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addDragResizeStopHandler(DragResizeStopHandler handler)
If DrawItem.canDrag
is true and the control knobs
include "resize" knobs then this notification
method will be fired when the user completes a drag on the resize knobs of the draw item.
addDragResizeStopHandler
in interface HasDragResizeStopHandlers
handler
- the dragResizeStop handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addDragStartHandler(DragStartHandler handler)
If DrawItem.canDrag
is true, this notification method
will be fired when the user starts to drag the draw item.
addDragStartHandler
in interface HasDragStartHandlers
handler
- the dragStart handlerHandlerRegistration
used to remove this handlerpublic com.google.gwt.event.shared.HandlerRegistration addDragStopHandler(DragStopHandler handler)
If DrawItem.canDrag
is true, this notification method
will be fired when the user completes a drag on the draw item.
addDragStopHandler
in interface HasDragStopHandlers
handler
- the dragStop handlerHandlerRegistration
used to remove this handlerpublic void resizeBy(int dX, int dY)
dX
- number of pixels to resize by horizontallydY
- number of pixels to resize by verticallypublic com.google.gwt.event.shared.HandlerRegistration addResizedHandler(ResizedHandler handler)
Method called whenever a DrawItem changes size.
addResizedHandler
in interface HasResizedHandlers
handler
- the resized handlerHandlerRegistration
used to remove this handlerpublic void resizeTo(java.lang.Integer width, java.lang.Integer height)
width
- new widthheight
- new heightpublic void rotateBy(double degrees)
degrees
- number of degrees to rotate from current orientation.public void rotateTo(double degrees)
degrees
- number of degrees to rotatepublic void scaleBy(double x, double y)
x
- scale in the x directiony
- scale in the y directionpublic void scaleTo(double x, double y)
x
- scale in the x directiony
- scale in the y directionpublic void sendToBack()
DrawPane
or DrawGroup
. When the
DrawPane
's drawingType
is DrawingType.BITMAP
, zIndex
,
bringToFront()
, and sendToBack() are not supported for
DrawLabel
s on iOS due to platform limitations.
public void setCenterPoint(int left, int top)
left
- X coordinate of the center point (in the global coordinate system).top
- Y coordinate of the center point (in the global coordinate system).public void setPropertyValue(java.lang.String propertyName, java.lang.Object newValue)
propertyName
- name of the property to setnewValue
- new value for the propertypublic void show()
public void showAllKnobs()
knobs
to include the supported knobTypes and if necessary draws
out the appropriate control knobs.public com.google.gwt.event.shared.HandlerRegistration addShowContextMenuHandler(ShowContextMenuHandler handler)
Executed when the right mouse button is clicked. The default implementation of this method auto-creates a Menu
from the Canvas.contextMenu
property on this component and then calls Menu.showContextMenu()
on it to show it.
If you want to show a standard context menu, you can simply define your Menu and set it as the contextMenu property on your component - you do not need to override this method.
If you want to do some other processing before showing a menu or do something else entirely, then you should override this method. Note that the return value from this method controls whether or not the native browser context menu is shown.
addShowContextMenuHandler
in interface HasShowContextMenuHandlers
handler
- the showContextMenu handlerHandlerRegistration
used to remove this handlerpublic void showKnobs(KnobType knobType)
knobs
to include the specified knobType, and if necessary draws out the appropriate control knobs.knobType
- knobs to showpublic void showKnobs(KnobType... knobType)
knobs
to include the specified knobType, and if necessary draws out the appropriate control knobs.knobType
- knobs to showpublic boolean supportsEndArrow()
setEndArrow()
? For example,
this is false for DrawRect
and DrawOval
, and true for DrawLine
.public boolean supportsStartArrow()
setStartArrow()
? For
example, this is false for DrawRect
and DrawOval
, and true for DrawLine
.public static void setDefaultProperties(DrawItem drawItemProperties)
Note: This method is intended for setting default attributes only and will affect all instances of the underlying class (including those automatically generated in JavaScript). This method should not be used to apply standard EventHandlers or override methods for a class - use a custom subclass instead. Calling this method after instances have been created can result in undefined behavior, since it bypasses any setters and a class instance may have already examined a particular property and not be expecting any changes through this route.
drawItemProperties
- properties that should be used as new defaults when instances of this class are createdSGWTProperties
public static DrawItem getById(java.lang.String ID)
ID
.ID
- global ID of the DrawItempublic static DrawItem getByJSObject(com.google.gwt.core.client.JavaScriptObject jsObj)
JavaScriptObject
.jsObj
- SmartClient object associated with Canvaspublic static DrawItem getRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public static float computeAngle(double px1, double py1, double px2, double py2)
GwtFloatVsDouble
px1
- X coordinate of v1py1
- Y coordinate of v1px2
- X coordinate of v2py2
- Y coordinate of v2public static double computeAngleAsDouble(double px1, double py1, double px2, double py2)
px1
- X coordinate of v1py1
- Y coordinate of v1px2
- X coordinate of v2py2
- Y coordinate of v2public java.lang.Double[] getBoundingBoxAsDouble()
public int[] getBoundingBox()
public java.lang.Double[] getResizeBoundingBoxAsDouble()
resize outline
shown when dragging the resize knobs
. This method is similar to getBoundingBoxAsDouble
except that the coordinates returned by this method are in the global coordinate system (described here
).getBoundingBoxAsDouble()
public int[] getResizeBoundingBox()
resize outline
shown when dragging the resize knobs
. This method is similar to getBoundingBox
except that the coordinates returned by this method are in the global coordinate system (described here
).getBoundingBox()
public void setAutoChildConstructor(java.lang.String autoChildName, java.lang.String className)
autoChildName
.autoChildName
- the name of the AutoChildclassName
- the SmartClient class name to use when constructing the AutoChild.AutoChildUsage
public void setAutoChildProperties(java.lang.String autoChildName, Canvas properties) throws java.lang.IllegalStateException
Canvas
AutoChild named autoChildName
.
properties
must not have already been created
(properties.isCreated()
must be false
).
NOTE: Overrides at override points are not applied to AutoChildren created from
properties
; that is, if the Java Class
of properties
overrides a Smart GWT override point, the custom method implementation will not be called.
java.lang.IllegalStateException
- if properties
has been created.AutoChildUsage
public void setAutoChildProperties(java.lang.String autoChildName, FormItem properties) throws java.lang.IllegalStateException
FormItem
AutoChild named autoChildName
.
properties
must not have already been created
(properties.isCreated()
must be false
).
NOTE: Overrides at override points are not applied to AutoChildren created from
properties
; that is, if the Java Class
of properties
overrides a Smart GWT override point, the custom method implementation will not be called.
java.lang.IllegalStateException
- if properties
has been created.AutoChildUsage
public void setAutoChildProperties(java.lang.String autoChildName, DrawItem properties) throws java.lang.IllegalStateException
DrawItem
AutoChild named autoChildName
.
properties
must not have already been created
(properties.isCreated()
must be false
).
NOTE: Overrides at override points are not applied to AutoChildren created from
properties
; that is, if the Java Class
of properties
overrides a Smart GWT override point, the custom method implementation will not be called.
java.lang.IllegalStateException
- if properties
has been created.AutoChildUsage
public void setAutoChildProperties(java.lang.String autoChildName, EditProxy properties) throws java.lang.IllegalStateException
autoChildName
.
properties
must not have already been created
(properties.isCreated()
must be false
).
java.lang.IllegalStateException
- if properties
has been created.AutoChildUsage
public void setAutoChildVisibility(java.lang.String autoChildName, boolean visible)
autoChildName
.
NOTE: This API is not valid for all AutoChildren because some AutoChildren cannot be hidden without destroying the main functions of the component.
autoChildName
- name of an AutoChildvisible
- whether to show the AutoChildpublic final Canvas getCanvasAutoChild(java.lang.String autoChildName)
Canvas
AutoChild named autoChildName
if already created.autoChildName
- name of an AutoChild to return.java.lang.RuntimeException
- if the AutoChild is not a SmartClient Canvas
object.public final FormItem getFormItemAutoChild(java.lang.String autoChildName)
FormItem
AutoChild named autoChildName
if already created.autoChildName
- name of an AutoChild to return.java.lang.RuntimeException
- if the AutoChild is not a SmartClient FormItem
object.public final DrawItem getDrawItemAutoChild(java.lang.String autoChildName)
DrawItem
AutoChild named autoChildName
if already created.autoChildName
- name of an AutoChild to return.java.lang.RuntimeException
- if the AutoChild is not a SmartClient DrawItem
object.public void setProportionalResizeModifiers(java.lang.String... proportionalResizeModifiers) throws java.lang.IllegalStateException
proportionalResizing
is set to
ProportionalResizeMode.MODIFIER
or
ProportionalResizeMode.MODIFIER_OFF
then proportional resizing of the DrawItem
is activated or deactivated, respectively, whenever at least one key in this set of modifier keys is pressed.
The keys allowed in this set are: "Alt", "Ctrl", and "Shift". If this set of keys is empty then proportional
resizing is always used if proportionalResizing
is MODIFIER
and is never used if
proportionalResizing
is MODIFIER_OFF
.
proportionalResizeModifiers
- Default value is ["Shift"]java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String[] getProportionalResizeModifiers()
proportionalResizing
is set to
ProportionalResizeMode.MODIFIER
or
ProportionalResizeMode.MODIFIER_OFF
then proportional resizing of the DrawItem
is activated or deactivated, respectively, whenever at least one key in this set of modifier keys is pressed.
The keys allowed in this set are: "Alt", "Ctrl", and "Shift". If this set of keys is empty then proportional
resizing is always used if proportionalResizing
is MODIFIER
and is never used if
proportionalResizing
is MODIFIER_OFF
.
public DrawItem setAttribute(java.lang.String attribute, java.lang.String value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, java.lang.Boolean value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, java.util.Map value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, int[] value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, BaseClass[] value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, DataClass[] value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, double value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, java.util.Date value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, ValueEnum[] value, boolean allowPostCreate)
public DrawItem setAttribute(java.lang.String attribute, DataClass value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, com.google.gwt.core.client.JavaScriptObject value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, java.lang.String[] value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public DrawItem setAttribute(java.lang.String attribute, com.google.gwt.dom.client.Element value, boolean allowPostCreate)
setAttribute
in class BaseWidget
public java.lang.String getAttributeAsString(java.lang.String property)
getAttributeAsString
in class BaseWidget
public java.util.Date getAttributeAsDate(java.lang.String property)
getAttributeAsDate
in class BaseWidget
public java.lang.Integer getAttributeAsInt(java.lang.String property)
getAttributeAsInt
in class BaseWidget
public java.lang.Double getAttributeAsDouble(java.lang.String property)
getAttributeAsDouble
in class BaseWidget
public com.google.gwt.dom.client.Element getAttributeAsElement(java.lang.String property)
getAttributeAsElement
in class BaseWidget
public com.google.gwt.core.client.JavaScriptObject getAttributeAsJavaScriptObject(java.lang.String property)
getAttributeAsJavaScriptObject
in class BaseWidget
public java.lang.Float getAttributeAsFloat(java.lang.String property)
getAttributeAsFloat
in class BaseWidget
public java.lang.Boolean getAttributeAsBoolean(java.lang.String property)
getAttributeAsBoolean
in class BaseWidget
public java.util.Map getAttributeAsMap(java.lang.String property)
getAttributeAsMap
in class BaseWidget
public com.google.gwt.canvas.client.Canvas getUnderlyingGWTCanvas()
DrawingType
isn't a
DrawingType.BITMAP
.addDrawStartHandler
,
addDrawEndHandler
public com.smartgwt.logicalstructure.core.LogicalStructureObject setLogicalStructure(com.smartgwt.logicalstructure.widgets.drawing.DrawItemLogicalStructure s)
LogicalStructure
interface,
which supports Eclipse's logical structure debugging facility.public com.smartgwt.logicalstructure.core.LogicalStructureObject getLogicalStructure()
LogicalStructure
interface,
which supports Eclipse's logical structure debugging facility.getLogicalStructure
in interface LogicalStructure
getLogicalStructure
in class BaseWidget