MCPcopy Create free account
hub / github.com/DISTRHO/DPF / BaseEvent

Class BaseEvent

dgl/Widget.hpp:62–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected