Rogue Wave Views 5.5.1 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
This renderer translates a map feature whose geometry is an IlvMapPoint
into an IlvMarker
.
More...
Public Member Functions | |
IlvDefaultPointRenderer (const IlvDefaultPointRenderer &source) | |
Creates an IlvDefaultPointRenderer by copying an existing one. | |
IlvDefaultPointRenderer (IlvDisplay *display) | |
Creates an instance of the renderer. | |
virtual IlvFeatureRenderer * | copy () const |
Copies the object. | |
IlvColor * | getForeground () const |
Returns the foreground color used to draw the marker. | |
IlUShort | getLineWidth () const |
Returns the line width. | |
IlUShort | getMarkerSize () const |
Returns the size of marker produced by this renderer. | |
IlvMarkerType | getMarkerType () const |
Returns the marker type. | |
IlvPalette * | getPalette () const |
Returns the palette used to create the graphic objects. | |
IlvPattern * | getPattern () const |
Returns the pattern used for the marker. | |
virtual IlvGraphic * | makeGraphic (const IlvMapFeature &feature, const IlvMapInfo &targetMapInfo, IlvMapsError &status) const |
Translates an IlvMapFeature into a graphic object. | |
IlvMapsError | setForeground (const char *colorName) |
Sets the foreground color of the marker. | |
void | setForeground (IlvColor *color) |
Sets the foreground color of the marker. | |
void | setLineWidth (IlUShort lineWidth) |
Sets the line width for the marker lines. | |
void | setMarkerSize (IlUShort markerSize) |
Sets the size of the marker produced by this renderer. | |
void | setMarkerType (IlvMarkerType markerType) |
Sets the marker type used by this renderer. | |
void | setPalette (IlvPalette *palette) |
Sets the palette used to create the graphic objects. | |
IlvMapsError | setPattern (const char *fileName) |
Sets a pattern for the marker by specifying a file name. | |
void | setPattern (IlvPattern *pattern) |
Sets a pattern for the marker. | |
virtual void | write (IlvOutputFile &) const |
Writes the renderer to an IlvOutputStream . |
This renderer translates a map feature whose geometry is an IlvMapPoint
into an IlvMarker
.
Library: ilvmaps
IlvDefaultPointRenderer::IlvDefaultPointRenderer | ( | IlvDisplay * | display | ) |
Creates an instance of the renderer.
display | The display. |
IlvDefaultPointRenderer::IlvDefaultPointRenderer | ( | const IlvDefaultPointRenderer & | source | ) |
Creates an IlvDefaultPointRenderer
by copying an existing one.
source | The object to be copied. |
virtual IlvFeatureRenderer* IlvDefaultPointRenderer::copy | ( | ) | const [virtual] |
IlvColor* IlvDefaultPointRenderer::getForeground | ( | ) | const |
Returns the foreground color used to draw the marker.
IlvColor
that should not be modified, because it can potentially be shared by other objects. However, it is possible to lock it if an other object has to use it. IlUShort IlvDefaultPointRenderer::getLineWidth | ( | ) | const |
Returns the line width.
IlUShort IlvDefaultPointRenderer::getMarkerSize | ( | ) | const |
Returns the size of marker produced by this renderer.
IlvMarkerType IlvDefaultPointRenderer::getMarkerType | ( | ) | const |
Returns the marker type.
IlvPalette* IlvDefaultPointRenderer::getPalette | ( | ) | const |
Returns the palette used to create the graphic objects.
IlvPalette
object that should not be modified, because it can potentially be shared by other objects. However, it is possible to lock it if an other object has to use it. IlvPattern* IlvDefaultPointRenderer::getPattern | ( | ) | const |
Returns the pattern used for the marker.
IlvPattern
that should not be modified, because it can potentially be shared by other objects. However, it is possible to lock it if an other object has to use it. virtual IlvGraphic* IlvDefaultPointRenderer::makeGraphic | ( | const IlvMapFeature & | feature, | |
const IlvMapInfo & | targetMapInfo, | |||
IlvMapsError & | status | |||
) | const [virtual] |
Translates an IlvMapFeature
into a graphic object.
If the targetMapInfo has a non-null projection, or a projection that is not an instance of IlvUnknownProjection
, the graphic object is projected to the projection system of targetMapInfo. Otherwise, only the map adapter of targetMapInfo is used to convert the feature coordinate into the manager coordinate system.
feature | The map feature to be translated. | |
targetMapInfo | This parameter specifies the projection in which the graphic object must be returned. If this projection is not defined (targetMapInfo.getProjection() is NULL), the graphic object is returned to the projection of the map feature (only the map adapter is used) | |
status | Is set to an error code if the renderer cannot process the map feature (most of the time, because the renderer does not support the feature geometry, but it can also indicate that a projection error occurred). |
IlvGraphic
or a null pointer if a severe error occurred. Implements IlvFeatureRenderer.
IlvMapsError IlvDefaultPointRenderer::setForeground | ( | const char * | colorName | ) |
Sets the foreground color of the marker.
It can be a predefined color or the string can have the syntax "#RRGGBB" in hexadecimal. The foreground color is used if there is no pattern or if there is a non-color pattern.
setPalette
. colorName | The name of the color. |
IlvMapsError::NoError()
or IlvMaps::IllegalArgument()
if the color name cannot be translated into a color. void IlvDefaultPointRenderer::setForeground | ( | IlvColor * | color | ) |
Sets the foreground color of the marker.
The foreground color is used if there is no pattern or if there is a non-color pattern.
setPalette
. color | The foreground color used to draw the marker. |
void IlvDefaultPointRenderer::setLineWidth | ( | IlUShort | lineWidth | ) |
Sets the line width for the marker lines.
If the value is greater than 0
, then the lines will be drawn using the fill pattern if any.
setPalette
. lineWidth | The new line width. |
void IlvDefaultPointRenderer::setMarkerSize | ( | IlUShort | markerSize | ) |
Sets the size of the marker produced by this renderer.
markerSize | The size of the marker. |
void IlvDefaultPointRenderer::setMarkerType | ( | IlvMarkerType | markerType | ) |
Sets the marker type used by this renderer.
markerType | The marker type. |
void IlvDefaultPointRenderer::setPalette | ( | IlvPalette * | palette | ) |
Sets the palette used to create the graphic objects.
palette | The palette to be set. |
IlvMapsError IlvDefaultPointRenderer::setPattern | ( | const char * | fileName | ) |
Sets a pattern for the marker by specifying a file name.
The pattern is used for the marker types that fill an area (IlvMarkerFilledSquare, IlvMarkerFilledCircle, IlvMarkerFilledDiamond, IlvMarkerFilledTriangle
).
fileName | Name of the file containing the pattern. |
setPalette
. MapsError::IllegalArgument()
if the name supplied is not a valid bitmap file name. void IlvDefaultPointRenderer::setPattern | ( | IlvPattern * | pattern | ) |
Sets a pattern for the marker.
The pattern is used for the marker types that fill an area (IlvMarkerFilledSquare, IlvMarkerFilledCircle, IlvMarkerFilledDiamond, IlvMarkerFilledTriangle
).
setPalette
. pattern | The pattern. |
virtual void IlvDefaultPointRenderer::write | ( | IlvOutputFile & | file | ) | const [virtual] |
Writes the renderer to an IlvOutputStream
.
This function must be reimplemented by the subclasses of IlvFeatureRenderer
, but it should not be called directly by the application. For more information about subclassing an IlvFeatureRenderer
, refer to the User Manual of Rogue Wave Views Maps.
file | The output file. |
Implements IlvFeatureRenderer.
© Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.