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.

21 lines
482B

  1. #include "cubefader.hpp"
  2. #include "rack.hpp"
  3. using namespace rack;
  4. extern Plugin *plugin;
  5. struct CubefaderWidget : ModuleWidget {
  6. CubefaderWidget();
  7. private:
  8. int moduleWidth;
  9. void placeGuiElements();
  10. void placeAudioInputs(int x, int y, int verticalSpacing);
  11. void placeCvInputs(int x, int y, int horizontalSpacing);
  12. void placeOutput(int x, int y);
  13. void placeSlider(int x, int y);
  14. void placeTrimpots(int x, int y, int horizontalSpacing);
  15. void placeScrews();
  16. };