public class DrawImage extends DrawItem
config, id, scClassName
Constructor and Description |
---|
DrawImage() |
DrawImage(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 point of the image.
|
int |
getHeight()
Height in pixels.
|
int |
getLeft()
Left coordinate in pixels relative to the DrawPane.
|
static DrawImage |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
java.lang.String |
getSrc()
URL to the image file.
|
java.lang.String |
getTitle()
Title (tooltip hover text) for this image.
|
int |
getTop()
Top coordinate in pixels relative to the DrawPane.
|
int |
getWidth()
Width in pixels.
|
void |
moveBy(int dX,
int dY)
Move the drawImage by the specified delta
|
void |
moveTo(int left,
int top)
Move the drawImage to the specified position
|
static void |
setDefaultProperties(DrawImage drawImageProperties)
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 |
setSrc(java.lang.String src)
URL to the image file.
|
void |
setTitle(java.lang.String title)
Title (tooltip hover text) for this image.
|
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, resizeBy, resizeTo, 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 DrawImage()
public DrawImage(com.google.gwt.core.client.JavaScriptObject jsObj)
public static DrawImage getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public com.google.gwt.core.client.JavaScriptObject create()
public void setHeight(int height) throws java.lang.IllegalStateException
height
- Default value is 16java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic int getHeight()
public void setLeft(int left)
left
- Default value is 0public int getLeft()
public void setSrc(java.lang.String src)
src
- new URL. Default value is "blank.png"public java.lang.String getSrc()
public void setTitle(java.lang.String title) throws java.lang.IllegalStateException
title
- Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String getTitle()
public void setTop(int top)
top
- Default value is 0public int getTop()
public void setWidth(int width) throws java.lang.IllegalStateException
width
- Default value is 16java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic int getWidth()
public Point getCenter()
public void moveBy(int dX, int dY)
public void moveTo(int left, int top)
left
- new left coordinatetop
- new top coordinatepublic static void setDefaultProperties(DrawImage drawImageProperties)
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.
drawImageProperties
- properties that should be used as new defaults when instances of this class are created