annotate audacious/widgets/pbutton.h @ 1614:9b4678a2efc9 trunk

[svn] - If transparency fails, disable it.
author nhjm449
date Sun, 03 Sep 2006 22:04:17 -0700
parents 7c7195221c0b
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 */
1544
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
21
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
22 #ifndef _WIDGETCORE_H_
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
23 #error Please do not include me directly! Use widgetcore.h instead!
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
24 #endif
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
25
1541
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
26 #ifndef PBUTTON_H
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
27 #define PBUTTON_H
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
28
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
29 #include <glib.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
30 #include <gdk/gdk.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
31
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
32 #include "widget.h"
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
33 #include "skin.h"
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
34
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
35 #define PBUTTON(x) ((PButton *)(x))
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
36 struct _PButton {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
37 Widget pb_widget;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
38 gint pb_nx, pb_ny;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
39 gint pb_px, pb_py;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
40 gboolean pb_pressed;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
41 gboolean pb_inside;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
42 gboolean pb_allow_draw;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
43 void (*pb_push_cb) (void);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
44 void (*pb_release_cb) (void);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
45 SkinPixmapId pb_skin_index1, pb_skin_index2;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
46 };
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
47
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
48 typedef struct _PButton PButton;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
49
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
50 PButton *create_pbutton(GList ** wlist, GdkPixmap * parent, GdkGC * gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
51 gint x, gint y, gint w, gint h, gint nx, gint ny,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
52 gint px, gint py, void (*push_cb) (void), SkinPixmapId si);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
53 PButton *create_pbutton_ex(GList ** wlist, GdkPixmap * parent, GdkGC * gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
54 gint x, gint y, gint w, gint h, gint nx,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
55 gint ny, gint px, gint py, void (*push_cb) (void),
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
56 void (*release_cb) (void), SkinPixmapId si1,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
57 SkinPixmapId si2);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
58 void free_pbutton(PButton * b);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
59 void pbutton_set_skin_index(PButton * b, SkinPixmapId si);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
60 void pbutton_set_skin_index1(PButton * b, SkinPixmapId si);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
61 void pbutton_set_skin_index2(PButton * b, SkinPixmapId si);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
62 void pbutton_set_button_data(PButton * b, gint nx, gint ny, gint px, gint py);
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 #endif