]> git.sesse.net Git - vlc/commitdiff
notify: Adds a button to skip current element
authorRafaël Carré <funman@videolan.org>
Sat, 25 Aug 2007 03:11:13 +0000 (03:11 +0000)
committerRafaël Carré <funman@videolan.org>
Sat, 25 Aug 2007 03:11:13 +0000 (03:11 +0000)
modules/misc/notify/notify.c

index b923795024117d71f2ef0091b59aac45fff3cb4d..53771003332abc4e927ea571de7285227564551f 100644 (file)
@@ -220,6 +220,14 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
     return VLC_SUCCESS;
 }
 
+static void Skip( NotifyNotification *notification, gchar *psz, gpointer p )
+{ /* libnotify callback, called when the Skip button is pressed */
+    notify_notification_close (notification, NULL);
+    playlist_t *p_playlist = pl_Yield( ((vlc_object_t*) p) );
+    playlist_Next( p_playlist );
+    pl_Release( ((vlc_object_t*) p) );
+}
+
 static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix,
                    intf_thread_t *p_intf )
 {
@@ -241,6 +249,10 @@ static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix,
         gdk_pixbuf_unref( pix );
     }
 
+    /* Adds a button in the notification to skip current element */
+    notify_notification_add_action( notification, "next", _("Skip"), Skip,
+                                    (gpointer*) p_intf, NULL );
+
     notify_notification_show( notification, NULL);
 
     /* Stores the notification to be able to close it */