Represents base message arguments for key state change messages. More...
#include <kanzi/core.ui/input/keyboard.hpp>
Public Member Functions | |
| LogicalKey | getKey () const |
| Returns the logical key argument value. | |
| KeyModifier | getKeyModifiers () const |
| Returns the key modifiers argument value. | |
| bool | hasAltModifier () const |
| Checks whether the key modifiers argument has one of the Alt key modifiers set. | |
| bool | hasControlModifier () const |
| Checks whether the key modifiers argument has one of the Control key modifiers set. | |
| bool | hasModifier (KeyModifier modifier) const |
| Checks whether a modifier is set in the key modifiers argument. | |
| bool | hasShiftModifier () const |
| Checks whether the key modifiers argument has one of the Shift key modifiers set. | |
| void | setKey (LogicalKey value) |
| Sets a value for the logical key argument. | |
| void | setKeyModifiers (KeyModifier modifiers) |
| Sets a value for the key modifiers argument. | |
Public Member Functions inherited from kanzi::MessageArguments | |
| bool | getAbstractArgument (AbstractPropertyType argumentType, Variant &variant) const |
| Returns the value of an argument using AbstractPropertyType. | |
| template<typename TDataType > | |
| TDataType | getArgument (const PropertyType< TDataType > &argumentType) const |
| Returns the value of an argument. | |
| detail::MessageDispatcher * | getDispatcher () const |
| Returns the message dispatcher that dispatches a message. | |
| template<typename TDataType > | |
| optional< TDataType > | getOptionalArgument (const PropertyType< TDataType > &argumentType) const |
| Returns the value of an argument. | |
| shared_ptr< Node > | getSource () const |
| Returns the source node for a message. | |
| TimePoint | getTimestamp () const |
| Returns the timestamp of a message. | |
| AbstractMessageType | getType () const |
| Returns the message type of these message arguments as an AbstractMessageType instance. | |
| bool | isFrom (const Node &source) const |
| Returns whether a node is the source node of a message. | |
| bool | isHandled () const |
| Returns whether the message is handled. | |
| bool | isValid () const |
| Returns whether a message is valid. | |
| MessageArguments ()=default | |
| Constructor. | |
| MessageArguments (const MessageArguments &)=delete | |
| Deleted copy. | |
| MessageArguments & | operator= (const MessageArguments &)=delete |
| Deleted assignment. | |
| void | setAbstractArgument (AbstractPropertyType argumentType, const Variant &variant) |
| Sets the value of an argument using AbstractPropertyType. | |
| template<typename TDataType > | |
| void | setArgument (const PropertyType< TDataType > &argumentType, typename PropertyType< TDataType >::DataType value) |
| Sets the value of an argument. | |
| void | setDispatcher (detail::MessageDispatcher *dispatcher) |
| Sets a dispatcher for a message. | |
| void | setHandled (bool handled) |
| Sets the handling status for a message. | |
| void | setSource (Node *source) |
| Sets the source node that dispatches a message. | |
| void | setTimestamp (TimePoint timestamp) |
| Sets the timestamp of a message. | |
| void | setType (AbstractMessageType type) |
| Sets the type of a message. | |
| void | setValid (bool valid) |
| Sets the validity of a message. | |
| ~MessageArguments () | |
| Destructor. | |
Static Public Attributes | |
Properties | |
| static PropertyType< int > | KeyProperty |
| Holds the logical key presses and key released values. | |
| static PropertyType< int > | KeyModifiersProperty |
| Holds the key modifiers attached to the key value. | |
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. | |
| static const Metaclass * | getStaticMetaclass () |
| Initializes and returns static metadata of base MessageArguments class. | |
| static PropertyTypeEditorInfoSharedPtr | makeEditorInfo () |
| Initializes and returns the Kanzi Studio editor information. | |
Represents base message arguments for key state change messages.
| LogicalKey kanzi::Keyboard::KeyStateChangedMessageArguments::getKey | ( | ) | const |
Returns the logical key argument value.
| void kanzi::Keyboard::KeyStateChangedMessageArguments::setKey | ( | LogicalKey | value | ) |
Sets a value for the logical key argument.
| value | The logical key value to set. |
| KeyModifier kanzi::Keyboard::KeyStateChangedMessageArguments::getKeyModifiers | ( | ) | const |
Returns the key modifiers argument value.
| void kanzi::Keyboard::KeyStateChangedMessageArguments::setKeyModifiers | ( | KeyModifier | modifiers | ) |
Sets a value for the key modifiers argument.
| modifiers | The key modifiers value to set. |
| bool kanzi::Keyboard::KeyStateChangedMessageArguments::hasModifier | ( | KeyModifier | modifier | ) | const |
Checks whether a modifier is set in the key modifiers argument.
| modifier | The modifier to check. |
| bool kanzi::Keyboard::KeyStateChangedMessageArguments::hasShiftModifier | ( | ) | const |
Checks whether the key modifiers argument has one of the Shift key modifiers set.
| bool kanzi::Keyboard::KeyStateChangedMessageArguments::hasControlModifier | ( | ) | const |
Checks whether the key modifiers argument has one of the Control key modifiers set.
| bool kanzi::Keyboard::KeyStateChangedMessageArguments::hasAltModifier | ( | ) | const |
Checks whether the key modifiers argument has one of the Alt key modifiers set.
|
static |
Holds the logical key presses and key released values.
The default value is 0.
|
static |