public static class IltLedBaseRenderer.Graphic extends IltLedBaseRenderer implements IltGraphicBaseRenderer
IlvGraphic
objects.
This base renderer contains an IlvGraphic
instance, which must
be set at construction time.
To use custom instances of IlvGraphic
to represent LEDs you
need to:
IltBaseRendererFactory
interface.
IltSettings.SetValue(java.lang.Object, java.lang.Object)
.
createValue
you should:
IltLedBaseRenderer.Graphic
.
IlvGraphic
that will represent the LED,
along with its graphic properties.
IlvGraphic
as the graphic of the LED base
renderer through Graphic.setGraphic
.
The following example illustrates the process:
IltBaseRendererFactory factory = new IltBaseRendererFactory() { public IltBaseRenderer createValue() { IltLedBaseRenderer.Graphic renderer = new IltLedBaseRenderer.Graphic(); IlvGraphic g = new IlvRectangle(new IlvRect(0,0,20,10)); renderer.setGraphic(g); return renderer; } }; IltSettings.SetValue("Led.Type.YOUR_NEW_TYPE_NAME.Renderer" , factory );
IltLedBaseRenderer.Circular, IltLedBaseRenderer.CircularFlat, IltLedBaseRenderer.Graphic, IltLedBaseRenderer.Rectangular, IltLedBaseRenderer.Simple
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 main part of the base.
|
IlvGraphic |
getGraphic()
Returns the graphic instance that will be displayed
by this base renderer.
|
protected boolean |
isExtraBorderOutside()
Indicates whether the extra borders should be drawn inside or outside
the
rect (bounding box). |
void |
moveResize(IlvRect r)
Indicates that the underlying
IlvGraphic must be
displayed inside the given rectangle. |
void |
setDirection(int d)
Sets the card item direction.
|
void |
setGraphic(IlvGraphic g)
Sets the graphic instance that will be displayed
by this base renderer.
|
createBaseRendererState, isAntialiasing, setAntialiasing
getDirection, getPreferredSize, setPreferredSize
__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 object.public final IlvGraphic getGraphic()
public void setDirection(int d)
setDirection
in class IltCardItemBaseRenderer
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 performedprotected boolean isExtraBorderOutside()
IltCardItemBaseRenderer
rect
(bounding box).
This method defines whether or not to call drawExtraBorders
.
This implementation returns true
, as for
card item objects the borders are supposed to be drawn outside.
isExtraBorderOutside
in class IltCardItemBaseRenderer
true
public void drawMain(Graphics g, IlvTransformer t, IlvRect rect)
IltBaseRenderer
drawMain
in class IltBaseRenderer
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.