| 60 | These are the fields present on all Widget events. |
| 61 | */ |
| 62 | struct BaseEvent { |
| 63 | /** Currently active keyboard modifiers. @see Modifier */ |
| 64 | uint mod; |
| 65 | /** Event flags. @see EventFlag */ |
| 66 | uint flags; |
| 67 | /** Event timestamp in milliseconds (if any). */ |
| 68 | uint time; |
| 69 | |
| 70 | /** Constructor for default/null values */ |
| 71 | BaseEvent() noexcept : mod(0x0), flags(0x0), time(0) {} |
| 72 | /** Destuctor */ |
| 73 | virtual ~BaseEvent() noexcept {} |
| 74 | }; |
| 75 | |
| 76 | /** |
| 77 | Keyboard event. |
nothing calls this directly
no outgoing calls
no test coverage detected