Kanzi  3.9.6
Kanzi Engine API
kanzi::AnimationPlayer::PlayMessageArguments Class Reference

Message arguments for the Play message. More...

#include <kanzi/ui/node_component/animation/animation_player.hpp>

Inheritance diagram for kanzi::AnimationPlayer::PlayMessageArguments:
[legend]

Public Member Functions

float getDurationScale () const
 Gets the value of the DurationScaleProperty property. More...
 
Timeline::DirectionBehavior getPlaybackMode () const
 Gets the value of the PlaybackModeProperty property. More...
 
int getRepeatCount () const
 Gets the value of the RepeatCountProperty property. More...
 
void setDurationScale (float durationScale)
 Sets the value of the DurationScaleProperty property. More...
 
void setPlaybackMode (Timeline::DirectionBehavior direction)
 Sets the value of the PlaybackModeProperty property. More...
 
void setRepeatCount (int repeatCount)
 Sets the value of the RepeatCountProperty property. More...
 
- Public Member Functions inherited from kanzi::NodeComponent::NodeComponentTargetMessageArguments
string getTargetNodeComponentName () const
 Gets value of TargetNodeComponentName property. More...
 
void setTargetNodeComponentName (string_view targetNodeComponentName)
 Sets value of TargetNodeComponentName property. More...
 
- Public Member Functions inherited from kanzi::MessageArguments
bool getAbstractArgument (AbstractPropertyType argumentType, Variant &variant) const
 Returns the value of an argument using AbstractPropertyType. More...
 
template<typename TDataType >
TDataType getArgument (const PropertyType< TDataType > &argumentType) const
 Returns the value of an argument. More...
 
detail::MessageDispatcher * getDispatcher () const
 Returns the message dispatcher that dispatches a message. More...
 
template<typename TDataType >
optional< TDataType > getOptionalArgument (const PropertyType< TDataType > &argumentType) const
 Returns the value of an argument. More...
 
shared_ptr< NodegetSource () const
 Returns the source node for a message. More...
 
TimePoint getTimestamp () const
 Returns the timestamp of a message. More...
 
AbstractMessageType getType () const
 Returns the message type of these message arguments as an AbstractMessageType instance. More...
 
bool isFrom (const Node &source) const
 Returns whether a node is the source node of a message. More...
 
bool isHandled () const
 Returns whether the message is handled. More...
 
bool isValid () const
 Returns whether a message is valid. More...
 
 MessageArguments ()=default
 Constructor. More...
 
 MessageArguments (const MessageArguments &)=delete
 Deleted copy. More...
 
MessageArgumentsoperator= (const MessageArguments &)=delete
 Deleted assignment. More...
 
void setAbstractArgument (AbstractPropertyType argumentType, const Variant &variant)
 Sets the value of an argument using AbstractPropertyType. More...
 
template<typename TDataType >
void setArgument (const PropertyType< TDataType > &argumentType, typename PropertyType< TDataType >::DataType value)
 Sets the value of an argument. More...
 
void setDispatcher (detail::MessageDispatcher *dispatcher)
 Sets a dispatcher for a message. More...
 
void setHandled (bool handled)
 Sets the handling status for a message. More...
 
void setSource (Node *source)
 Sets the source node that dispatches a message. More...
 
void setTimestamp (TimePoint timestamp)
 Sets the timestamp of a message. More...
 
void setType (AbstractMessageType type)
 Sets the type of a message. More...
 
void setValid (bool valid)
 Sets the validity of a message. More...
 
 ~MessageArguments ()
 Destructor. More...
 

Static Public Member Functions

static PropertyTypeEditorInfoSharedPtr makeEditorInfo ()
 Returns the PropertyType editor information of the Play messages. More...
 
- Static Public Member Functions inherited from kanzi::NodeComponent::NodeComponentTargetMessageArguments
static PropertyTypeEditorInfoSharedPtr makeEditorInfo ()
 
