Kanzi  3.9.6
Kanzi Engine API
kanzi::TextInputManipulator::SelectionChangedMessageArguments Class Reference

Message arguments used by the SelectionChangedMessage. More...

#include <kanzi/core.ui/input/text_input_manipulator.hpp>

Inheritance diagram for kanzi::TextInputManipulator::SelectionChangedMessageArguments:
[legend]

Public Member Functions

size_t getSelectionEnd () const
 Returns the value of the SelectionEndProperty. More...
 
size_t getSelectionStart () const
 Returns the value of the SelectionStartProperty. More...
 
SelectionState getSelectionState () const
 Returns the value of the SelectionStateProperty. More...
 
void setSelectionEnd (size_t endPosition)
 Sets the value of the SelectionEndProperty. More...
 
void setSelectionStart (size_t startPosition)
 Sets the value of the SelectionStartProperty. More...
 
void setSelectionState (SelectionState type)
 Sets the value of the SelectionStateProperty. 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 > SelectionEndProperty
 The property that holds the index value for the position where a text selection ends. More...
 
static PropertyType< int > SelectionStartProperty
 The property that holds the index value for the position where a text selection starts. More...
 
static PropertyType< int > SelectionStateProperty
 The property that holds the state of text selection. 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 used by the SelectionChangedMessage.

These arguments contain the cursor positions of the start and end points of text selection in the TextInputManipulator.

Member Function Documentation

◆ setSelectionState()

void kanzi::TextInputManipulator::SelectionChangedMessageArguments::setSelectionState ( SelectionState  type)
inline

Sets the value of the SelectionStateProperty.

Parameters
typeThe selection change type value to set.

◆ getSelectionState()

SelectionState kanzi::TextInputManipulator::SelectionChangedMessageArguments::getSelectionState ( ) const
inline

Returns the value of the SelectionStateProperty.

Returns
The value of the SelectionStateProperty in the argument.

◆ setSelectionStart()

void kanzi::TextInputManipulator::SelectionChangedMessageArguments::setSelectionStart ( size_t  startPosition)
inline

Sets the value of the SelectionStartProperty.

Parameters
startPositionThe index value for the position where a text selection starts.

◆ getSelectionStart()

size_t kanzi::TextInputManipulator::SelectionChangedMessageArguments::getSelectionStart ( ) const
inline

Returns the value of the SelectionStartProperty.

Returns
The value of the SelectionStartProperty in the message argument.

◆ setSelectionEnd()

void kanzi::TextInputManipulator::SelectionChangedMessageArguments::setSelectionEnd ( size_t  endPosition)
inline

Sets the value of the SelectionEndProperty.

Parameters
endPositionThe index value for the position where a text selection ends.

◆ getSelectionEnd()

size_t kanzi::TextInputManipulator::SelectionChangedMessageArguments::getSelectionEnd ( ) const
inline

Returns the value of the SelectionEndProperty.

Returns
The value of the SelectionEndProperty in the message argument.

Member Data Documentation

◆ SelectionStateProperty

PropertyType<int> kanzi::TextInputManipulator::SelectionChangedMessageArguments::SelectionStateProperty
static

The property that holds the state of text selection.

◆ SelectionStartProperty

PropertyType<int> kanzi::TextInputManipulator::SelectionChangedMessageArguments::SelectionStartProperty
static

The property that holds the index value for the position where a text selection starts.

◆ SelectionEndProperty

PropertyType<int> kanzi::TextInputManipulator::SelectionChangedMessageArguments::SelectionEndProperty
static

The property that holds the index value for the position where a text selection ends.


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