Mercurial > audlegacy
annotate audacious/equalizer.h @ 2112:81c744358bab trunk
[svn] - improved logic for extension assist
author | nenolod |
---|---|
date | Tue, 12 Dec 2006 19:51:25 -0800 |
parents | f18a5b617c34 |
children | 86f0443d0de2 |
rev | line source |
---|---|
1938 | 1 /* Audacious |
2 * Copyright (C) 2005-2006 Audacious development team. | |
3 * | |
4 * BMP - Cross-platform multimedia player | |
1653 | 5 * Copyright (C) 2003-2004 BMP development team. |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
1938
diff
changeset
|
12 * the Free Software Foundation; under version 2 of the License. |
1653 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
22 */ | |
23 | |
24 #ifndef EQUALIZER_H | |
25 #define EQUALIZER_H | |
26 | |
27 #include <glib.h> | |
28 #include <gtk/gtk.h> | |
29 | |
30 #include "widgets/widgetcore.h" | |
31 | |
1938 | 32 #define EQUALIZER_DOUBLESIZE (cfg.doublesize && cfg.eq_doublesize_linked) |
33 #define EQUALIZER_HEIGHT ((cfg.equalizer_shaded ? 14 : 116) * (EQUALIZER_DOUBLESIZE + 1)) | |
34 #define EQUALIZER_WIDTH (275 * (EQUALIZER_DOUBLESIZE + 1)) | |
1653 | 35 |
36 #define EQUALIZER_DEFAULT_POS_X 20 | |
37 #define EQUALIZER_DEFAULT_POS_Y 136 | |
38 | |
39 #define EQUALIZER_DEFAULT_DIR_PRESET "dir_default.preset" | |
40 #define EQUALIZER_DEFAULT_PRESET_EXT "preset" | |
41 | |
1938 | 42 void equalizerwin_set_doublesize(gboolean ds); |
1653 | 43 void equalizerwin_set_shade_menu_cb(gboolean shaded); |
44 void draw_equalizer_window(gboolean force); | |
45 void equalizerwin_create(void); | |
46 void equalizerwin_show(gboolean show); | |
47 void equalizerwin_real_show(void); | |
48 void equalizerwin_real_hide(void); | |
49 void equalizerwin_load_auto_preset(const gchar * filename); | |
50 void equalizerwin_set_volume_slider(gint percent); | |
51 void equalizerwin_set_balance_slider(gint percent); | |
52 void equalizerwin_eq_changed(void); | |
53 void equalizerwin_set_preamp(gfloat preamp); | |
54 void equalizerwin_set_band(gint band, gfloat value); | |
55 gfloat equalizerwin_get_preamp(void); | |
56 gfloat equalizerwin_get_band(gint band); | |
57 | |
58 gboolean equalizerwin_has_focus(void); | |
59 | |
60 extern GtkWidget *equalizerwin; | |
61 extern PButton *equalizerwin_close; | |
62 extern gboolean equalizerwin_focus; | |
63 | |
64 #endif |