zynaddsubfx

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

Fl_Osc_Button.cpp (851B)


      1 /*
      2   ZynAddSubFX - a software synthesizer
      3 
      4   Fl_Osc_Button.cpp - OSC Powered Button
      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 #include "Fl_Osc_Button.H"
     13 #include "Fl_Osc_Interface.h"
     14 #include "Fl_Osc_Pane.H"
     15 #include <cstdlib>
     16 #include <cstring>
     17 #include <cmath>
     18 #include <cassert>
     19 #include <sstream>
     20 
     21 Fl_Osc_Button::Fl_Osc_Button(int X, int Y, int W, int H, const char *label)
     22     :Fl_Button(X,Y,W,H,label), Fl_Osc_Widget(this)
     23 {
     24 }
     25 
     26 Fl_Osc_Button::~Fl_Osc_Button(void)
     27 {}
     28 
     29 void Fl_Osc_Button::OSC_value(bool v)
     30 {
     31     Fl_Button::value(v);
     32 }
     33 
     34 void Fl_Osc_Button::rebase(std::string base)
     35 {
     36     loc = base;
     37 }