|
123456789101112131415161718192021222324252627282930 |
- /*
- ZynAddSubFX - a software synthesizer
-
- Fl_Osc_TSlider.H - Variant Of OSC Based Slider
- Copyright (C) 2016 Mark McCurry
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- */
- #ifndef FL_OSC_TSLIDER_H
- #define FL_OSC_TSLIDER_H
- #include "Fl_Osc_Slider.H"
- #include "TipWin.h"
-
-
- class Fl_Osc_TSlider:public Fl_Osc_Slider
- {
- public:
- Fl_Osc_TSlider(int x, int y, int w, int h, const char *label = 0);
- ~Fl_Osc_TSlider();
- int handle(int event);
- void set_transform(float (*transformer)(float));
- void set_rounding(unsigned int digits = 0);
- private:
- class TipWin * tipwin;
- float (*transform)(float);
- };
- #endif
|