![]() |
HydroCouple
2.0.0
HydroCouple Interface Definitions
|
IComponentItem is a fundamental unit of data for a component. More...
#include <hydrocouple.h>
Public Member Functions | |
virtual | ~IComponentDataItem ()=default |
IComponentDataItem::~IComponentDataItem is a virtual destructor. | |
virtual IModelComponent * | modelComponent () const =0 |
Gets the owner IModelComponent of this IComponentItem. For an IOutput component item this is the component responsible for providing the content of the IOutput. | |
virtual vector< IDimension * > | dimensions () const =0 |
provides purely descriptive information of the dimensions associated with this IComponentItem | |
virtual int | dimensionLength (const initializer_list< int > &dimensionIndexes={}) const =0 |
dimensionLength returns the length of the dimension specified by the given dimension indexes. To get the size of the first dimension, use a null integer array as input argument. Length of indices must be a least one smaller than the numDimensions() | |
virtual IValueDefinition * | valueDefinition () const =0 |
IValueDefinition for this IValueSet defines the variable type associated with this object. | |
virtual void | getValue (hydrocouple_variant &data, const initializer_list< int > &dimensionIndexes) const =0 |
Gets a multi-dimensional array of values for given dimension indexes and strides along each dimension. IndexArray = x + y * InSizeX + z * InSizeX * InSizeY etc;. | |
virtual void | getValues (hydrocouple_variant *data, const initializer_list< int > &dimensionIndexes, const initializer_list< int > &dimensionLengths={}) const =0 |
Gets a multi-dimensional array of values for given dimension indexes and strides along each dimension. | |
virtual void | setValue (const hydrocouple_variant &data, const initializer_list< int > &dimensionIndexes)=0 |
Sets a multi-dimensional array of values for given dimension indexes. | |
virtual void | setValues (const hydrocouple_variant *data, const initializer_list< int > &dimensionIndexes, const initializer_list< int > &dimensionLengths={})=0 |
Sets a multi-dimensional array of values for given dimension indexes and strides along each dimension. | |
virtual bool | hasEditor () const =0 |
hasEditor indicates whether this IComponentItem has a UI editor. | |
virtual void | showEditor (void *opaqueUIPointer=nullptr)=0 |
showEditor shows the editor for this IComponentItem. | |
virtual bool | hasViewer () const =0 |
hasViewer indicates whether this IComponentItem has a UI viewer. | |
virtual void | showViewer (void *opaqueUIPointer=nullptr)=0 |
showViewer shows the viewer for this IComponentItem. | |
![]() | |
virtual | ~IIdentity ()=default |
IIdentity::~IIdentity is a virtual destructor. | |
virtual string | id () const =0 |
Gets a unique identifier for the entity. | |
![]() | |
virtual | ~IDescription ()=default |
IDescription::~IDescription is a virtual destructor. | |
virtual string | caption () const =0 |
Gets caption for the entity. | |
virtual void | setCaption (const string &caption)=0 |
Sets caption for the entity. | |
virtual string | description () const =0 |
Gets additional descriptive information for the entity. | |
virtual void | setDescription (const string &description)=0 |
Gets additional descriptive information for the entity. | |
![]() | |
virtual | ~IPropertyChanged ()=default |
IPropertyChanged::~IPropertyChanged is a virtual destructor. | |
![]() | |
virtual | ~ISignal ()=default |
ISignal::~ISignal is a virtual destructor. | |
virtual void | connect (const shared_ptr< ISlot< Args... > > &slot)=0 |
connect is used to connect a slot to the signal. | |
virtual void | disconnect (const shared_ptr< ISlot< Args... > > &slot)=0 |
disconnect is used to disconnect a slot from the signal. | |
virtual void | blockSignals (bool block)=0 |
blockSignals is used to block signals from being emitted. | |
![]() | |
virtual | ~ISignal ()=default |
ISignal::~ISignal is a virtual destructor. | |
virtual void | connect (const shared_ptr< ISlot< Args... > > &slot)=0 |
connect is used to connect a slot to the signal. | |
virtual void | disconnect (const shared_ptr< ISlot< Args... > > &slot)=0 |
disconnect is used to disconnect a slot from the signal. | |
virtual void | blockSignals (bool block)=0 |
blockSignals is used to block signals from being emitted. | |
Additional Inherited Members | |
![]() | |
virtual void | emit (Args... args)=0 |
emit is used to emit the signal. | |
![]() | |
virtual void | emit (Args... args)=0 |
emit is used to emit the signal. | |
IComponentItem is a fundamental unit of data for a component.
This interface is not to be implemented directly. Input and output data must be 1D arrays indexed using dim1 + dim2*size1 + dim3*size1*size2 + dim4*size1*size2*size3 + ...
|
virtualdefault |
IComponentDataItem::~IComponentDataItem is a virtual destructor.
|
pure virtual |
dimensionLength returns the length of the dimension specified by the given dimension indexes. To get the size of the first dimension, use a null integer array as input argument. Length of indices must be a least one smaller than the numDimensions()
[in] | dimensionIndexes | array of indexes of the dimensions to get the length of. Its size must be less than the number of dimensions. |
|
pure virtual |
provides purely descriptive information of the dimensions associated with this IComponentItem
|
pure virtual |
Gets a multi-dimensional array of values for given dimension indexes and strides along each dimension. IndexArray = x + y * InSizeX + z * InSizeX * InSizeY etc;.
[out] | data | Pointer to pre-allocated location where data is to be saved. |
[in] | dimensionIndexes | are the indexes for the data to be obtained. |
Implemented in HydroCouple::Spatial::ITINComponentDataItem, HydroCouple::Temporal::ITimeIdBasedComponentDataItem, HydroCouple::Temporal::ITimeIdBasedComponentDataItem, HydroCouple::IIdBasedComponentDataItem, HydroCouple::Spatial::IGeometryComponentDataItem, HydroCouple::Spatial::INetworkComponentDataItem, HydroCouple::Spatial::IPolyhedralSurfaceComponentDataItem, HydroCouple::Spatial::ITINComponentDataItem, HydroCouple::Spatial::IRasterComponentDataItem, HydroCouple::Spatial::IRegularGrid2DComponentDataItem, HydroCouple::Spatial::IRegularGrid3DComponentDataItem, HydroCouple::Temporal::ITimeSeriesComponentDataItem, HydroCouple::Temporal::ITimeSeriesComponentDataItem, and HydroCouple::Temporal::ITimeIdBasedComponentDataItem.
|
pure virtual |
Gets a multi-dimensional array of values for given dimension indexes and strides along each dimension.
[out] | data | Pointer to pre-allocated location where data is to be saved. |
[in] | dimensionIndexes | are the indexes for the data to be obtained. |
[in] | dimensionLengths | are the lengths of the dimensions for the data to be obtained. If empty a single value is returned, otherwise the length of the vector must be equal to the number of dimensions. |
Implemented in HydroCouple::Spatial::ITINComponentDataItem, HydroCouple::Temporal::ITimeIdBasedComponentDataItem, HydroCouple::Temporal::ITimeIdBasedComponentDataItem, HydroCouple::IIdBasedComponentDataItem, HydroCouple::Spatial::IGeometryComponentDataItem, HydroCouple::Spatial::INetworkComponentDataItem, HydroCouple::Spatial::IPolyhedralSurfaceComponentDataItem, HydroCouple::Spatial::ITINComponentDataItem, HydroCouple::Spatial::IRasterComponentDataItem, HydroCouple::Spatial::IRegularGrid2DComponentDataItem, HydroCouple::Spatial::IRegularGrid3DComponentDataItem, HydroCouple::Temporal::ITimeSeriesComponentDataItem, HydroCouple::Temporal::ITimeSeriesComponentDataItem, and HydroCouple::Temporal::ITimeIdBasedComponentDataItem.
|
pure virtual |
hasEditor indicates whether this IComponentItem has a UI editor.
|
pure virtual |
hasViewer indicates whether this IComponentItem has a UI viewer.
|
pure virtual |
Gets the owner IModelComponent of this IComponentItem. For an IOutput component item this is the component responsible for providing the content of the IOutput.
It is possible for an IComponentItem to have no owner, in this case the method will return nullptr.
|
pure virtual |
Sets a multi-dimensional array of values for given dimension indexes.
[in] | data | is the pointer to the input data to be set. |
[in] | dimensionIndexes | are the indexes for where data is to be written. |
Implemented in HydroCouple::IIdBasedComponentDataItem, HydroCouple::Spatial::IGeometryComponentDataItem, HydroCouple::Spatial::INetworkComponentDataItem, HydroCouple::Spatial::IPolyhedralSurfaceComponentDataItem, HydroCouple::Spatial::ITINComponentDataItem, HydroCouple::Spatial::ITINComponentDataItem, HydroCouple::Spatial::IRasterComponentDataItem, HydroCouple::Spatial::IRegularGrid2DComponentDataItem, HydroCouple::Spatial::IRegularGrid3DComponentDataItem, HydroCouple::Temporal::ITimeSeriesComponentDataItem, HydroCouple::Temporal::ITimeSeriesComponentDataItem, HydroCouple::Temporal::ITimeIdBasedComponentDataItem, HydroCouple::Temporal::ITimeIdBasedComponentDataItem, and HydroCouple::Temporal::ITimeIdBasedComponentDataItem.
|
pure virtual |
Sets a multi-dimensional array of values for given dimension indexes and strides along each dimension.
[in] | data | is the pointer to the input data to be set. |
[in] | dimensionIndexes | are the indexes for where data is to be written. |
[in] | dimensionLengths | are the lengths of the dimensions for the data to be set. If empty a single value is set, otherwise the length of the vector must be equal to the number of dimensions. |
Implemented in HydroCouple::IIdBasedComponentDataItem, HydroCouple::Spatial::IGeometryComponentDataItem, HydroCouple::Spatial::INetworkComponentDataItem, HydroCouple::Spatial::IPolyhedralSurfaceComponentDataItem, HydroCouple::Spatial::ITINComponentDataItem, HydroCouple::Spatial::ITINComponentDataItem, HydroCouple::Spatial::IRasterComponentDataItem, HydroCouple::Spatial::IRegularGrid2DComponentDataItem, HydroCouple::Spatial::IRegularGrid3DComponentDataItem, HydroCouple::Temporal::ITimeSeriesComponentDataItem, HydroCouple::Temporal::ITimeSeriesComponentDataItem, HydroCouple::Temporal::ITimeIdBasedComponentDataItem, HydroCouple::Temporal::ITimeIdBasedComponentDataItem, and HydroCouple::Temporal::ITimeIdBasedComponentDataItem.
|
pure virtual |
showEditor shows the editor for this IComponentItem.
[in] | opaqueUIPointer | Is an opaque pointer to the UI object that is used to show the editor. |
|
pure virtual |
showViewer shows the viewer for this IComponentItem.
[in] | opaqueUIPointer | Is an opaque pointer to the UI object that is used to show the viewer. |
|
pure virtual |
IValueDefinition for this IValueSet defines the variable type associated with this object.