Kanzi  3.9.6
Kanzi Engine API
kanzi::TextBoxConcept::TextRangeMessageArguments Class Reference

Message arguments that hold the information for operations that target a text range, such as selecting or deleting text in a Text Box node. More...

#include <kanzi/ui/node/concept/text_box.hpp>

Inheritance diagram for kanzi::TextBoxConcept::TextRangeMessageArguments:
[legend]

Public Member Functions

size_t getRangeEnd () const
 Returns the value of the EndPositionProperty. More...
 
size_t getRangeStart () const
 Returns the value of the StartPositionProperty. More...
 
void setRangeEnd (size_t endPosition)
 Sets the value of the EndPositionProperty. More...
 
void setRangeStart (size_t startPosition)
 Sets the value of the StartPositionProperty. 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 Attributes

static PropertyType< int > EndPositionProperty
 Sets the index value for the end of a range. More...
 
static PropertyType< int > StartPositionProperty
 Sets the index value for the start of a range. More...
 

Additional Inherited Members

- 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...
 

Detailed Description

Message arguments that hold the information for operations that target a text range, such as selecting or deleting text in a Text Box node.

Member Function Documentation

◆ setRangeStart()

void kanzi::TextBoxConcept::TextRangeMessageArguments::setRangeStart ( size_t  startPosition)
inline

Sets the value of the StartPositionProperty.

Parameters
startPositionThe index value for the start of a selection.

◆ getRangeStart()

size_t kanzi::TextBoxConcept::TextRangeMessageArguments::getRangeStart ( ) const
inline

Returns the value of the StartPositionProperty.

Returns
The value of the StartPositionProperty in the message argument.

◆ setRangeEnd()

void kanzi::TextBoxConcept::TextRangeMessageArguments::setRangeEnd ( size_t  endPosition)
inline

Sets the value of the EndPositionProperty.

Parameters
endPositionThe index value for the end of a selection.

◆ getRangeEnd()

size_t kanzi::TextBoxConcept::TextRangeMessageArguments::getRangeEnd ( ) const
inline

Returns the value of the EndPositionProperty.

Returns
The value of the EndPositionProperty in the message argument.

Member Data Documentation

◆ StartPositionProperty

PropertyType<int> kanzi::TextBoxConcept::TextRangeMessageArguments::StartPositionProperty
static

Sets the index value for the start of a range.

◆ EndPositionProperty

PropertyType<int> kanzi::TextBoxConcept::TextRangeMessageArguments::EndPositionProperty
static

Sets the index value for the end of a range.


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