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.

14 lines
288B

  1. #include "PartNameButton.h"
  2. PartNameButton::PartNameButton(int X, int Y, int W, int H, const char *label)
  3. :Fl_Button(X,Y,W,H,label), Fl_Osc_Widget(this)
  4. {
  5. }
  6. void PartNameButton::OSC_value(const char *label_)
  7. {
  8. the_string = label_;
  9. label(the_string.c_str());
  10. redraw();
  11. }