This Class is inherited from Event Class. More...
#include <MouseEvent.h>
Public Types | |
| using | EventCallbackFn = std::function<void(Event&)> |
| Helper type of Function pointer. | |
Public Member Functions | |
| MouseMovedEvent (float x, float y) | |
| Constructor Function. | |
| virtual | ~MouseMovedEvent () override=default |
| Destructor Function. | |
| const float & | GetX () const |
| Get Mouse Position X. | |
| const float & | GetY () const |
| Get Mouse Position Y. | |
| virtual std::string | ToString () const override |
| Serialize this Event Class to string. | |
| virtual EventType | GetEventType () const =0 |
| Event Information Function, must be implemented by EVENT_CLASS_TYPE and EVENT_CLASS_CATEGORY. | |
| virtual const char * | GetName () const =0 |
| virtual int | GetCategoryFlags () const =0 |
| bool | IsInCategory (EventCategory category) const |
| Judgement if a given category is contained by this event class. | |
Static Public Member Functions | |
| static EventCallbackFn | GetEventCallbackFn () |
| Get Global Root Event Function Pointer. | |
| static void | SetEventCallbackFn (const EventCallbackFn &callback) |
| Set Global Root Event Function Pointer. | |
Public Attributes | |
| bool | Handled = false |
| True if this event is handled. | |
Private Attributes | |
| float | m_MouseX |
| Specific this Class Type with MouseMoved. | |
| float | m_MouseY |
| Mouse Position Y. | |
This Class is inherited from Event Class.
Definition at line 16 of file MouseEvent.h.