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.
|
- #ifndef NIOUI_H
- #define NIOUI_H
-
- #include <FL/Fl.H>
- #include <FL/Fl_Window.H>
-
- class NioUI:public Fl_Window
- {
- public:
- NioUI();
- ~NioUI();
- void refresh();
- private:
- class Fl_Choice * midi;
- class Fl_Choice * audio;
- static void midiCallback(Fl_Widget *c);
- static void audioCallback(Fl_Widget *c);
- };
-
- #endif
|