Rogue Wave Views 5.5.1 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
Class for point information objects management. More...
#include <ilviews/charts/data.h>
Public Member Functions | |
IlvPointInfoArray () | |
Constructor. | |
virtual IlvChartDataPointInfo * | getInfoForPoint (IlUInt ptidx) const |
Returns the point information for a given data point. | |
virtual IlvChartDataPointInfo * | getPointInfo (IlUInt idx) const |
Returns the point information at a given index. | |
virtual IlUInt | getPointInfoCount () const |
Returns the number of point information objects managed by this object. | |
virtual void | removeAllPointInfo () |
Removes all point information. | |
virtual IlBoolean | removePointInfo (IlUInt ptidx) |
Removes the point information for a given data point. | |
virtual void | setPointInfo (IlUInt ptidx, IlvChartDataPointInfo *ptInfo, IlBoolean copy=IlFalse) |
Sets the point information defined for a given data point. |
Class for point information objects management.
Library: ilvcharts
This class is a subclass of IlvPointInfoCollection
that stores the pointers to the point information defined for the data points of a given data set in a continuous array. The pointer to the point information object associated with the data point at a given index in a data set is stored at the same index in the IlvPointInfoArray
object that is associated with this data set.
IlvPointInfoArray
object to store the point information objects defined for the data points of a given data set is optimal only if a point information object is defined for each data point of the data set, since the array that stores the pointers to the point information objects in an IlvPointInfoArray
object always has a size equal to the number of data points in the data set with which this object is associated. If a point information object is not defined for each data point of the data set, YOU MUST use an IlvPointInfoMap
object to store the point information objects defined for the data points of a given data set.IlvPointInfoCollection
, IlvChartDataPointInfo
. IlvPointInfoArray::IlvPointInfoArray | ( | ) |
Constructor.
Initializes a new IlvPointInfoArray
object.
virtual IlvChartDataPointInfo* IlvPointInfoArray::getInfoForPoint | ( | IlUInt | pidx | ) | const [virtual] |
Returns the point information for a given data point.
pidx | The index of the data point with which the returned point information is associated. |
Implements IlvPointInfoCollection.
virtual IlvChartDataPointInfo* IlvPointInfoArray::getPointInfo | ( | IlUInt | idx | ) | const [virtual] |
Returns the point information at a given index.
idx | The index of the returned point information. |
Implements IlvPointInfoCollection.
virtual IlUInt IlvPointInfoArray::getPointInfoCount | ( | ) | const [virtual] |
Returns the number of point information objects managed by this object.
Implements IlvPointInfoCollection.
virtual void IlvPointInfoArray::removeAllPointInfo | ( | ) | [virtual] |
Removes all point information.
Removes all the point information objects that are managed by the current object.
IlvChartDataPointInfo::unLock
method is called). It will be deleted only when no more objects reference it (see the IlvChartDataPointInfo::unLock
method). Implements IlvPointInfoCollection.
Removes the point information for a given data point.
When you remove a point information object, the point information object is not deleted but it is unlocked (that is, the IlvChartDataPointInfo::unLock
method is called). It will be deleted only when no objects reference it (see the IlvChartDataPointInfo::unLock
method).
ptidx | The index of the data point with which the point information that is removed is associated. |
IlTrue
if the point information has been removed and IlFalse
otherwise. Implements IlvPointInfoCollection.
virtual void IlvPointInfoArray::setPointInfo | ( | IlUInt | ptidx, | |
IlvChartDataPointInfo * | ptInfo, | |||
IlBoolean | copy = IlFalse | |||
) | [virtual] |
Sets the point information defined for a given data point.
If a point information object has already been stored in the current object for the data point at index ptidx, this point information is replaced by ptInfo. The new point information ptInfo is locked.
ptidx | The index of the data point for which the point information is set. | |
ptInfo | The new point information. | |
copy | A Boolean value indicating whether the point information passed as a parameter must be copied. If copy is IlTrue , the point information is copied. Otherwise, a pointer to the point information stored in ptInfo is kept and so its contents should not be deleted since it is maintained internally. |
Implements IlvPointInfoCollection.
© 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.