![]() |
itom
|
Meta-information for Param of type DoubleArrayMeta. More...
#include <paramMeta.h>
Public Member Functions | |
| DoubleArrayMeta (float64 minVal, float64 maxVal, float64 stepSize=0.0, ito::ByteArray category=ito::ByteArray()) | |
| DoubleArrayMeta (float64 minVal, float64 maxVal, float64 stepSize, size_t numMin, size_t numMax, size_t numStepSize=1, ito::ByteArray category=ito::ByteArray()) | |
| DoubleArrayMeta (const DoubleArrayMeta &cpy) | |
| copy constructor | |
| DoubleArrayMeta & | operator= (const DoubleArrayMeta &rhs) |
| < assignment operator | |
| virtual bool | operator== (const ParamMeta &other) const |
Public Member Functions inherited from ito::DoubleMeta | |
| DoubleMeta (float64 minVal, float64 maxVal, float64 stepSize=0.0, ito::ByteArray category=ito::ByteArray()) | |
| constructor with minimum and maximum value | |
| DoubleMeta (const DoubleMeta ©) | |
| DoubleMeta & | operator= (const DoubleMeta &rhs) |
| float64 | getMin () const |
| returns maximum value | |
| float64 | getMax () const |
| returns step size | |
| float64 | getStepSize () const |
| returns unit | |
| ito::ByteArray | getUnit () const |
| sets unit string of this parameter | |
| void | setUnit (const ito::ByteArray &unit) |
| returns display precision | |
| int | getDisplayPrecision () const |
| sets display precision | |
| void | setDisplayPrecision (int displayPrecision) |
| returns display notation | |
| DoubleMeta::tDisplayNotation | getDisplayNotation () const |
| sets display notation | |
| void | setDisplayNotation (DoubleMeta::tDisplayNotation displayNotation) |
| returns display representation | |
| ParamMeta::tRepresentation | getRepresentation () const |
| sets display representation | |
| void | setRepresentation (ParamMeta::tRepresentation representation) |
| void | setMin (float64 val) |
| sets the minimum value | |
| void | setMax (float64 val) |
| sets the maximum value | |
| void | setStepSize (float64 val) |
| sets the step size | |
Public Member Functions inherited from ito::ParamMeta | |
| ParamMeta (ito::ByteArray category=ito::ByteArray()) | |
| constructor used by derived classes to indicate their real type | |
| ParamMeta (MetaRtti type, ito::ByteArray category=ito::ByteArray()) | |
| ParamMeta (const ParamMeta ©) | |
| ParamMeta & | operator= (const ParamMeta &rhs) |
| destructor | |
| virtual | ~ParamMeta () |
| returns runtime type information value | |
| MetaRtti | getType () const |
| returns category name of this parameter (default: empty ByteArray) | |
| ito::ByteArray | getCategory () const |
| void | setCategory (const ito::ByteArray &category) |
| bool | operator!= (const ParamMeta &other) const |
Public Member Functions inherited from ito::ListMeta | |
| ListMeta () | |
| < default constructor with an arbitrary list size | |
| ListMeta (size_t numMin, size_t numMax, size_t numStepSize=1) | |
| destructor | |
| virtual | ~ListMeta () |
| < destructor | |
| virtual bool | operator== (const ListMeta &other) const |
| returns minimum number of values | |
| size_t | getNumMin () const |
| returns maximum number of values | |
| size_t | getNumMax () const |
| returns step size of number of values | |
| size_t | getNumStepSize () const |
| void | setNumMin (size_t val) |
| sets the minimum number of values | |
| void | setNumMax (size_t val) |
| sets the maximum number of values | |
| void | setNumStepSize (size_t val) |
| sets the step size of the number of values | |
Additional Inherited Members | |
Public Types inherited from ito::DoubleMeta | |
| enum | tDisplayNotation { Automatic , Fixed , Scientific } |
| Display notation style if the related parameters is displayed in any widget. More... | |
Public Types inherited from ito::ParamMeta | |
| enum | MetaRtti { rttiUnknown = 0 , rttiCharMeta = 1 , rttiIntMeta = 2 , rttiDoubleMeta = 3 , rttiStringMeta = 4 , rttiHWMeta = 5 , rttiDObjMeta = 6 , rttiIntArrayMeta = 7 , rttiDoubleArrayMeta = 8 , rttiCharArrayMeta = 9 , rttiIntervalMeta = 10 , rttiDoubleIntervalMeta = 11 , rttiRangeMeta = 12 , rttiRectMeta = 13 , rttiStringListMeta = 14 } |
| Runtime type information. More... | |
| enum | tRepresentation { Linear = 0x0001 , Logarithmic = 0x0002 , Boolean = 0x0004 , PureNumber = 0x0008 , HexNumber = 0x0010 , IPV4Address = 0x0020 , MACAddress = 0x0040 , UnknownRepresentation = 0x0080 } |
| The representation of number types indicates the type of widget that is suited best to display and change the value. More... | |
Static Public Member Functions inherited from ito::DoubleMeta | |
| static DoubleMeta * | all (ito::ByteArray category=ito::ByteArray()) |
| returns minimum value | |
Protected Attributes inherited from ito::ParamMeta | |
| MetaRtti | m_type |
| ito::ByteArray | m_category |
| optional category name of this parameter | |
Meta-information for Param of type DoubleArrayMeta.
An object of this class can be used to parametrize a parameter whose type is ito::ParamBase::DoubleArray. Since this meta information class is derived from ito::DoubleArray, it is possible to restrict each value to the single value constraints of ito::DoubleArray. Furthermore, this class allows restricting the minimum and maximum length of the array as well as the optional step size of the array's length.
| ito::DoubleArrayMeta::DoubleArrayMeta | ( | const DoubleArrayMeta & | cpy | ) |
copy constructor
assignment operator
|
virtual |
returns a new instance of DoubleMeta, where the min and max are set to the full range available for double. The caller has to take care of memory.
Reimplemented from ito::DoubleMeta.