REFERENCE MANUAL
#include <hps.h>
Public Member Functions | |
void | Assign (TouchState const &in_that) |
bool | Equals (TouchState const &in_that) const |
TouchEvent | GetActiveEvent () const |
KeyArray | GetEventPath () const |
WindowKey | GetEventSource () const |
ModifierKeys | GetModifierKeys () const |
size_t | GetTouchCount () const |
TouchArray | GetTouches () const |
Type | ObjectType () const |
bool | operator!= (TouchState const &in_that) const |
TouchState & | operator= (TouchState &&in_that) |
TouchState & | operator= (TouchState const &in_that) |
bool | operator== (TouchState const &in_that) const |
TouchState () | |
TouchState (TouchState const &in_that) | |
TouchState (TouchState &&in_that) | |
![]() | |
virtual bool | Empty () const |
intptr_t | GetClassID () const |
intptr_t | GetInstanceID () const |
bool | HasType (Type in_mask) const |
Object (Object &&in_that) | |
Object & | operator= (Object const &other_object) |
Object & | operator= (Object &&in_that) |
virtual void | Reset () |
Type | Type () const |
Additional Inherited Members | |
![]() | |
template<typename T > | |
static intptr_t | ClassID () |
The TouchState class represents the state of touches on a multi-touch device for a particular event.
TouchState::TouchState | ( | ) |
The default constructor creates an empty TouchState object.
TouchState::TouchState | ( | TouchState const & | in_that | ) |
The copy constructor creates a new TouchState object that contains the same settings as the source TouchState.
in_that | The source TouchState to copy. |
TouchState::TouchState | ( | TouchState && | in_that | ) |
The move constructor creates a TouchState by transferring the underlying impl of the rvalue reference to this TouchState thereby avoiding a copy and allocation.
in_that | An rvalue reference to a TouchState to take the impl from. |
void TouchState::Assign | ( | TouchState const & | in_that | ) |
Copies the source TouchState into this TouchState.
in_that | The source TouchState to copy. |
bool TouchState::Equals | ( | TouchState const & | in_that | ) | const |
Check if the source TouchState is equivalent to this TouchState.
in_kit | The source TouchState to compare to this TouchState. |
TouchEvent TouchState::GetActiveEvent | ( | ) | const |
Get the active event for this TouchState. This will throw an exception if there is no active action for this TouchState.
KeyArray TouchState::GetEventPath | ( | ) | const |
Get the relevant list of keys up to the window which had focus when the touches represented by this TouchState underwent the active action. This will throw an exception if there is no event path for this TouchState.
WindowKey TouchState::GetEventSource | ( | ) | const |
Get the window which had focus when the touches represented by this TouchState underwent the active action. This will throw an exception if there is no event source for this TouchState.
ModifierKeys TouchState::GetModifierKeys | ( | ) | const |
Get an object representing the state of modifier keys for this TouchState.
size_t TouchState::GetTouchCount | ( | ) | const |
Get the number of touches currently down in this TouchState.
TouchArray TouchState::GetTouches | ( | ) | const |
Get the touches currently down in this TouchState.
|
inlinevirtual |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.
Reimplemented from Object.
bool TouchState::operator!= | ( | TouchState const & | in_that | ) | const |
Check if the source TouchState is not equivalent to this TouchState.
in_kit | The source TouchState to compare to this TouchState. |
TouchState& TouchState::operator= | ( | TouchState && | in_that | ) |
The move assignment operator transfers the underlying impl of the rvalue reference to this TouchState thereby avoiding a copy.
in_that | An rvalue reference to a TouchState to take the impl from. |
TouchState& TouchState::operator= | ( | TouchState const & | in_that | ) |
Copies the source TouchState into this TouchState.
in_that | The source TouchState to copy. |
bool TouchState::operator== | ( | TouchState const & | in_that | ) | const |
Check if the source TouchState is equivalent to this TouchState.
in_kit | The source TouchState to compare to this TouchState. |