- Static Public Member Functions inherited from kanzi::MessageArguments
static size_t getArgumentAllocatorPoolSize ()
 Gets the current size of memory pool of argument entries. More...
 
static const MetaclassgetStaticMetaclass ()
 Initializes and returns static metadata of base MessageArguments class. More...
 
static PropertyTypeEditorInfoSharedPtr makeEditorInfo ()
 Initializes and returns the Kanzi Studio editor information. More...
 

Static Public Attributes

static PropertyType< float > DurationScaleProperty
 Sets the amount by which the duration of an animation timeline is scaled during its playback. More...
 
static PropertyType< int > PlaybackModeProperty
 Sets the mode of an animation timeline playback to either: More...
 
static PropertyType< int > RepeatCountProperty
 Sets how many times an animation timeline is played during its playback. More...
 
- Static Public Attributes inherited from kanzi::NodeComponent::NodeComponentTargetMessageArguments
static PropertyType< string > TargetNodeComponentNameProperty
 Target name property specifies the name of node component to which the message is sent. More...
 

Detailed Description

Message arguments for the Play message.

Member Function Documentation

◆ setPlaybackMode()

void kanzi::AnimationPlayer::PlayMessageArguments::setPlaybackMode ( Timeline::DirectionBehavior  direction)
inline

Sets the value of the PlaybackModeProperty property.

Parameters
directionThe playback mode that you want to apply.

◆ getPlaybackMode()

Timeline::DirectionBehavior kanzi::AnimationPlayer::PlayMessageArguments::getPlaybackMode ( ) const
inline

Gets the value of the PlaybackModeProperty property.

Returns
Playback mode.

◆ setDurationScale()

void kanzi::AnimationPlayer::PlayMessageArguments::setDurationScale ( float  durationScale)
inline

Sets the value of the DurationScaleProperty property.

Parameters
durationScaleDuration scale.

◆ getDurationScale()

float kanzi::AnimationPlayer::PlayMessageArguments::getDurationScale ( ) const
inline

Gets the value of the DurationScaleProperty property.

Returns
Duration scale.

◆ setRepeatCount()

void kanzi::AnimationPlayer::PlayMessageArguments::setRepeatCount ( int  repeatCount)
inline

Sets the value of the RepeatCountProperty property.

Parameters
repeatCountRepeat count.

◆ getRepeatCount()

int kanzi::AnimationPlayer::PlayMessageArguments::getRepeatCount ( ) const
inline

Gets the value of the RepeatCountProperty property.

Returns
Repeat count.

◆ makeEditorInfo()

static PropertyTypeEditorInfoSharedPtr kanzi::AnimationPlayer::PlayMessageArguments::makeEditorInfo ( )
static

Returns the PropertyType editor information of the Play messages.

Member Data Documentation

◆ PlaybackModeProperty

PropertyType<int> kanzi::AnimationPlayer::PlayMessageArguments::PlaybackModeProperty
static

Sets the mode of an animation timeline playback to either:

  • Normal plays the animation timeline normally from the start to end. This is the default value.
  • Reverse plays the animation timeline in reverse from the end to start.
  • Ping pong plays the animation timeline first normally, then in reverse.

◆ DurationScaleProperty

PropertyType<float> kanzi::AnimationPlayer::PlayMessageArguments::DurationScaleProperty
static

Sets the amount by which the duration of an animation timeline is scaled during its playback.

For example:

  • When set to 1.0, the animation is of the same length as it is defined in the animation. This is the default value.
  • When set to 0.5, the animation is half as long as it is defined in the animation.
  • When set to 2.0, the animation is twice as long as it is defined in the animation.

◆ RepeatCountProperty

PropertyType<int> kanzi::AnimationPlayer::PlayMessageArguments::RepeatCountProperty
static

Sets how many times an animation timeline is played during its playback.

The default value is 1.


The documentation for this class was generated from the following file: