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.

23 lines
497B

  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(class Fl_Osc_Interface*);
  9. ~NioUI();
  10. void refresh();
  11. private:
  12. class Fl_Osc_StrChoice * midi;
  13. class Fl_Osc_StrChoice * audio;
  14. class Osc_SimpleListModel * midi_opt;
  15. class Osc_SimpleListModel * audio_opt;
  16. static void midiCallback(Fl_Widget *c);
  17. static void audioCallback(Fl_Widget *c);
  18. };
  19. #endif