Runtime for expression binding. More...
#include <kanzi/core.ui/binding/expression_binding_runtime.hpp>
Static Public Member Functions | |
| static ExpressionBindingRuntimeSharedPtr | create (ExpressionBindingSharedPtr expressionBinding, BindingLookupContextPtr lookupContext, BindingSourceRuntimePtr sourceRuntime, BindingTargetRuntimePtr targetRuntime) |
| Creates an expression binding runtime. | |
Protected Attributes | |
| bool | m_updateInProgress |
| Flag for update being in progress. | |
Protected Attributes inherited from kanzi::AbstractBindingRuntime | |
| AttachmentState | m_attachmentState |
| Current binding runtime state. | |
| AbstractBindingSharedPtr | m_binding |
| Associated binding. | |
| BindingHostConceptWeakPtr | m_bindingHost |
| The binding host object in which the binding runtime is hosted. | |
| BindingLookupContextPtr | m_lookupContext |
| weak_ptr< void > | m_owner |
| Owner for tagging the runtime. | |
| BindingSourceRuntimePtr | m_sourceRuntime |
| Runtime for source. | |
| BindingTargetRuntimePtr | m_targetRuntime |
| Runtime for target. | |
Additional Inherited Members | |
Public Types inherited from kanzi::AbstractBindingRuntime | |
| enum | AttachmentState { Detached , Detaching , Attaching , Attached , Removed } |
| Attachment state for keeping track current status. More... | |
Public Member Functions inherited from kanzi::AbstractBindingRuntime | |
| void | attach () |
| Attach the binding. | |
| void | detach () |
| Detaches the binding. | |
| void | detachIfAttachedOrAttaching () |
| Detaches the binding if it is attaching or attached. | |
| AbstractBindingSharedPtr | getBinding () const |
| Returns the binding associated with this binding runtime. | |
| BindingLookupContext & | getLookupContext () const |
| Gets the lookup context. | |
| shared_ptr< void > | getOwner () const |
| Gets the owner. | |
| BindingSourceRuntime * | getSourceRuntime () const |
| Gets the source runtime. | |
| BindingTargetRuntime * | getTargetRuntime () const |
| Gets the target runtime. | |
| bool | isAttached () const |
| Indicates whether this binding runtime has been attached. | |
| bool | isAttaching () const |
| Indicates whether this binding runtime is being attached. | |
| bool | isConnected () |
| Indicates whether this binding runtime is connected. | |
| bool | isDetached () const |
| Indicates whether this binding runtime is detached. | |
| bool | isDetaching () const |
| Indicates whether this binding runtime is being detached. | |
| bool | isRemoved () const |
| Gets whether the binding runtime has been removed from the binding host. | |
| void | notifySourceChanged () |
| Called when binding source has changed. | |
| void | notifyTargetChanged () |
| Called when binding target has changed. | |
| void | onRemoved () |
| Called when binding is being removed from where it has been installed. | |
| void | removeFromHost () |
| Removes the binding runtime from the binding host. | |
| void | setHost (BindingHostConceptSharedPtr hostObject) |
| Sets the binding host object in which the binding runtime is hosted. | |
| void | setOwner (shared_ptr< void > owner) |
| Set the owner. | |
| bool | update () |
| Execute the binding. | |
| virtual | ~AbstractBindingRuntime () |
| Destructor. | |
Runtime for expression binding.
|
explicitprotected |
|
static |
Creates an expression binding runtime.
| expressionBinding | Expression binding that created this runtime. |
| lookupContext | binding lookup context. |
| sourceRuntime | Binding source runtime. |
| targetRuntime | Binding target runtime. |
|
overrideprotectedvirtual |
AbstractBindingRuntime::attachOverride() implementation.
Implements kanzi::AbstractBindingRuntime.
|
overrideprotectedvirtual |
AbstractBindingRuntime::detachOverride() implementation.
Implements kanzi::AbstractBindingRuntime.
|
overrideprotectedvirtual |
AbstractBindingRuntime::updateOverride() implementation.
Implements kanzi::AbstractBindingRuntime.
|
overrideprotectedvirtual |
AbstractBindingRuntime::notifySourceChangedOverride() implementation.
Reimplemented from kanzi::AbstractBindingRuntime.
|
protected |
Flag for update being in progress.
Used to prevent infinite update loop.