diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-04-09 22:22:23 +0200 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-04-09 22:22:23 +0200 |
commit | 49508a75eeb63ab65f6cb84c14e46e679fad2688 (patch) | |
tree | dedd7b5c03ad8b411ecd26277bcc3f00527dabcc /plugins/gtkui/callbacks.h | |
parent | 133b2f31913b25ff222bd9ba9aa716a990e0d94a (diff) |
implemented seekbar gtk widget in vala
Diffstat (limited to 'plugins/gtkui/callbacks.h')
-rw-r--r-- | plugins/gtkui/callbacks.h | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/plugins/gtkui/callbacks.h b/plugins/gtkui/callbacks.h index 56da05c9..09dad46d 100644 --- a/plugins/gtkui/callbacks.h +++ b/plugins/gtkui/callbacks.h @@ -247,30 +247,10 @@ void on_playlist_save_as_activate (GtkMenuItem *menuitem, gpointer user_data); -gboolean -on_seekbar_button_press_event (GtkWidget *widget, - GdkEventButton *event, - gpointer user_data); - -gboolean -on_seekbar_button_release_event (GtkWidget *widget, - GdkEventButton *event, - gpointer user_data); - -gboolean -on_seekbar_configure_event (GtkWidget *widget, - GdkEventConfigure *event, - gpointer user_data); - -gboolean -on_seekbar_expose_event (GtkWidget *widget, - GdkEventExpose *event, - gpointer user_data); gboolean on_seekbar_motion_notify_event (GtkWidget *widget, - GdkEventMotion *event, - gpointer user_data); + GdkEventMotion *event); gboolean on_volumebar_button_press_event (GtkWidget *widget, @@ -949,3 +929,7 @@ gboolean on_mainwin_motion_notify_event (GtkWidget *widget, GdkEventMotion *event, gpointer user_data); + +GtkWidget* +create_seekbar (gchar *widget_name, gchar *string1, gchar *string2, + gint int1, gint int2); |