Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
2.0KB

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