zynaddsubfx

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

Fl_Osc_VSlider.H (1275B)


      1 /*
      2   ZynAddSubFX - a software synthesizer
      3 
      4   Fl_Osc_VSlider.H - OSC Based Vertical 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 #pragma once
     13 #include <FL/Fl_Value_Slider.H>
     14 #include "Fl_Osc_Slider.H"
     15 #include <string>
     16 
     17 class Fl_Osc_VSlider:public Fl_Osc_Slider
     18 {
     19 
     20     public:
     21         Fl_Osc_VSlider(int X, int Y, int W, int H, const char *label = NULL);
     22 
     23         virtual ~Fl_Osc_VSlider(void);
     24         Fl_Font textfont_;
     25         Fl_Fontsize textsize_;
     26         Fl_Color textcolor_;
     27 
     28         void init(std::string, char type = 'i');
     29         //Refetch parameter information
     30         
     31         //MIDI Learn
     32         int handle(int);
     33 
     34         // Value Slider add-ins.
     35         Fl_Font textfont() const {return textfont_;}
     36         void textfont(Fl_Font s) {textfont_ = s;}
     37         Fl_Fontsize textsize() const {return textsize_;}
     38         void textsize(Fl_Fontsize s) {textsize_ = s;}
     39         Fl_Color textcolor() const {return textcolor_;}
     40         void textcolor(Fl_Color s) {textcolor_ = s;}
     41 
     42     protected:
     43         void draw(void);
     44 };