Typed runtime for variable binding source. More...
#include <kanzi/core.ui/binding/typed_variable_binding_source_runtime.hpp>
Public Types | |
| using | VariableBindingTargetType |
| Type for the variable binding target that this variable binding source is reading from. | |
Public Types inherited from kanzi::BindingSourceRuntime | |
| using | BindingProcessorRuntimeConstIterator |
| Binding processor runtime constant iterator type. | |
| using | BindingProcessorRuntimeContainer |
| Binding processor runtime container type. | |
Public Member Functions | |
| ~TypedVariableBindingSourceRuntime () override | |
| Destructor. | |
Public Member Functions inherited from kanzi::VariableBindingSourceRuntime | |
| PropertyField | getPropertyField () const |
| Gets property field. | |
Public Member Functions inherited from kanzi::BindingSourceRuntime | |
| void | attachForRead () |
| Attaches the binding source runtime for reading. | |
| void | attachForWrite () |
| Attaches the binding source runtime for writing. | |
| BindingProcessorRuntimeConstIterator | beginProcessorRuntimes () const |
| Gets an iterator to the beginning of binding processors. | |
| void | createBindingProcessorRuntimes (const AbstractBinding &binding) |
| Creates a processor runtime for each BindingProcessor held by the binding parameter. | |
| void | detach () |
| Detaches the binding source runtime. | |
| BindingProcessorRuntimeConstIterator | endProcessorRuntimes () const |
| Gets an iterator to the end of binding processors. | |
| AbstractBindingRuntime * | getBindingRuntime () const |
| Gets the binding runtime. | |
| BindingLookupContext & | getLookupContext () const |
| Gets the lookup context. | |
| bool | isConnected () |
| Indicates whether this source is connected. | |
| bool | read (Variant &value) |
| Reads a value from binding source. | |
| void | setBindingRuntime (AbstractBindingRuntime &bindingRuntime) |
| Sets the binding runtime. | |
| bool | write (const Variant &value) |
| Writes a value to binding source. | |
| virtual | ~BindingSourceRuntime ()=default |
| Destructor. | |
Public Member Functions inherited from kanzi::AbstractBindingVariableSource | |
| AbstractPropertyType | getPropertyType () const |
| Gets the associated property type for this variable source. | |
| void | notifyVariableAvailable () |
| Notification function for when variable has become available or has been changed. | |
| void | notifyVariableDetached () |
| Notification function for when variable has become detached and is no longer available. | |
| void | setTargetRuntime (VariableBindingTargetRuntime *targetRuntime) |
| Sets the variable binding target runtime. | |
Static Public Member Functions | |
| static BindingSourceRuntimePtr | create (const VariableBindingSource &source) |
| Creates a typed variable binding source runtime. | |
Static Public Member Functions inherited from kanzi::VariableBindingSourceRuntime | |
| static BindingSourceRuntimePtr | create (const VariableBindingSource &bindingSource) |
| Creates a manual binding source runtime. | |
Additional Inherited Members | |
Protected Attributes inherited from kanzi::VariableBindingSourceRuntime | |
| const VariableBindingSource & | m_source |
| Binding source that created this runtime. | |
Protected Attributes inherited from kanzi::BindingSourceRuntime | |
| AbstractBindingRuntime * | m_bindingRuntime |
| Abstract binding runtime for this source. | |
| BindingProcessorRuntimeContainer | m_processorRuntimes |
| Binding processors (for the source, forward direction). | |
Protected Attributes inherited from kanzi::AbstractBindingVariableSource | |
| VariableBindingTargetRuntime * | m_targetRuntime |
| Currently connected target runtime. | |
Typed runtime for variable binding source.
| using kanzi::TypedVariableBindingSourceRuntime< T >::VariableBindingTargetType |
Type for the variable binding target that this variable binding source is reading from.
|
inlineoverride |
Destructor.
|
inlineexplicitprotected |
Constructor.
| source | Host variable property binding source. |
|
inlinestatic |
Creates a typed variable binding source runtime.
| source | Host variable binding source. |
|
inlineprotected |
Gets the current target runtime as the correct type.
|
inlineoverrideprotectedvirtual |
BindingSourceRuntime::attachForReadOverride() implementation.
Implements kanzi::BindingSourceRuntime.
|
inlineoverrideprotectedvirtual |
BindingSourceRuntime::isConnectedOverride() implementation.
Implements kanzi::BindingSourceRuntime.
|
inlineoverrideprotectedvirtual |
BindingSourceRuntime::readOverride() implementation.
Implements kanzi::BindingSourceRuntime.