Mercurial > audlegacy
annotate src/audacious/ui_equalizer.h @ 4266:2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
author | stefano@zanga |
---|---|
date | Sun, 10 Feb 2008 12:31:44 +0100 |
parents | 75d99359357b |
children | 2eee464379dc |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team. | |
3 * | |
4 * Based on BMP: | |
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 | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2853
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
2313 | 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 | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2853
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
2313 | 24 */ |
25 | |
26 #ifndef EQUALIZER_H | |
27 #define EQUALIZER_H | |
28 | |
29 #include <glib.h> | |
30 #include <gtk/gtk.h> | |
31 | |
4216
75d99359357b
doublesize -> custom scale:
Cristi Magherusan <majeru@atheme.org>
parents:
3918
diff
changeset
|
32 #define EQUALIZER_SCALED (cfg.scaled && cfg.eq_scaled_linked) |
75d99359357b
doublesize -> custom scale:
Cristi Magherusan <majeru@atheme.org>
parents:
3918
diff
changeset
|
33 #define EQUALIZER_SCALE_FACTOR (EQUALIZER_SCALED ? cfg.scale_factor : 1) |
75d99359357b
doublesize -> custom scale:
Cristi Magherusan <majeru@atheme.org>
parents:
3918
diff
changeset
|
34 |
75d99359357b
doublesize -> custom scale:
Cristi Magherusan <majeru@atheme.org>
parents:
3918
diff
changeset
|
35 #define EQUALIZER_HEIGHT ((cfg.equalizer_shaded ? 14 : 116) * (EQUALIZER_SCALE_FACTOR)) |
75d99359357b
doublesize -> custom scale:
Cristi Magherusan <majeru@atheme.org>
parents:
3918
diff
changeset
|
36 #define EQUALIZER_WIDTH (275 * EQUALIZER_SCALE_FACTOR) |
2313 | 37 |
38 #define EQUALIZER_DEFAULT_POS_X 20 | |
39 #define EQUALIZER_DEFAULT_POS_Y 136 | |
40 | |
41 #define EQUALIZER_DEFAULT_DIR_PRESET "dir_default.preset" | |
42 #define EQUALIZER_DEFAULT_PRESET_EXT "preset" | |
43 | |
4216
75d99359357b
doublesize -> custom scale:
Cristi Magherusan <majeru@atheme.org>
parents:
3918
diff
changeset
|
44 void equalizerwin_set_scaled(gboolean ds); |
2313 | 45 void equalizerwin_set_shade_menu_cb(gboolean shaded); |
46 void draw_equalizer_window(gboolean force); | |
47 void equalizerwin_create(void); | |
48 void equalizerwin_show(gboolean show); | |
49 void equalizerwin_real_show(void); | |
50 void equalizerwin_real_hide(void); | |
51 void equalizerwin_load_auto_preset(const gchar * filename); | |
52 void equalizerwin_set_volume_slider(gint percent); | |
53 void equalizerwin_set_balance_slider(gint percent); | |
54 void equalizerwin_eq_changed(void); | |
55 void equalizerwin_set_preamp(gfloat preamp); | |
56 void equalizerwin_set_band(gint band, gfloat value); | |
57 gfloat equalizerwin_get_preamp(void); | |
58 gfloat equalizerwin_get_band(gint band); | |
59 | |
60 gboolean equalizerwin_has_focus(void); | |
61 | |
62 extern GtkWidget *equalizerwin; | |
3918
a318d4b479d2
hide equalizer graph in special skins (needed for a certain skin)
mf0102 <0102@gmx.at>
parents:
3917
diff
changeset
|
63 extern GtkWidget *equalizerwin_graph; |
2313 | 64 extern gboolean equalizerwin_focus; |
65 | |
3917 | 66 void equalizer_activate(gboolean active); |
67 | |
2313 | 68 #endif |