#include <e32std.h>
class RRegionBuf : public RRegion |
Public Member Functions | |
---|---|
RRegionBuf() | |
RRegionBuf(const RRegion &) | |
RRegionBuf(const RRegionBuf< S > &) | |
RRegionBuf(const TRect &) |
Inherited Attributes | |
---|---|
TRegion::iAllocedRects | |
TRegion::iCount | |
TRegion::iError |
Inherited Enumerations | |
---|---|
TRegion:@20 |
Region with pre-allocated buffer.
This class provides the functionality of an RRegion, but in addition, for optimisation purposes, uses a buffer containing pre-allocated space for as many rectangles as are specified in the granularity.
When this buffer is full, cell allocation takes place as for an RRegion, and the RRegionBuf effectively becomes an RRegion. In this case, the region does not revert to using the buffer, even if the region were to shrink so that the buffer could, once again, contain the region. When the region is no longer required, call Close(), defined in the base class RRegion, to free up all memory.
RRegionBuf | ( | ) | [inline] |
Constructs a default object.
The granularity is the value of the template parameter.
RRegionBuf | ( | const RRegionBuf< S > & | aRegion | ) | [inline] |
Copy constructs from an existing RRegionBuf object.
Parameter | Description |
---|---|
aRegion | The RRegionBuf to be copied. |
RRegionBuf | ( | const TRect & | aRect | ) | [inline] |
Constructs an RRegionBuf with a TRect.
Its granularity is initialised to the value contained in the template argument. The resulting region consists of the specified single rectangle.
Parameter | Description |
---|---|
aRect | The single rectangle with which to initialise the region. |