OpenJAUS Software Development Kit
4.3.1
|
ReportPointingDeviceAction Message Implementation. More...
#include <ReportPointingDeviceAction.h>
Inherits openjaus::model::Message.
Public Member Functions | |
ReportPointingDeviceAction () | |
ReportPointingDeviceAction (model::Message *message) | |
~ReportPointingDeviceAction () | |
virtual int | to (system::Buffer *dst) |
Pack this message to the given openjaus::system::Buffer. More... | |
virtual int | from (system::Buffer *src) |
Unpack this message from the given openjaus::system::Buffer. More... | |
virtual int | length () |
Get the number of bytes this message would occupy in a serialized buffer. More... | |
std::string | toXml (unsigned char ojIndentLevel=0) const |
Used to serialize the runtime state of the message to an XML format. More... | |
std::string | toString () const |
Returns a string populated with the Message name and ID More... | |
ButtonEnumeration::ButtonEnum | getButton (void) |
bool | setButton (ButtonEnumeration::ButtonEnum value) |
std::string | getButtonToString (void) |
StateEnumeration::StateEnum | getState (void) |
bool | setState (StateEnumeration::StateEnum value) |
std::string | getStateToString (void) |
int32_t | getX (void) |
bool | setX (int32_t value) |
int32_t | getY (void) |
bool | setY (int32_t value) |
ValidEnumeration::ValidEnum | getValid (void) |
bool | setValid (ValidEnumeration::ValidEnum value) |
std::string | getValidToString (void) |
Public Member Functions inherited from openjaus::model::Message | |
Message () | |
virtual | ~Message () |
Message (Message *message) | |
int | to (system::Buffer *dst) |
Operation to. More... | |
int | from (system::Buffer *src) |
Operation from. More... | |
Public Member Functions inherited from openjaus::transport::Wrapper | |
Wrapper () | |
virtual | ~Wrapper () |
AckNakType | getAckNak () const |
Accessor to get the value of ackNak. More... | |
bool | setAckNak (AckNakType ackNak) |
Accessor to set value of ackNak. More... | |
bool | isCompressible () const |
Accessor to get the value of compressible. More... | |
bool | setCompressible (bool compressible) |
Accessor to set value of compressible. More... | |
bool | isMustArrive () const |
Accessor to get the value of mustArrive. More... | |
bool | setMustArrive (bool mustArrive) |
Accessor to set value of mustArrive. More... | |
uint16_t | getSequenceNumber () const |
Accessor to get the value of sequenceNumber. More... | |
bool | setSequenceNumber (uint16_t sequenceNumber) |
Accessor to set value of sequenceNumber. More... | |
WrapperType | getType () const |
Accessor to get the value of type. More... | |
bool | setType (WrapperType type) |
Accessor to set value of type. More... | |
Priority | getPriority () const |
Accessor to get the value of priority. More... | |
bool | setPriority (Priority priority) |
Accessor to set value of priority. More... | |
BroadcastType | getBroadcastFlag () const |
Accessor to get the value of broadcastFlag. More... | |
bool | setBroadcastFlag (BroadcastType broadcastFlag) |
Accessor to set value of broadcastFlag. More... | |
LargeMessageType | getLargeMessageFlag () const |
Accessor to get the value of largeMessageFlag. More... | |
bool | setLargeMessageFlag (LargeMessageType largeMessageFlag) |
Accessor to set value of largeMessageFlag. More... | |
const Address & | getDestination () const |
Accessor to get the value of destination. More... | |
bool | setDestination (const Address &destination) |
Accessor to set value of destination. More... | |
system::Transportable * | getPayload () const |
Accessor to get the value of payload. More... | |
bool | setPayload (system::Transportable *payload) |
Accessor to set value of payload. More... | |
const Address & | getSource () const |
Accessor to get the value of source. More... | |
bool | setSource (const Address &source) |
Accessor to set value of source. More... | |
TransportData * | getTransportData () const |
Accessor to get the value of transportData. More... | |
bool | setTransportData (TransportData *transportData) |
Accessor to set value of transportData. More... | |
virtual int | prioritizedValue () |
Operation prioritizedValue. More... | |
virtual Wrapper * | clone () |
Public Member Functions inherited from openjaus::system::Transportable | |
virtual | ~Transportable () |
Transportable () | |
Public Member Functions inherited from openjaus::system::Prioritized | |
virtual | ~Prioritized () |
Public Member Functions inherited from openjaus::model::Trigger | |
Trigger () | |
virtual | ~Trigger () |
double | getTriggerTimestamp_sec () const |
Accessor to get the value of triggerTimestamp_sec. More... | |
bool | setTriggerTimestamp_sec (double triggerTimestamp_sec) |
Accessor to set value of triggerTimestamp_sec. More... | |
uint32_t | getId () const |
Accessor to get the value of id. More... | |
bool | setId (uint32_t id) |
Accessor to set value of id. More... | |
std::string | idString () |
Operation idString. More... | |
Static Public Attributes | |
static const uint16_t | ID = 0x4704 |
Private Attributes | |
ButtonEnumeration | button |
StateEnumeration | state |
model::fields::Integer | x |
model::fields::Integer | y |
ValidEnumeration | valid |
Friends | |
OPENJAUS_EXPORT friend std::ostream & | operator<< (std::ostream &output, const ReportPointingDeviceAction &object) |
OStream operator for Message object More... | |
OPENJAUS_EXPORT friend std::ostream & | operator<< (std::ostream &output, const ReportPointingDeviceAction *object) |
OStream operator for Message pointer More... | |
Additional Inherited Members | |
Protected Member Functions inherited from openjaus::transport::Wrapper | |
Wrapper (const Wrapper &wrapper) | |
Protected Attributes inherited from openjaus::transport::Wrapper | |
AckNakType | ackNak |
bool | compressible |
bool | mustArrive |
uint16_t | sequenceNumber |
WrapperType | type |
Priority | priority |
BroadcastType | broadcastFlag |
LargeMessageType | largeMessageFlag |
Address | destination |
system::Transportable * | payload |
Address | source |
TransportData * | transportData |
Protected Attributes inherited from openjaus::model::Trigger | |
double | triggerTimestamp_sec |
uint32_t | id |
This message is used to return the pointing device coordinates and the state of the button
openjaus::hmi::ReportPointingDeviceAction::ReportPointingDeviceAction | ( | ) |
openjaus::hmi::ReportPointingDeviceAction::ReportPointingDeviceAction | ( | model::Message * | message | ) |
openjaus::hmi::ReportPointingDeviceAction::~ReportPointingDeviceAction | ( | ) |
|
virtual |
[in] | src | - The source openjaus::system::Buffer from which this message will be unpacked. |
Reimplemented from openjaus::transport::Wrapper.
ButtonEnumeration::ButtonEnum openjaus::hmi::ReportPointingDeviceAction::getButton | ( | void | ) |
std::string openjaus::hmi::ReportPointingDeviceAction::getButtonToString | ( | void | ) |
StateEnumeration::StateEnum openjaus::hmi::ReportPointingDeviceAction::getState | ( | void | ) |
std::string openjaus::hmi::ReportPointingDeviceAction::getStateToString | ( | void | ) |
ValidEnumeration::ValidEnum openjaus::hmi::ReportPointingDeviceAction::getValid | ( | void | ) |
std::string openjaus::hmi::ReportPointingDeviceAction::getValidToString | ( | void | ) |
int32_t openjaus::hmi::ReportPointingDeviceAction::getX | ( | void | ) |
int32_t openjaus::hmi::ReportPointingDeviceAction::getY | ( | void | ) |
|
virtual |
Reimplemented from openjaus::model::Message.
bool openjaus::hmi::ReportPointingDeviceAction::setButton | ( | ButtonEnumeration::ButtonEnum | value | ) |
bool openjaus::hmi::ReportPointingDeviceAction::setState | ( | StateEnumeration::StateEnum | value | ) |
bool openjaus::hmi::ReportPointingDeviceAction::setValid | ( | ValidEnumeration::ValidEnum | value | ) |
bool openjaus::hmi::ReportPointingDeviceAction::setX | ( | int32_t | value | ) |
bool openjaus::hmi::ReportPointingDeviceAction::setY | ( | int32_t | value | ) |
|
virtual |
[out] | dst | - The destination openjaus::system::Buffer to which this message will be packed. |
Reimplemented from openjaus::transport::Wrapper.
|
virtual |
Reimplemented from openjaus::model::Message.
std::string openjaus::hmi::ReportPointingDeviceAction::toXml | ( | unsigned char | ojIndentLevel = 0 | ) | const |
[in] | ojIndentLevel | - Used to determine how many tabs are inserted per line for pretty formating. |
|
friend |
|
friend |
|
private |
|
static |
|
private |
|
private |
|
private |
|
private |