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.

16 lines
393B

  1. #pragma once
  2. #include <FL/Fl_Input.H>
  3. #include "Fl_Osc_Widget.H"
  4. class Fl_Osc_Input: public Fl_Input, public Fl_Osc_Widget
  5. {
  6. public:
  7. Fl_Osc_Input(int X, int Y, int W, int H, const char *label = NULL);
  8. virtual ~Fl_Osc_Input(void);
  9. //Normal Initialization
  10. void init(const char *path);
  11. virtual void OSC_value(const char *value) override;
  12. };