public class DrawRect extends DrawItem
config, id, scClassName
Constructor and Description |
---|
DrawRect() |
DrawRect(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JavaScriptObject |
create() |
int |
getHeight()
Height in pixels.
|
int |
getLeft()
Left coordinate in pixels relative to the DrawPane.
|
LineCap |
getLineCap()
Style of drawing the endpoints of a line.
|
static DrawRect |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
float |
getRounding()
Rounding of corners, from 0 (square corners) to 1.0 (shorter edge is a semicircle).
|
int |
getTop()
Top coordinate in pixels relative to the DrawPane.
|
int |
getWidth()
Width in pixels.
|
void |
moveBy(int dX,
int dY)
Move the drawRect by the specified delta
|
void |
moveTo(int left,
int top)
Move the drawRect to the specified position
|
void |
resizeBy(int dX,
int dY)
Resize by the specified delta
|
void |
resizeTo(int width,
int height)
Resize to the specified size
|
void |
setCenter(int left,
int top)
Move the drawRect such that it is centered over the specified coordinates.
|
static void |
setDefaultProperties(DrawRect drawRectProperties)
Class level method to set the default properties of this class.
|
void |
setHeight(int height)
Height in pixels.
|
void |
setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj) |
void |
setLeft(int left)
Left coordinate in pixels relative to the DrawPane.
|
void |
setLineCap(LineCap lineCap)
Style of drawing the endpoints of a line.
|
void |
setRect(int left,
int top,
int width,
int height)
Move and resize the drawRect to match the specified coordinates and size.
|
void |
setRounding(float rounding)
Rounding of corners, from 0 (square corners) to 1.0 (shorter edge is a semicircle).
|
void |
setTop(int top)
Top coordinate in pixels relative to the DrawPane.
|
void |
setWidth(int width)
Width in pixels.
|
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, getKnobs, getLineColor, getLineOpacity, getLinePattern, getLineWidth, getMoveKnobOffset, getMoveKnobPoint, getPageLeft, getPageTop, getPrompt, getRef, getResizeKnobPoints, getRotation, getScale, getShadow, getShowHover, getStartArrow, getSvgString, hide, hideKnobs, hover, isInBounds, isPointInPath, rotateBy, rotateBy, rotateTo, rotateTo, scaleBy, scaleBy, scaleTo, scaleTo, setAttribute, setCanDrag, setCanHover, setContextMenu, setCursor, setDefaultProperties, setDragStartDistance, setDrawGroup, setDrawPane, setEndArrow, setFillColor, setFillGradient, setFillOpacity, setKeepInParentRect, setKeepInParentRect, setKnobs, 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 DrawRect()
public DrawRect(com.google.gwt.core.client.JavaScriptObject jsObj)
public static DrawRect 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 setHeight(int height)
height
- new height. Default value is 100public int getHeight()
public void setLeft(int left)
left
- new left coordinate. Default value is 0public int getLeft()
public void setLineCap(LineCap lineCap)
Note that for dashed and dotted lines, the lineCap style affects each dash or dot.
setLineCap
in class DrawItem
lineCap
- lineCap Default value is "butt"public LineCap getLineCap()
Note that for dashed and dotted lines, the lineCap style affects each dash or dot.
getLineCap
in class DrawItem
public void setRounding(float rounding) throws java.lang.IllegalStateException
rounding
rounding
- new rounding value. Should be between zero (a rectangle) and 1 (shorter edge is a semicircle). Default value is 0java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic float getRounding()
public void setTop(int top)
top
- new top coordinate. Default value is 0public int getTop()
public void setWidth(int width)
width
- new width. Default value is 100public int getWidth()
public void moveBy(int dX, int dY)
public void moveTo(int left, int top)
left
- new left coordinatetop
- new top coordinatepublic void resizeBy(int dX, int dY)
public void resizeTo(int width, int height)
public void setCenter(int left, int top)
left
- left coordinate for new center positiontop
- top coordinate for new center postiionpublic void setRect(int left, int top, int width, int height)
left
- new left coordinatetop
- new top coordinatewidth
- new widthheight
- new heightpublic static void setDefaultProperties(DrawRect drawRectProperties)
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.
drawRectProperties
- properties that should be used as new defaults when instances of this class are created