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.

26 lines
595B

  1. // generated by Fast Light User Interface Designer (fluid) version 1.0107f
  2. #ifndef WIDGETPDIAL_h
  3. #define WIDGETPDIAL_h
  4. #include <FL/Fl_Dial.H>
  5. class WidgetPDial:public Fl_Dial
  6. {
  7. public:
  8. WidgetPDial(int x, int y, int w, int h, const char *label = 0);
  9. ~WidgetPDial();
  10. int handle(int event);
  11. void draw();
  12. void pdialcolor(int r, int g, int b);
  13. void tooltip(const char *c);
  14. private:
  15. void getPos();
  16. void resetPos();
  17. double oldvalue;
  18. bool pos;
  19. bool textset;
  20. class TipWin * tipwin;
  21. };
  22. #endif