Loading [MathJax]/jax/output/HTML-CSS/config.js
VCV Rack API v2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Widget.hpp
Go to the documentation of this file.
1#pragma once
2#include <list>
3
4#include <common.hpp>
5#include <math.hpp>
6#include <window/Window.hpp>
7#include <color.hpp>
8#include <widget/event.hpp>
9#include <weakptr.hpp>
10
11
12namespace rack {
14namespace widget {
15
16
21struct Widget : WeakBase {
23 math::Rect box = math::Rect(math::Vec(), math::Vec(INFINITY, INFINITY));
26 std::list<Widget*> children;
30 bool visible = true;
34 bool requestedDelete = false;
35
36 virtual ~Widget();
37
46 void setSize(math::Vec size);
48 bool isVisible();
50 void setVisible(bool visible);
52 void show() {
53 setVisible(true);
54 }
55
56 void hide() {
57 setVisible(false);
58 }
59
62
70 bool isDescendantOf(Widget* ancestor);
79
82 virtual float getRelativeZoom(Widget* ancestor);
84 return getRelativeZoom(NULL);
85 }
86
89
90 template <class T>
92 if (!parent)
93 return NULL;
94 T* p = dynamic_cast<T*>(parent);
95 if (p)
96 return p;
97 return parent->getAncestorOfType<T>();
98 }
99
100 template <class T>
102 for (Widget* child : children) {
103 T* c = dynamic_cast<T*>(child);
104 if (c)
105 return c;
106 c = child->getFirstDescendantOfType<T>();
107 if (c)
108 return c;
109 }
110 return NULL;
111 }
112
115 bool hasChild(Widget* child);
119 void addChild(Widget* child);
122 void addChildBottom(Widget* child);
126 void addChildBelow(Widget* child, Widget* sibling);
127 void addChildAbove(Widget* child, Widget* sibling);
132 void removeChild(Widget* child);
137
139 virtual void step();
140
141 struct DrawArgs {
142 NVGcontext* vg = NULL;
145 NVGLUframebuffer* fb = NULL;
146 };
147
152 virtual void draw(const DrawArgs& args);
154 DEPRECATED virtual void draw(NVGcontext* vg) {}
155
163 virtual void drawLayer(const DrawArgs& args, int layer);
164
168 void drawChild(Widget* child, const DrawArgs& args, int layer = 0);
169
170 // Events
171
173 template <typename TMethod, class TEvent>
174 void recurseEvent(TMethod f, const TEvent& e) {
175 for (auto it = children.rbegin(); it != children.rend(); it++) {
176 // Stop propagation if requested
177 if (!e.isPropagating())
178 break;
179 Widget* child = *it;
180 // Don't filter child by visibility. Typically only position events need to be filtered by visibility.
181 // if (!child->visible)
182 // continue;
183
184 // Clone event for (currently) no reason
185 TEvent e2 = e;
186 // Call child event handler
187 (child->*f)(e2);
188 }
189 }
190
192 template <typename TMethod, class TEvent>
193 void recursePositionEvent(TMethod f, const TEvent& e) {
194 for (auto it = children.rbegin(); it != children.rend(); it++) {
195 // Stop propagation if requested
196 if (!e.isPropagating())
197 break;
198 Widget* child = *it;
199 // Filter child by visibility and position
200 if (!child->visible)
201 continue;
202 if (!child->box.contains(e.pos))
203 continue;
204
205 // Clone event and adjust its position
206 TEvent e2 = e;
207 e2.pos = e.pos.minus(child->box.pos);
208 // Call child event handler
209 (child->*f)(e2);
210 }
211 }
212
214
220
229 virtual void onHover(const HoverEvent& e) {
231 }
232
245 virtual void onButton(const ButtonEvent& e) {
247 }
248
253 virtual void onDoubleClick(const DoubleClickEvent& e) {}
254
264 int key;
278 std::string keyName;
288 int mods;
294 bool isKeyCommand(int key, int mods = 0) const;
295 };
296
301 virtual void onHoverKey(const HoverKeyEvent& e) {
303 }
304
308 uint32_t codepoint;
309 };
310
314 virtual void onHoverText(const HoverTextEvent& e) {
316 }
317
328
334 virtual void onEnter(const EnterEvent& e) {}
335
340 virtual void onLeave(const LeaveEvent& e) {}
341
347 virtual void onSelect(const SelectEvent& e) {}
348
353 virtual void onDeselect(const DeselectEvent& e) {}
354
359 virtual void onSelectKey(const SelectKeyEvent& e) {}
360
365 virtual void onSelectText(const SelectTextEvent& e) {}
366
370 };
371
376 virtual void onDragStart(const DragStartEvent& e) {}
377
382 virtual void onDragEnd(const DragEndEvent& e) {}
383
391 virtual void onDragMove(const DragMoveEvent& e) {}
392
403 virtual void onDragHover(const DragHoverEvent& e) {
405 }
406
415 virtual void onDragEnter(const DragEnterEvent& e) {}
416
424 virtual void onDragLeave(const DragLeaveEvent& e) {}
425
433 virtual void onDragDrop(const DragDropEvent& e) {}
434
439 PathDropEvent(const std::vector<std::string>& paths) : paths(paths) {}
440
442 const std::vector<std::string>& paths;
443 };
444 virtual void onPathDrop(const PathDropEvent& e) {
446 }
447
452 virtual void onAction(const ActionEvent& e) {}
453
458 virtual void onChange(const ChangeEvent& e) {}
459
464 virtual void onDirty(const DirtyEvent& e) {
466 }
467
471 virtual void onReposition(const RepositionEvent& e) {}
472
476 virtual void onResize(const ResizeEvent& e) {}
477
480 struct AddEvent : BaseEvent {};
481 virtual void onAdd(const AddEvent& e) {}
482
486 virtual void onRemove(const RemoveEvent& e) {}
487
491 struct ShowEvent : BaseEvent {};
492 virtual void onShow(const ShowEvent& e) {
494 }
495
499 struct HideEvent : BaseEvent {};
500 virtual void onHide(const HideEvent& e) {
502 }
503
508 NVGcontext* vg;
509 };
513
518 NVGcontext* vg;
519 };
523};
524
525
526} // namespace widget
527
531namespace event {
566}
567
568
569} // namespace rack
#define DEPRECATED
Attribute for deprecated functions and symbols.
Definition common.hpp:26
Deprecated Rack v1 event namespace.
Definition Widget.hpp:531
widget::Widget::DragBaseEvent DragBase
Definition Widget.hpp:548
widget::Widget::RemoveEvent Remove
Definition Widget.hpp:563
widget::Widget::DragEndEvent DragEnd
Definition Widget.hpp:550
widget::Widget::HoverEvent Hover
Definition Widget.hpp:536
widget::Widget::HoverKeyEvent HoverKey
Definition Widget.hpp:539
widget::Widget::TextBaseEvent TextBase
Definition Widget.hpp:535
widget::Widget::DragStartEvent DragStart
Definition Widget.hpp:549
widget::Widget::PositionBaseEvent PositionBase
Definition Widget.hpp:533
widget::Widget::LeaveEvent Leave
Definition Widget.hpp:543
widget::Widget::DirtyEvent Dirty
Definition Widget.hpp:559
widget::Widget::DragDropEvent DragDrop
Definition Widget.hpp:555
widget::Widget::AddEvent Add
Definition Widget.hpp:562
widget::Widget::HideEvent Hide
Definition Widget.hpp:565
widget::Widget::DeselectEvent Deselect
Definition Widget.hpp:545
widget::Widget::ButtonEvent Button
Definition Widget.hpp:537
widget::Widget::HoverTextEvent HoverText
Definition Widget.hpp:540
widget::Widget::SelectKeyEvent SelectKey
Definition Widget.hpp:546
widget::Widget::ShowEvent Show
Definition Widget.hpp:564
widget::Widget::ChangeEvent Change
Definition Widget.hpp:558
widget::Widget::ActionEvent Action
Definition Widget.hpp:557
widget::Widget::SelectEvent Select
Definition Widget.hpp:544
widget::Widget::DragMoveEvent DragMove
Definition Widget.hpp:551
widget::Widget::HoverScrollEvent HoverScroll
Definition Widget.hpp:541
widget::Widget::PathDropEvent PathDrop
Definition Widget.hpp:556
widget::Widget::DragEnterEvent DragEnter
Definition Widget.hpp:553
widget::Widget::DragHoverEvent DragHover
Definition Widget.hpp:552
widget::Widget::ResizeEvent Resize
Definition Widget.hpp:561
widget::BaseEvent Base
Definition Widget.hpp:532
widget::Widget::KeyBaseEvent KeyBase
Definition Widget.hpp:534
widget::Widget::DragLeaveEvent DragLeave
Definition Widget.hpp:554
widget::Widget::DoubleClickEvent DoubleClick
Definition Widget.hpp:538
widget::Widget::SelectTextEvent SelectText
Definition Widget.hpp:547
widget::Widget::EnterEvent Enter
Definition Widget.hpp:542
widget::Widget::RepositionEvent Reposition
Definition Widget.hpp:560
Base UI widget types.
Definition context.hpp:28
Root namespace for the Rack API.
Definition AudioDisplay.hpp:9
Base class for classes that allow WeakPtrs to be used.
Definition weakptr.hpp:16
2-dimensional rectangle for graphics.
Definition math.hpp:301
Vec pos
Definition math.hpp:302
bool contains(Vec v) const
Returns whether this Rect contains a point, inclusive on the left/top, exclusive on the right/bottom.
Definition math.hpp:326
static Rect inf()
Returns the infinite Rect.
Definition math.hpp:319
2-dimensional vector of floats, representing a point on the plane for graphics.
Definition math.hpp:189
Base class for all events.
Definition event.hpp:73
Occurs after a certain action is triggered on a Widget.
Definition Widget.hpp:451
Occurs after a Widget is added to a parent.
Definition Widget.hpp:480
Occurs each mouse button press or release.
Definition Widget.hpp:237
int button
GLFW_MOUSE_BUTTON_LEFT, GLFW_MOUSE_BUTTON_RIGHT, GLFW_MOUSE_BUTTON_MIDDLE, etc.
Definition Widget.hpp:239
int action
GLFW_PRESS or GLFW_RELEASE.
Definition Widget.hpp:241
int mods
GLFW_MOD_*.
Definition Widget.hpp:243
Occurs after the value of a Widget changes.
Definition Widget.hpp:457
Occurs after the Window (including OpenGL and NanoVG contexts) are created.
Definition Widget.hpp:507
NVGcontext * vg
Definition Widget.hpp:508
Occurs before the Window (including OpenGL and NanoVG contexts) are destroyed.
Definition Widget.hpp:517
NVGcontext * vg
Definition Widget.hpp:518
Occurs when a different Widget is selected.
Definition Widget.hpp:352
Occurs when the pixel buffer of this module must be refreshed.
Definition Widget.hpp:463
Occurs when the left mouse button is pressed a second time on the same Widget within a time duration.
Definition Widget.hpp:252
Definition Widget.hpp:367
int button
The mouse button held while dragging.
Definition Widget.hpp:369
Occurs when the mouse button is released over a Widget while dragging.
Definition Widget.hpp:429
Widget * origin
The dragged widget.
Definition Widget.hpp:431
Occurs when a Widget stops being dragged by releasing the mouse button.
Definition Widget.hpp:381
Occurs when the mouse enters a Widget while dragging.
Definition Widget.hpp:411
Widget * origin
The dragged widget.
Definition Widget.hpp:413
Occurs every frame when the mouse is hovering over a Widget while another Widget (possibly the same o...
Definition Widget.hpp:397
Widget * origin
The dragged widget.
Definition Widget.hpp:399
math::Vec mouseDelta
Change in mouse position since the last frame.
Definition Widget.hpp:401
Occurs when the mouse leaves a Widget while dragging.
Definition Widget.hpp:420
Widget * origin
The dragged widget.
Definition Widget.hpp:422
Occurs every frame on the dragged Widget.
Definition Widget.hpp:387
math::Vec mouseDelta
Change in mouse position since the last frame.
Definition Widget.hpp:389
Occurs when a Widget begins being dragged.
Definition Widget.hpp:375
Definition Widget.hpp:141
NVGLUframebuffer * fb
Definition Widget.hpp:145
math::Rect clipBox
Local box representing the visible viewport.
Definition Widget.hpp:144
NVGcontext * vg
Definition Widget.hpp:142
Occurs when a Widget begins consuming the Hover event.
Definition Widget.hpp:333
Occurs after a Widget is hidden with Widget::hide().
Definition Widget.hpp:499
Occurs every frame when the mouse is hovering over a Widget.
Definition Widget.hpp:225
math::Vec mouseDelta
Change in mouse position since the last frame.
Definition Widget.hpp:227
Occurs when a key is pressed, released, or repeated while the mouse is hovering a Widget.
Definition Widget.hpp:300
Occurs when the mouse scroll wheel is moved while the mouse is hovering a Widget.
Definition Widget.hpp:321
math::Vec scrollDelta
Change of scroll wheel position.
Definition Widget.hpp:323
Occurs when a character is typed while the mouse is hovering a Widget.
Definition Widget.hpp:313
An event prototype with a GLFW key.
Definition Widget.hpp:256
int action
The type of event occurring with the key.
Definition Widget.hpp:283
int scancode
Platform-dependent "software" key code.
Definition Widget.hpp:270
int mods
Bitwise OR of key modifiers, such as Ctrl or Shift.
Definition Widget.hpp:288
std::string keyName
String containing the lowercase key name, if it produces a printable character.
Definition Widget.hpp:278
bool isKeyCommand(int key, int mods=0) const
Checks whether this KeyBaseEvent is the given key command.
int key
The key corresponding to what it would be called in its position on a QWERTY US keyboard.
Definition Widget.hpp:264
Occurs when a different Widget is entered.
Definition Widget.hpp:339
Occurs when a selection of files from the operating system is dropped onto a Widget.
Definition Widget.hpp:438
const std::vector< std::string > & paths
List of file paths in the dropped selection.
Definition Widget.hpp:442
PathDropEvent(const std::vector< std::string > &paths)
Definition Widget.hpp:439
An event prototype with a vector position.
Definition Widget.hpp:216
math::Vec pos
The pixel coordinate where the event occurred, relative to the Widget it is called on.
Definition Widget.hpp:218
Occurs before a Widget is removed from its parent.
Definition Widget.hpp:485
Occurs after a Widget's position is set by Widget::setPosition().
Definition Widget.hpp:470
Occurs after a Widget's size is set by Widget::setSize().
Definition Widget.hpp:475
Occurs when a Widget begins consuming the Button press event for the left mouse button.
Definition Widget.hpp:346
Occurs when a key is pressed, released, or repeated while a Widget is selected.
Definition Widget.hpp:358
Occurs when text is typed while a Widget is selected.
Definition Widget.hpp:364
Occurs after a Widget is shown with Widget::show().
Definition Widget.hpp:491
An event prototype with a Unicode character.
Definition Widget.hpp:306
uint32_t codepoint
Unicode code point of the character.
Definition Widget.hpp:308
A node in the 2D scene graph.
Definition Widget.hpp:21
virtual void onContextCreate(const ContextCreateEvent &e)
Definition Widget.hpp:510
void addChildAbove(Widget *child, Widget *sibling)
void show()
Makes Widget visible and triggers ShowEvent if changed.
Definition Widget.hpp:52
virtual DEPRECATED void draw(NVGcontext *vg)
Override draw(const DrawArgs &args) instead.
Definition Widget.hpp:154
void setSize(math::Vec size)
Sets size and triggers ResizeEvent if size changed.
virtual void drawLayer(const DrawArgs &args, int layer)
Draw additional layers.
std::list< Widget * > children
Definition Widget.hpp:26
math::Vec getAbsoluteOffset(math::Vec v)
Returns v transformed into world/root/global/absolute coordinates.
Definition Widget.hpp:76
void clearChildren()
Removes and deletes all child Widgets.
math::Rect getBox()
virtual void onAction(const ActionEvent &e)
Definition Widget.hpp:452
void setBox(math::Rect box)
Calls setPosition() and then setSize().
virtual void onEnter(const EnterEvent &e)
Definition Widget.hpp:334
widget::Widget * getParent()
bool isDescendantOf(Widget *ancestor)
Returns whether ancestor is a parent or distant parent of this widget.
math::Vec getPosition()
void recursePositionEvent(TMethod f, const TEvent &e)
Recurses an event to all visible Widgets until it is consumed.
Definition Widget.hpp:193
virtual void onDragEnter(const DragEnterEvent &e)
Definition Widget.hpp:415
virtual math::Vec getRelativeOffset(math::Vec v, Widget *ancestor)
Returns v (given in local coordinates) transformed into the coordinate system of ancestor.
void hide()
Makes Widget not visible and triggers HideEvent if changed.
Definition Widget.hpp:56
virtual float getRelativeZoom(Widget *ancestor)
Returns the zoom level in the coordinate system of ancestor.
virtual void onContextDestroy(const ContextDestroyEvent &e)
Definition Widget.hpp:520
void addChildBottom(Widget *child)
Adds widget to the bottom of the children.
virtual void onDirty(const DirtyEvent &e)
Definition Widget.hpp:464
virtual math::Rect getChildrenBoundingBox()
Returns the smallest rectangle containing this widget's children (visible and invisible) in its local...
virtual void onRemove(const RemoveEvent &e)
Definition Widget.hpp:486
virtual void onHide(const HideEvent &e)
Definition Widget.hpp:500
virtual void onHoverKey(const HoverKeyEvent &e)
Definition Widget.hpp:301
virtual void onHover(const HoverEvent &e)
Definition Widget.hpp:229
virtual void onAdd(const AddEvent &e)
Definition Widget.hpp:481
virtual void onDragEnd(const DragEndEvent &e)
Definition Widget.hpp:382
bool requestedDelete
If set to true, parent will delete Widget in the next step().
Definition Widget.hpp:34
virtual void onShow(const ShowEvent &e)
Definition Widget.hpp:492
virtual math::Rect getViewport(math::Rect r=math::Rect::inf())
Returns a subset of the given Rect bounded by the box of this widget and all ancestors.
virtual void onLeave(const LeaveEvent &e)
Definition Widget.hpp:340
virtual void onHoverText(const HoverTextEvent &e)
Definition Widget.hpp:314
virtual void onPathDrop(const PathDropEvent &e)
Definition Widget.hpp:444
virtual void onDragLeave(const DragLeaveEvent &e)
Definition Widget.hpp:424
float getAbsoluteZoom()
Definition Widget.hpp:83
virtual void onDoubleClick(const DoubleClickEvent &e)
Definition Widget.hpp:253
bool hasChild(Widget *child)
Checks if the given widget is a child of this widget.
virtual void onHoverScroll(const HoverScrollEvent &e)
Definition Widget.hpp:325
void requestDelete()
Requests this Widget's parent to delete it in the next step().
virtual void onSelect(const SelectEvent &e)
Definition Widget.hpp:347
virtual void onDeselect(const DeselectEvent &e)
Definition Widget.hpp:353
virtual void step()
Advances the module by one frame.
Widget * parent
Automatically set when Widget is added as a child to another Widget.
Definition Widget.hpp:25
void drawChild(Widget *child, const DrawArgs &args, int layer=0)
Draws a particular child.
math::Rect box
Position relative to parent and size of widget.
Definition Widget.hpp:23
virtual void onDragDrop(const DragDropEvent &e)
Definition Widget.hpp:433
virtual math::Rect getVisibleChildrenBoundingBox()
virtual void onButton(const ButtonEvent &e)
Definition Widget.hpp:245
T * getFirstDescendantOfType()
Definition Widget.hpp:101
void addChild(Widget *child)
Adds widget to the top of the children.
T * getAncestorOfType()
Definition Widget.hpp:91
void addChildBelow(Widget *child, Widget *sibling)
Adds widget directly below another widget.
virtual void onDragStart(const DragStartEvent &e)
Definition Widget.hpp:376
virtual void onChange(const ChangeEvent &e)
Definition Widget.hpp:458
virtual void onReposition(const RepositionEvent &e)
Definition Widget.hpp:471
virtual void onDragMove(const DragMoveEvent &e)
Definition Widget.hpp:391
virtual void onDragHover(const DragHoverEvent &e)
Definition Widget.hpp:403
virtual void draw(const DrawArgs &args)
Draws the widget to the NanoVG context.
void setVisible(bool visible)
Sets visible and triggers ShowEvent or HideEvent if changed.
virtual void onSelectKey(const SelectKeyEvent &e)
Definition Widget.hpp:359
widget::BaseEvent BaseEvent
Definition Widget.hpp:213
void recurseEvent(TMethod f, const TEvent &e)
Recurses an event to all visible Widgets.
Definition Widget.hpp:174
bool visible
Disables rendering but allow stepping.
Definition Widget.hpp:30
virtual void onSelectText(const SelectTextEvent &e)
Definition Widget.hpp:365
virtual void onResize(const ResizeEvent &e)
Definition Widget.hpp:476
void removeChild(Widget *child)
Removes widget from list of children if it exists.
void setPosition(math::Vec pos)
Sets position and triggers RepositionEvent if position changed.