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.

34 lines
532B

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