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.
|
- #pragma once
- #include <vector>
- #include <algorithm>
- // #include <jansson.h>
- #include "widgets.hpp"
- #include "ui.hpp"
-
- // namespace rack {
-
- struct MPEBaseWidget : rack::LedDisplay {
- /** Not owned */
- rack::MidiIO *midiIO = NULL;
- rack::LedDisplayChoice *driverChoice;
- rack::LedDisplaySeparator *driverSeparator;
- rack::LedDisplayChoice *deviceChoice;
- // rack::LedDisplaySeparator *deviceSeparator;
- // rack::LedDisplayChoice *channelChoice;
- MPEBaseWidget();
- void step() override;
- };
|