![]() |
GL Studio C++ Runtime API
|
#include <gls_metadata_attributes.h>
Public Types | |
typedef DistiAttribute< T > | _BaseClass |
Deprecated typedef for the base class. | |
typedef DistiAttribute< T > | BaseClass |
Typedef for the base class. | |
typedef void(containerT::* | SetMethodType) (SetArgT) |
Typedef for the set method function pointer. | |
typedef GetReturnT(containerT::* | GetMethodType) () |
Typedef for the get method function pointer. | |
typedef GetReturnT(containerT::* | GetMethodConstType) () const |
Typedef for the get method const function pointer. | |
![]() | |
typedef unsigned int | CallbackID |
Type for unique identifiers. | |
Public Member Functions | |
DistiAttributeProperty (const AttributeName &name, containerT *frame, T *attribPtr, SetMethodType setMethod, GetMethodType getMethod) | |
virtual bool | OkToWrite () const override |
virtual std::string | ValueString () override |
virtual void | ValueString (const std::string &s) override |
virtual long | ValueInt () override |
virtual void | ValueInt (long val) override |
virtual double | ValueFloat () override |
virtual void | ValueFloat (double val) override |
virtual std::ostream & | WriteValue (std::ostream &outstr) override |
virtual std::istream & | ReadValue (std::istream &instr) override |
virtual T | Value () override |
virtual void | Value (const T &val) override |
![]() | |
DistiAttribute (CallbackMethodCallerBase *callback, const AttributeName &name, T *attribPtr) | |
DistiAttribute (CallbackMethodCallerBase *callback, const AttributeName &name, const T &initialValue) | |
bool | Copyable () const override |
long | ValueInt () override |
void | ValueInt (long val) override |
double | ValueFloat () override |
void | ValueFloat (double val) override |
DistiAttributeBase & | operator= (const DistiAttributeBase &oldClass) override |
std::ostream & | WriteValue (std::ostream &outstr) override |
std::istream & | ReadValue (std::istream &instr) override |
virtual T | Value () |
virtual void | Value (const T &val) |
bool | operator== (const DistiAttributeBase &rArg) override |
~DistiAttribute () override | |
![]() | |
DistiAttributeBase (CallbackMethodCallerBase *callback, const AttributeName &name, bool localStorage) | |
virtual DistiAttributeBase & | operator= (const DistiAttributeBase &oldClass) |
const AttributeName & | Name () const |
AttributeName & | Name () |
bool | LocalStorage () const |
virtual bool | Copyable () const |
virtual bool | OkToWrite () const |
virtual bool | ValueChanged () |
virtual void | ResetValueChanged () |
virtual std::string | ValueString () |
virtual void | ValueString (const std::string &s) |
virtual long | ValueInt () |
virtual void | ValueInt (long val) |
virtual double | ValueFloat () |
virtual void | ValueFloat (double val) |
virtual void | CallCallback () |
Calls callback CallType3 if it has been set. | |
virtual std::ostream & | WriteValue (std::ostream &outstr)=0 |
virtual std::istream & | ReadValue (std::istream &instr)=0 |
virtual bool | operator== (const DistiAttributeBase &r) |
template<class valType > | |
DistiAttributeBase & | operator<< (const valType &val) |
template<class valType > | |
DistiAttributeBase & | operator>> (valType &val) |
virtual CallbackID | RegisterObserver (AttributeObserver *observer) |
virtual void | UnregisterObserver (CallbackID id) |
virtual void | NotifyObservers () |
![]() | |
void | AddWeakReference (WeakReference *weakRef) override |
void | NotifyWeakReferenceDestroyed (WeakReference *ref) override |
virtual void | AddWeakReference (WeakReference *weakRef)=0 |
virtual void | NotifyWeakReferenceDestroyed (WeakReference *weakReference)=0 |
Public Attributes | |
float | _precision |
Number of digits of floating point precision. | |
containerT * | _container |
Object that contains the set and get methods. | |
SetMethodType | _setMethod |
The set method function pointer. | |
GetMethodType | _getMethod |
The get method function pointer. | |
Additional Inherited Members | |
![]() | |
WeakReferenceableMixin () | |
virtual | ~WeakReferenceableMixin () |
![]() | |
T * | _attribPtr |
int | _precision |
![]() | |
AttributeName | _name |
CallbackMethodCallerBase * | _callback |
ScopedPtr< DistiAttributeObserverList > | _observerList |
bool | _localStorage |
![]() | |
DynamicArray< WeakReference * > * | _weakRefs |
The attribute used in generated code for accessing class properties It can have a get method, set method, and an attribute pointer, or almost any combination of the three. T must have a default constructor, even if it doesn't initialize. SetArgT is the argument type for the SetMethodType.
Specify this if the argument for the Set call is not "const &T". GetReturnT is the return type for the GetMethodType.
Specify this if the return type for the Get call is not T The get and set methods are called when the attribute interface is used for access. If the methods are not provided, the attribute stream operators are used instead. If the property does not have a method or attribute pointer, it will not be able to read/write its value.
|
inline |
Constructor
name | The name of the new attribute. |
frame | The object containing the set and get methods. |
attribPtr | The pointer to the underlying storage for this attribute. |
setMethod | The set method function pointer. |
getMethod | The get method function pointer. |
|
inlineoverridevirtual |
This SHOULD be overriden by any derived objects that may not be ready to write at any point. The reason for this is the data is often written "NAME: VALUE". If Value is not available, we don't want to write "NAME: " first, so before writing "NAME: ", OkToWrite() can be called to see if it will have a valid value.
Reimplemented from DistiAttributeBase.
|
inlineoverridevirtual |
Read from the stream, and store it in this attribute.
instr | The stream to read from. |
Reimplemented from DistiAttribute< T >.
|
inlineoverridevirtual |
Allows for type specific access to the data.
Reimplemented from DistiAttribute< T >.
|
inlineoverridevirtual |
Allows for type specific access to the data.
val | The value to set in the attribute's type. |
Reimplemented from DistiAttribute< T >.
|
inlineoverridevirtual |
Reimplemented from DistiAttribute< T >.
|
inlineoverridevirtual |
Set the double value for this attribute.
val | The double value to set for this attribute. |
Reimplemented from DistiAttribute< T >.
|
inlineoverridevirtual |
Reimplemented from DistiAttribute< T >.
|
inlineoverridevirtual |
Set the integer value of this attribute.
val | The integer value to set for this attribute. |
Reimplemented from DistiAttribute< T >.
|
inlineoverridevirtual |
Here in the base class it uses WriteValue(). If this particular attribute's underlying type is a string, this returns the unencoded value, suitable for users. If a file encoded value is required, call WriteValue instead.
Reimplemented from DistiAttributeBase.
|
inlineoverridevirtual |
Sets the value from a std::string argument. Here in the base class it uses ReadValue(). If this particular attribute's underlying type is a string, this should not be set to an encoded value. If needing to set from an encoded value, call ReadValue instead.
s | The string value to set. |
Reimplemented from DistiAttributeBase.
|
inlineoverridevirtual |
Write this attribute's string value to the stream.
outstr | The stream to write to. |
Reimplemented from DistiAttribute< T >.