Crazy Eddie's GUI System
${CEGUI_VERSION}
|
An abstract class that defines the interface to access object properties by name. More...
Inherits CEGUI::AllocatedObject< Property >, and CEGUI::AllocatedObject< Property >.
Inherited by CEGUI::TypedProperty< T >, CEGUI::TypedProperty< T >, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, Property_wrapper, TimerProperties::Delay, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< unsigned int >, and CEGUI::TypedProperty< unsigned int >.
Public Member Functions | |
Property (const String &name, const String &help, const String &defaultValue="", bool writesXML=true, const String &dataType="Unknown", const String &origin="Unknown") | |
Creates a new Property object. More... | |
virtual | ~Property (void) |
Destructor for Property objects. | |
const String & | getHelp (void) const |
Return a String that describes the purpose and usage of this Property. More... | |
const String & | getName (void) const |
Return a the name of this Property. More... | |
const String & | getDataType (void) const |
Return string data type of this Property. More... | |
const String & | getOrigin (void) const |
Return string origin of this Property. More... | |
virtual String | get (const PropertyReceiver *receiver) const =0 |
Return the current value of the Property as a String. More... | |
virtual void | set (PropertyReceiver *receiver, const String &value)=0 |
Sets the value of the property. More... | |
virtual bool | isDefault (const PropertyReceiver *receiver) const |
Returns whether the property is at it's default value. More... | |
virtual String | getDefault (const PropertyReceiver *receiver) const |
Returns the default value of the Property as a String. More... | |
virtual void | writeXMLToStream (const PropertyReceiver *receiver, XMLSerializer &xml_stream) const |
Writes out an XML representation of this class to the given stream. More... | |
virtual bool | isReadable () const |
Returns whether the property is readable. More... | |
virtual bool | isWritable () const |
Returns whether the property is writable. More... | |
virtual bool | doesWriteXML () const |
Returns whether the property writes to XML streams. | |
virtual void | initialisePropertyReceiver (PropertyReceiver *) const |
function to allow initialisation of a PropertyReceiver. | |
virtual Property * | clone () const =0 |
Property (const String &name, const String &help, const String &defaultValue="", bool writesXML=true, const String &dataType="Unknown", const String &origin="Unknown") | |
Creates a new Property object. More... | |
virtual | ~Property (void) |
Destructor for Property objects. | |
const String & | getHelp (void) const |
Return a String that describes the purpose and usage of this Property. More... | |
const String & | getName (void) const |
Return a the name of this Property. More... | |
const String & | getDataType (void) const |
Return string data type of this Property. More... | |
const String & | getOrigin (void) const |
Return string origin of this Property. More... | |
virtual String | get (const PropertyReceiver *receiver) const =0 |
Return the current value of the Property as a String. More... | |
virtual void | set (PropertyReceiver *receiver, const String &value)=0 |
Sets the value of the property. More... | |
virtual bool | isDefault (const PropertyReceiver *receiver) const |
Returns whether the property is at it's default value. More... | |
virtual String | getDefault (const PropertyReceiver *receiver) const |
Returns the default value of the Property as a String. More... | |
virtual void | writeXMLToStream (const PropertyReceiver *receiver, XMLSerializer &xml_stream) const |
Writes out an XML representation of this class to the given stream. More... | |
virtual bool | isReadable () const |
Returns whether the property is readable. More... | |
virtual bool | isWritable () const |
Returns whether the property is writable. More... | |
virtual bool | doesWriteXML () const |
Returns whether the property writes to XML streams. | |
virtual void | initialisePropertyReceiver (PropertyReceiver *) const |
function to allow initialisation of a PropertyReceiver. | |
virtual Property * | clone () const =0 |
Static Public Attributes | |
static const String | XMLElementName |
static const String | NameXMLAttributeName |
static const String | ValueXMLAttributeName |
Protected Attributes | |
String | d_name |
String that stores the Property name. | |
String | d_help |
String that stores the Property help text. | |
String | d_default |
String that stores the Property default value string. | |
bool | d_writeXML |
Specifies whether writeXMLToStream should do anything for this property. | |
String | d_dataType |
Holds data type of this property. | |
String | d_origin |
Holds origin of this property. | |
An abstract class that defines the interface to access object properties by name.
Property objects allow (via a PropertySet) access to certain properties of objects by using simple get/set functions and the name of the property to be accessed.
|
inline |
Creates a new Property object.
name | String containing the name of the new Property. |
help | String containing a description of the Property and it's usage. |
defaultValue | String holding the textual representation of the default value for this Property |
writesXML | Specifies whether the writeXMLToStream method should do anything for this Property. This enables selectivity in what properties within a PropertySet will get output as XML. |
dataType | String representation of the data type this property is held in ("int", "UVector2", ...) |
origin | String describing the origin class of this Property (Window, FrameWindow, ...) |
|
inline |
Creates a new Property object.
name | String containing the name of the new Property. |
help | String containing a description of the Property and it's usage. |
defaultValue | String holding the textual representation of the default value for this Property |
writesXML | Specifies whether the writeXMLToStream method should do anything for this Property. This enables selectivity in what properties within a PropertySet will get output as XML. |
dataType | String representation of the data type this property is held in ("int", "UVector2", ...) |
origin | String describing the origin class of this Property (Window, FrameWindow, ...) |
|
pure virtual |
Return the current value of the Property as a String.
receiver | Pointer to the target object. |
Implemented in CEGUI::TypedProperty< T >, CEGUI::TypedProperty< T >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< unsigned int >, CEGUI::TypedProperty< unsigned int >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, and TimerProperties::Delay.
|
pure virtual |
Return the current value of the Property as a String.
receiver | Pointer to the target object. |
Implemented in CEGUI::TypedProperty< T >, CEGUI::TypedProperty< T >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< unsigned int >, CEGUI::TypedProperty< unsigned int >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, and TimerProperties::Delay.
Referenced by CEGUI::PropertySet::getProperty().
|
inline |
Return string data type of this Property.
Referenced by CEGUI::PropertyDim::getValue().
|
inline |
|
virtual |
Returns the default value of the Property as a String.
receiver | Pointer to the target object. |
References d_default.
Referenced by isDefault().
|
virtual |
|
inline |
|
inline |
|
inline |
|
inline |
Return a the name of this Property.
Referenced by CEGUI::PropertySet::addProperty(), CEGUI::Window::banPropertyFromXML(), CEGUI::Window::isPropertyAtDefault(), CEGUI::Window::isPropertyBannedFromXML(), and CEGUI::Window::unbanPropertyFromXML().
|
inline |
|
inline |
|
virtual |
Returns whether the property is at it's default value.
receiver | Pointer to the target object. |
References getDefault().
|
virtual |
Returns whether the property is at it's default value.
receiver | Pointer to the target object. |
|
virtual |
Returns whether the property is readable.
Reimplemented in PropertyLinkDefinition_less__bool__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Colour__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_ColourRect__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_UBox__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_UDim__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyLinkDefinition_less__float__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_String__greater__wrapper, PropertyLinkDefinition_less__unsigned_int__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, PropertyDefinition_less__bool__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Colour__greater__wrapper, PropertyDefinition_less__CEGUI_scope_ColourRect__greater__wrapper, PropertyDefinition_less__CEGUI_scope_UBox__greater__wrapper, PropertyDefinition_less__CEGUI_scope_UDim__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyDefinition_less__float__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper, PropertyDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_String__greater__wrapper, PropertyDefinition_less__unsigned_int__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, CEGUI::TplProperty< C, T >, CEGUI::TplProperty< C, T >, CEGUI::TplProperty< Window, String >, CEGUI::TplProperty< Window, String >, TypedProperty_less__bool__greater__wrapper, TypedProperty_less__CEGUI_scope_Colour__greater__wrapper, TypedProperty_less__CEGUI_scope_ColourRect__greater__wrapper, TypedProperty_less__CEGUI_scope_UBox__greater__wrapper, TypedProperty_less__CEGUI_scope_UDim__greater__wrapper, TypedProperty_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, TypedProperty_less__float__greater__wrapper, TypedProperty_less__CEGUI_scope_Font_ptr___greater__wrapper, TypedProperty_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_Image_ptr___greater__wrapper, TypedProperty_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_String__greater__wrapper, TypedProperty_less__unsigned_int__greater__wrapper, TypedProperty_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_VerticalFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, FalagardPropertyBase_less__bool__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Colour__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_ColourRect__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_UBox__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_UDim__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, FalagardPropertyBase_less__float__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Font_ptr___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Image_ptr___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_String__greater__wrapper, FalagardPropertyBase_less__unsigned_int__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_VerticalFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, and Property_wrapper.
Referenced by CEGUI::TypedProperty< CEGUI::Vector2< float > >::getNative(), Property_wrapper::isReadable(), FalagardPropertyBase_less__bool__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_UBox__greater__wrapper::isReadable(), FalagardPropertyBase_less__float__greater__wrapper::isReadable(), FalagardPropertyBase_less__unsigned_int__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_Font_ptr___greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_VerticalFormatting__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_Colour__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_UDim__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_HorizontalFormatting__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_Image_ptr___greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_ColourRect__greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_Size_less__float__greater___greater__wrapper::isReadable(), FalagardPropertyBase_less__CEGUI_scope_String__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_Image_ptr___greater__wrapper::isReadable(), TypedProperty_less__unsigned_int__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_VerticalFormatting__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_UDim__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_Font_ptr___greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_HorizontalFormatting__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_Size_less__float__greater___greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_String__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper::isReadable(), TypedProperty_less__float__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_UBox__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_Colour__greater__wrapper::isReadable(), TypedProperty_less__bool__greater__wrapper::isReadable(), TypedProperty_less__CEGUI_scope_ColourRect__greater__wrapper::isReadable(), PropertyDefinition_less__unsigned_int__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_String__greater__wrapper::isReadable(), PropertyDefinition_less__bool__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_Colour__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_ColourRect__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_UBox__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_UDim__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper::isReadable(), PropertyDefinition_less__float__greater__wrapper::isReadable(), PropertyDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper::isReadable(), PropertyLinkDefinition_less__float__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_String__greater__wrapper::isReadable(), PropertyLinkDefinition_less__bool__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_Colour__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_ColourRect__greater__wrapper::isReadable(), PropertyLinkDefinition_less__unsigned_int__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_UDim__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_UBox__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper::isReadable(), PropertyLinkDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper::isReadable(), and PropertyLinkDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper::isReadable().
|
virtual |
Returns whether the property is readable.
Reimplemented in PropertyLinkDefinition_less__bool__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Colour__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_ColourRect__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_UBox__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_UDim__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyLinkDefinition_less__float__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_String__greater__wrapper, PropertyLinkDefinition_less__unsigned_int__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, PropertyDefinition_less__bool__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Colour__greater__wrapper, PropertyDefinition_less__CEGUI_scope_ColourRect__greater__wrapper, PropertyDefinition_less__CEGUI_scope_UBox__greater__wrapper, PropertyDefinition_less__CEGUI_scope_UDim__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyDefinition_less__float__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper, PropertyDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_String__greater__wrapper, PropertyDefinition_less__unsigned_int__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, CEGUI::TplProperty< C, T >, CEGUI::TplProperty< C, T >, CEGUI::TplProperty< Window, String >, CEGUI::TplProperty< Window, String >, TypedProperty_less__bool__greater__wrapper, TypedProperty_less__CEGUI_scope_Colour__greater__wrapper, TypedProperty_less__CEGUI_scope_ColourRect__greater__wrapper, TypedProperty_less__CEGUI_scope_UBox__greater__wrapper, TypedProperty_less__CEGUI_scope_UDim__greater__wrapper, TypedProperty_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, TypedProperty_less__float__greater__wrapper, TypedProperty_less__CEGUI_scope_Font_ptr___greater__wrapper, TypedProperty_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_Image_ptr___greater__wrapper, TypedProperty_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_String__greater__wrapper, TypedProperty_less__unsigned_int__greater__wrapper, TypedProperty_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_VerticalFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, FalagardPropertyBase_less__bool__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Colour__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_ColourRect__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_UBox__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_UDim__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, FalagardPropertyBase_less__float__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Font_ptr___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Image_ptr___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_String__greater__wrapper, FalagardPropertyBase_less__unsigned_int__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_VerticalFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, and Property_wrapper.
|
virtual |
Returns whether the property is writable.
Reimplemented in PropertyLinkDefinition_less__bool__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Colour__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_ColourRect__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_UBox__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_UDim__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyLinkDefinition_less__float__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_String__greater__wrapper, PropertyLinkDefinition_less__unsigned_int__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, PropertyDefinition_less__bool__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Colour__greater__wrapper, PropertyDefinition_less__CEGUI_scope_ColourRect__greater__wrapper, PropertyDefinition_less__CEGUI_scope_UBox__greater__wrapper, PropertyDefinition_less__CEGUI_scope_UDim__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyDefinition_less__float__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper, PropertyDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_String__greater__wrapper, PropertyDefinition_less__unsigned_int__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, TypedProperty_less__bool__greater__wrapper, TypedProperty_less__CEGUI_scope_Colour__greater__wrapper, TypedProperty_less__CEGUI_scope_ColourRect__greater__wrapper, TypedProperty_less__CEGUI_scope_UBox__greater__wrapper, TypedProperty_less__CEGUI_scope_UDim__greater__wrapper, TypedProperty_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, TypedProperty_less__float__greater__wrapper, TypedProperty_less__CEGUI_scope_Font_ptr___greater__wrapper, TypedProperty_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_Image_ptr___greater__wrapper, TypedProperty_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_String__greater__wrapper, TypedProperty_less__unsigned_int__greater__wrapper, TypedProperty_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_VerticalFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, CEGUI::TplProperty< C, T >, CEGUI::TplProperty< C, T >, CEGUI::TplProperty< Window, String >, CEGUI::TplProperty< Window, String >, FalagardPropertyBase_less__bool__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Colour__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_ColourRect__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_UBox__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_UDim__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, FalagardPropertyBase_less__float__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Font_ptr___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Image_ptr___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_String__greater__wrapper, FalagardPropertyBase_less__unsigned_int__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_VerticalFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, and Property_wrapper.
|
virtual |
Returns whether the property is writable.
Reimplemented in PropertyLinkDefinition_less__bool__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Colour__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_ColourRect__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_UBox__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_UDim__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyLinkDefinition_less__float__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_String__greater__wrapper, PropertyLinkDefinition_less__unsigned_int__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper, PropertyLinkDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, PropertyDefinition_less__bool__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Colour__greater__wrapper, PropertyDefinition_less__CEGUI_scope_ColourRect__greater__wrapper, PropertyDefinition_less__CEGUI_scope_UBox__greater__wrapper, PropertyDefinition_less__CEGUI_scope_UDim__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, PropertyDefinition_less__float__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper, PropertyDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_String__greater__wrapper, PropertyDefinition_less__unsigned_int__greater__wrapper, PropertyDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, PropertyDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper, PropertyDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, TypedProperty_less__bool__greater__wrapper, TypedProperty_less__CEGUI_scope_Colour__greater__wrapper, TypedProperty_less__CEGUI_scope_ColourRect__greater__wrapper, TypedProperty_less__CEGUI_scope_UBox__greater__wrapper, TypedProperty_less__CEGUI_scope_UDim__greater__wrapper, TypedProperty_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, TypedProperty_less__float__greater__wrapper, TypedProperty_less__CEGUI_scope_Font_ptr___greater__wrapper, TypedProperty_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_Image_ptr___greater__wrapper, TypedProperty_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_String__greater__wrapper, TypedProperty_less__unsigned_int__greater__wrapper, TypedProperty_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, TypedProperty_less__CEGUI_scope_VerticalFormatting__greater__wrapper, TypedProperty_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, CEGUI::TplProperty< C, T >, CEGUI::TplProperty< C, T >, CEGUI::TplProperty< Window, String >, CEGUI::TplProperty< Window, String >, FalagardPropertyBase_less__bool__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Colour__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_ColourRect__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_UBox__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_UDim__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper, FalagardPropertyBase_less__float__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Font_ptr___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_HorizontalFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Image_ptr___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Size_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_String__greater__wrapper, FalagardPropertyBase_less__unsigned_int__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_VerticalFormatting__greater__wrapper, FalagardPropertyBase_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper, and Property_wrapper.
Referenced by CEGUI::Window::banPropertyFromXML(), CEGUI::Window::isPropertyBannedFromXML(), Property_wrapper::isWritable(), FalagardPropertyBase_less__bool__greater__wrapper::isWritable(), FalagardPropertyBase_less__float__greater__wrapper::isWritable(), FalagardPropertyBase_less__unsigned_int__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_UBox__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_VerticalFormatting__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_Font_ptr___greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_Colour__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_UDim__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_HorizontalFormatting__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_ColourRect__greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_Image_ptr___greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_Size_less__float__greater___greater__wrapper::isWritable(), FalagardPropertyBase_less__CEGUI_scope_String__greater__wrapper::isWritable(), TypedProperty_less__float__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_VerticalFormatting__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_UDim__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_Font_ptr___greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_HorizontalFormatting__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_Size_less__float__greater___greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_String__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper::isWritable(), TypedProperty_less__unsigned_int__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_Image_ptr___greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_UBox__greater__wrapper::isWritable(), TypedProperty_less__bool__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_Colour__greater__wrapper::isWritable(), TypedProperty_less__CEGUI_scope_ColourRect__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_String__greater__wrapper::isWritable(), PropertyDefinition_less__bool__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_Colour__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_ColourRect__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_UBox__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_UDim__greater__wrapper::isWritable(), PropertyDefinition_less__unsigned_int__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper::isWritable(), PropertyDefinition_less__float__greater__wrapper::isWritable(), PropertyDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_HorizontalTextFormatting__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__CEGUI_scope_UDim__greater___greater__wrapper::isWritable(), PropertyLinkDefinition_less__float__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_Font_ptr___greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_String__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_VerticalFormatting__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_Colour__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_VerticalTextFormatting__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_ColourRect__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_UDim__greater__wrapper::isWritable(), PropertyLinkDefinition_less__unsigned_int__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_HorizontalFormatting__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_Rect_less__CEGUI_scope_UDim__greater___greater__wrapper::isWritable(), PropertyLinkDefinition_less__bool__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_Image_ptr___greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_UBox__greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_Vector2_less__float__greater___greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_Size_less__float__greater___greater__wrapper::isWritable(), PropertyLinkDefinition_less__CEGUI_scope_Rect_less__float__greater___greater__wrapper::isWritable(), and CEGUI::TypedProperty< CEGUI::Vector2< float > >::setNative().
|
pure virtual |
Sets the value of the property.
receiver | Pointer to the target object. |
value | A String object that contains a textual representation of the new value to assign to the Property. |
InvalidRequestException | Thrown when the Property was unable to interpret the content of value. |
Implemented in CEGUI::TypedProperty< T >, CEGUI::TypedProperty< T >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< unsigned int >, CEGUI::TypedProperty< unsigned int >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, and TimerProperties::Delay.
Referenced by CEGUI::PropertySet::setProperty().
|
pure virtual |
Sets the value of the property.
receiver | Pointer to the target object. |
value | A String object that contains a textual representation of the new value to assign to the Property. |
InvalidRequestException | Thrown when the Property was unable to interpret the content of value. |
Implemented in CEGUI::TypedProperty< T >, CEGUI::TypedProperty< T >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalTextFormatting >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Rect< float > >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::Font * >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::VerticalTextFormatting >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< CEGUI::String >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< float >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< String >, CEGUI::TypedProperty< unsigned int >, CEGUI::TypedProperty< unsigned int >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Rect< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Vector2< CEGUI::UDim > >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::Colour >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::VerticalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::HorizontalFormatting >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::Size< float > >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< CEGUI::UDim >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< bool >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::UBox >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::ColourRect >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Image * >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::TypedProperty< CEGUI::Vector2< float > >, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, CEGUI::XercesParserProperties::SchemaDefaultResourceGroup, and TimerProperties::Delay.
|
virtual |
Writes out an XML representation of this class to the given stream.
Reimplemented in CEGUI::Window::LookNFeelProperty, CEGUI::Window::LookNFeelProperty, CEGUI::Window::WindowRendererProperty, and CEGUI::Window::WindowRendererProperty.
References CEGUI::XMLSerializer::attribute(), CEGUI::XMLSerializer::closeTag(), d_name, d_writeXML, CEGUI::String::find(), CEGUI::String::npos, CEGUI::XMLSerializer::openTag(), and CEGUI::XMLSerializer::text().
Referenced by CEGUI::Window::WindowRendererProperty::writeXMLToStream(), and CEGUI::Window::LookNFeelProperty::writeXMLToStream().
|
virtual |
Writes out an XML representation of this class to the given stream.
Reimplemented in CEGUI::Window::LookNFeelProperty, CEGUI::Window::LookNFeelProperty, CEGUI::Window::WindowRendererProperty, and CEGUI::Window::WindowRendererProperty.