zynaddsubfx

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

common.H (2012B)


      1 /*
      2   ZynAddSubFX - a software synthesizer
      3 
      4   common.H - Common UI Code
      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 
     13 /*******************************************************************************/
     14 /* Copyright (C) 2012 Jonathan Moore Liles                                     */
     15 /*                                                                             */
     16 /* This program is free software; you can redistribute it and/or modify it     */
     17 /* under the terms of the GNU General Public License as published by the       */
     18 /* Free Software Foundation; either version 2 of the License, or (at your      */
     19 /* option) any later version.                                                  */
     20 /*                                                                             */
     21 /* This program is distributed in the hope that it will be useful, but WITHOUT */
     22 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       */
     23 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   */
     24 /* more details.                                                               */
     25 /*                                                                             */
     26 /* You should have received a copy of the GNU General Public License along     */
     27 /* with This program; see the file COPYING.  If not,write to the Free Software */
     28 /* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
     29 /*******************************************************************************/
     30 
     31 #include "Fl_Osc_Interface.h"
     32 class Fl_Widget;
     33 extern void set_module_parameters ( Fl_Widget * );
     34 
     35 #ifdef FLTK_GUI
     36 #define fl_color_add_alpha( x,y ) x 
     37 #undef FL_NO_BOX
     38 #undef FL_UP_FRAME
     39 #define FL_NO_BOX FL_FLAT_BOX
     40 #define FL_UP_FRAME FL_UP_BOX
     41 #endif