changeset 2842:c2622a939e9e trunk

rename audacious_pbutton to ui_skinned_button
author Tomasz Mon <desowin@gmail.com>
date Sun, 17 Jun 2007 12:54:59 +0200
parents b2fb6a4e02b8
children 91ef09fe7936
files src/audacious/Makefile src/audacious/ui_main.c src/audacious/ui_skinned_button.c src/audacious/ui_skinned_button.h src/audacious/widgets/Makefile src/audacious/widgets/audacious_pbutton.c src/audacious/widgets/audacious_pbutton.h src/audacious/widgets/widgetcore.h
diffstat 8 files changed, 508 insertions(+), 513 deletions(-) [+]
line wrap: on
line diff
--- a/src/audacious/Makefile	Sun Jun 17 10:14:02 2007 +0900
+++ b/src/audacious/Makefile	Sun Jun 17 12:54:59 2007 +0200
@@ -104,6 +104,7 @@
 	ui_preferences.c \
 	ui_skinned_cursor.c \
 	ui_skinned_window.c \
+	ui_skinned_button.c \
 	ui_skinselector.c \
 	ui_urlopener.c \
 	urldecode.c \
--- a/src/audacious/ui_main.c	Sun Jun 17 10:14:02 2007 +0900
+++ b/src/audacious/ui_main.c	Sun Jun 17 12:54:59 2007 +0200
@@ -81,6 +81,7 @@
 #include "visualization.h"
 
 #include "ui_skinned_window.h"
+#include "ui_skinned_button.h"
 #include "ui_jumptotrack.h"
 
 static GTimeVal cb_time; /* click delay for tristate is defined by TRISTATE_THRESHOLD */
@@ -2688,56 +2689,56 @@
 static void
 mainwin_create_widgets(void)
 {
-	mainwin_menubtn = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_menubtn, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_menubtn = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_menubtn, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 6, 3, 9, 9, 0, 0, 0, 9, SKIN_TITLEBAR);
 	g_signal_connect(mainwin_menubtn, "clicked", mainwin_menubtn_cb, NULL );
 
-	mainwin_minimize = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_minimize, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_minimize = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_minimize, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 244, 3, 9, 9, 9, 0, 9, 9, SKIN_TITLEBAR);
 	g_signal_connect(mainwin_minimize, "clicked", mainwin_minimize_cb, NULL );
 
-	mainwin_shade = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_shade, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_shade = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_shade, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc,  254, 3, 9, 9, 0,
 			cfg.player_shaded ? 27 : 18, 9, cfg.player_shaded ? 27 : 18, SKIN_TITLEBAR);
 	g_signal_connect(mainwin_shade, "clicked", mainwin_shade_toggle, NULL );
 
-	mainwin_close = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_close, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_close = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_close, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 264, 3, 9, 9, 18, 0, 18, 9, SKIN_TITLEBAR);
 	g_signal_connect(mainwin_close, "clicked", mainwin_quit_cb, NULL );
 
-	mainwin_rew = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_rew, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_rew = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_rew, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 16, 88, 23, 18, 0, 0, 0, 18, SKIN_CBUTTONS);
 	g_signal_connect(mainwin_rew, "pressed", mainwin_rev_pushed, NULL);
 	g_signal_connect(mainwin_rew, "released", mainwin_rev_release, NULL);
 
-	mainwin_fwd = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_fwd, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_fwd = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_fwd, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 108, 88, 22, 18, 92, 0, 92, 18, SKIN_CBUTTONS);
 	g_signal_connect(mainwin_fwd, "pressed", mainwin_fwd_pushed, NULL);
 	g_signal_connect(mainwin_fwd, "released", mainwin_fwd_release, NULL);
 
-	mainwin_play = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_play, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_play = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_play, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 39, 88, 23, 18, 23, 0, 23, 18, SKIN_CBUTTONS);
 	g_signal_connect(mainwin_play, "clicked", mainwin_play_pushed, NULL );
 
-	mainwin_pause = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_pause, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_pause = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_pause, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 62, 88, 23, 18, 46, 0, 46, 18, SKIN_CBUTTONS);
 	g_signal_connect(mainwin_pause, "clicked", playback_pause, NULL );
 
-	mainwin_stop = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_stop, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_stop = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_stop, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 85, 88, 23, 18, 69, 0, 69, 18, SKIN_CBUTTONS);
 	g_signal_connect(mainwin_stop, "clicked", mainwin_stop_pushed, NULL );
 
