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 |
getCenter()
Get the center of the oval.
|
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 |
getRadiusX()
Returns the horizontal radius of the DrawOval.
|
int |
getRadiusY()
Returns the vertical radius of the DrawOval.
|
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 |
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, getBoundingBoxAsDouble, getCanDrag, getCanHover, getContextMenu, getCursor, getDestroyed, getDestroying, getDragStartDistance, getDrawGroup, getDrawPane, getEndArrow, getEventOpaque, getFillColor, getFillGradient, getFillGradientAsString, getFillOpacity, getHoverDelay, getHoverHTML, getKeepInParentRect, getKnobs, getLineCap, getLineColor, getLineOpacity, getLinePattern, getLineWidth, getMoveKnobOffset, getMoveKnobPoint, getPageLeft, getPageTop, getPrompt, getRef, getResizeKnobPoints, getRotation, getRotationAsDouble, getScale, getShadow, getShowHover, getStartArrow, getSvgString, hide, hideKnobs, hideKnobs, hover, isInBounds, isPointInPath, rotateBy, rotateTo, scaleBy, scaleTo, setAttribute, setAttribute, setCanDrag, setCanHover, setContextMenu, setCursor, setDefaultProperties, setDragStartDistance, setDrawGroup, setDrawPane, setEndArrow, setEventOpaque, setFillColor, setFillGradient, setFillGradient, setFillOpacity, setHoverDelay, setKeepInParentRect, setKeepInParentRect, setKnobs, setLineCap, setLineColor, setLineOpacity, setLinePattern, setLineWidth, setMoveKnobOffset, setMoveKnobPoint, setPrompt, setResizeKnobPoints, setRotation, setRotation, setScale, setShadow, setShowHover, setStartArrow, show, showKnobs, showKnobs, supportsEndArrow, supportsStartArrow
asSGWTComponent, createJsObj, 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, hasAutoAssignedID, internalSetID, internalSetID, isCreated, onBind, onInit, registerID, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setConfig, setID, setJavaScriptObject, 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 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)
horizontal
and vertical
radii, then the oval is a
circle. If unset, the horizontal and vertical radii are set to half the width
and height
.
If this method is called after the component has been drawn/initialized:
Resize the drawOval by setting its radius, and retaining its current center point. Equivalent to setRadii(radius, radius)
.
radius
- new radius. This will be applied on both axes, meaning calling this method will always result in the DrawOval being a
circle.. Default value is nullgetRadiusX()
,
getRadiusY()
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 Point getCenter()
public int getRadiusX()
setRadii(int, int)
public int getRadiusY()
setRadii(int, int)
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 radiusgetRadiusX()
,
getRadiusY()
public 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 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.
drawOvalProperties
- properties that should be used as new defaults when instances of this class are created