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.

21 lines
343B

  1. #include "Fl_Osc_Input.H"
  2. Fl_Osc_Input::Fl_Osc_Input(int X, int Y, int W, int H, const char *label)
  3. :Fl_Input(X,Y,W,H, label), Fl_Osc_Widget(this)
  4. {
  5. }
  6. Fl_Osc_Input::~Fl_Osc_Input(void)
  7. {}
  8. void Fl_Osc_Input::init(const char *path)
  9. {
  10. ext = path;
  11. oscRegister(path);
  12. }
  13. void Fl_Osc_Input::OSC_value(const char *v)
  14. {
  15. value(v);
  16. }