touchgfx::Event is only used within TouchGFX.
 
Symbols
loading...
Files
loading...

touchgfx::Event class

@class Event Event.hpp touchgfx/Event.hpp Simple base class for events. Simple base class for events.

Syntax

class Event { public:     typedef enum     {         EVENT_CLICK,           EVENT_DRAG,            EVENT_GESTURE      } EventType;     Event() { }     virtual EventType getEventType() = 0;     virtual ~Event() { } };

Methods

getEventType()

@fn virtual EventType Event::getEventType() = 0; Gets event type. Gets event type. Read more...