VCV Rack API v2
Loading...
Searching...
No Matches
RailWidget.hpp
Go to the documentation of this file.
1#pragma once
2#include <app/common.hpp>
4
5
6namespace rack {
7namespace app {
8
9
11 struct Internal;
12 Internal* internal;
13
16 void step() override;
17 void draw(const DrawArgs& args) override;
18};
19
20
21} // namespace app
22} // namespace rack
Root namespace for the Rack API.
Definition AudioDisplay.hpp:9
Definition RailWidget.hpp:10
void step() override
Advances the module by one frame.
Internal * internal
Definition RailWidget.hpp:12
void draw(const DrawArgs &args) override
Draws the widget to the NanoVG context.
A Widget that does not respond to events and does not pass events to children.
Definition TransparentWidget.hpp:10
Definition Widget.hpp:141