|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- // ----------------------------------------------------------------------
- //
- // Copyright (C) 2010 Fons Adriaensen <fons@linuxaudio.org>
- // Modified by falkTX on Jan 2015 for inclusion in Carla
- //
- // This program is free software; you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation; either version 2 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program; if not, write to the Free Software
- // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- //
- // ----------------------------------------------------------------------
-
-
- #ifndef __STYLES_H
- #define __STYLES_H
-
- #include <clxclient.h>
- #include "rotary.h"
-
- namespace REV1 {
-
-
- enum
- {
- C_MAIN_BG, C_MAIN_FG,
- // C_TEXT_BG, C_TEXT_FG,
- NXFTCOLORS
- };
-
- enum
- {
- // F_TEXT, F_FILE,
- NXFTFONTS
- };
-
-
- extern int styles_init (X_display *disp, X_resman *xrm, const char *resdir);
- extern void styles_fini (X_display *disp);
-
- extern XftColor *XftColors [NXFTCOLORS];
- //extern XftFont *XftFonts [NXFTFONTS];
-
- extern X_textln_style tstyle1;
-
- extern XImage *revsect_img;
- extern XImage *eq1sect_img;
- extern XImage *eq2sect_img;
- extern XImage *mixsect_img;
- extern XImage *ambsect_img;
-
- extern RotaryImg r_delay_img;
- extern RotaryImg r_xover_img;
- extern RotaryImg r_rtlow_img;
- extern RotaryImg r_rtmid_img;
- extern RotaryImg r_fdamp_img;
- extern RotaryImg r_parfr_img;
- extern RotaryImg r_pargn_img;
- extern RotaryImg r_opmix_img;
- extern RotaryImg r_rgxyz_img;
-
-
- }
-
- #endif
|