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.

Fl_Osc_Roller.H 1004B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. ZynAddSubFX - a software synthesizer
  3. Fl_Osc_Roller.H - OSC Powered Roller
  4. Copyright (C) 2016 Mark McCurry
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. */
  10. #pragma once
  11. #include <FL/Fl_Roller.H>
  12. #include "Fl_Osc_Widget.H"
  13. class Fl_Osc_Roller:public Fl_Roller, Fl_Osc_Widget
  14. {
  15. public:
  16. Fl_Osc_Roller(int X, int Y, int W, int H, const char *label = NULL);
  17. virtual ~Fl_Osc_Roller(void);
  18. void init(const char *path);
  19. //void OSC_value(float);
  20. void OSC_value(char) override;
  21. using Fl_Osc_Widget::OSC_value;
  22. //Refetch parameter information
  23. void update(void);
  24. void callback(Fl_Callback *cb, void *p = NULL);
  25. void cb(void);
  26. private:
  27. std::string name;
  28. std::pair<Fl_Callback*, void*> cb_data;
  29. };