Mercurial > audlegacy
annotate src/audacious/ui_equalizer.h @ 4011:c19c8d47e221
vseparator in fileinfo came back
| author | Eugene Zagidullin <e.asphyx@gmail.com> |
|---|---|
| date | Sun, 25 Nov 2007 04:44:40 +0300 |
| parents | a318d4b479d2 |
| children | 75d99359357b |
| 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 | |
| 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)) | |
| 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 | |
| 42 void equalizerwin_set_doublesize(gboolean ds); | |
| 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; | |
|
3918
a318d4b479d2
hide equalizer graph in special skins (needed for a certain skin)
mf0102 <0102@gmx.at>
parents:
3917
diff
changeset
|
61 extern GtkWidget *equalizerwin_graph; |
| 2313 | 62 extern gboolean equalizerwin_focus; |
| 63 | |
| 3917 | 64 void equalizer_activate(gboolean active); |
| 65 | |
| 2313 | 66 #endif |
