Dillo v3.1.1-98-g318d1f14
|
Implementation of ImgRenderer, which distributes all calls to a set of other implementations of ImgRenderer. More...
#include <imgrenderer.hh>
Public Member Functions | |
ImgRendererDist () | |
~ImgRendererDist () | |
void | setBuffer (core::Imgbuf *buffer, bool resize) |
Called, when an image buffer is attached. | |
void | drawRow (int row) |
Called, when data from a row is available and has been copied into the image buffer. | |
void | finish () |
Called, when all image data has been retrieved. | |
void | fatal () |
Called, when there are problems with the retrieval of image data. | |
void | put (ImgRenderer *child) |
void | remove (ImgRenderer *child) |
Public Member Functions inherited from dw::core::ImgRenderer | |
virtual | ~ImgRenderer () |
Private Attributes | |
lout::container::typed::HashSet< lout::object::TypedPointer< ImgRenderer > > * | children |
Implementation of ImgRenderer, which distributes all calls to a set of other implementations of ImgRenderer.
The order of the call children is not defined, especially not identical to the order in which they have been added.
Definition at line 59 of file imgrenderer.hh.
|
inline |
Definition at line 65 of file imgrenderer.hh.
References children.
|
inline |
Definition at line 68 of file imgrenderer.hh.
References children.
|
virtual |
Called, when data from a row is available and has been copied into the image buffer.
The implementation will typically queue the respective area for drawing.
Implements dw::core::ImgRenderer.
Definition at line 37 of file imgrenderer.cc.
References children, and lout::object::TypedPointer< T >::getTypedValue().
|
virtual |
Called, when there are problems with the retrieval of image data.
The implementation may use this to indicate an error.
Implements dw::core::ImgRenderer.
Definition at line 56 of file imgrenderer.cc.
References children, and lout::object::TypedPointer< T >::getTypedValue().
|
virtual |
Called, when all image data has been retrieved.
The implementation may use this instead of "drawRow" for drawing, to limit the number of draws.
Implements dw::core::ImgRenderer.
Definition at line 47 of file imgrenderer.cc.
References children, and lout::object::TypedPointer< T >::getTypedValue().
|
inline |
Definition at line 75 of file imgrenderer.hh.
References children.
Referenced by dw::core::style::StyleImage::putExternalImgRenderer(), and dw::core::style::StyleImage::StyleImage().
|
inline |
Definition at line 77 of file imgrenderer.hh.
References children.
Referenced by dw::core::style::StyleImage::removeExternalImgRenderer().
|
virtual |
Called, when an image buffer is attached.
This is typically the case when all meta data (size, depth) has been read.
Implements dw::core::ImgRenderer.
Definition at line 28 of file imgrenderer.cc.
References children, and lout::object::TypedPointer< T >::getTypedValue().
|
private |
Definition at line 62 of file imgrenderer.hh.
Referenced by drawRow(), fatal(), finish(), ImgRendererDist(), put(), remove(), setBuffer(), and ~ImgRendererDist().