Runtime for binding. More...
#include <kanzi/core.ui/binding/binding_runtime.hpp>
Static Public Member Functions | |
static BindingRuntimeSharedPtr | create (BindingSharedPtr binding, BindingLookupContextPtr lookupContext, BindingSourceRuntimePtr sourceRuntime, BindingTargetRuntimePtr targetRuntime) |
Creates a binding runtime. | |
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. | |
Protected Attributes inherited from kanzi::BindingBaseRuntime | |
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. | |
Runtime for binding.
|
explicitprotected |
|
static |
|
overrideprotectedvirtual |
AbstractBindingRuntime::attachOverride() implementation.
Reimplemented from kanzi::BindingBaseRuntime.