2606
|
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
|
|
12 * the Free Software Foundation; under version 3 of the License.
|
|
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, see <http://www.gnu.org/licenses>.
|
|
21 *
|
|
22 * The Audacious team does not consider modular code linking to
|
|
23 * Audacious or using our public API to be a derived work.
|
|
24 */
|
|
25
|
|
26 #ifndef AUDACIOUS_UI_EQUALIZER_H
|
|
27 #define AUDACIOUS_UI_EQUALIZER_H
|
|
28
|
|
29 #include <glib.h>
|
|
30 #include <gtk/gtk.h>
|
|
31 #include "skins_cfg.h"
|
|
32
|
|
33 #define EQUALIZER_SCALED (config.scaled && config.eq_scaled_linked)
|
|
34 #define EQUALIZER_SCALE_FACTOR (EQUALIZER_SCALED ? config.scale_factor : 1)
|
|
35
|
|
36 #define EQUALIZER_HEIGHT ((config.equalizer_shaded ? 14 : 116) * (EQUALIZER_SCALE_FACTOR))
|
|
37 #define EQUALIZER_WIDTH (275 * EQUALIZER_SCALE_FACTOR)
|
|
38
|
|
39 #define EQUALIZER_DEFAULT_POS_X 20
|
|
40 #define EQUALIZER_DEFAULT_POS_Y 136
|
|
41
|
|
42 #define EQUALIZER_DEFAULT_DIR_PRESET "dir_default.preset"
|
|
43 #define EQUALIZER_DEFAULT_PRESET_EXT "preset"
|
|
44
|
|
45 void equalizerwin_set_scaled(gboolean ds);
|
|
46 void equalizerwin_set_shade_menu_cb(gboolean shaded);
|
|
47 void draw_equalizer_window(gboolean force);
|
|
48 void equalizerwin_create(void);
|
|
49 void equalizerwin_show(gboolean show);
|
|
50 void equalizerwin_real_show(void);
|
|
51 void equalizerwin_real_hide(void);
|
|
52 void equalizerwin_load_auto_preset(const gchar * filename);
|
|
53 void equalizerwin_set_volume_slider(gint percent);
|
|
54 void equalizerwin_set_balance_slider(gint percent);
|
|
55 void equalizerwin_eq_changed(void);
|
|
56 void equalizerwin_set_preamp(gfloat preamp);
|
|
57 void equalizerwin_set_band(gint band, gfloat value);
|
|
58 gfloat equalizerwin_get_preamp(void);
|
|
59 gfloat equalizerwin_get_band(gint band);
|
|
60
|
|
61 gboolean equalizerwin_has_focus(void);
|
|
62
|
|
63 extern GtkWidget *equalizerwin;
|
|
64 extern GtkWidget *equalizerwin_graph;
|
|
65 extern gboolean equalizerwin_focus;
|
|
66
|
|
67 void equalizer_activate(gboolean active);
|
|
68
|
|
69 #endif /* AUDACIOUS_UI_EQUALIZER_H */
|