14 #define RACK_MOD_CTRL GLFW_MOD_SUPER
15 #define RACK_MOD_CTRL_NAME "⌘"
17 #define RACK_MOD_CTRL GLFW_MOD_CONTROL
18 #define RACK_MOD_CTRL_NAME "Ctrl"
21#define RACK_MOD_SHIFT GLFW_MOD_SHIFT
22#define RACK_MOD_SHIFT_NAME "Shift"
24#define RACK_MOD_ALT GLFW_MOD_ALT
25#define RACK_MOD_ALT_NAME "Alt"
32#define RACK_MOD_MASK (GLFW_MOD_SHIFT | GLFW_MOD_CONTROL | GLFW_MOD_ALT | GLFW_MOD_SUPER)
#define DEPRECATED
Attribute for deprecated functions and symbols.
Definition common.hpp:26
Root namespace for the Rack API.
Definition AudioDisplay.hpp:9
2-dimensional vector of floats, representing a point on the plane for graphics.
Definition math.hpp:189
A per-event state shared and writable by all widgets that recursively handle an event.
Definition event.hpp:51
Widget * target
The widget that responded to the event.
Definition event.hpp:57
bool propagating
Whether the event should continue recursing to children Widgets.
Definition event.hpp:53
bool consumed
Whether the event has been consumed by an event handler and no more handlers should consume the event...
Definition event.hpp:55