public class DrawOval extends DrawItem
config, id, scClassName
Constructor and Description |
---|
DrawOval() |
DrawOval(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JavaScriptObject |
create() |
Point |
getCenterPoint()
Center point of the oval.
|
int |
getHeight()
Height in pixels.
|
int |
getLeft()
Left coordinate in pixels relative to the DrawPane.
|
static DrawOval |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
int |
getTop()
Top coordinate in pixels relative to the DrawPane.
|
int |
getWidth()
Width in pixels.
|
void |
moveBy(int dX,
int dY)
Move the drawOval by the specified delta
|
void |
moveTo(int left,
int top)
Move the drawOval to the specified left/top position.
|
void |
resizeBy(int dX,
int dY)
Resize by the specified delta.
|
void |
resizeTo(int width,
int height)
Resize to the specified size.
|
void |
setCenterPoint(Point centerPoint)
Center point of the oval.
|
static void |
setDefaultProperties(DrawOval drawOvalProperties)
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 |
setOval(int cx,
int cy,
int rx,
int ry)
Resize and reposition the drawOval by setting its radius, and centerPoint.
|
void |
setRadii(int rx,
int ry)
Resize the drawOval by setting its horizontal and vertical radius, and retaining its current center point.
|
void |
setRadius(java.lang.Integer radius)
Radius of the oval.
|
void |
setRect(int left,
int top,
int width,
int height)
Move and resize the drawOval to match the specified coordinates and size.
|
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, getLineCap, 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, 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 DrawOval()
public DrawOval(com.google.gwt.core.client.JavaScriptObject jsObj)
public static DrawOval 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 setCenterPoint(Point centerPoint)
centerPoint
- left coordinate. Default value is nullpublic Point getCenterPoint()
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 setRadius(java.lang.Integer radius)
radius
- new radius. This will be applied on both axes, meaning calling this method will always result in the drawOval being
rendered as a circle. Default value is nullpublic 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)
DrawOval.setCenterPoint
to reposition the oval around a new
center position.left
- new left coordinatetop
- new top coordinatepublic void resizeBy(int dX, int dY)
DrawOval.setRadii
to change the radius in either direction without modifying the centerpoint.public void resizeTo(int width, int height)
DrawOval.setRadii
to change the radius in either direction without modifying the centerpoint.public void setOval(int cx, int cy, int rx, int ry)
cx
- new horizontal center point coordinatecy
- new vertical center point coordinaterx
- new horizontal radiusry
- new vertical radiuspublic void setRadii(int rx, int ry)
rx
- new horizontal radiusry
- new vertical radiuspublic void setRect(int left, int top, int width, int height)
left
- new left coordinatetop
- new top coordinatewidth
- new widthheight
- new heightpublic static void setDefaultProperties(DrawOval drawOvalProperties)
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.
drawOvalProperties
- properties that should be used as new defaults when instances of this class are created