annotate audacious/widgets/monostereo.c @ 1603:0f2ca8c7cd98 trunk

[svn] - version update
author nenolod
date Sun, 27 Aug 2006 07:39:25 -0700
parents ec4d858524fa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1541
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
1 /* BMP - Cross-platform multimedia player
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
2 * Copyright (C) 2003-2004 BMP development team.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
3 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
4 * Based on XMMS:
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
5 * Copyright (C) 1998-2003 XMMS development team.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
6 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
7 * This program is free software; you can redistribute it and/or modify
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
8 * it under the terms of the GNU General Public License as published by
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
9 * the Free Software Foundation; either version 2 of the License, or
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
10 * (at your option) any later version.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
11 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
15 * GNU General Public License for more details.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
16 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
17 * You should have received a copy of the GNU General Public License
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
18 * along with this program; if not, write to the Free Software
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
20 */
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
21
1556
ec4d858524fa [svn] - cleanup
nenolod
parents: 1541
diff changeset
22 #include "widgetcore.h"
1541
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
23
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
24 #include <glib.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
25 #include <gdk/gdk.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
26
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
27 #include "skin.h"
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
28 #include "widget.h"
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
29
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
30 void
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
31 monostereo_draw(Widget * widget)
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
32 {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
33 MonoStereo *ms = (MonoStereo *) widget;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
34 GdkPixmap *obj;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
35
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
36 obj = ms->ms_widget.parent;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
37
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
38 switch (ms->ms_num_channels) {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
39 case 0:
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
40 skin_draw_pixmap(bmp_active_skin, obj, ms->ms_widget.gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
41 ms->ms_skin_index, 29, 12,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
42 ms->ms_widget.x, ms->ms_widget.y, 27, 12);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
43 skin_draw_pixmap(bmp_active_skin, obj, ms->ms_widget.gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
44 ms->ms_skin_index, 0, 12,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
45 ms->ms_widget.x + 27, ms->ms_widget.y, 29, 12);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
46 break;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
47 case 1:
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
48 skin_draw_pixmap(bmp_active_skin, obj, ms->ms_widget.gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
49 ms->ms_skin_index, 29, 0,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
50 ms->ms_widget.x, ms->ms_widget.y, 27, 12);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
51 skin_draw_pixmap(bmp_active_skin, obj, ms->ms_widget.gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
52 ms->ms_skin_index, 0, 12,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
53 ms->ms_widget.x + 27, ms->ms_widget.y, 29, 12);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
54 break;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
55 case 2:
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
56 skin_draw_pixmap(bmp_active_skin, obj, ms->ms_widget.gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
57 ms->ms_skin_index, 29, 12,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
58 ms->ms_widget.x, ms->ms_widget.y, 27, 12);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
59 skin_draw_pixmap(bmp_active_skin, obj, ms->ms_widget.gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
60 ms->ms_skin_index, 0, 0,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
61 ms->ms_widget.x + 27, ms->ms_widget.y, 29, 12);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
62 break;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
63 }
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
64 }
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
65
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
66 void
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
67 monostereo_set_num_channels(MonoStereo * ms,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
68 gint nch)
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
69 {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
70 if (!ms)
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
71 return;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
72
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
73 ms->ms_num_channels = nch;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
74 widget_draw(WIDGET(ms));
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
75 }
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
76
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
77 MonoStereo *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
78 create_monostereo(GList ** wlist,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
79 GdkPixmap * parent,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
80 GdkGC * gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
81 gint x, gint y,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
82 SkinPixmapId si)
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
83 {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
84 MonoStereo *ms;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
85
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
86 ms = g_new0(MonoStereo, 1);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
87 widget_init(&ms->ms_widget, parent, gc, x, y, 56, 12, 1);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
88 ms->ms_widget.draw = monostereo_draw;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
89 ms->ms_skin_index = si;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
90
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
91 widget_list_add(wlist, WIDGET(ms));
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
92 return ms;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
93 }