public static class IltLogicalBaseRenderer.Graphic extends IltLogicalBaseRenderer implements IltGraphicBaseRenderer
IlvGraphic
object.
This base renderer contains an IlvGraphic
instance, that must
be set at construction time.
To use IlvGraphic
instances to represent your logical objects
you need to:
IltBaseRendererFactory
interface.
IltSettings.SetValue(java.lang.Object, java.lang.Object)
.
createValue
you should:
IltLogicalBaseRenderer.Graphic
.
IlvGraphic
that will represent the logical
objects, along with its graphic properties.
IlvGraphic
as the graphic of the logical base
renderer through Graphic.setGraphic
.
The following example illustrates the process:
IltBaseRendererFactory factory = new IltBaseRendererFactory() { public IltBaseRenderer createValue() { IltLogicalBaseRenderer.Graphic renderer = new IltLogicalBaseRenderer.Graphic(); IlvGraphic g = new IlvRectangle(new IlvRect(0,0,20,10)); renderer.setGraphic(g); return renderer; } }; IltSettings.SetValue("Object.LogicalType.YOUR_LOGICAL_TYPE_NAME.Renderer" , factory );
IltLogicalBaseRenderer.Graphic
defaultSizeHeight, defaultSizeWidth, INVISIBLE_BASE_RENDERER
Constructor and Description |
---|
Graphic() |
Modifier and Type | Method and Description |
---|---|
IlvRect |
boundingBox(IlvTransformer t,
IlvRect rect,
boolean withSelection)
Returns the bounding box of the area that
draw(g,t,rect) draws into. |
protected boolean |
containsMain(IlvPoint p,
IlvPoint tp,
IlvTransformer t,
IlvRect rect)
Tests whether a point lies within the main part of the base of this object.
|
void |
drawMain(Graphics g,
IlvTransformer t,
IlvRect rect)
Draws the rectangular base for tiny elements.
|
IlvGraphic |
getGraphic()
Returns the graphic instance that will be displayed
by this base renderer.
|
void |
moveResize(IlvRect r)
Indicates that the underlying
IlvGraphic must be
displayed inside the given rectangle. |
void |
setGraphic(IlvGraphic g)
Sets the graphic instance that will be displayed
by this base renderer.
|
createBaseRendererState, getLineSpec, getPreferredSize, isExtraBorderOutside, setHeight, setIconHeight, setIconWidth, setLineSpec, setPreferredSize, setWidth
__isDottedBorderVisible, attach, boundingBoxWithTransformer, contains, containsExtraBorders, draw, drawAlarmBorder, drawExtraBorder, drawExtraBorder, drawExtraBorders, drawSelectionBorder, dropResources, getAlarmBorderColor, getAlarmBorderWidth, getAlarmColorLevel, getBackground, getBaseRenderer, getBaseRendererState, getBorderColor, getBorderColor2, getBorderLineStyle, getBorderPalette, getBorderPattern, getBorderWidth, getBrightPalette, getDarkPalette, getDeprecatedBlinkingMode, getDetailLevel, getDottedBorderBackground, getDottedBorderForeground, getDottedBorderLineStyle, getDottedBorderPalette, getExtraBorders, getFillAngle, getFillEnd, getFillStart, getFillStyle, getFillTexture, getForeground, getPalette, getPattern, getRepresentationObject, getSelectionBorderBackground, getSelectionBorderForeground, getSelectionBorderLineStyle, getSelectionBorderWidth, getSourceImage, getView, initBaseRenderer, initResources, isAlarmBorderVisible, isAlarmColorVisible, isBaseSelectionBorderVisible, isDottedBorderVisible, isPolygonalBorder, isReliefBorders, isUsingBlinkingResources, setAlarmBorderColor, setAlarmBorderVisible, setAlarmBorderWidth, setAlarmColorLevel, setAlarmColorVisible, setBackground, setBaseRendererState, setBaseSelectionBorderVisible, setBorderColor, setBorderColor2, setBorderLineStyle, setBorderPattern, setBorderWidth, setDeprecatedBlinkingMode, setDetailLevel, setDottedBorderBackground, setDottedBorderForeground, setDottedBorderLineStyle, setDottedBorderVisible, setFillAngle, setFillEnd, setFillStart, setFillStyle, setFillTexture, setForeground, setPattern, setPolygonalBorder, setReliefBorders, setRepresentationObject, setSelectionBorderBackground, setSelectionBorderForeground, setSelectionBorderLineStyle, setSelectionBorderWidth, setSourceImage, setView
public final void setGraphic(IlvGraphic g)
g
- Graphic objectpublic final IlvGraphic getGraphic()
public void moveResize(IlvRect r)
IltGraphicBaseRenderer
IlvGraphic
must be
displayed inside the given rectangle.moveResize
in interface IltGraphicBaseRenderer
r
- Rectangle where the drawing will be performedpublic void drawMain(Graphics g, IlvTransformer t, IlvRect rect)
IltLogicalBaseRenderer
drawMain
in class IltLogicalBaseRenderer
g
- As in draw
.t
- As in draw
.rect
- As in draw
.protected boolean containsMain(IlvPoint p, IlvPoint tp, IlvTransformer t, IlvRect rect)
IltBaseRenderer
true
only if the point corresponds to a point
drawn by the method drawMain
.
This implementation returns true
if the point tp
is
inside the rectangle rect
, because it is assumed that the
implementation of the drawMain
method fills
rect
.
Note: This method may be overridden to take into account the shape drawn by this base renderer, if it is not rectangular or if it has transparency.
Note: The parameters tp
and rect
are given in
the same coordinate system. The transformer t
has already
been applied to these parameters.
containsMain
in class IltBaseRenderer
p
- The point to be tested.tp
- The point p
transformed by the transformer t
.t
- The transformation that was applied to the object when it was
drawn.rect
- As in draw
.IltBaseRenderer.drawMain(java.awt.Graphics, ilog.views.IlvTransformer, ilog.views.IlvRect)
public IlvRect boundingBox(IlvTransformer t, IlvRect rect, boolean withSelection)
IltBaseRenderer
draw(g,t,rect)
draws into.
The argument rect
is a fresh copy and may be
destructively modified by this function.
This implementation of the function assumes that the main part
fills rect
. Depending on the value returned by
isExtraBorderOutside()
, the function returns rect
, or
rect
enlarged by the width of
the selection border, alarm border and dotted border, if present.
boundingBox
in class IltBaseRenderer
t
- Transformer applied to the object.rect
- As in draw
.withSelection
- if false
the rect
will not be enlarged by the selection.© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.