You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include "rack.hpp"
-
- using namespace rack;
-
- namespace rack_plugin_rcm {
-
- struct PianoRollWidget;
- struct PianoRollModule;
-
- struct PatternWidget : LedDisplay {
- /** Not owned */
- PianoRollWidget *widget = NULL;
- PianoRollModule *module = NULL;
-
- LedDisplayChoice *patternChoice;
- LedDisplaySeparator *patternSeparator;
- LedDisplayChoice *octaveChoice;
- LedDisplaySeparator *octaveSeparator;
- LedDisplayChoice *measuresChoice;
- LedDisplaySeparator *measuresSeparator;
- LedDisplayChoice *beatsPerMeasureChoice;
- LedDisplaySeparator *beatsPerMeasureSeparator;
- LedDisplayChoice *divisionsPerBeatChoice;
- LedDisplaySeparator *divisionsPerBeatSeparator;
- LedDisplayChoice *sequenceRunningChoice;
- PatternWidget();
- };
-
- } // namespace rack_plugin_rcm
|