Frapper
1.0a
|
Class representing a parameter of a Node. More...
#include <Parameter.h>
Public Types | |
enum | Type { T_Unknown = -1, T_Bool, T_Int, T_UnsignedInt, T_Float, T_String, T_Filename, T_Color, T_Enumeration, T_TextInfo, T_Command, T_Geometry, T_Light, T_Camera, T_Image, T_Group, T_PlugIn, T_Generic, T_NumTypes } |
Nested enumeration for the different types of parameters. More... | |
enum | Multiplicity { M_Invalid = -1, M_OneOrMore } |
Nested enumeration for special types of multiplicity. More... | |
enum | PinType { PT_None = -1, PT_Input, PT_Output } |
Nested enumeration for the different types of pins to represent parameters. More... | |
typedef unsigned int | Size |
Type definition for the size of a parameter, specifying how many values of the given type the parameter can store. | |
![]() | |
typedef QHash< QString, AbstractParameter * > | Map |
Type definition for a map of parameters and parameter groups. | |
typedef QList < AbstractParameter * > | List |
Type definition for a list of parameters and parameter groups. | |
Signals | |
void | dirtied () |
Signal that is emitted when the value of the parameter becomes dirty. | |
void | valueChanged () |
Signal that is emitted when the parameter's value has changed. | |
void | valueChanged (int index) |
Signal that is emitted when the parameter's value with the given index has changed. | |
void | processingRequested () |
Signal that is emitted when the value of the parameter should be processed. | |
void | auxProcessingRequested () |
Signal that is emitted when auxiliary changes in combination with the value happen. | |
void | commandExecutionRequested () |
Signal that is emitted when a command parameter is triggered. | |
void | connectionEstablished () |
Signal that is emitted when a connection is established. | |
void | connectionDestroyed () |
Signal that is emitted when a connection is destroyed. | |
![]() | |
void | enabledChanged () |
Signal that is emitted when the parameter is enabled or disabled. | |
Public Member Functions | |
Parameter (const QString &name, Type type, const QVariant &value) | |
Constructor of the Parameter class. | |
Parameter (const Parameter ¶meter) | |
Copy constructor of the Parameter class. | |
virtual | ~Parameter () |
Destructor of the Parameter class. | |
virtual AbstractParameter * | clone () |
Creates an exact copy of the parameter. | |
virtual bool | isGroup () const |
Returns whether the parameter object derived from this class is a parameter group. | |
Type | getType () const |
Returns the parameter's type. | |
Size | getSize () const |
Returns the parameter's size specifying how many values of the given type it stores. | |
void | setSize (Size size) |
Sets the parameter's size specifying how many values of the given type it stores. | |
int | getMultiplicity () const |
Returns the parameter's multiplicity specifying how many parameters of the given type can be connected to it. | |
void | setMultiplicity (int multiplicity) |
Sets the parameter's multiplicity specifying how many parameters of the given type can be connected to it. | |
int | getNumberOfConnections () const |
Returns the parameter's number of connections. | |
virtual QVariant | getValue (bool triggerEvaluation=false) |
Returns the parameter's value while optionally triggering the evaluation chain. | |
virtual const QVariantList & | getValueList () const |
Returns the parameter's value list. Which contains the values of all connected parameters. | |
void | setValue (const QVariant &value, bool triggerDirtying=false) |
Sets the parameter's value to the given value. | |
void | setValue (int index, const QVariant &value, bool triggerDirtying=false) |
Sets the parameter's value with the given index to the given value. | |
bool | hasDefaultValue () const |
Returns whether the parameter's current value is the default value. | |
void | setDefaultValue (const QVariant &defaultValue) |
Sets the parameter's default value to the given value. | |
virtual void | reset () |
Resets the parameter to its default value. | |
List | getAffectedParameters () const |
Returns the list of parameters that are affected when the value of this parameter is changed. | |
void | addAffectedParameter (Parameter *affectedParameter) |
Adds a parameter to the list of parameters that are affected when the value of this parameter is changed. | |
void | removeAffectedParameter (Parameter *affectedParameter) |
Removes a parameter from the list of parameters that are affected when the value of this parameter is changed. | |
List | getAffectingParameters () const |
Returns the list of parameters that affect this parameter when their value is changed. | |
void | addAffectingParameter (Parameter *affectingParameter) |
Adds a parameter to the list of parameters that are affected when the value of this parameter is changed. | |
void | removeAffectingParameter (Parameter *affectingParameter) |
Removes a parameter from the list of parameters that are affected when the value of this parameter is changed. | |
QString | getDescription () const |
Returns the description of the parameter. | |
void | setDescription (const QString &description) |
Sets the description for the parameter. | |
PinType | getPinType () const |
Returns the type of pin that should be created to represent the parameter. | |
void | setPinType (PinType pinType) |
Sets the type of pin that should be created to represent the parameter. | |
Connection::Map | getConnectionMap () const |
Returns all connections currently connected to this parameter. | |
void | addConnection (Connection *connection) |
Adds the given connection to the list of connections. | |
void | removeConnection (Connection::ID id) |
Removes the given connection from the list of connections. | |
bool | isConnected () const |
Returns whether the parameter is connected to at least one other parameter. | |
Parameter * | getConnectedParameter () const |
Returns the first parameter connected to this parameter. | |
bool | isDirty () |
Returns whether the parameter's value has changed. | |
virtual void | setDirty (bool dirty) |
Sets whether the parameter's value has changed. | |
bool | isAuxDirty () |
Returns the auxiliary dirty flag. | |
virtual void | setAuxDirty (bool dirty) |
Sets the auxiliary dirty flag. | |
bool | isVisible () const |
Returns the visibility for this parameter. | |
void | setVisible (bool visible) |
Sets the visibility for this parameter. | |
bool | isReadOnly () const |
Returns whether the parameter can not be modified using a control in the UI. | |
void | setReadOnly (bool readOnly) |
Sets whether the parameter can not be modified using a control in the UI. | |
void | setSelfEvaluating (bool selfEvaluating) |
Sets whether the parameter is self-evaluating. | |
bool | isSelfEvaluating () const |
Returns wether the parameter is self-evaluating. | |
void | propagateDirty (bool setFirstTrue=true) |
Sets the dirty flag for all parameters that are connected with and affected by this parameter. | |
void | propagateAuxDirty () |
Sets the aux dirty flag for all parameters that are affecting this parameter.. | |
void | propagateEvaluation () |
Propagates the evaluation of nodes. | |
void | setChangeFunction (const char *changeFunction) |
Sets the function to call when the parameter's value changes. | |
void | setProcessingFunction (const char *processingFunction) |
Sets the function to use for computing the parameter's value. | |
void | setAuxProcessingFunction (const char *processingFunction) |
Sets the function to use for computing auxiliary value dependant things. | |
void | setCommandFunction (const char *commandFunction) |
Sets the function to use for executing the command represented by the parameter. | |
void | setOnConnectFunction (const char *onConnectFunction) |
Sets the function which should be called on parameter's connection. | |
void | setOnDisconnectFunction (const char *onDisconnectFunction) |
Sets the function which should be called on parameter's disconnection. | |
void | executeCommand () |
Emits the commandExecutionRequested signal to notify connected objects that the command represented by the parameter should be executed. | |
QString | getValueString () |
Returns the parameter's value as a character string. | |
![]() | |
AbstractParameter (const QString &name) | |
Constructor of the AbstractParameter class. | |
AbstractParameter (const AbstractParameter ¶meter) | |
Copy constructor of the AbstractParameter class. | |
virtual | ~AbstractParameter () |
Destructor of the AbstractParameter class. | |
QString | getName () const |
Returns the name of the parameter or parameter group. | |
bool | isEnabled () const |
Returns whether the controls for editing the parameter or parameter group in the UI should be enabled. | |
virtual void | setEnabled (bool enabled, bool propagate=true) |
Sets whether the controls for editing the parameter or parameter group in the UI should be enabled. | |
virtual void | setName (const QString &name) |
Sets name of the parameter. | |
Node * | getNode () const |
Returns the node to which this parameter or parameter group belongs. | |
virtual void | setNode (Node *node) |
Sets the node to which this parameter or parameter group belongs. | |
Static Public Member Functions | |
static QString | getTypeName (Type type) |
Returns the name of the given parameter type. | |
static QColor | getTypeColor (Type type) |
Returns the color of the given parameter type. | |
static Type | getTypeByName (const QString &typeName) |
Returns the parameter type corresponding to the given name. | |
static QVariant | getDefaultValue (Type type) |
Returns the default value for parameters of the given type. | |
static QColor | decodeIntColor (const QString &color) |
Converts the given string to a color value. The string should contain comma-separated integer values for the red, green and blue channels respectively. | |
static QColor | decodeDoubleColor (const QString &color) |
Converts the given string to a color value. The string should contain comma-separated double-precision floating point values for the red, green and blue channels respectively. | |
static Size | decodeSize (const QString &size) |
Converts the given string to a size value. | |
static int | decodeMultiplicity (const QString &multiplicity) |
Converts the given string to a multiplicity value. | |
static PinType | decodePinType (const QString &pinTypeString) |
Converts the given string to a pin type value. | |
static Parameter * | create (const QString &name, Type type, QVariant defaultValue=QVariant()) |
Creates a parameter with the given name and type. | |
static Parameter * | create (const QDomElement &element) |
Creates a parameter from the given XML element. | |
static Parameter * | clone (const Parameter ¶meter) |
Creates a copy of the given parameter. | |
static QString | extractFirstGroupName (QString *path) |
Extracts the name of first group found in the given parameter path. | |
static Parameter * | createImageParameter (const QString &name, Ogre::TexturePtr texturePointer=Ogre::TexturePtr(0)) |
Creates an image parameter with the given name. | |
static Parameter * | createGroupParameter (const QString &name, ParameterGroup *parameterGroup=0) |
Creates a group parameter with the given name. | |
Static Public Attributes | |
static const QString | PathSeparator = " > " |
The string that separates parts in parameter paths. | |
static const QString | EnumerationSeparator = "---" |
The string that identifies enumeration separators. | |
Protected Attributes | |
QMutex | m_mutex |
Mutex for threaded programming. | |
QStringList | m_mutexList |
Type | m_type |
The type of the parameter's value. | |
int | m_size |
The parameter's size specifying how many values of the given type it stores. | |
int | m_multiplicity |
The parameter's multiplicity specifying how many parameters of the given type can be connected to it. | |
QVariant | m_defaultValue |
The parameter's default value. | |
QVariant | m_value |
The parameter's value. | |
QVariantList | m_valueList |
The parameter's value. | |
QString | m_description |
A description of the parameter. | |
PinType | m_pinType |
The type of pin that should be created to represent the parameter. | |
Connection::Map | m_connectionMap |
The map of connections that are connected to this connector with connection IDs as keys. | |
List | m_affectedParameters |
A list of parameter names that are affected when the value of this parameter is changed. | |
List | m_affectingParameters |
A list of parameter names that affect this parameter. | |
bool | m_dirty |
Flag that states whether the parameter's value has changed. | |
bool | m_auxDirty |
Auxiliary dirty flag. | |
bool | m_visible |
Flag that states whether the parameter's should be visible in e.g. ParameterPanel or not. | |
bool | m_readOnly |
Flag that states whether the parameter's value can not be changed using an input control in the UI. | |
bool | m_selfEvaluating |
Flag that states whether the parameter is self-evaluating. | |
![]() | |
QString | m_name |
The name of the parameter or parameter group. | |
bool | m_enabled |
Flag that states whether the controls for editing the parameter or parameter group in the UI should be enabled. | |
Node * | m_node |
The name of the parent node that this parameter or parameter group belongs to. | |
Friends | |
class | SceneModel |
Class representing a parameter of a Node.
typedef unsigned int Frapper::Parameter::Size |
Type definition for the size of a parameter, specifying how many values of the given type the parameter can store.
Frapper::Parameter::Parameter | ( | const QString & | name, |
Parameter::Type | type, | ||
const QVariant & | value | ||
) |
Constructor of the Parameter class.
Constructors and Destructors.
name | The name of the parameter. |
type | The type of the parameter's value(s). |
value | The parameter's value. |
Constructor of the Parameter class.
name | The name of the parameter. |
type | The type of the parameter's value(s). |
value | The parameter's value. |
Frapper::Parameter::Parameter | ( | const Parameter & | parameter | ) |
Copy constructor of the Parameter class.
parameter | The parameter to copy. |
|
virtual |
Destructor of the Parameter class.
|
static |
Returns the name of the given parameter type.
Public Static Functions.
type | The type for which to return the name. |
Returns the name of the given parameter type.
type | The type for which to return the name. |
|
static |
Returns the color of the given parameter type.
type | The type for which to return the color. |
|
static |
Returns the parameter type corresponding to the given name.
typeName | The name of a parameter type. |
|
static |
Returns the default value for parameters of the given type.
type | The parameter type for which to return the default value. |
|
static |
Converts the given string to a color value. The string should contain comma-separated integer values for the red, green and blue channels respectively.
color | The string to convert to a color. |
color | The string to convert to a color. |
|
static |
Converts the given string to a color value. The string should contain comma-separated double-precision floating point values for the red, green and blue channels respectively.
color | The string to convert to a color. |
color | The string to convert to a color. |
|
static |
Converts the given string to a size value.
size | The string to convert to a size value. |
|
static |
Converts the given string to a multiplicity value.
multiplicity | The string to convert to a multiplicity value. |
|
static |
Converts the given string to a pin type value.
pinTypeString | The string to convert to a pin type value. |
|
static |
Creates a parameter with the given name and type.
Depending on the given type an instance of a Parameter-derived class may be returned, e.g. a NumberParameter object if type equals T_Float.
name | The name to use for the new parameter. |
type | The type to use for the new parameter. |
defaultValue | The default value to use for the new parameter. |
|
static |
Creates a parameter from the given XML element.
Depending on the type described in the XML element an instance of a Parameter-derived class may be returned, e.g. a NumberParameter object if the type equals T_Float.
element | The element in a DOM tree containing information about the parameter to create. |
Creates a copy of the given parameter.
parameter | The parameter to clone. |
|
static |
Extracts the name of first group found in the given parameter path.
Extracts the name of first group found in the given parameter name.
path | The parameter path to extract the first group name from. |
name | The parameter name to extract the first group name from. |
|
static |
Creates an image parameter with the given name.
name | The name to use for the parameter. |
texturePointer | The texture pointer to use as the parameter's value. |
|
static |
Creates a group parameter with the given name.
name | The name to use for the parameter. |
parameterGroup | The parameter group pointer to be contained in the parameter. |
name | The name to use for the parameter. |
parameterGroup | The parameter group to use as the parameter's value. |
|
virtual |
Creates an exact copy of the parameter.
Public Functions.
Creates an exact copy of the parameter.
Implements Frapper::AbstractParameter.
Reimplemented in Frapper::NumberParameter, Frapper::SceneNodeParameter< T >, Frapper::FilenameParameter, Frapper::GenericParameter, and Frapper::EnumerationParameter.
|
virtual |
Returns whether the parameter object derived from this class is a parameter group.
Implements Frapper::AbstractParameter.
Parameter::Type Frapper::Parameter::getType | ( | ) | const |
Returns the parameter's type.
Parameter::Size Frapper::Parameter::getSize | ( | ) | const |
Returns the parameter's size specifying how many values of the given type it stores.
void Frapper::Parameter::setSize | ( | Parameter::Size | size | ) |
Sets the parameter's size specifying how many values of the given type it stores.
size | The parameter's size value. |
int Frapper::Parameter::getMultiplicity | ( | ) | const |
Returns the parameter's multiplicity specifying how many parameters of the given type can be connected to it.
void Frapper::Parameter::setMultiplicity | ( | int | multiplicity | ) |
Sets the parameter's multiplicity specifying how many parameters of the given type can be connected to it.
multiplicity | The parameter's multiplicity value. |
int Frapper::Parameter::getNumberOfConnections | ( | ) | const |
Returns the parameter's number of connections.
|
virtual |
Returns the parameter's value while optionally triggering the evaluation chain.
triggerEvaluation | Flag to control whether to trigger the evaluation chain. |
Trigger | evaluation. |
triggerEvaluation | Flag to control whether to trigger the evaluation chain. |
Reimplemented in Frapper::NumberParameter, and Frapper::GenericParameter.
|
virtual |
Returns the parameter's value list. Which contains the values of all connected parameters.
void Frapper::Parameter::setValue | ( | const QVariant & | value, |
bool | triggerDirtying = false |
||
) |
Sets the parameter's value to the given value.
value | The new value for the parameter. |
void Frapper::Parameter::setValue | ( | int | index, |
const QVariant & | value, | ||
bool | triggerDirtying = false |
||
) |
Sets the parameter's value with the given index to the given value.
Convenience function that works on a list of values.
index | The index of the value to set. |
value | The new value for the parameter. |
bool Frapper::Parameter::hasDefaultValue | ( | ) | const |
Returns whether the parameter's current value is the default value.
void Frapper::Parameter::setDefaultValue | ( | const QVariant & | defaultValue | ) |
Sets the parameter's default value to the given value.
defaultValue | The default value to use for the parameter. |
|
virtual |
Resets the parameter to its default value.
Implements Frapper::AbstractParameter.
AbstractParameter::List Frapper::Parameter::getAffectedParameters | ( | ) | const |
Returns the list of parameters that are affected when the value of this parameter is changed.
void Frapper::Parameter::addAffectedParameter | ( | Parameter * | affectedParameter | ) |
Adds a parameter to the list of parameters that are affected when the value of this parameter is changed.
affectedParameter | Parameter that is affected when the value of this parameter is changed. |
void Frapper::Parameter::removeAffectedParameter | ( | Parameter * | affectedParameter | ) |
Removes a parameter from the list of parameters that are affected when the value of this parameter is changed.
affectedParameter | Parameter that is affected when the value of this parameter is changed. |
AbstractParameter::List Frapper::Parameter::getAffectingParameters | ( | ) | const |
Returns the list of parameters that affect this parameter when their value is changed.
void Frapper::Parameter::addAffectingParameter | ( | Parameter * | affectingParameter | ) |
Adds a parameter to the list of parameters that are affected when the value of this parameter is changed.
affectingParameter | Parameter that affects this parameter when its value is changed. |
void Frapper::Parameter::removeAffectingParameter | ( | Parameter * | affectingParameter | ) |
Removes a parameter from the list of parameters that are affected when the value of this parameter is changed.
affectingParameter | Parameter that affects this parameter when its value is changed. |
QString Frapper::Parameter::getDescription | ( | ) | const |
Returns the description of the parameter.
void Frapper::Parameter::setDescription | ( | const QString & | description | ) |
Sets the description for the parameter.
description | The description for the parameter. |
Parameter::PinType Frapper::Parameter::getPinType | ( | ) | const |
Returns the type of pin that should be created to represent the parameter.
void Frapper::Parameter::setPinType | ( | PinType | pinType | ) |
Sets the type of pin that should be created to represent the parameter.
pinType | The type of pin that should be created to represent the parameter. |
Connection::Map Frapper::Parameter::getConnectionMap | ( | ) | const |
Returns all connections currently connected to this parameter.
void Frapper::Parameter::addConnection | ( | Connection * | connection | ) |
Adds the given connection to the list of connections.
connection | The connection to add to the list of connections. |
void Frapper::Parameter::removeConnection | ( | Connection::ID | id | ) |
Removes the given connection from the list of connections.
id | The ID of the connection to remove from the list of connections. |
bool Frapper::Parameter::isConnected | ( | ) | const |
Returns whether the parameter is connected to at least one other parameter.
Parameter * Frapper::Parameter::getConnectedParameter | ( | ) | const |
Returns the first parameter connected to this parameter.
bool Frapper::Parameter::isDirty | ( | ) |
Returns whether the parameter's value has changed.
|
virtual |
Sets whether the parameter's value has changed.
dirty | The new value for the parameter's dirty flag. |
Reimplemented in Frapper::NumberParameter.
bool Frapper::Parameter::isAuxDirty | ( | ) |
Returns the auxiliary dirty flag.
|
virtual |
Sets the auxiliary dirty flag.
dirty | The new value for the parameter auxiliary dirty flag. |
bool Frapper::Parameter::isVisible | ( | ) | const |
Returns the visibility for this parameter.
void Frapper::Parameter::setVisible | ( | bool | visible | ) |
Sets the visibility for this parameter.
visible | The visibility of the parameter. |
visible | The visibility of th parameter. |
bool Frapper::Parameter::isReadOnly | ( | ) | const |
Returns whether the parameter can not be modified using a control in the UI.
void Frapper::Parameter::setReadOnly | ( | bool | readOnly | ) |
Sets whether the parameter can not be modified using a control in the UI.
readOnly | The value for the parameter's read-only flag. |
void Frapper::Parameter::setSelfEvaluating | ( | bool | selfEvaluating | ) |
Sets whether the parameter is self-evaluating.
selfEvaluating | True if the parameter is self-evaluating. |
bool Frapper::Parameter::isSelfEvaluating | ( | ) | const |
Returns wether the parameter is self-evaluating.
void Frapper::Parameter::propagateDirty | ( | bool | setFirstTrue = true | ) |
Sets the dirty flag for all parameters that are connected with and affected by this parameter.
Sets the dirty flag for all parameters that are affected by this parameter.
callingNode | The node calling this function. |
void Frapper::Parameter::propagateAuxDirty | ( | ) |
Sets the aux dirty flag for all parameters that are affecting this parameter..
Sets the aux dirty flag for all parameters that are affecting this parameter.
callingNode | The node calling this function. |
void Frapper::Parameter::propagateEvaluation | ( | ) |
Propagates the evaluation of nodes.
callingNode | The node calling this function. |
void Frapper::Parameter::setChangeFunction | ( | const char * | changeFunction | ) |
Sets the function to call when the parameter's value changes.
Should only be called after the parameter has been added to a parameter group of a node so that the m_node member is already set.
changeFunction | The name of the function to call when the parameter's value changes. |
void Frapper::Parameter::setProcessingFunction | ( | const char * | processingFunction | ) |
Sets the function to use for computing the parameter's value.
Should only be called after the parameter has been added to a parameter group of a node so that the m_node member is already set.
processingFunction | The name of the function to use for computing the parameter's value. |
Should only be called after the parameter has been added to a parameter group of a node so that the m_node member is already set.
processingFunction | The function to use for computing the parameter's value. |
void Frapper::Parameter::setAuxProcessingFunction | ( | const char * | processingFunction | ) |
Sets the function to use for computing auxiliary value dependant things.
Should only be called after the parameter has been added to a parameter group of a node so that the m_node member is already set.
processingFunction | The name of the function to use for computing the parameter's value. |
void Frapper::Parameter::setCommandFunction | ( | const char * | commandFunction | ) |
Sets the function to use for executing the command represented by the parameter.
Should only be called after the parameter has been added to a parameter group of a node so that the m_node member is already set.
commandFunction | The function to use for executing the command represented by the parameter. |
void Frapper::Parameter::setOnConnectFunction | ( | const char * | onConnectFunction | ) |
Sets the function which should be called on parameter's connection.
onConnectFunction | The function called on parameter's connection. |
void Frapper::Parameter::setOnDisconnectFunction | ( | const char * | onDisconnectFunction | ) |
Sets the function which should be called on parameter's disconnection.
onDisconnectFunction | The function called on parameter's disconnection. |
void Frapper::Parameter::executeCommand | ( | ) |
Emits the commandExecutionRequested signal to notify connected objects that the command represented by the parameter should be executed.
QString Frapper::Parameter::getValueString | ( | ) |
Returns the parameter's value as a character string.
|
signal |
Signal that is emitted when the value of the parameter becomes dirty.
|
signal |
Signal that is emitted when the parameter's value has changed.
|
signal |
Signal that is emitted when the parameter's value with the given index has changed.
index | The index of the value in a list of values. |
|
signal |
Signal that is emitted when the value of the parameter should be processed.
|
signal |
Signal that is emitted when auxiliary changes in combination with the value happen.
|
signal |
Signal that is emitted when a command parameter is triggered.
|
signal |
Signal that is emitted when a connection is established.
|
signal |
Signal that is emitted when a connection is destroyed.
|
friend |
|
static |
The string that separates parts in parameter paths.
|
static |
The string that identifies enumeration separators.
Public Static Constants.
|
protected |
Mutex for threaded programming.
|
protected |
|
protected |
The type of the parameter's value.
|
protected |
The parameter's size specifying how many values of the given type it stores.
|
protected |
The parameter's multiplicity specifying how many parameters of the given type can be connected to it.
|
protected |
The parameter's default value.
|
protected |
The parameter's value.
|
protected |
The parameter's value.
|
protected |
A description of the parameter.
|
protected |
The type of pin that should be created to represent the parameter.
|
protected |
The map of connections that are connected to this connector with connection IDs as keys.
|
protected |
A list of parameter names that are affected when the value of this parameter is changed.
|
protected |
A list of parameter names that affect this parameter.
|
protected |
Flag that states whether the parameter's value has changed.
|
protected |
Auxiliary dirty flag.
|
protected |
Flag that states whether the parameter's should be visible in e.g. ParameterPanel or not.
|
protected |
Flag that states whether the parameter's value can not be changed using an input control in the UI.
|
protected |
Flag that states whether the parameter is self-evaluating.