Mercurial > audlegacy-plugins
annotate src/skins/ui_skinned_equalizer_slider.h @ 3182:631d217913e0
alsa-ng: Fix arithmetic overflow on 32-bit systems.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Fri, 12 Jun 2009 09:17:09 -0400 |
parents | 963796db51ea |
children |
rev | line source |
---|---|
2605 | 1 /* |
2 * Audacious - a cross-platform multimedia player | |
3 * Copyright (c) 2007 Tomasz Moń | |
4 * | |
5 * Based on: | |
6 * BMP - Cross-platform multimedia player | |
7 * Copyright (C) 2003-2004 BMP development team. | |
8 * XMMS: | |
9 * Copyright (C) 1998-2003 XMMS development team. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; under version 3 of the License. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; If not, see <http://www.gnu.org/licenses>. | |
22 */ | |
23 | |
24 #ifndef AUDACIOUS_UI_SKINNED_EQUALIZER_SLIDER_H | |
25 #define AUDACIOUS_UI_SKINNED_EQUALIZER_SLIDER_H | |
26 | |
27 #include <gtk/gtk.h> | |
28 #include "ui_skin.h" | |
29 | |
30 #ifdef __cplusplus | |
31 extern "C" { | |
32 #endif | |
33 | |
34 #define EQUALIZER_MAX_GAIN 12.0 | |
35 | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2888
diff
changeset
|
36 #define UI_SKINNED_EQUALIZER_SLIDER(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, ui_skinned_equalizer_slider_get_type (), UiSkinnedEqualizerSlider) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2888
diff
changeset
|
37 #define UI_SKINNED_EQUALIZER_SLIDER_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, ui_skinned_equalizer_slider_get_type (), UiSkinnedEqualizerSliderClass) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2888
diff
changeset
|
38 #define UI_SKINNED_IS_EQUALIZER_SLIDER(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, ui_skinned_equalizer_slider_get_type ()) |
2605 | 39 |
40 typedef struct _UiSkinnedEqualizerSlider UiSkinnedEqualizerSlider; | |
41 typedef struct _UiSkinnedEqualizerSliderClass UiSkinnedEqualizerSliderClass; | |
42 | |
43 struct _UiSkinnedEqualizerSlider { | |
44 GtkWidget widget; | |
2888
7c7471554d88
convert some widgets into windowless ones
Tomasz Mon <desowin@gmail.com>
parents:
2605
diff
changeset
|
45 GdkWindow *event_window; |
2605 | 46 gint x, y; |
47 }; | |
48 | |
49 struct _UiSkinnedEqualizerSliderClass { | |
50 GtkWidgetClass parent_class; | |
51 void (* scaled) (UiSkinnedEqualizerSlider *equalizer_slider); | |
52 }; | |
53 | |
54 GtkWidget* ui_skinned_equalizer_slider_new(GtkWidget *fixed, gint x, gint y); | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2888
diff
changeset
|
55 GType ui_skinned_equalizer_slider_get_type(void); |
2605 | 56 void ui_skinned_equalizer_slider_set_position(GtkWidget *widget, gfloat pos); |
57 gfloat ui_skinned_equalizer_slider_get_position(GtkWidget *widget); | |
58 | |
59 #ifdef __cplusplus | |
60 } | |
61 #endif | |
62 | |
63 #endif /* AUDACIOUS_UI_SKINNED_EQUALIZER_SLIDER_H */ |