Commit f82668b3 authored by Laurent Aimar's avatar Laurent Aimar

Cosmetics (notify)

parent 10ba2914
...@@ -135,7 +135,11 @@ static void Close( vlc_object_t *p_this ) ...@@ -135,7 +135,11 @@ static void Close( vlc_object_t *p_this )
pl_Release( p_this ); pl_Release( p_this );
if( p_sys->notification ) if( p_sys->notification )
{
GError *p_error = NULL;
notify_notification_close( p_sys->notification, &p_error );
g_object_unref( p_sys->notification ); g_object_unref( p_sys->notification );
}
vlc_mutex_destroy( &p_sys->lock ); vlc_mutex_destroy( &p_sys->lock );
free( p_sys ); free( p_sys );
...@@ -169,7 +173,9 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -169,7 +173,9 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
vlc_object_release( p_input ); vlc_object_release( p_input );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/*Wait a tad so the meta has been fetched*/
/* Wait a tad so the meta has been fetched
* FIXME that's awfully wrong */
msleep( 1000*4 ); msleep( 1000*4 );
/* Playing something ... */ /* Playing something ... */
...@@ -215,21 +221,20 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -215,21 +221,20 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
free( psz_album ); free( psz_album );
GdkPixbuf *pix = NULL; GdkPixbuf *pix = NULL;
GError *p_error = NULL;
psz_arturl = input_item_GetArtURL( p_input_item ); psz_arturl = input_item_GetArtURL( p_input_item );
vlc_object_release( p_input ); vlc_object_release( p_input );
if( psz_arturl && !strncmp( psz_arturl, "file://", 7 ) && if( psz_arturl && !strncmp( psz_arturl, "file://", 7 ) &&
strlen( psz_arturl ) > 7 ) strlen( psz_arturl ) > 7 )
{ /* scale the art to show it in notify popup */ { /* scale the art to show it in notify popup */
gboolean b = TRUE; GError *p_error = NULL;
pix = gdk_pixbuf_new_from_file_at_scale( pix = gdk_pixbuf_new_from_file_at_scale( &psz_arturl[7],
(psz_arturl + 7), 72, 72, b, &p_error ); 72, 72, TRUE, &p_error );
free( psz_arturl ); free( psz_arturl );
} }
else /* else we show state-of-the art logo */ else /* else we show state-of-the art logo */
{ {
GError *p_error = NULL;
char *psz_pixbuf; char *psz_pixbuf;
if( asprintf( &psz_pixbuf, "%s/vlc48x48.png", config_GetDataDir() ) >= 0 ) if( asprintf( &psz_pixbuf, "%s/vlc48x48.png", config_GetDataDir() ) >= 0 )
{ {
...@@ -240,18 +245,19 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -240,18 +245,19 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
/* we need to replace '&' with '&' because '&' is a keyword of /* we need to replace '&' with '&' because '&' is a keyword of
* notification-daemon parser */ * notification-daemon parser */
int i_notify, i_len, i; const int i_len = strlen( psz_tmp );
i_len = strlen( psz_tmp ); int i_notify = 0;
i_notify = 0; for( int i = 0; i < i_len && i_notify < ( MAX_LENGTH - 5 ); i++ )
for( i = 0; ( ( i < i_len ) && ( i_notify < ( MAX_LENGTH - 5 ) ) ); i++ )
{ /* we use MAX_LENGTH - 5 because if the last char of psz_tmp is '&' { /* we use MAX_LENGTH - 5 because if the last char of psz_tmp is '&'
* we will need 5 more characters: 'amp;\0' . * we will need 5 more characters: 'amp;\0' .
* however that's unlikely to happen because the last char is '\0' */ * however that's unlikely to happen because the last char is '\0' */
if( psz_tmp[i] != '&' ) if( psz_tmp[i] != '&' )
{
psz_notify[i_notify] = psz_tmp[i]; psz_notify[i_notify] = psz_tmp[i];
}
else else
{ {
snprintf( psz_notify + i_notify, 6, "&amp;" ); snprintf( &psz_notify[i_notify], 6, "&amp;" );
i_notify += 4; i_notify += 4;
} }
i_notify++; i_notify++;
...@@ -269,20 +275,24 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -269,20 +275,24 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
static void Next( NotifyNotification *notification, gchar *psz, gpointer p ) static void Next( NotifyNotification *notification, gchar *psz, gpointer p )
{ /* libnotify callback, called when the "Next" button is pressed */ { /* libnotify callback, called when the "Next" button is pressed */
vlc_object_t *p_object = (vlc_object_t*)p;
VLC_UNUSED(psz); VLC_UNUSED(psz);
notify_notification_close (notification, NULL); notify_notification_close( notification, NULL );
playlist_t *p_playlist = pl_Hold( ((vlc_object_t*) p) ); playlist_t *p_playlist = pl_Hold( p_object );
playlist_Next( p_playlist ); playlist_Next( p_playlist );
pl_Release( ((vlc_object_t*) p) ); pl_Release( p_object );
} }
static void Prev( NotifyNotification *notification, gchar *psz, gpointer p ) static void Prev( NotifyNotification *notification, gchar *psz, gpointer p )
{ /* libnotify callback, called when the "Previous" button is pressed */ { /* libnotify callback, called when the "Previous" button is pressed */
vlc_object_t *p_object = (vlc_object_t*)p;
VLC_UNUSED(psz); VLC_UNUSED(psz);
notify_notification_close (notification, NULL); notify_notification_close( notification, NULL );
playlist_t *p_playlist = pl_Hold( ((vlc_object_t*) p) ); playlist_t *p_playlist = pl_Hold( p_object );
playlist_Prev( p_playlist ); playlist_Prev( p_playlist );
pl_Release( ((vlc_object_t*) p) ); pl_Release( p_object );
} }
static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix, static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix,
...@@ -301,7 +311,7 @@ static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix, ...@@ -301,7 +311,7 @@ static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix,
} }
notification = notify_notification_new( _("Now Playing"), notification = notify_notification_new( _("Now Playing"),
psz_temp, NULL, NULL); psz_temp, NULL, NULL );
notify_notification_set_timeout( notification, notify_notification_set_timeout( notification,
config_GetInt(p_this, "notify-timeout") ); config_GetInt(p_this, "notify-timeout") );
notify_notification_set_urgency( notification, NOTIFY_URGENCY_LOW ); notify_notification_set_urgency( notification, NOTIFY_URGENCY_LOW );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment