|
enum | Status { Status::Active,
Status::Inactive,
Status::Activating,
Status::Deactivating
} |
| Defines possible states of an Activity. More...
|
|
Node * | getNode () override |
| Gets the underlying Node object. More...
|
|
const Node * | getNode () const override |
| Gets the underlying Node object. More...
|
|
virtual void | deserialize (string_view data) |
| Deserializes the activity element from a byte buffer. More...
|
|
Node * | findChildHost (string_view hostName) |
| Finds a child Activity Host by name. More...
|
|
vector< string > | getCommands () const |
| Gets the list of commands handled by code behind of this activity element. More...
|
|
ActivityHistoryManager * | getHistoryManager () const |
| Gets the history manager of this activity element. More...
|
|
ActivityElement * | getParentElement () |
| Gets the parent ActivityElement type node. More...
|
|
bool | isLeafActivityNode () const |
| Returns whether an ActivityElement has a child Activity Host. More...
|
|
const Node * | restoreLastFocusedNode () |
| Restores the focus to a child node of this Activity node, if the Activity node: More...
|
|
virtual string | serialize () |
| Serializes the activity element to a byte buffer. More...
|
|
void | setCodeBehind (const Metaclass *metaclass) |
| Instantiates and attaches a code behind object by specifying its metaclass. More...
|
|
void | setCodeBehind (CodeBehindSharedPtr codeBehind) |
| Attaches a code behind object. More...
|
|
void | setLastFocusedNodePath () |
| Sets the last focused node path of this Activity node to the currently focused child node, if the Activity node: More...
|
|
virtual | ~ActivityElement ()=default |
| Destructor. More...
|
|
virtual | ~ActivityConcept ()=default |
| Destructor. More...
|
|
static string | getFirstElement (string_view activationSequence) |
| Gets the first element of the activation sequence. More...
|
|
static string | getRestToForward (string_view activationSequence) |
| Gets the remainder of the activation sequence. More...
|
|
template<typename Type > |
static bool | isActivityElement (const Type &object) |
| Checks if and object is an ActivityElement. More...
|
|
static PropertyTypeEditorInfoSharedPtr | makeEditorInfo () |
|
static PropertyTypeEditorInfoSharedPtr | makeEditorInfo () |
|
static PropertyType< bool > | AttachedProperty |
|
static PropertyType< Status > | StatusProperty |
| Specifies the status of this Activity. More...
|
|
static PropertyType< float > | DummyStateManagerProperty |
| Lack of a queuing mechanism for incoming messages from an Activity Host can cause Kanzi to enter a recursive call in the setProperty(). More...
|
|
static PropertyType< bool > | ActivatedByActivationModifierProperty |
| Specifies whether the activation of an Activity is requested by modifier bindings callbacks of an ApplyAction of a DataTrigger. More...
|
|
static PropertyType< bool > | SaveLastFocusedNodeProperty |
| Indicates whether to serialize the last focused child node of a focus scope Activity and restore the focus on deserialization. More...
|
|
static MessageType< StatusChangedMessageArguments > | StatusChangedMessage |
| Subscribe to this message to receive notifications when the ActivityConcept::Status of this Activity changes. More...
|
|
static MessageType< ActivityMessageArguments > | ActivityActivatingMessage |
| Subscribe to this message to receive notifications when this Activity is in the activating state. More...
|
|
static MessageType< ActivityMessageArguments > | ActivityActivatedMessage |
| Subscribe to this message to receive notifications when this Activity is activated. More...
|
|
static MessageType< ActivityMessageArguments > | ActivityDeactivatingMessage |
| Subscribe to this message to receive notifications when this Activity is in the deactivating state. More...
|
|
static MessageType< ActivityMessageArguments > | ActivityDeactivatedMessage |
| Subscribe to this message to receive notifications when this Activity is deactivated. More...
|
|
static MessageType< StartActivationInternalMessageArguments > | StartActivationInternalMessage |
| Internal message sent by an Activity Host to the Activity to initialize the resources of the Activity. More...
|
|
static MessageType< ActivityInternalMessageArguments > | StartDeactivationInternalMessage |
| Internal message sent by an Activity Host to the Activity to deactivate the Activity. More...
|
|
static MessageType< StatusChangedInternalMessageArguments > | ReadyForActivationAnimationInternalMessage |
| Internal message sent by the Activity to its parent Activity Host when the Activity has finished initializing its resources. More...
|
|
static MessageType< ActivityInternalMessageArguments > | StartParallelActivatingAnimationInternalMessage |
| Internal message sent by an Activity Host to the Activity to start the parallel activation animation of the Activity. More...
|
|
static MessageType< StatusChangedInternalMessageArguments > | FinishedParallelActivatingAnimationInternalMessage |
| Internal message sent by the Activity to its parent Activity Host when the Activity has finished the parallel activation animation of the Activity. More...
|
|
static MessageType< ActivityInternalMessageArguments > | StartExclusiveActivatingAnimationInternalMessage |
| Internal message sent by an Activity Host to the Activity to start the exclusive activation animation of the Activity. More...
|
|
static MessageType< ActivityInternalMessageArguments > | StartExclusiveDeactivatingAnimationInternalMessage |
| Internal message sent by an Activity Host to the Activity to start the exclusive deactivation animation of the Activity. More...
|
|
static MessageType< StatusChangedInternalMessageArguments > | FinishedExclusiveDeactivatingAnimationInternalMessage |
| Internal message sent by the Activity to its parent Activity Host when the Activity has finished the exclusive deactivation animation of the Activity. More...
|
|
static MessageType< ActivityInternalMessageArguments > | StartParallelDeactivatingAnimationInternalMessage |
| Internal message sent by an Activity Host to the Activity to start the parallel deactivation animation of the Activity. More...
|
|
static MessageType< StatusChangedInternalMessageArguments > | FinishedParallelDeactivatingAnimationInternalMessage |
| Internal message sent by the Activity to its parent Activity Host when the Activity has finished the parallel deactivation animation of the Activity. More...
|
|