-	mainwin_eject = audacious_pbutton_new();
-	audacious_pbutton_setup(mainwin_eject, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
+	mainwin_eject = ui_skinned_button_new();
+	ui_skinned_push_button_setup(mainwin_eject, SKINNED_WINDOW(mainwin)->fixed, mainwin_bg,
 			SKINNED_WINDOW(mainwin)->gc, 136, 89, 22, 16, 114, 0, 114, 16, SKIN_CBUTTONS);
 	g_signal_connect(mainwin_eject, "clicked", mainwin_eject_pushed, NULL);
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/audacious/ui_skinned_button.c	Sun Jun 17 12:54:59 2007 +0200
@@ -0,0 +1,411 @@
+/*
+ * Audacious - a cross-platform multimedia player
+ * Copyright (c) 2007  Audacious development team.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#include "widgets/widgetcore.h"
+#include "ui_skinned_button.h"
+#include "util.h"
+
+#include <gtk/gtkmain.h>
+#include <gtk/gtkmarshal.h>
+#include <gtk/gtkimage.h>
+
+#define UI_SKINNED_BUTTON_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), UI_TYPE_SKINNED_BUTTON, UiSkinnedButtonPrivate))
+typedef struct _UiSkinnedButtonPrivate UiSkinnedButtonPrivate;
+
+struct _UiSkinnedButtonPrivate {
+        //Skinned part
+        GtkWidget        *image;
+        GdkGC            *gc;
+        gint             w;
+        gint             h;
+        SkinPixmapId     skin_index1;
+        SkinPixmapId     skin_index2;
+        GtkWidget        *fixed;
+        gboolean         double_size;
+};
+
+
+static GtkBinClass *parent_class = NULL;
+static void ui_skinned_button_class_init(UiSkinnedButtonClass *klass);
+static void ui_skinned_button_init(UiSkinnedButton *button);
+static GObject* ui_skinned_button_constructor(GType type, guint n_construct_properties, GObjectConstructParam *construct_params);
+static void ui_skinned_button_destroy(GtkObject *object);
+static void ui_skinned_button_realize(GtkWidget *widget);
+static void ui_skinned_button_unrealize(GtkWidget *widget);
+static void ui_skinned_button_map(GtkWidget *widget);
+static void ui_skinned_button_unmap(GtkWidget *widget);
+static gint ui_skinned_button_expose(GtkWidget *widget,GdkEventExpose *event);
+
+static void ui_skinned_button_size_allocate(GtkWidget *widget, GtkAllocation *allocation);
+static void ui_skinned_button_update_state(UiSkinnedButton *button);
+
+static guint button_signals[LAST_SIGNAL] = { 0 };
+static gint ui_skinned_button_button_press(GtkWidget *widget, GdkEventButton *event);
+static gint ui_skinned_button_button_release(GtkWidget *widget, GdkEventButton *event);
+static void button_pressed(UiSkinnedButton *button);
+static void button_released(UiSkinnedButton *button);
+static void ui_skinned_button_pressed(UiSkinnedButton *button);
+static void ui_skinned_button_released(UiSkinnedButton *button);
+static void ui_skinned_button_clicked(UiSkinnedButton *button);
+static void ui_skinned_button_set_pressed (UiSkinnedButton *button, gboolean pressed);
+
+static void ui_skinned_button_add(GtkContainer *container, GtkWidget *widget);
+static void ui_skinned_button_toggle_doublesize(UiSkinnedButton *button);
+
+static gint ui_skinned_button_enter_notify(GtkWidget *widget, GdkEventCrossing *event);
+static gint ui_skinned_button_leave_notify(GtkWidget *widget, GdkEventCrossing *event);
+static void ui_skinned_button_paint(UiSkinnedButton *button);
+static void ui_skinned_button_redraw(UiSkinnedButton *button);
+
+GType ui_skinned_button_get_type (void) {
+        static GType button_type = 0;
+
+        if (!button_type) {
+                static const GTypeInfo button_info = {
+                        sizeof (UiSkinnedButtonClass),
+                        NULL,                /* base_init */
+                        NULL,                /* base_finalize */
+                        (GClassInitFunc) ui_skinned_button_class_init,
+                        NULL,                /* class_finalize */
+                        NULL,                /* class_data */
+                        sizeof (UiSkinnedButton),
+                        16,                /* n_preallocs */
+                        (GInstanceInitFunc) ui_skinned_button_init,
+                };
+
+                button_type = g_type_register_static (GTK_TYPE_BIN, "UiSkinnedButton", &button_info, 0);
+        }
+        return button_type;
+}
+
+static void ui_skinned_button_class_init (UiSkinnedButtonClass *klass) {
+        GObjectClass *gobject_class;
+        GtkObjectClass *object_class;
+        GtkWidgetClass *widget_class;
+        GtkContainerClass *container_class;
+
+        gobject_class = G_OBJECT_CLASS(klass);
+        object_class = (GtkObjectClass*)klass;
+        widget_class = (GtkWidgetClass*)klass;
+        container_class = (GtkContainerClass*)klass;
+
+        parent_class = g_type_class_peek_parent(klass);
+        gobject_class->constructor = ui_skinned_button_constructor;
+        object_class->destroy = ui_skinned_button_destroy;
+
+        widget_class->realize = ui_skinned_button_realize;
+        widget_class->unrealize = ui_skinned_button_unrealize;
+        widget_class->map = ui_skinned_button_map;
+        widget_class->unmap = ui_skinned_button_unmap;
+        widget_class->size_allocate = ui_skinned_button_size_allocate;
+        widget_class->expose_event = ui_skinned_button_expose;
+        widget_class->button_press_event = ui_skinned_button_button_press;
+        widget_class->button_release_event = ui_skinned_button_button_release;
+        widget_class->enter_notify_event = ui_skinned_button_enter_notify;
+        widget_class->leave_notify_event = ui_skinned_button_leave_notify;
+
+        container_class->add = ui_skinned_button_add;
+
+        klass->pressed = button_pressed;
+        klass->released = button_released;
+        klass->clicked = NULL;
+        klass->doubled = ui_skinned_button_toggle_doublesize;
+        klass->redraw = ui_skinned_button_redraw;
+
+        button_signals[PRESSED] = 
+                    g_signal_new ("pressed", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST,
+                                  G_STRUCT_OFFSET (UiSkinnedButtonClass, pressed), NULL, NULL,
+                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
+
+        button_signals[RELEASED] = 
+                    g_signal_new ("released", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST,
+                                  G_STRUCT_OFFSET (UiSkinnedButtonClass, released), NULL, NULL,
+                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
+
+        button_signals[CLICKED] = 
+                    g_signal_new ("clicked", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
+                                  G_STRUCT_OFFSET (UiSkinnedButtonClass, clicked), NULL, NULL,
+                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
+
+        button_signals[DOUBLED] = 
+                    g_signal_new ("toggle-double-size", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
+                                  G_STRUCT_OFFSET (UiSkinnedButtonClass, doubled), NULL, NULL,
+                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
+
+        button_signals[REDRAW] = 
+                    g_signal_new ("redraw", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
+                                  G_STRUCT_OFFSET (UiSkinnedButtonClass, redraw), NULL, NULL,
+                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
+
+        g_type_class_add_private (gobject_class, sizeof (UiSkinnedButtonPrivate));
+}
+
+static void ui_skinned_button_init (UiSkinnedButton *button) {
+        UiSkinnedButtonPrivate *priv = UI_SKINNED_BUTTON_GET_PRIVATE (button);
+        priv->image = gtk_image_new();
+        button->redraw = TRUE;
+
+        g_object_set (priv->image, "visible", TRUE, NULL);
+        gtk_container_add(GTK_CONTAINER(GTK_WIDGET(button)), priv->image);
+
+        GTK_WIDGET_SET_FLAGS (button, GTK_CAN_FOCUS);
+        GTK_WIDGET_SET_FLAGS (button, GTK_NO_WINDOW);
+}
+
+static void ui_skinned_button_destroy (GtkObject *object) {
+        (*GTK_OBJECT_CLASS (parent_class)->destroy) (object);
+}
+
+static GObject* ui_skinned_button_constructor(GType type, guint n_construct_properties, GObjectConstructParam *construct_params) {
+        GObject *object = (*G_OBJECT_CLASS (parent_class)->constructor)(type, n_construct_properties, construct_params);
+
+        return object;
+}
+
+static void ui_skinned_button_realize (GtkWidget *widget) {
+        UiSkinnedButton *button = UI_SKINNED_BUTTON (widget);
+        GdkWindowAttr attrib;
+
+        GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
+
+        attrib.window_type = GDK_WINDOW_CHILD;
+        attrib.x = widget->allocation.x;
+        attrib.y = widget->allocation.y;
+        attrib.width = widget->allocation.width;
+        attrib.height = widget->allocation.height;
+        attrib.wclass = GDK_INPUT_ONLY;
+        attrib.event_mask = gtk_widget_get_events (widget);
+        attrib.event_mask |= (GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK);
+
+        widget->window = gtk_widget_get_parent_window(widget);
+        g_object_ref(widget->window);
+
+        button->event_window = gdk_window_new(gtk_widget_get_parent_window(widget), &attrib, GDK_WA_X | GDK_WA_Y);
+        gdk_window_set_user_data (button->event_window, button);
+}
+
+static void ui_skinned_button_unrealize(GtkWidget *widget) {
+        UiSkinnedButton *button = UI_SKINNED_BUTTON (widget);
+
+        if (button->event_window) {
+                gdk_window_set_user_data (button->event_window, NULL);
+                gdk_window_destroy (button->event_window);
+                button->event_window = NULL;
+        }
+
+        GTK_WIDGET_CLASS (parent_class)->unrealize (widget);
+}
+
+static void ui_skinned_button_map(GtkWidget *widget) {
+        UiSkinnedButton *button = UI_SKINNED_BUTTON (widget);
+        g_return_if_fail (UI_IS_SKINNED_BUTTON (widget));
+        GTK_WIDGET_CLASS (parent_class)->map(widget);
+        gdk_window_show (button->event_window);
+}
+
+static void ui_skinned_button_unmap (GtkWidget *widget) {
+        UiSkinnedButton *button = UI_SKINNED_BUTTON (widget);
+        g_return_if_fail (UI_IS_SKINNED_BUTTON(widget));
+
+        if (button->event_window)
+                gdk_window_hide (button->event_window);
+
+        GTK_WIDGET_CLASS (parent_class)->unmap (widget);
+}
+
+static gboolean ui_skinned_button_expose(GtkWidget *widget, GdkEventExpose *event) {
+        if (GTK_WIDGET_DRAWABLE (widget))
+                (*GTK_WIDGET_CLASS (parent_class)->expose_event) (widget, event);
+
+        return FALSE;
+}
+
+GtkWidget* ui_skinned_button_new () {
+        return g_object_new (UI_TYPE_SKINNED_BUTTON, NULL);
+}
+
+void ui_skinned_push_button_setup(GtkWidget *button, GtkWidget *fixed, GdkPixmap *parent, GdkGC *gc, gint x, gint y, gint w, gint h, gint nx, gint ny, gint px, gint py, SkinPixmapId si) {
+
+        UiSkinnedButton *sbutton = UI_SKINNED_BUTTON(button);
+        UiSkinnedButtonPrivate *priv = UI_SKINNED_BUTTON_GET_PRIVATE(sbutton);
+        priv->gc = gc;
+        priv->w = w;
+        priv->h = h;
+        sbutton->x = x;
+        sbutton->y = y;
+        sbutton->nx = nx;
+        sbutton->ny = ny;
+        sbutton->px = px;
+        sbutton->py = py;
+        priv->skin_index1 = si;
+        priv->skin_index2 = si;
+        priv->fixed = fixed;
+        priv->double_size = FALSE;
+
+        gtk_widget_set_size_request(button, priv->w, priv->h);
+        gtk_fixed_put(GTK_FIXED(priv->fixed),GTK_WIDGET(button), sbutton->x, sbutton->y);
+}
+
+static void ui_skinned_button_size_allocate(GtkWidget *widget, GtkAllocation *allocation) {
+        UiSkinnedButton *button = UI_SKINNED_BUTTON (widget);
+        GtkAllocation child_alloc;
+
+        widget->allocation = *allocation;
+        if (GTK_BIN (button)->child) {                //image should fill whole widget
+                child_alloc.x = widget->allocation.x;
+                child_alloc.y = widget->allocation.y;
+                child_alloc.width = MAX (1, widget->allocation.width);
+                child_alloc.height = MAX (1, widget->allocation.height);
+
+                gtk_widget_size_allocate (GTK_BIN (button)->child, &child_alloc);
+        }
+
+        if (GDK_IS_WINDOW(button->event_window))
+            gdk_window_move_resize (button->event_window, widget->allocation.x, widget->allocation.y,
+                                    widget->allocation.width, widget->allocation.height);
+}
+
+static void button_pressed(UiSkinnedButton *button) {
+        button->button_down = TRUE;
+        ui_skinned_button_update_state(button);
+}
+
+static void button_released(UiSkinnedButton *button) {
+        button->button_down = FALSE;
+        if(button->hover) ui_skinned_button_clicked(button);
+        ui_skinned_button_update_state(button);
+}
+
+static void ui_skinned_button_update_state(UiSkinnedButton *button) {
+        ui_skinned_button_set_pressed(button, button->button_down); 
+}
+
+static void ui_skinned_button_set_pressed (UiSkinnedButton *button, gboolean pressed) {
+        if (pressed != button->pressed) {
+                button->pressed = pressed;
+                button->redraw = TRUE;
+                ui_skinned_button_paint(button);
+        }
+}
+
+static gboolean ui_skinned_button_button_press(GtkWidget *widget, GdkEventButton *event) {
+        UiSkinnedButton *button;
+
+        if (event->type == GDK_BUTTON_PRESS) {
+                button = UI_SKINNED_BUTTON(widget);
+
+                if (event->button == 1)
+                        ui_skinned_button_pressed (button);
+        }
+
+        return TRUE;
+}
+
+static gboolean ui_skinned_button_button_release(GtkWidget *widget, GdkEventButton *event) {
+        UiSkinnedButton *button;
+        if (event->button == 1) {
+                button = UI_SKINNED_BUTTON(widget);
+                button->redraw = TRUE;
+                ui_skinned_button_released(button);
+        }
+
+        return TRUE;
+}
+
+static void ui_skinned_button_pressed(UiSkinnedButton *button) {
+        g_return_if_fail(UI_IS_SKINNED_BUTTON(button));
+        g_signal_emit(button, button_signals[PRESSED], 0);
+}
+
+static void ui_skinned_button_released(UiSkinnedButton *button) {
+        g_return_if_fail(UI_IS_SKINNED_BUTTON(button));
+        g_signal_emit(button, button_signals[RELEASED], 0);
+}
+
+static void ui_skinned_button_clicked(UiSkinnedButton *button) {
+        g_return_if_fail(UI_IS_SKINNED_BUTTON(button));
+        g_signal_emit(button, button_signals[CLICKED], 0);
+}
+
+static gboolean ui_skinned_button_enter_notify(GtkWidget *widget, GdkEventCrossing *event) {
+        UiSkinnedButton *button;
+
+        button = UI_SKINNED_BUTTON(widget);
+        button->hover = TRUE;
+        if(button->button_down) ui_skinned_button_set_pressed(button, TRUE);
+
+        return FALSE;
+}
+
+static gboolean ui_skinned_button_leave_notify(GtkWidget *widget, GdkEventCrossing *event) {
+        UiSkinnedButton *button;
+
+        button = UI_SKINNED_BUTTON (widget);
+        button->hover = FALSE;
+        if(button->button_down) ui_skinned_button_set_pressed(button, FALSE);
+
+        return FALSE;
+}
+
+static void ui_skinned_button_add(GtkContainer *container, GtkWidget *widget) {
+        GTK_CONTAINER_CLASS (parent_class)->add(container, widget);
+}
+
+static void ui_skinned_button_toggle_doublesize(UiSkinnedButton *button) {
+        GtkWidget *widget = GTK_WIDGET (button);
+        UiSkinnedButtonPrivate *priv = UI_SKINNED_BUTTON_GET_PRIVATE (button);
+        priv->double_size = !priv->double_size;
+
+        gtk_widget_set_size_request(widget, priv->w*(1+priv->double_size), priv->h*(1+priv->double_size));
+        gtk_widget_set_uposition(widget, button->x*(1+priv->double_size), button->y*(1+priv->double_size));
+
+        button->redraw = TRUE;
+        ui_skinned_button_paint(button);
+}
+
+static void ui_skinned_button_paint(UiSkinnedButton *button) {
+        GtkWidget *widget = GTK_WIDGET (button);
+        UiSkinnedButtonPrivate *priv = UI_SKINNED_BUTTON_GET_PRIVATE (button);
+
+        if (button->redraw == TRUE) {
+            button->redraw = FALSE;
+            GdkPixmap *obj;
+            obj = gdk_pixmap_new(NULL, priv->w, priv->h, gdk_rgb_get_visual()->depth);
+            skin_draw_pixmap(bmp_active_skin, obj, priv->gc, priv->skin_index2,
+                             button->pressed ? button->px : button->nx,
+                             button->pressed ? button->py : button->ny,
+                             0, 0, priv->w, priv->h);
+            if(priv->double_size) {
+                 GdkImage *img, *img2x;
+                 img = gdk_drawable_get_image(obj, 0, 0, priv->w, priv->h);
+                 img2x = create_dblsize_image(img);
+                 gtk_image_set(GTK_IMAGE(priv->image), img2x, NULL);
+                 g_object_unref(img2x);
+                 g_object_unref(img);
+            } else
+                 gtk_image_set_from_pixmap(GTK_IMAGE(priv->image), obj, NULL);
+        g_object_unref(obj);
+        gtk_widget_queue_resize(widget);
+        }
+}
+
+static void ui_skinned_button_redraw(UiSkinnedButton *button) {
+        button->redraw = TRUE;
+        ui_skinned_button_paint(button);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/audacious/ui_skinned_button.h	Sun Jun 17 12:54:59 2007 +0200
@@ -0,0 +1,74 @@
+/*
+ * Audacious - a cross-platform multimedia player
+ * Copyright (c) 2007  Audacious development team.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef UISKINNEDBUTTON_H
+#define UISKINNEDBUTTON_H
+
+#include <gdk/gdk.h>
+#include <gtk/gtkbin.h>
+#include <gtk/gtkenums.h>
+#include "widgets/skin.h"
+
+#define UI_TYPE_SKINNED_BUTTON            (ui_skinned_button_get_type())
+#define UI_SKINNED_BUTTON(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), UI_TYPE_SKINNED_BUTTON, UiSkinnedButton))
+#define UI_SKINNED_BUTTON_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), UI_TYPE_SKINNED_BUTTON, UiSkinnedButtonClass))
+#define UI_IS_SKINNED_BUTTON(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UI_TYPE_SKINNED_BUTTON))
+#define UI_IS_SKINNED_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UI_TYPE_SKINNED_BUTTON))
+#define UI_SKINNED_BUTTON_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), UI_TYPE_SKINNED_BUTTON, GtkFlatButtonClass))
+
+typedef struct _UiSkinnedButton		UiSkinnedButton;
+typedef struct _UiSkinnedButtonClass	UiSkinnedButtonClass;
+
+enum {
+	PRESSED,
+	RELEASED,
+	CLICKED,
+	DOUBLED,
+	REDRAW,
+	LAST_SIGNAL
+};
+
+struct _UiSkinnedButton {
+	GtkBin bin;
+
+	GdkWindow *event_window;
+
+	gboolean button_down : 1;
+	gboolean pressed : 1;
+	gboolean hover : 1;
+	//Skinned part, used in ui_playlist.c
+	gint x, y, nx, ny, px, py;
+
+	gboolean redraw;
+};
+
+struct _UiSkinnedButtonClass {
+	GtkBinClass parent_class;
+	void (* pressed)  (UiSkinnedButton *button);
+	void (* released) (UiSkinnedButton *button);
+	void (* clicked)  (UiSkinnedButton *button);
+	void (* doubled)  (UiSkinnedButton *button);
+	void (* redraw)   (UiSkinnedButton *button);
+};
+
+GType ui_skinned_button_get_type(void) G_GNUC_CONST;
+GtkWidget* ui_skinned_button_new();
+void ui_skinned_push_button_setup(GtkWidget *button, GtkWidget *fixed, GdkPixmap * parent, GdkGC * gc, gint x, gint y, gint w, gint h, gint nx, gint ny, gint px, gint py, SkinPixmapId si);
+
+#endif
--- a/src/audacious/widgets/Makefile	Sun Jun 17 10:14:02 2007 +0900
+++ b/src/audacious/widgets/Makefile	Sun Jun 17 12:54:59 2007 +0200
@@ -35,8 +35,7 @@
 	playlist_slider.c \
 	eq_graph.c \
 	eq_slider.c \
-	skin.c \
-	audacious_pbutton.c
+	skin.c
 
 OBJECTS = ${SOURCES:.c=.o}
 
--- a/src/audacious/widgets/audacious_pbutton.c	Sun Jun 17 10:14:02 2007 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,411 +0,0 @@
-/*
- * Audacious - a cross-platform multimedia player
- * Copyright (c) 2007  Audacious development team.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-#include "widgetcore.h"
-#include "audacious_pbutton.h"
-#include "../util.h"
-
-#include <gtk/gtkmain.h>
-#include <gtk/gtkmarshal.h>
-#include <gtk/gtkimage.h>
-
-#define AUDACIOUS_PBUTTON_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), AUDACIOUS_TYPE_PBUTTON, AudaciousPButtonPrivate))
-typedef struct _AudaciousPButtonPrivate AudaciousPButtonPrivate;
-
-struct _AudaciousPButtonPrivate {
-        //Skinned part
-        GtkWidget        *image;
-        GdkGC            *gc;
-        gint             w;
-        gint             h;
-        SkinPixmapId     skin_index1;
-        SkinPixmapId     skin_index2;
-        GtkWidget        *fixed;
-        gboolean         double_size;
-};
-
-
-static GtkBinClass *parent_class = NULL;
-static void audacious_pbutton_class_init(AudaciousPButtonClass *klass);
-static void audacious_pbutton_init(AudaciousPButton *button);
-static GObject* audacious_pbutton_constructor(GType type, guint n_construct_properties, GObjectConstructParam *construct_params);
-static void audacious_pbutton_destroy(GtkObject *object);
-static void audacious_pbutton_realize(GtkWidget *widget);
-static void audacious_pbutton_unrealize(GtkWidget *widget);
-static void audacious_pbutton_map(GtkWidget *widget);
-static void audacious_pbutton_unmap(GtkWidget *widget);
-static gint audacious_pbutton_expose(GtkWidget *widget,GdkEventExpose *event);
-
-static void audacious_pbutton_size_allocate(GtkWidget *widget, GtkAllocation *allocation);
-static void audacious_pbutton_update_state(AudaciousPButton *button);
-
-static guint button_signals[LAST_SIGNAL] = { 0 };
-static gint audacious_pbutton_button_press(GtkWidget *widget, GdkEventButton *event);
-static gint audacious_pbutton_button_release(GtkWidget *widget, GdkEventButton *event);
-static void button_pressed(AudaciousPButton *button);
-static void button_released(AudaciousPButton *button);
-static void audacious_pbutton_pressed(AudaciousPButton *button);
-static void audacious_pbutton_released(AudaciousPButton *button);
-static void audacious_pbutton_clicked(AudaciousPButton *button);
-static void audacious_pbutton_set_pressed (AudaciousPButton *button, gboolean pressed);
-
-static void audacious_pbutton_add(GtkContainer *container, GtkWidget *widget);
-static void audacious_pbutton_toggle_doublesize(AudaciousPButton *button);
-
-static gint audacious_pbutton_enter_notify(GtkWidget *widget, GdkEventCrossing *event);
-static gint audacious_pbutton_leave_notify(GtkWidget *widget, GdkEventCrossing *event);
-static void audacious_pbutton_paint(AudaciousPButton *button);
-static void audacious_pbutton_redraw(AudaciousPButton *button);
-
-GType audacious_pbutton_get_type (void) {
-        static GType button_type = 0;
-
-        if (!button_type) {
-                static const GTypeInfo button_info = {
-                        sizeof (AudaciousPButtonClass),
-                        NULL,                /* base_init */
-                        NULL,                /* base_finalize */
-                        (GClassInitFunc) audacious_pbutton_class_init,
-                        NULL,                /* class_finalize */
-                        NULL,                /* class_data */
-                        sizeof (AudaciousPButton),
-                        16,                /* n_preallocs */
-                        (GInstanceInitFunc) audacious_pbutton_init,
-                };
-
-                button_type = g_type_register_static (GTK_TYPE_BIN, "AudaciousPButton", &button_info, 0);
-        }
-        return button_type;
-}
-
-static void audacious_pbutton_class_init (AudaciousPButtonClass *klass) {
-        GObjectClass *gobject_class;
-        GtkObjectClass *object_class;
-        GtkWidgetClass *widget_class;
-        GtkContainerClass *container_class;
-
-        gobject_class = G_OBJECT_CLASS(klass);
-        object_class = (GtkObjectClass*)klass;
-        widget_class = (GtkWidgetClass*)klass;
-        container_class = (GtkContainerClass*)klass;
-
-        parent_class = g_type_class_peek_parent(klass);
-        gobject_class->constructor = audacious_pbutton_constructor;
-        object_class->destroy = audacious_pbutton_destroy;
-
-        widget_class->realize = audacious_pbutton_realize;
-        widget_class->unrealize = audacious_pbutton_unrealize;
-        widget_class->map = audacious_pbutton_map;
-        widget_class->unmap = audacious_pbutton_unmap;
-        widget_class->size_allocate = audacious_pbutton_size_allocate;
-        widget_class->expose_event = audacious_pbutton_expose;
-        widget_class->button_press_event = audacious_pbutton_button_press;
-        widget_class->button_release_event = audacious_pbutton_button_release;
-        widget_class->enter_notify_event = audacious_pbutton_enter_notify;
-        widget_class->leave_notify_event = audacious_pbutton_leave_notify;
-
-        container_class->add = audacious_pbutton_add;
-
-        klass->pressed = button_pressed;
-        klass->released = button_released;
-        klass->clicked = NULL;
-        klass->doubled = audacious_pbutton_toggle_doublesize;
-        klass->redraw = audacious_pbutton_redraw;
-
-        button_signals[PRESSED] = 
-                    g_signal_new ("pressed", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST,
-                                  G_STRUCT_OFFSET (AudaciousPButtonClass, pressed), NULL, NULL,
-                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
-
-        button_signals[RELEASED] = 
-                    g_signal_new ("released", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST,
-                                  G_STRUCT_OFFSET (AudaciousPButtonClass, released), NULL, NULL,
-                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
-
-        button_signals[CLICKED] = 
-                    g_signal_new ("clicked", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
-                                  G_STRUCT_OFFSET (AudaciousPButtonClass, clicked), NULL, NULL,
-                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
-
-        button_signals[DOUBLED] = 
-                    g_signal_new ("toggle-double-size", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
-                                  G_STRUCT_OFFSET (AudaciousPButtonClass, doubled), NULL, NULL,
-                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
-
-        button_signals[REDRAW] = 
-                    g_signal_new ("redraw", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
-                                  G_STRUCT_OFFSET (AudaciousPButtonClass, redraw), NULL, NULL,
-                                  gtk_marshal_VOID__VOID, G_TYPE_NONE, 0);
-
-        g_type_class_add_private (gobject_class, sizeof (AudaciousPButtonPrivate));
-}
-
-static void audacious_pbutton_init (AudaciousPButton *button) {
-        AudaciousPButtonPrivate *priv = AUDACIOUS_PBUTTON_GET_PRIVATE (button);
-        priv->image = gtk_image_new();
-        button->redraw = TRUE;
-
-        g_object_set (priv->image, "visible", TRUE, NULL);
-        gtk_container_add(GTK_CONTAINER(GTK_WIDGET(button)), priv->image);
-
-        GTK_WIDGET_SET_FLAGS (button, GTK_CAN_FOCUS);
-        GTK_WIDGET_SET_FLAGS (button, GTK_NO_WINDOW);
-}
-
-static void audacious_pbutton_destroy (GtkObject *object) {
-        (*GTK_OBJECT_CLASS (parent_class)->destroy) (object);
-}
-
-static GObject* audacious_pbutton_constructor(GType type, guint n_construct_properties, GObjectConstructParam *construct_params) {
-        GObject *object = (*G_OBJECT_CLASS (parent_class)->constructor)(type, n_construct_properties, construct_params);
-
-        return object;
-}
-
-static void audacious_pbutton_realize (GtkWidget *widget) {
-        AudaciousPButton *button = AUDACIOUS_PBUTTON (widget);
-        GdkWindowAttr attrib;
-
-        GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
-
-        attrib.window_type = GDK_WINDOW_CHILD;
-        attrib.x = widget->allocation.x;
-        attrib.y = widget->allocation.y;
-        attrib.width = widget->allocation.width;
-        attrib.height = widget->allocation.height;
-        attrib.wclass = GDK_INPUT_ONLY;
-        attrib.event_mask = gtk_widget_get_events (widget);
-        attrib.event_mask |= (GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK);
-
-        widget->window = gtk_widget_get_parent_window(widget);
-        g_object_ref(widget->window);
-
-        button->event_window = gdk_window_new(gtk_widget_get_parent_window(widget), &attrib, GDK_WA_X | GDK_WA_Y);
-        gdk_window_set_user_data (button->event_window, button);
-}
-
-static void audacious_pbutton_unrealize(GtkWidget *widget) {
-        AudaciousPButton *button = AUDACIOUS_PBUTTON (widget);
-
-        if (button->event_window) {
-                gdk_window_set_user_data (button->event_window, NULL);
-                gdk_window_destroy (button->event_window);
-                button->event_window = NULL;
-        }
-
-        GTK_WIDGET_CLASS (parent_class)->unrealize (widget);
-}
-
-static void audacious_pbutton_map(GtkWidget *widget) {
-        AudaciousPButton *button = AUDACIOUS_PBUTTON (widget);
-        g_return_if_fail (AUDACIOUS_IS_PBUTTON (widget));
-        GTK_WIDGET_CLASS (parent_class)->map(widget);
-        gdk_window_show (button->event_window);
-}
-
-static void audacious_pbutton_unmap (GtkWidget *widget) {
-        AudaciousPButton *button = AUDACIOUS_PBUTTON (widget);
-        g_return_if_fail (AUDACIOUS_IS_PBUTTON(widget));
-
-        if (button->event_window)
-                gdk_window_hide (button->event_window);
-
-        GTK_WIDGET_CLASS (parent_class)->unmap (widget);
-}
-
-static gboolean audacious_pbutton_expose(GtkWidget *widget, GdkEventExpose *event) {
-        if (GTK_WIDGET_DRAWABLE (widget))
-                (*GTK_WIDGET_CLASS (parent_class)->expose_event) (widget, event);
-
-        return FALSE;
-}
-
-GtkWidget* audacious_pbutton_new () {
-        return g_object_new (AUDACIOUS_TYPE_PBUTTON, NULL);
-}
-
-void audacious_pbutton_setup(GtkWidget *button, GtkWidget *fixed, GdkPixmap *parent, GdkGC *gc, gint x, gint y, gint w, gint h, gint nx, gint ny, gint px, gint py, SkinPixmapId si) {
-
-        AudaciousPButton *pbutton = AUDACIOUS_PBUTTON(button);
-        AudaciousPButtonPrivate *priv = AUDACIOUS_PBUTTON_GET_PRIVATE(pbutton);
-        priv->gc = gc;
-        priv->w = w;
-        priv->h = h;
-        pbutton->x = x;
-        pbutton->y = y;
-        pbutton->nx = nx;
-        pbutton->ny = ny;
-        pbutton->px = px;
-        pbutton->py = py;
-        priv->skin_index1 = si;
-        priv->skin_index2 = si;
-        priv->fixed = fixed;
-        priv->double_size = FALSE;
-
-        gtk_widget_set_size_request(button, priv->w, priv->h);
-        gtk_fixed_put(GTK_FIXED(priv->fixed),GTK_WIDGET(button), pbutton->x, pbutton->y);
-}
-
-static void audacious_pbutton_size_allocate(GtkWidget *widget, GtkAllocation *allocation) {
-        AudaciousPButton *button = AUDACIOUS_PBUTTON (widget);
-        GtkAllocation child_alloc;
-
-        widget->allocation = *allocation;
-        if (GTK_BIN (button)->child) {                //image should fill whole widget
-                child_alloc.x = widget->allocation.x;
-                child_alloc.y = widget->allocation.y;
-                child_alloc.width = MAX (1, widget->allocation.width);
-                child_alloc.height = MAX (1, widget->allocation.height);
-
-                gtk_widget_size_allocate (GTK_BIN (button)->child, &child_alloc);
-        }
-
-        if (GDK_IS_WINDOW(button->event_window))
-            gdk_window_move_resize (button->event_window, widget->allocation.x, widget->allocation.y,
-                                    widget->allocation.width, widget->allocation.height);
-}
-
-static void button_pressed(AudaciousPButton *button) {
-        button->button_down = TRUE;
-        audacious_pbutton_update_state(button);
-}
-
-static void button_released(AudaciousPButton *button) {
-        button->button_down = FALSE;
-        if(button->hover) audacious_pbutton_clicked(button);
-        audacious_pbutton_update_state(button);
-}
-
-static void audacious_pbutton_update_state(AudaciousPButton *button) {
-        audacious_pbutton_set_pressed(button, button->button_down); 
-}
-
-static void audacious_pbutton_set_pressed (AudaciousPButton *button, gboolean pressed) {
-        if (pressed != button->pressed) {
-                button->pressed = pressed;
-                button->redraw = TRUE;
-                audacious_pbutton_paint(button);
-        }
-}
-
-static gboolean audacious_pbutton_button_press(GtkWidget *widget, GdkEventButton *event) {
-        AudaciousPButton *button;
-
-        if (event->type == GDK_BUTTON_PRESS) {
-                button = AUDACIOUS_PBUTTON(widget);
-
-                if (event->button == 1)
-                        audacious_pbutton_pressed (button);
-        }
-
-        return TRUE;
-}
-
-static gboolean audacious_pbutton_button_release(GtkWidget *widget, GdkEventButton *event) {
-        AudaciousPButton *button;
-        if (event->button == 1) {
-                button = AUDACIOUS_PBUTTON(widget);
-                button->redraw = TRUE;
-                audacious_pbutton_released(button);
-        }
-
-        return TRUE;
-}
-
-static void audacious_pbutton_pressed(AudaciousPButton *button) {
-        g_return_if_fail(AUDACIOUS_IS_PBUTTON(button));
-        g_signal_emit(button, button_signals[PRESSED], 0);
-}
-
-static void audacious_pbutton_released(AudaciousPButton *button) {
-        g_return_if_fail(AUDACIOUS_IS_PBUTTON(button));
-        g_signal_emit(button, button_signals[RELEASED], 0);
-}
-
-static void audacious_pbutton_clicked(AudaciousPButton *button) {
-        g_return_if_fail(AUDACIOUS_IS_PBUTTON(button));
-        g_signal_emit(button, button_signals[CLICKED], 0);
-}
-
-static gboolean audacious_pbutton_enter_notify(GtkWidget *widget, GdkEventCrossing *event) {
-        AudaciousPButton *button;
-
-        button = AUDACIOUS_PBUTTON(widget);
-        button->hover = TRUE;
-        if(button->button_down) audacious_pbutton_set_pressed(button, TRUE);
-
-        return FALSE;
-}
-
-static gboolean audacious_pbutton_leave_notify(GtkWidget *widget, GdkEventCrossing *event) {
-        AudaciousPButton *button;
-
-        button = AUDACIOUS_PBUTTON (widget);
-        button->hover = FALSE;
-        if(button->button_down) audacious_pbutton_set_pressed(button, FALSE);
-
-        return FALSE;
-}
-
-static void audacious_pbutton_add(GtkContainer *container, GtkWidget *widget) {
-        GTK_CONTAINER_CLASS (parent_class)->add(container, widget);
-}
-
-static void audacious_pbutton_toggle_doublesize(AudaciousPButton *button) {
-        GtkWidget *widget = GTK_WIDGET (button);
-        AudaciousPButtonPrivate *priv = AUDACIOUS_PBUTTON_GET_PRIVATE (button);
-        priv->double_size = !priv->double_size;
-
-        gtk_widget_set_size_request(widget, priv->w*(1+priv->double_size), priv->h*(1+priv->double_size));
-        gtk_widget_set_uposition(widget, button->x*(1+priv->double_size), button->y*(1+priv->double_size));
-
-        button->redraw = TRUE;
-        audacious_pbutton_paint(button);
-}
-
-static void audacious_pbutton_paint(AudaciousPButton *button) {
-        GtkWidget *widget = GTK_WIDGET (button);
-        AudaciousPButtonPrivate *priv = AUDACIOUS_PBUTTON_GET_PRIVATE (button);
-
-        if (button->redraw == TRUE) {
-            button->redraw = FALSE;
-            GdkPixmap *obj;
-            obj = gdk_pixmap_new(NULL, priv->w, priv->h, gdk_rgb_get_visual()->depth);
-            skin_draw_pixmap(bmp_active_skin, obj, priv->gc, priv->skin_index2,
-                             button->pressed ? button->px : button->nx,
-                             button->pressed ? button->py : button->ny,
-                             0, 0, priv->w, priv->h);
-            if(priv->double_size) {
-                 GdkImage *img, *img2x;
-                 img = gdk_drawable_get_image(obj, 0, 0, priv->w, priv->h);
-                 img2x = create_dblsize_image(img);
-                 gtk_image_set(GTK_IMAGE(priv->image), img2x, NULL);
-                 g_object_unref(img2x);
-                 g_object_unref(img);
-            } else
-                 gtk_image_set_from_pixmap(GTK_IMAGE(priv->image), obj, NULL);
-        g_object_unref(obj);
-        gtk_widget_queue_resize(widget);
-        }
-}
-
-static void audacious_pbutton_redraw(AudaciousPButton *button) {
-        button->redraw = TRUE;
-        audacious_pbutton_paint(button);
-}
--- a/src/audacious/widgets/audacious_pbutton.h	Sun Jun 17 10:14:02 2007 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,79 +0,0 @@
-/*
- * Audacious - a cross-platform multimedia player
- * Copyright (c) 2007  Audacious development team.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-#ifndef _WIDGETCORE_H_
-#error Please do not include me directly! Use widgetcore.h instead!
-#endif
-
-#ifndef AUDAPBUTTON_H
-#define AUDAPBUTTON_H
-
-#include <gdk/gdk.h>
-#include <gtk/gtkbin.h>
-#include <gtk/gtkenums.h>
-#include "skin.h"
-#include "widget.h"
-
-#define AUDACIOUS_TYPE_PBUTTON		(audacious_pbutton_get_type())
-#define AUDACIOUS_PBUTTON(obj)		(G_TYPE_CHECK_INSTANCE_CAST ((obj), AUDACIOUS_TYPE_PBUTTON, AudaciousPButton))
-#define AUDACIOUS_PBUTTON_CLASS(klass)	(G_TYPE_CHECK_CLASS_CAST ((klass), AUDACIOUS_TYPE_PBUTTON, AudaciousPButtonClass))
-#define AUDACIOUS_IS_PBUTTON(obj)		(G_TYPE_CHECK_INSTANCE_TYPE ((obj), AUDACIOUS_TYPE_PBUTTON))
-#define AUDACIOUS_IS_PBUTTON_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE ((klass), AUDACIOUS_TYPE_PBUTTON))
-#define AUDACIOUS_PBUTTON_GET_CLASS(obj)	(G_TYPE_INSTANCE_GET_CLASS ((obj), AUDACIOUS_TYPE_PBUTTON, GtkFlatButtonClass))
-
-typedef struct _AudaciousPButton		AudaciousPButton;
-typedef struct _AudaciousPButtonClass	AudaciousPButtonClass;
-
-enum {
-	PRESSED,
-	RELEASED,
-	CLICKED,
-	DOUBLED,
-	REDRAW,
-	LAST_SIGNAL
-};
-
-struct _AudaciousPButton {
-	GtkBin bin;
-
-	GdkWindow *event_window;
-
-	gboolean button_down : 1;
-	gboolean pressed : 1;
-	gboolean hover : 1;
-	//Skinned part, used in ui_playlist.c
-	gint x, y, nx, ny, px, py;
-
-	gboolean redraw;
-};
-
-struct _AudaciousPButtonClass {
-	GtkBinClass parent_class;
-	void (* pressed)  (AudaciousPButton *button);
-	void (* released) (AudaciousPButton *button);
-	void (* clicked)  (AudaciousPButton *button);
-	void (* doubled)  (AudaciousPButton *button);
-	void (* redraw)   (AudaciousPButton *button);
-};
-
-GType audacious_pbutton_get_type(void) G_GNUC_CONST;
-GtkWidget* audacious_pbutton_new();
-void audacious_pbutton_setup(GtkWidget *button, GtkWidget *fixed, GdkPixmap * parent, GdkGC * gc, gint x, gint y, gint w, gint h, gint nx, gint ny, gint px, gint py, SkinPixmapId si);
-
-#endif
--- a/src/audacious/widgets/widgetcore.h	Sun Jun 17 10:14:02 2007 +0900
+++ b/src/audacious/widgets/widgetcore.h	Sun Jun 17 12:54:59 2007 +0200
@@ -20,7 +20,6 @@
 #ifndef _WIDGETCORE_H_
 #define _WIDGETCORE_H_
 
-#include "audacious_pbutton.h"
 #include "tbutton.h"
 #include "eq_graph.h"
 #include "eq_slider.h"