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.

39 lines
602B

  1. #include "rack.hpp"
  2. using namespace rack;
  3. ////////////////////
  4. // module widgets
  5. ////////////////////
  6. struct AudioInterfaceWidget : ModuleWidget {
  7. AudioInterfaceWidget();
  8. };
  9. struct MidiToCVWidget : ModuleWidget {
  10. MidiToCVWidget();
  11. void step();
  12. };
  13. struct MIDICCToCVWidget : ModuleWidget {
  14. MIDICCToCVWidget();
  15. void step();
  16. };
  17. struct BridgeWidget : ModuleWidget {
  18. BridgeWidget();
  19. };
  20. struct BlankWidget : ModuleWidget {
  21. Panel *panel;
  22. Widget *topRightScrew;
  23. Widget *bottomRightScrew;
  24. Widget *rightHandle;
  25. BlankWidget();
  26. void step();
  27. json_t *toJson();
  28. void fromJson(json_t *rootJ);
  29. };