Kanzi  3.9.6
Kanzi Engine API
kanzi::Keyboard::KeyStateChangedMessageArguments Class Reference

Represents base message arguments for key state change messages. More...

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

Inheritance diagram for kanzi::Keyboard::KeyStateChangedMessageArguments:
[legend]

Public Member Functions

LogicalKey getKey () const
 Returns the logical key argument value. More...
 
KeyModifier getKeyModifiers () const
 Returns the key modifiers argument value. More...
 
bool hasAltModifier () const
 Checks whether the key modifiers argument has one of the Alt key modifiers set. More...
 
bool hasControlModifier () const
 Checks whether the key modifiers argument has one of the Control key modifiers set. More...
 
bool hasModifier (KeyModifier modifier) const
 Checks whether a modifier is set in the key modifiers argument. More...
 
bool hasShiftModifier () const
 Checks whether the key modifiers argument has one of the Shift key modifiers set. More...
 
void setKey (LogicalKey value)
 Sets a value for the logical key argument. More...
 
void setKeyModifiers (KeyModifier modifiers)
 Sets a value for the key modifiers argument. 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

Properties
static PropertyType< int > KeyProperty
 Holds the logical key presses and key released values. More...
 
static PropertyType< int > KeyModifiersProperty
 Holds the key modifiers attached to the key value. 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

Represents base message arguments for key state change messages.

Deprecated:
In Kanzi 3.8.

Member Function Documentation

◆ getKey()

LogicalKey kanzi::Keyboard::KeyStateChangedMessageArguments::getKey ( ) const

Returns the logical key argument value.

Returns
The logical key argument value.
See also
LogicalKey
Deprecated:
In Kanzi 3.8.

◆ setKey()

void kanzi::Keyboard::KeyStateChangedMessageArguments::setKey ( LogicalKey  value)

Sets a value for the logical key argument.

Parameters
valueThe logical key value to set.
See also
LogicalKey
Deprecated:
In Kanzi 3.8.

◆ getKeyModifiers()

KeyModifier kanzi::Keyboard::KeyStateChangedMessageArguments::getKeyModifiers ( ) const

Returns the key modifiers argument value.

Returns
The key modifiers argument value.
See also
KeyModifier
Deprecated:
In Kanzi 3.8.

◆ setKeyModifiers()

void kanzi::Keyboard::KeyStateChangedMessageArguments::setKeyModifiers ( KeyModifier  modifiers)

Sets a value for the key modifiers argument.

Parameters
modifiersThe key modifiers value to set.
See also
KeyModifier
Deprecated:
In Kanzi 3.8.

◆ hasModifier()

bool kanzi::Keyboard::KeyStateChangedMessageArguments::hasModifier ( KeyModifier  modifier) const

Checks whether a modifier is set in the key modifiers argument.

Parameters
modifierThe modifier to check.
Returns
true if the modifier is set, false if not.
See also
KeyModifier
Since
Kanzi 3.7.0
Deprecated:
In Kanzi 3.8.

◆ hasShiftModifier()

bool kanzi::Keyboard::KeyStateChangedMessageArguments::hasShiftModifier ( ) const

Checks whether the key modifiers argument has one of the Shift key modifiers set.

Returns
If the key modifiers argument has at least one of the Shift key modifiers set, true, otherwise false.
See also
KeyModifier, KeyModifier::Shift, KeyModifier::LeftShift, KeyModifier::RightShift
Since
Kanzi 3.7.0
Deprecated:
In Kanzi 3.8.

◆ hasControlModifier()

bool kanzi::Keyboard::KeyStateChangedMessageArguments::hasControlModifier ( ) const

Checks whether the key modifiers argument has one of the Control key modifiers set.

Returns
If the key modifiers argument has at least one of the Control key modifiers set, true, otherwise false.
See also
KeyModifier, KeyModifier::Control, KeyModifier::LeftControl, KeyModifier::RightControl
Since
Kanzi 3.7.0
Deprecated:
In Kanzi 3.8.

◆ hasAltModifier()

bool kanzi::Keyboard::KeyStateChangedMessageArguments::hasAltModifier ( ) const

Checks whether the key modifiers argument has one of the Alt key modifiers set.

Returns
If the key modifiers argument has at least one of the Alt key modifiers set, true, otherwise false.
See also
KeyModifier, KeyModifier::Alt, KeyModifier::LeftAlt, KeyModifier::RightAlt
Since
Kanzi 3.7.0
Deprecated:
In Kanzi 3.8.

Member Data Documentation

◆ KeyProperty

PropertyType<int> kanzi::Keyboard::KeyStateChangedMessageArguments::KeyProperty
static

Holds the logical key presses and key released values.

The default value is 0.

See also
setKey(), getKey()
Deprecated:
In Kanzi 3.8.

◆ KeyModifiersProperty

PropertyType<int> kanzi::Keyboard::KeyStateChangedMessageArguments::KeyModifiersProperty
static

Holds the key modifiers attached to the key value.

The default value is 0.

Deprecated:
In Kanzi 3.8.

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