MeVisLab Toolbox Reference
|
Defines the class FieldContainer to encapsulate a vector of fields for (see class Field). More...
#include <mlFieldContainer.h>
Public Member Functions | |
FieldContainer () | |
Constructor. | |
~FieldContainer () override | |
Destructor: Deletes all added fields. | |
std::string | whoAmI (bool withInstanceName=true) const |
Returns type and instance name of format "ClassTypeName(instanceName)" if the instance name is not empty and withInstanceName is true. | |
Field * | addField (const char *name, const char *type, const char *value) |
Adds a new field with name name , type type and value value (coded as string) to the container. | |
Field * | addField (Field *field) |
Adds a field , the ownership of the field is passed to the FieldContainer. | |
BoolField * | addBool (const char *name) |
Creates a BoolField with name and adds it to the container. Default value is false. | |
BoolField * | addBool (const char *name, bool value) |
Creates a BoolField with name and adds it to the container. | |
IntField * | addInt (const char *name) |
Creates an IntField with name and adds it to the container. Default value is 0. | |
IntField * | addInt (const char *name, MLint value) |
Creates an IntField with name and adds it to the container. | |
EnumField * | addEnum (const char *name, const char *const *enumerationItemNames, MLint numEnumerationItems) |
Creates an EnumField field with name and adds it to the container. | |
EnumField * | addEnum (const char *name, const std::vector< std::string > &enumerationItemNames) |
Creates an EnumField field with name and adds it to the container. | |
template<typename EnumType > | |
TypedEnumField< EnumType > * | addEnum (const char *name, const EnumValues< EnumType > &values, EnumType initialValue) |
Creates a TypedEnumField field with name and adds it to the container. | |
FloatField * | addFloat (const char *name) |
Creates a FloatField with name and adds it to the container. Default value is 0.f. | |
FloatField * | addFloat (const char *name, float value) |
Creates a FloatField with name and adds it to the container. | |
ProgressField * | addProgress (const char *name) |
Creates a float ProgressField with name and adds it to the container. Default value is 0.f. | |
ProgressField * | addProgress (const char *name, float value) |
Creates a float ProgressField with name and adds it to the container. | |
DoubleField * | addDouble (const char *name) |
Creates a DoubleField with name and adds it to the container. Default value is 0. | |
DoubleField * | addDouble (const char *name, double value) |
Creates a DoubleField with name and adds it to the container. | |
StringField * | addString (const char *name) |
Creates a StringField with name and adds it to the container. Default value is empty string. | |
StringField * | addString (const char *name, const std::string &value) |
Creates a StringField with name and adds it to the container. | |
NotifyField * | addNotify (const char *name) |
Creates a NotifyField field with name and adds it to the container. | |
TriggerField * | addTrigger (const char *name) |
Creates a TriggerField field with name and adds it to the container. | |
BaseField * | addBase (const char *name) |
Creates a Base field with name and adds it to the container. Default value is NULL. | |
BaseField * | addBase (const char *name, Base *value) |
Creates a Base field with name and adds it to the container. | |
BaseField * | addBase (const char *name, const RefCountedBasePtr &value) |
Creates a Base field with name and adds it to the container. Sets the value from intrusive pointer. | |
template<typename T > | |
BaseField * | addBaseWithAllowedType (const char *name, T *value=nullptr) |
As above, but also sets the allowed type of the field. | |
template<typename T > | |
BaseField * | addBaseWithAllowedType (const char *name, const ::boost::intrusive_ptr< T > &value) |
As above, but also sets the allowed type of the field. | |
template<typename T > | |
TypedBaseField< T > * | addTypedBase (const char *name) |
Creates a TypedBaseField with name and adds it to the container. Default value is NULL. | |
template<typename T > | |
TypedBaseField< T > * | addTypedBase (const char *name, T *value) |
Creates a TypedBaseField with name and adds it to the container. | |
template<typename T > | |
TypedBaseField< T > * | addTypedBase (const char *name, const ::boost::intrusive_ptr< T > &value) |
Creates a TypedBaseField with name and adds it to the container. Sets the value from intrusive pointer. | |
SoNodeField * | addSoNode (const char *name) |
Creates a SoNodeField with name and adds it to the container. Default value is NULL. | |
SoNodeField * | addSoNode (const char *name, SoNode *value) |
Creates a SoNodeField with name and adds it to the container. | |
PointerField * | addPointer (const char *name) |
Creates a PointerField with name and adds it to the container. | |
Vector2Field * | addVector2 (const char *name) |
Creates a Vector2Field with name and adds it to the container. | |
Vector2Field * | addVector2 (const char *name, const Vector2 &value) |
Creates a Vector2Field with name and adds it to the container. | |
Vector2Field * | addVector2 (const char *name, double x, double y) |
Creates a Vector2Field with name and adds it to the container. | |
Vector3Field * | addVector3 (const char *name) |
Creates a Vector3Field with name and adds it to the container. | |
Vector3Field * | addVector3 (const char *name, const Vector3 &value) |
Creates a Vector3Field with name and adds it to the container. | |
Vector3Field * | addVector3 (const char *name, double x, double y, double z) |
Creates a Vector3Field with name and adds it to the container. | |
Vector4Field * | addVector4 (const char *name) |
Creates a Vector4Field with name and adds it to the container. | |
Vector4Field * | addVector4 (const char *name, const Vector4 &value) |
Creates a Vector4Field with name and adds it to the container. | |
Vector4Field * | addVector4 (const char *name, double x, double y, double z, double w) |
Creates a Vector4Field with name and adds it to the container. | |
Vector5Field * | addVector5 (const char *name) |
Creates a Vector5Field with name and adds it to the container. | |
Vector5Field * | addVector5 (const char *name, const Vector5 &value) |
Creates a Vector5Field with name and adds it to the container. | |
Vector6Field * | addVector6 (const char *name) |
Creates a Vector6Field with name and adds it to the container. | |
Vector6Field * | addVector6 (const char *name, const Vector6 &value) |
Creates a Vector6Field with name and adds it to the container. | |
Vector10Field * | addVector10 (const char *name) |
Creates a Vector10Field with name and adds it to the container. | |
Vector10Field * | addVector10 (const char *name, const Vector10 &value) |
Creates a Vector10Field with name and adds it to the container. | |
ImageVectorField * | addImageVector (const char *name) |
Creates a ImageVectorField with name and adds it to the container. | |
ImageVectorField * | addImageVector (const char *name, const ImageVector &value) |
Creates a ImageVectorField with name and adds it to the container. | |
ImageVectorField * | addImageVector (const char *name, MLint x, MLint y, MLint z, MLint c, MLint t, MLint u) |
Creates a ImageVectorField with name and adds it to the container. | |
SubImageBoxField * | addSubImageBox (const char *name) |
Creates a SubImageBoxField with name and adds it to the container. | |
SubImageBoxField * | addSubImageBox (const char *name, const SubImageBox &value) |
Creates a SubImageBoxField with name and adds it to the container. | |
SubImageBoxdField * | addSubImageBoxd (const char *name) |
Creates a SubImageBoxd field with name and adds it to the container. | |
SubImageBoxdField * | addSubImageBoxd (const char *name, const SubImageBoxd &value) |
Creates a SubImageBoxd field with name and adds it to the container. | |
ColorField * | addColor (const char *name) |
Creates a ColorField with name and adds it to the container. | |
ColorField * | addColor (const char *name, float r, float g, float b) |
Creates a ColorField with name and adds it to the container. | |
ColorField * | addColor (const char *name, const Vector3 &value) |
Creates a ColorField with name and adds it to the container. | |
PlaneField * | addPlane (const char *name) |
Creates a PlaneField with name and adds it to the container. | |
PlaneField * | addPlane (const char *name, double f0, double f1, double f2, double f3) |
Creates a PlaneField with name and adds it to the container. | |
PlaneField * | addPlane (const char *name, const Plane &value) |
Creates a PlaneField with name and adds it to the container. | |
RotationField * | addRotation (const char *name) |
Creates a RotationField with name and adds it to the container. | |
RotationField * | addRotation (const char *name, const Rotation &value) |
Creates a RotationField with name and adds it to the container. | |
Matrix2Field * | addMatrix2 (const char *name) |
Creates a Matrix2Field with name and adds it to the container. | |
Matrix2Field * | addMatrix2 (const char *name, const Matrix2 &value) |
Creates a Matrix2Field with name and adds it to the container. | |
Matrix3Field * | addMatrix3 (const char *name) |
Creates a Matrix3Field with name and adds it to the container. | |
Matrix3Field * | addMatrix3 (const char *name, const Matrix3 &value) |
Creates a Matrix3Field with name and adds it to the container. | |
Matrix4Field * | addMatrix4 (const char *name) |
Creates a Matrix4Field with name and adds it to the container. | |
Matrix4Field * | addMatrix4 (const char *name, const Matrix4 &value) |
Creates a Matrix4Field with name and adds it to the container. | |
Matrix5Field * | addMatrix5 (const char *name) |
Creates a Matrix5Field with name and adds it to the container. | |
Matrix5Field * | addMatrix5 (const char *name, const Matrix5 &value) |
Creates a Matrix5Field with name and adds it to the container. | |
Matrix6Field * | addMatrix6 (const char *name) |
Creates a Matrix6Field with name and adds it to the container. | |
Matrix6Field * | addMatrix6 (const char *name, const Matrix6 &value) |
Creates a Matrix6Field with name and adds it to the container. | |
MatrixField * | addMatrix (const char *name) |
Creates a MatrixField with name and adds it to the container. | |
MatrixField * | addMatrix (const char *name, const Matrix4 &value) |
Creates a MatrixField with name and adds it to the container. | |
MLDataTypeField * | addMLDataType (const char *name) |
Creates a MTDataTypeField with name and adds it to the container. | |
MLDataTypeField * | addMLDataType (const char *name, MLDataType value) |
Creates a MTDataTypeField with name and adds it to the container. | |
UniversalTypeField * | addUniversalType (const char *name) |
Creates an UniversalTypeField field with name and adds it to the container. | |
IntListField * | addIntList (const char *name) |
Creates an IntListField field with name and empty list value and adds it to the container. | |
IntListField * | addIntList (const char *name, const std::vector< MLint > &value) |
Creates an IntListField field with name and given list value and adds it to the container. | |
DoubleListField * | addDoubleList (const char *name) |
Creates an DoubleListField field with name and empty list value and adds it to the container. | |
DoubleListField * | addDoubleList (const char *name, const std::vector< double > &value) |
Creates an DoubleListField field with name and given list value and adds it to the container. | |
Vector2ListField * | addVector2List (const char *name) |
Creates an Vector2ListField field with name and empty list value and adds it to the container. | |
Vector2ListField * | addVector2List (const char *name, const std::vector< Vector2 > &value) |
Creates an Vector2ListField field with name and given list value and adds it to the container. | |
Vector3ListField * | addVector3List (const char *name) |
Creates an Vector3ListField field with name and empty list value and adds it to the container. | |
Vector3ListField * | addVector3List (const char *name, const std::vector< Vector3 > &value) |
Creates an Vector3ListField field with name and given list value and adds it to the container. | |
Vector4ListField * | addVector4List (const char *name) |
Creates an Vector4ListField field with name and empty list value and adds it to the container. | |
Vector4ListField * | addVector4List (const char *name, const std::vector< Vector4 > &value) |
Creates an Vector4ListField field with name and given list value and adds it to the container. | |
size_t | getNumFields () const |
Returns the number of added fields. | |
bool | hasField (const std::string &name) const |
Returns true if the field with name name exists; otherwise false is returned. | |
Field * | getField (const std::string &name) const |
Returns the pointer to the field with name name . | |
Field * | getField (MLint index) const |
Returns pointer of field at index if it exists. If not, -1 is returned. | |
MLint | getFieldIndex (Field *field) const |
Returns index of field if it exists. If not, -1 is returned. | |
void | setFieldStringValue (const std::string &name, const std::string &value) |
Sets the value of the field with name if it exists. | |
std::string | getFieldStringValue (const std::string &name) const |
Returns the string value of the field with name if it is found. | |
virtual void | activateAttachments () |
Reactivates notification handling, i.e., all fields of this module will send notifications again to attached sensors and fields if their value is set or changed. | |
virtual void | deactivateAttachments () |
Disables notification handling, i.e., all fields of this module will not send notifications to attached sensors and fields any more if their values are set or changed. | |
Public Member Functions inherited from ml::Base | |
Base () | |
Constructor. | |
virtual | ~Base () |
Destructor. | |
virtual Base * | deepCopy () const |
Set addStateToTree version number that can be accessed via getAddStateVersion() | |
bool | isOfAllowedType (const std::vector< const RuntimeType * > &types) const |
Check if this object's type is equal to or derived from one of the types given in the argument. | |
virtual bool | isRefCountedBase () const |
Returns if the instance is derived from RefCountedBase. | |
virtual std::string | detailString () const |
Return a string describing this object. | |
virtual bool | implementsPersistence (PersistenceInterface) const |
Override this method to declare which persistence interfaces are implemented by your derived class. | |
virtual std::string | persistentState () const |
Returns a string describing the object's internal state. | |
virtual void | setPersistentState (const std::string &state) |
Restores the object's internal state from a string that had been previously generated using persistentState() . | |
virtual void | addStateToTree (TreeNode *) const |
Attaches the object state as children of the given parent node. | |
virtual void | readStateFromTree (TreeNode *) |
Reads the object state from the children of the given parent node. | |
virtual void | writeTo (AbstractPersistenceOutputStream *) const |
Write the objects state to the data stream object. | |
virtual void | readFrom (AbstractPersistenceInputStream *, int) |
Read the objects state from the data stream object. | |
Protected Member Functions | |
virtual void | handleNotificationInternal (Field *, FieldSensor::Strength) |
Called when field has changed. | |
Friends | |
class | Field |
Additional Inherited Members | |
Public Types inherited from ml::Base | |
enum | PersistenceInterface { PersistenceByString , PersistenceByTreeNode , PersistenceByStream } |
This enum describes the different persistence interfaces available. More... | |
Defines the class FieldContainer to encapsulate a vector of fields for (see class Field).
It is usually used as a parameter interface for the Module class. In its constructor a Module usually adds all the interface parameters to its field container.
Definition at line 54 of file mlFieldContainer.h.
ml::FieldContainer::FieldContainer | ( | ) |
Constructor.
|
override |
Destructor: Deletes all added fields.
Reactivates notification handling, i.e., all fields of this module will send notifications again to attached sensors and fields if their value is set or changed.
Overload this method to be notified when e.g., a module load or clone process has finished. During module load and clone processes the field values are restored but handleNotification calls are blocked so that the module cannot update itself to those field changes (see deactivateAttachments()). When activateAttachment is called, the module can have a look at its new field settings and update its internal state to the new field states. Note that the overloaded method has to be called; otherwise notification handling is not activated correctly.
Reimplemented in ml::PCLClusterStatistics, ml::PCLClusterStatisticsToInventor, ml::PCLCloudDistances, ml::PCLFeatureHistogram, ml::PCLPCA, ml::PCLNormalEstimation, ml::PCLBilateralFilter, ml::PCLCopy, ml::PCLCropBox, ml::PCLIndexFilter, ml::PCLIntensityRankFilter, ml::PCLMemberCopy, ml::PCLPassThrough, ml::PCLRadiusOutlierRemoval, ml::PCLStatisticalOutlierRemoval, ml::PCLVoxelGrid, ml::PCLToInventor, ml::PCLLoad, ml::PCLSave, ml::PCLBaseListToPointCloud, ml::PCLMLImageToPointCloud, ml::PCLPointCloudToXMarkerList, ml::PCLR2SonicWCLoader, ml::PCLRegistration, ml::PCLSampleConsensus, ml::PCLSampleConsensusModels, ml::PCLEuclideanClusterExtraction, ml::PCLCompare, ml::PCLInfo, ml::PCLPointMemberArithmetic, ml::PCLConcaveHull, ml::PCLConvexHull, ml::PCLMarchingCubesHoppe, ml::PCLMarchingCubesRBF, ml::PCLMovingLeastSquares, ml::AlgorithmModule, ml::DicomTreeCompare, ml::DicomTreeInfo, ml::ApplyDicomPixelModifiers, ml::DicomModifyCreateTree, ml::DicomModifyImageTagsPlugin, ml::DicomModifyMultiFileVolumeExport, ml::DicomModifySubTreeSelectorPlugin, ml::DicomModifyTagsPlugin, ml::DicomModifyTreeAndImage, ml::DicomDOCSave, ml::DicomEnhancedSave, ml::DicomSaveBase, ml::DicomSCSave, ml::DicomSEGSave, ml::DicomSRSave, ml::DirectDicomImport, ml::DICOMFileListFilter, ml::FileListFilterPlugin, ml::BaseToMultiFileVolumeList, ml::MultiFileVolumeListBaseOutput, ml::MultiFileVolumeListDiagnosisOutput, ml::MultiFileVolumeListDOCOutput, ml::MultiFileVolumeListFIDOutput, ml::MultiFileVolumeListFilterOutputs, ml::MultiFileVolumeListIteratorOutput, ml::MultiFileVolumeListREGOutput, ml::MultiFileVolumeListSEGOutput, ml::DicomTreeValidate, ml::MultiFileVolumeListDraftView, ml::ITKFlatStructElement, ml::CSOLabelRenderer, ml::ComposeBaseList, ml::DecomposeBaseList, ml::DynamicStylePalette, ml::ExtractObjectFromList, ml::ListContainerBase, ml::MergeLists, ml::StylePaletteOp, ml::CSOManager, ml::CSOBaseModule, ml::CSOConvertor, ml::CSOModificator, ml::MLImageFormatFileCache, ml::MLImageFormatInfo, ml::MLImageFormatIOBase, ml::MLImageFormatLoad, ml::MLImageFormatSave, ml::CloseGapFilter, ml::KernelEditor, ml::KernelModule, ml::RankFilter, ml::SigmaFilter, ml::EditObject, ml::LoadBase, ml::WEMGenerator, ml::WEMInspector, ml::WEMModule, and ml::WEMProcessor.
Definition at line 387 of file mlFieldContainer.h.
Creates a Base field with name
and adds it to the container. Default value is NULL.
Referenced by ml::CopyBase< BASE_DERIVED_CLASS >::CopyBase(), and ml::ListContainerTemplate< T >::ListContainerTemplate().
Creates a Base field with name
and adds it to the container.
BaseField * ml::FieldContainer::addBase | ( | const char * | name, |
const RefCountedBasePtr & | value ) |
Creates a Base field with name
and adds it to the container. Sets the value from intrusive pointer.
|
inline |
As above, but also sets the allowed type of the field.
Definition at line 176 of file mlFieldContainer.h.
|
inline |
As above, but also sets the allowed type of the field.
Definition at line 168 of file mlFieldContainer.h.
References ml::BaseField::setBaseValueAndAddAllowedType().
Creates a BoolField with name
and adds it to the container. Default value is false.
Referenced by ml::CopyBase< BASE_DERIVED_CLASS >::CopyBase().
Creates a BoolField with name
and adds it to the container.
ColorField * ml::FieldContainer::addColor | ( | const char * | name | ) |
Creates a ColorField with name
and adds it to the container.
ColorField * ml::FieldContainer::addColor | ( | const char * | name, |
const Vector3 & | value ) |
Creates a ColorField with name
and adds it to the container.
Creates a ColorField with name
and adds it to the container.
DoubleField * ml::FieldContainer::addDouble | ( | const char * | name | ) |
Creates a DoubleField with name
and adds it to the container. Default value is 0.
Referenced by ml::MultiFileVolumeListImageOutput::OutputImageProperties::addFields().
DoubleField * ml::FieldContainer::addDouble | ( | const char * | name, |
double | value ) |
Creates a DoubleField with name
and adds it to the container.
DoubleListField * ml::FieldContainer::addDoubleList | ( | const char * | name | ) |
Creates an DoubleListField field with name
and empty list value and adds it to the container.
DoubleListField * ml::FieldContainer::addDoubleList | ( | const char * | name, |
const std::vector< double > & | value ) |
Creates an DoubleListField field with name
and given list value and adds it to the container.
EnumField * ml::FieldContainer::addEnum | ( | const char * | name, |
const char *const * | enumerationItemNames, | ||
MLint | numEnumerationItems ) |
Creates an EnumField field with name
and adds it to the container.
The names of the enum entries are defined by the string array enumerationItemNames
. It MUST have at least numEnumerationItems
entries. The value range for the enum value is [0, numEnumerationItems-1
].
Referenced by ml::CopyBase< BASE_DERIVED_CLASS >::CopyBase().
|
inline |
Creates a TypedEnumField field with name
and adds it to the container.
The type of the EnumField is inferred via the passed enumValues
. The initial value is set to initialValue
.
Definition at line 128 of file mlFieldContainer.h.
References mlrange_cast().
EnumField * ml::FieldContainer::addEnum | ( | const char * | name, |
const std::vector< std::string > & | enumerationItemNames ) |
Creates an EnumField field with name
and adds it to the container.
The names of the enum entries are defined by the string vector enumerationItemNames
. The value range for the enum value is [0, enumerationItemNames.size()-1
].
Adds a new field with name name
, type type
and value value
(coded as string) to the container.
The field manages its memory itself, i.e., it copies the value from the string constant. The ownership of the returned field stays with the FieldContainer.
Adds a field
, the ownership of the field is passed to the FieldContainer.
FloatField * ml::FieldContainer::addFloat | ( | const char * | name | ) |
Creates a FloatField with name
and adds it to the container. Default value is 0.f.
FloatField * ml::FieldContainer::addFloat | ( | const char * | name, |
float | value ) |
Creates a FloatField with name
and adds it to the container.
ImageVectorField * ml::FieldContainer::addImageVector | ( | const char * | name | ) |
Creates a ImageVectorField with name
and adds it to the container.
ImageVectorField * ml::FieldContainer::addImageVector | ( | const char * | name, |
const ImageVector & | value ) |
Creates a ImageVectorField with name
and adds it to the container.
ImageVectorField * ml::FieldContainer::addImageVector | ( | const char * | name, |
MLint | x, | ||
MLint | y, | ||
MLint | z, | ||
MLint | c, | ||
MLint | t, | ||
MLint | u ) |
Creates a ImageVectorField with name
and adds it to the container.
Creates an IntField with name
and adds it to the container. Default value is 0.
Referenced by ml::MultiFileVolumeListImageOutput::OutputImageProperties::addFields().
Creates an IntField with name
and adds it to the container.
IntListField * ml::FieldContainer::addIntList | ( | const char * | name | ) |
Creates an IntListField field with name
and empty list value and adds it to the container.
IntListField * ml::FieldContainer::addIntList | ( | const char * | name, |
const std::vector< MLint > & | value ) |
Creates an IntListField field with name
and given list value and adds it to the container.
MatrixField * ml::FieldContainer::addMatrix | ( | const char * | name | ) |
Creates a MatrixField with name
and adds it to the container.
MatrixField * ml::FieldContainer::addMatrix | ( | const char * | name, |
const Matrix4 & | value ) |
Creates a MatrixField with name
and adds it to the container.
Matrix2Field * ml::FieldContainer::addMatrix2 | ( | const char * | name | ) |
Creates a Matrix2Field with name
and adds it to the container.
Matrix2Field * ml::FieldContainer::addMatrix2 | ( | const char * | name, |
const Matrix2 & | value ) |
Creates a Matrix2Field with name
and adds it to the container.
Matrix3Field * ml::FieldContainer::addMatrix3 | ( | const char * | name | ) |
Creates a Matrix3Field with name
and adds it to the container.
Matrix3Field * ml::FieldContainer::addMatrix3 | ( | const char * | name, |
const Matrix3 & | value ) |
Creates a Matrix3Field with name
and adds it to the container.
Matrix4Field * ml::FieldContainer::addMatrix4 | ( | const char * | name | ) |
Creates a Matrix4Field with name
and adds it to the container.
Matrix4Field * ml::FieldContainer::addMatrix4 | ( | const char * | name, |
const Matrix4 & | value ) |
Creates a Matrix4Field with name
and adds it to the container.
Matrix5Field * ml::FieldContainer::addMatrix5 | ( | const char * | name | ) |
Creates a Matrix5Field with name
and adds it to the container.
Matrix5Field * ml::FieldContainer::addMatrix5 | ( | const char * | name, |
const Matrix5 & | value ) |
Creates a Matrix5Field with name
and adds it to the container.
Matrix6Field * ml::FieldContainer::addMatrix6 | ( | const char * | name | ) |
Creates a Matrix6Field with name
and adds it to the container.
Matrix6Field * ml::FieldContainer::addMatrix6 | ( | const char * | name, |
const Matrix6 & | value ) |
Creates a Matrix6Field with name
and adds it to the container.
MLDataTypeField * ml::FieldContainer::addMLDataType | ( | const char * | name | ) |
Creates a MTDataTypeField with name
and adds it to the container.
MLDataTypeField * ml::FieldContainer::addMLDataType | ( | const char * | name, |
MLDataType | value ) |
Creates a MTDataTypeField with name
and adds it to the container.
NotifyField * ml::FieldContainer::addNotify | ( | const char * | name | ) |
Creates a NotifyField field with name
and adds it to the container.
Referenced by ml::CopyBase< BASE_DERIVED_CLASS >::CopyBase().
PlaneField * ml::FieldContainer::addPlane | ( | const char * | name | ) |
Creates a PlaneField with name
and adds it to the container.
PlaneField * ml::FieldContainer::addPlane | ( | const char * | name, |
const Plane & | value ) |
Creates a PlaneField with name
and adds it to the container.
PlaneField * ml::FieldContainer::addPlane | ( | const char * | name, |
double | f0, | ||
double | f1, | ||
double | f2, | ||
double | f3 ) |
Creates a PlaneField with name
and adds it to the container.
PointerField * ml::FieldContainer::addPointer | ( | const char * | name | ) |
Creates a PointerField with name
and adds it to the container.
ProgressField * ml::FieldContainer::addProgress | ( | const char * | name | ) |
Creates a float ProgressField with name
and adds it to the container. Default value is 0.f.
ProgressField * ml::FieldContainer::addProgress | ( | const char * | name, |
float | value ) |
Creates a float ProgressField with name
and adds it to the container.
RotationField * ml::FieldContainer::addRotation | ( | const char * | name | ) |
Creates a RotationField with name
and adds it to the container.
RotationField * ml::FieldContainer::addRotation | ( | const char * | name, |
const Rotation & | value ) |
Creates a RotationField with name
and adds it to the container.
SoNodeField * ml::FieldContainer::addSoNode | ( | const char * | name | ) |
Creates a SoNodeField with name
and adds it to the container. Default value is NULL.
SoNodeField * ml::FieldContainer::addSoNode | ( | const char * | name, |
SoNode * | value ) |
Creates a SoNodeField with name
and adds it to the container.
StringField * ml::FieldContainer::addString | ( | const char * | name | ) |
Creates a StringField with name
and adds it to the container. Default value is empty string.
Referenced by ml::MultiFileVolumeListImageOutput::OutputImageProperties::addFields(), and ml::CopyBase< BASE_DERIVED_CLASS >::CopyBase().
StringField * ml::FieldContainer::addString | ( | const char * | name, |
const std::string & | value ) |
Creates a StringField with name
and adds it to the container.
SubImageBoxField * ml::FieldContainer::addSubImageBox | ( | const char * | name | ) |
Creates a SubImageBoxField with name
and adds it to the container.
SubImageBoxField * ml::FieldContainer::addSubImageBox | ( | const char * | name, |
const SubImageBox & | value ) |
Creates a SubImageBoxField with name
and adds it to the container.
SubImageBoxdField * ml::FieldContainer::addSubImageBoxd | ( | const char * | name | ) |
Creates a SubImageBoxd field with name
and adds it to the container.
SubImageBoxdField * ml::FieldContainer::addSubImageBoxd | ( | const char * | name, |
const SubImageBoxd & | value ) |
Creates a SubImageBoxd field with name
and adds it to the container.
TriggerField * ml::FieldContainer::addTrigger | ( | const char * | name | ) |
Creates a TriggerField field with name
and adds it to the container.
TriggerField is an alias for the NotifyField.
|
inline |
Creates a TypedBaseField with name
and adds it to the container. Default value is NULL.
Definition at line 183 of file mlFieldContainer.h.
References mlrange_cast().
|
inline |
Creates a TypedBaseField with name
and adds it to the container. Sets the value from intrusive pointer.
Definition at line 201 of file mlFieldContainer.h.
References mlrange_cast().
|
inline |
Creates a TypedBaseField with name
and adds it to the container.
Definition at line 193 of file mlFieldContainer.h.
References mlrange_cast().
UniversalTypeField * ml::FieldContainer::addUniversalType | ( | const char * | name | ) |
Creates an UniversalTypeField field with name
and adds it to the container.
Vector10Field * ml::FieldContainer::addVector10 | ( | const char * | name | ) |
Creates a Vector10Field with name
and adds it to the container.
Vector10Field * ml::FieldContainer::addVector10 | ( | const char * | name, |
const Vector10 & | value ) |
Creates a Vector10Field with name
and adds it to the container.
Vector2Field * ml::FieldContainer::addVector2 | ( | const char * | name | ) |
Creates a Vector2Field with name
and adds it to the container.
Vector2Field * ml::FieldContainer::addVector2 | ( | const char * | name, |
const Vector2 & | value ) |
Creates a Vector2Field with name
and adds it to the container.
Vector2Field * ml::FieldContainer::addVector2 | ( | const char * | name, |
double | x, | ||
double | y ) |
Creates a Vector2Field with name
and adds it to the container.
Vector2ListField * ml::FieldContainer::addVector2List | ( | const char * | name | ) |
Creates an Vector2ListField field with name
and empty list value and adds it to the container.
Vector2ListField * ml::FieldContainer::addVector2List | ( | const char * | name, |
const std::vector< Vector2 > & | value ) |
Creates an Vector2ListField field with name
and given list value and adds it to the container.
Vector3Field * ml::FieldContainer::addVector3 | ( | const char * | name | ) |
Creates a Vector3Field with name
and adds it to the container.
Vector3Field * ml::FieldContainer::addVector3 | ( | const char * | name, |
const Vector3 & | value ) |
Creates a Vector3Field with name
and adds it to the container.
Creates a Vector3Field with name
and adds it to the container.
Vector3ListField * ml::FieldContainer::addVector3List | ( | const char * | name | ) |
Creates an Vector3ListField field with name
and empty list value and adds it to the container.
Vector3ListField * ml::FieldContainer::addVector3List | ( | const char * | name, |
const std::vector< Vector3 > & | value ) |
Creates an Vector3ListField field with name
and given list value and adds it to the container.
Vector4Field * ml::FieldContainer::addVector4 | ( | const char * | name | ) |
Creates a Vector4Field with name
and adds it to the container.
Vector4Field * ml::FieldContainer::addVector4 | ( | const char * | name, |
const Vector4 & | value ) |
Creates a Vector4Field with name
and adds it to the container.
Vector4Field * ml::FieldContainer::addVector4 | ( | const char * | name, |
double | x, | ||
double | y, | ||
double | z, | ||
double | w ) |
Creates a Vector4Field with name
and adds it to the container.
Vector4ListField * ml::FieldContainer::addVector4List | ( | const char * | name | ) |
Creates an Vector4ListField field with name
and empty list value and adds it to the container.
Vector4ListField * ml::FieldContainer::addVector4List | ( | const char * | name, |
const std::vector< Vector4 > & | value ) |
Creates an Vector4ListField field with name
and given list value and adds it to the container.
Vector5Field * ml::FieldContainer::addVector5 | ( | const char * | name | ) |
Creates a Vector5Field with name
and adds it to the container.
Vector5Field * ml::FieldContainer::addVector5 | ( | const char * | name, |
const Vector5 & | value ) |
Creates a Vector5Field with name
and adds it to the container.
Vector6Field * ml::FieldContainer::addVector6 | ( | const char * | name | ) |
Creates a Vector6Field with name
and adds it to the container.
Vector6Field * ml::FieldContainer::addVector6 | ( | const char * | name, |
const Vector6 & | value ) |
Creates a Vector6Field with name
and adds it to the container.
Disables notification handling, i.e., all fields of this module will not send notifications to attached sensors and fields any more if their values are set or changed.
This normally indicates that a field restore process (due to a module load or clone) has been started and many field values will be set. During that process no field notifications are sent, i.e., handleNotification is not called. The process then is completed by the call of activateAttachments which can be used to update the internal module state to the new field state then. Note that the overloaded method has to be called; otherwise notification handling is not deactivated correctly. See activateAttachments().
Definition at line 398 of file mlFieldContainer.h.
Returns the pointer to the field with name name
.
A warning is printed if not found and NULL is returned.
Returns pointer of field at index
if it exists. If not, -1 is returned.
Returns index of field
if it exists. If not, -1 is returned.
std::string ml::FieldContainer::getFieldStringValue | ( | const std::string & | name | ) | const |
Returns the string value of the field with name
if it is found.
Otherwise a pointer to the empty temporary string "" is returned and a warning is printed.
size_t ml::FieldContainer::getNumFields | ( | ) | const |
Returns the number of added fields.
|
inlineprotectedvirtual |
Called when field has changed.
Reimplemented in ml::Module.
Definition at line 417 of file mlFieldContainer.h.
Returns true if the field with name name
exists; otherwise false is returned.
void ml::FieldContainer::setFieldStringValue | ( | const std::string & | name, |
const std::string & | value ) |
Sets the value
of the field with name
if it exists.
Otherwise a warning is printed.
Returns type and instance name of format "ClassTypeName(instanceName)" if the instance name is not empty and withInstanceName
is true.
If withInstanceName
is false or no instance name exists, the name is returned in the format "ModuleTypeName".
Definition at line 414 of file mlFieldContainer.h.