public class DrawLine extends DrawItem
config, id, scClassName
Constructor and Description |
---|
DrawLine() |
DrawLine(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JavaScriptObject |
create() |
int |
getEndLeft()
Ending left coordinate of the line.
|
Point |
getEndPoint()
End point of the line
|
int |
getEndTop()
Ending top coordinate of the line.
|
KnobType[] |
getKnobs()
Array of control knobs to display for this item.
|
static DrawLine |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
int |
getStartLeft()
Starting left coordinate of the line.
|
Point |
getStartPoint()
Start point of the line
|
int |
getStartTop()
Starting top coordinate of the line.
|
void |
moveBy(int left,
int top)
Move both the start and end points of the line by a relative amount.
|
void |
moveTo(int left,
int top)
Move both the start and end points of the line, such that the startPoint ends up at the specified coordinate and the
line length and angle are unchanged.
|
static void |
setDefaultProperties(DrawLine drawLineProperties)
Class level method to set the default properties of this class.
|
void |
setEndLeft(int endLeft)
Ending left coordinate of the line.
|
void |
setEndPoint(Point endPoint)
End point of the line
If this method is called after the component has been drawn/initialized: Update the endPoint |
void |
setEndTop(int endTop)
Ending top coordinate of the line.
|
void |
setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj) |
void |
setKnobs(KnobType... knobs)
Array of control knobs to display for this item.
|
void |
setStartLeft(int startLeft)
Starting left coordinate of the line.
|
void |
setStartPoint(Point startPoint)
Start point of the line
If this method is called after the component has been drawn/initialized: Update the startPoint |
void |
setStartTop(int startTop)
Starting top coordinate of the line.
|
addClickHandler, addDragMoveHandler, addDragResizeMoveHandler, addDragStartHandler, addDragStopHandler, addMouseDownHandler, addMouseMoveHandler, addMouseOutHandler, addMouseOverHandler, addMouseUpHandler, addMovedHandler, addResizedHandler, addShowContextMenuHandler, computeAngle, computeAngleAsDouble, dragResizeMove, draw, erase, getAttributeAsIntArray, getBoundingBox, getCanDrag, getCanHover, getCenter, getContextMenu, getCursor, getDestroyed, getDestroying, getDragStartDistance, getDrawGroup, getDrawPane, getEndArrow, getFillColor, getFillGradient, getFillOpacity, getHoverHTML, getKeepInParentRect, getLineCap, getLineColor, getLineOpacity, getLinePattern, getLineWidth, getMoveKnobOffset, getMoveKnobPoint, getPageLeft, getPageTop, getPrompt, getRef, getResizeKnobPoints, getRotation, getScale, getShadow, getShowHover, getStartArrow, getSvgString, hide, hideKnobs, hover, isInBounds, isPointInPath, resizeBy, resizeTo, rotateBy, rotateBy, rotateTo, rotateTo, scaleBy, scaleBy, scaleTo, scaleTo, setAttribute, setCanDrag, setCanHover, setContextMenu, setCursor, setDefaultProperties, setDragStartDistance, setDrawGroup, setDrawPane, setEndArrow, setFillColor, setFillGradient, setFillOpacity, setKeepInParentRect, setKeepInParentRect, setLineCap, setLineColor, setLineOpacity, setLinePattern, setLineWidth, setMoveKnobOffset, setMoveKnobPoint, setPrompt, setResizeKnobPoints, setRotation, setScale, setShadow, setShowHover, setStartArrow, show, showKnobs
asSGWTComponent, destroy, doAddHandler, doInit, error, error, errorIfNotCreated, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsString, getAttributeAsStringArray, getClassName, getConfig, getHandlerCount, getID, getJsObj, getOrCreateJsObj, getScClassName, internalSetID, internalSetID, isCreated, onBind, onInit, registerID, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setID, setProperty, setProperty, setProperty, setProperty, setScClassName
public DrawLine()
public DrawLine(com.google.gwt.core.client.JavaScriptObject jsObj)
public static DrawLine getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public void setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj)
setJavaScriptObject
in class DrawItem
public com.google.gwt.core.client.JavaScriptObject create()
public void setEndLeft(int endLeft) throws java.lang.IllegalStateException
endPoint
if both are set.endLeft
- endLeft Default value is 100java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic int getEndLeft()
endPoint
if both are set.public void setEndPoint(Point endPoint)
endPoint
- left coordinate for end point, in pixels. Default value is [100,100]public Point getEndPoint()
public void setEndTop(int endTop) throws java.lang.IllegalStateException
endPoint
if both are set.endTop
- endTop Default value is 100java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic int getEndTop()
endPoint
if both are set.public void setKnobs(KnobType... knobs)
KnobType
specified in this will
turn on UI element(s) allowing the user to manipulate this DrawLine. To update the set of knobs at runtime use DrawItem.showKnobs
and DrawItem.hideKnobs
. DrawLine supports the KnobType.STARTPOINT
and KnobType.ENDPOINT
knob types.
public KnobType[] getKnobs()
KnobType
specified in this will
turn on UI element(s) allowing the user to manipulate this DrawLine. To update the set of knobs at runtime use DrawItem.showKnobs
and DrawItem.hideKnobs
. DrawLine supports the KnobType.STARTPOINT
and KnobType.ENDPOINT
knob types.
public void setStartLeft(int startLeft) throws java.lang.IllegalStateException
startPoint
if both are set.startLeft
- startLeft Default value is 0java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic int getStartLeft()
startPoint
if both are set.public void setStartPoint(Point startPoint)
startPoint
- left coordinate for start point, in pixels. Default value is [0,0]public Point getStartPoint()
public void setStartTop(int startTop) throws java.lang.IllegalStateException
startPoint
if both are set.startTop
- startTop Default value is 0java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic int getStartTop()
startPoint
if both are set.public void moveBy(int left, int top)
public void moveTo(int left, int top)
left
- new startLeft coordinate in pixelstop
- new startTop coordinate in pixelspublic static void setDefaultProperties(DrawLine drawLineProperties)
Note: This method is intended for setting default attributes only and will effect 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.
drawLineProperties
- properties that should be used as new defaults when instances of this class are created