zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

Fl_Osc_TSlider.H (864B)


      1 /*
      2   ZynAddSubFX - a software synthesizer
      3 
      4   Fl_Osc_TSlider.H - Variant Of OSC Based Slider
      5   Copyright (C) 2016 Mark McCurry
      6 
      7   This program is free software; you can redistribute it and/or
      8   modify it under the terms of the GNU General Public License
      9   as published by the Free Software Foundation; either version 2
     10   of the License, or (at your option) any later version.
     11 */
     12 #ifndef FL_OSC_TSLIDER_H
     13 #define FL_OSC_TSLIDER_H
     14 #include "Fl_Osc_Slider.H"
     15 #include "TipWin.h"
     16 
     17 
     18 class Fl_Osc_TSlider:public Fl_Osc_Slider
     19 {
     20     public:
     21         Fl_Osc_TSlider(int x, int y, int w, int h, const char *label = 0);
     22         ~Fl_Osc_TSlider();
     23         int handle(int event);
     24         void set_transform(float (*transformer)(float));
     25         void set_rounding(unsigned int digits = 0);
     26     private:
     27         class TipWin * tipwin;
     28         float (*transform)(float);
     29 };
     30 #endif