Runtime for ObjectPropertyBindingSource. More...
#include <kanzi/core.ui/binding/object_property_binding_source_runtime.hpp>
Public Member Functions | |
string | getPath () const |
Gets path to object. More... | |
PropertyField | getPropertyField () const |
Gets property field. More... | |
AbstractPropertyType | getPropertyType () const |
Gets property type. More... | |
Public Member Functions inherited from kanzi::BindingSourceRuntime | |
void | attachForRead () |
Attaches the binding source runtime for reading. More... | |
void | attachForWrite () |
Attaches the binding source runtime for writing. More... | |
BindingProcessorRuntimeConstIterator | beginProcessorRuntimes () const |
Gets an iterator to the beginning of binding processors. More... | |
void | createBindingProcessorRuntimes (const AbstractBinding &binding) |
Creates a processor runtime for each BindingProcessor held by the binding parameter. More... | |
void | detach () |
Detaches the binding source runtime. More... | |
BindingProcessorRuntimeConstIterator | endProcessorRuntimes () const |
Gets an iterator to the end of binding processors. More... | |
AbstractBindingRuntime * | getBindingRuntime () const |
Returns the source lookup context. More... | |
BindingLookupContext & | getLookupContext () const |
Returns the source lookup context. More... | |
bool | isConnected () |
Indicates whether this source is connected. More... | |
bool | read (Variant &value) |
Reads a value from binding source. More... | |
void | setBindingRuntime (AbstractBindingRuntime &bindingRuntime) |
Sets the binding runtime. More... | |
bool | write (const Variant &value) |
Writes a value to binding source. More... | |
virtual | ~BindingSourceRuntime ()=default |
Destructor. More... | |
Protected Member Functions | |
ObjectPropertyBindingSourceRuntime (const ObjectPropertyBindingSource &source, BindingLookupContextPtr lookupContext) | |
Constructor. More... | |
Protected Member Functions inherited from kanzi::BindingSourceRuntime | |
virtual void | attachForReadOverride ()=0 |
Implementation-dependent attach for read. More... | |
virtual void | attachForWriteOverride ()=0 |
Implementation-dependent attach for write. More... | |
BindingSourceRuntime (BindingLookupContextPtr lookupContext) | |
Constructor. More... | |
virtual void | detachOverride ()=0 |
Implementation-dependent detach. More... | |
virtual bool | isConnectedOverride ()=0 |
Implementation-dependent connected check. More... | |
virtual bool | readOverride (Variant &value)=0 |
Implementation-dependent read. More... | |
virtual bool | writeOverride (const Variant &value) |
Implementation-dependent write. More... | |
Protected Attributes | |
const ObjectPropertyBindingSource & | m_source |
Host binding source. More... | |
Protected Attributes inherited from kanzi::BindingSourceRuntime | |
AbstractBindingRuntime * | m_bindingRuntime |
Abstract binding runtime for this source. More... | |
BindingLookupContextPtr | m_lookupContext |
Binding lookup context for wherever this binding source runtime is attached to. More... | |
BindingProcessorRuntimeContainer | m_processorRuntimes |
Binding processors (for the source, forward direction). More... | |
Additional Inherited Members | |
Public Types inherited from kanzi::BindingSourceRuntime | |
using | BindingProcessorRuntimeConstIterator = BindingProcessorRuntimeContainer::const_iterator |
Binding processor runtime constant iterator type. More... | |
using | BindingProcessorRuntimeContainer = vector< BindingProcessorRuntimePtr > |
Binding processor runtime container type. More... | |
Runtime for ObjectPropertyBindingSource.
|
inlineexplicitprotected |
Constructor.
source | Host object property binding source. |
lookupContext | Lookup context for this binding source runtime. |
string kanzi::ObjectPropertyBindingSourceRuntime::getPath | ( | ) | const |
Gets path to object.
AbstractPropertyType kanzi::ObjectPropertyBindingSourceRuntime::getPropertyType | ( | ) | const |
Gets property type.
PropertyField kanzi::ObjectPropertyBindingSourceRuntime::getPropertyField | ( | ) | const |
Gets property field.
|
protected |
Host binding source.