|
|
| ImageryComponent () |
| | Constructor.
|
| |
| const Image * | getImage () const |
| | Return the Image object that will be drawn by this ImageryComponent. More...
|
| |
| void | setImage (const Image *image) |
| | Set the Image that will be drawn by this ImageryComponent. More...
|
| |
| void | setImage (const String &name) |
| | Set the Image that will be drawn by this ImageryComponent. More...
|
| |
| VerticalFormatting | getVerticalFormatting (const Window &wnd) const |
| | Return the current vertical formatting setting for this ImageryComponent. More...
|
| |
| VerticalFormatting | getVerticalFormattingFromComponent () const |
| | Directly returns the vertical formatting which was set for the ImageryComponent. More...
|
| |
| void | setVerticalFormatting (VerticalFormatting fmt) |
| | Set the vertical formatting setting for this ImageryComponent. More...
|
| |
| HorizontalFormatting | getHorizontalFormatting (const Window &wnd) const |
| | Return the current horizontal formatting setting for this ImageryComponent. More...
|
| |
| HorizontalFormatting | getHorizontalFormattingFromComponent () const |
| | Directly returns the horizontal formatting which was set for the ImageryComponent. More...
|
| |
| void | setHorizontalFormatting (HorizontalFormatting fmt) |
| | Set the horizontal formatting setting for this ImageryComponent. More...
|
| |
| const String & | getHorizontalFormattingPropertySource () const |
| | Returns the name of the property that will be used to obtain the horizontal formatting to use for this ImageryComponent or an empty string if none is set. More...
|
| |
|
void | setHorizontalFormattingPropertySource (const String &property_name) |
| | Set the name of a property that will be used to obtain the horizontal formatting to use for this ImageryComponent.
|
| |
| const String & | getVerticalFormattingPropertySource () const |
| | Returns the name of the property that will be used to obtain the vertical formatting to use for this ImageryComponent or an empty string if none is set. More...
|
| |
|
void | setVerticalFormattingPropertySource (const String &property_name) |
| | Set the name of a property that will be used to obtain the vertical formatting to use for this ImageryComponent.
|
| |
| void | writeXMLToStream (XMLSerializer &xml_stream) const |
| | Writes an xml representation of this ImageryComponent to out_stream. More...
|
| |
| bool | isImageFetchedFromProperty () const |
| | Return whether this ImageryComponent fetches it's image via a property on the target window. More...
|
| |
| const String & | getImagePropertySource () const |
| | Return the name of the property that will be used to determine the image for this ImageryComponent. More...
|
| |
| void | setImagePropertySource (const String &property) |
| | Set the name of the property that will be used to determine the image for this ImageryComponent. More...
|
| |
| void | render (Window &srcWindow, const CEGUI::ColourRect *modColours=0, const Rectf *clipper=0, bool clipToDisplay=false) const |
| | Render this component. More correctly, the component is cached for rendering. More...
|
| |
| void | render (Window &srcWindow, const Rectf &baseRect, const CEGUI::ColourRect *modColours=0, const Rectf *clipper=0, bool clipToDisplay=false) const |
| | Render this component. More correctly, the component is cached for rendering. More...
|
| |
| const ComponentArea & | getComponentArea () const |
| | Return the ComponentArea of this component. More...
|
| |
| void | setComponentArea (const ComponentArea &area) |
| | Set the conponent's ComponentArea. More...
|
| |
| const ColourRect & | getColours () const |
| | Return the ColourRect used by this component. More...
|
| |
| void | setColours (const ColourRect &cols) |
| | Set the colours to be used by this component. More...
|
| |
| const String & | getColoursPropertySource () const |
| | Returns the name of the property from which the colour values will be obtained, if set. More...
|
| |
| void | setColoursPropertySource (const String &property) |
| | Set the name of the property where colour values will be obtained, if set. More...
|
| |
| virtual bool | handleFontRenderSizeChange (Window &window, const Font *font) const |
| | perform any processing required due to the given font having changed. More...
|
| |
|
| void | render_impl (Window &srcWindow, Rectf &destRect, const CEGUI::ColourRect *modColours, const Rectf *clipper, bool clipToDisplay) const |
| | Function to do main render caching work. More...
|
| |
| void | initColoursRect (const Window &wnd, const ColourRect *modCols, ColourRect &cr) const |
| | Helper function to initialise a ColourRect with appropriate values according to the way the component is set up. More...
|
| |
| virtual void | render_impl (Window &srcWindow, Rectf &destRect, const CEGUI::ColourRect *modColours, const Rectf *clipper, bool clipToDisplay) const =0 |
| | Function to do main render caching work. More...
|
| |
| bool | writeColoursXML (XMLSerializer &xml_stream) const |
| | Writes xml for the colours to a OutStream. Will prefer property colours before explicit. More...
|
| |
Class that encapsulates information for a single image component.