Audio plugin host https://kx.studio/carla
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.

NioUI.h 367B

1234567891011121314151617181920
  1. #ifndef NIOUI_H
  2. #define NIOUI_H
  3. #include <FL/Fl.H>
  4. #include <FL/Fl_Window.H>
  5. class NioUI:public Fl_Window
  6. {
  7. public:
  8. NioUI();
  9. ~NioUI();
  10. void refresh();
  11. private:
  12. class Fl_Choice * midi;
  13. class Fl_Choice * audio;
  14. static void midiCallback(Fl_Widget *c);
  15. static void audioCallback(Fl_Widget *c);
  16. };
  17. #endif