# HG changeset patch # User giacomo # Date 1178932376 25200 # Node ID 8ab4ef180201d8f019744a578e8001f2131de041 # Parent 2e86136729f185d2857b8431a050766e29900880 [svn] - auddrct: more calls implemented (part 3) diff -r 2e86136729f1 -r 8ab4ef180201 ChangeLog --- a/ChangeLog Fri May 11 18:04:31 2007 -0700 +++ b/ChangeLog Fri May 11 18:12:56 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-12 01:04:31 +0000 Giacomo Lozito + revision [4512] + - auddrct: more calls implemented (part 2) + trunk/src/audacious/auddrct.c | 9 ++++++--- + trunk/src/audacious/auddrct.h | 6 +++--- + 2 files changed, 9 insertions(+), 6 deletions(-) + + 2007-05-12 00:58:39 +0000 Giacomo Lozito revision [4510] - auddrct: more calls implemented diff -r 2e86136729f1 -r 8ab4ef180201 src/audacious/auddrct.c --- a/src/audacious/auddrct.c Fri May 11 18:04:31 2007 -0700 +++ b/src/audacious/auddrct.c Fri May 11 18:12:56 2007 -0700 @@ -53,7 +53,7 @@ } void -audacious_drct_main_win_show ( gboolean show ) +audacious_drct_main_win_toggle ( gboolean show ) { if (has_x11_connection) mainwin_show(show); @@ -61,13 +61,13 @@ } gboolean -audacious_drct_equalizer_is_visible ( void ) +audacious_drct_eq_win_is_visible ( void ) { return cfg.equalizer_visible; } void -audacious_drct_equalizer_show ( gboolean show ) +audacious_drct_eq_win_toggle ( gboolean show ) { if (has_x11_connection) equalizerwin_show(show); @@ -75,13 +75,13 @@ } gboolean -audacious_drct_playlist_is_visible ( void ) +audacious_drct_pl_win_is_visible ( void ) { return cfg.playlist_visible; } void -audacious_drct_playlist_show ( gboolean show ) +audacious_drct_pl_win_toggle ( gboolean show ) { if (has_x11_connection) { if (show) diff -r 2e86136729f1 -r 8ab4ef180201 src/audacious/auddrct.h --- a/src/audacious/auddrct.h Fri May 11 18:04:31 2007 -0700 +++ b/src/audacious/auddrct.h Fri May 11 18:12:56 2007 -0700 @@ -26,11 +26,11 @@ void audacious_drct_quit ( void ); void audacious_drct_eject ( void ); gboolean audacious_drct_main_win_is_visible ( void ); -void audacious_drct_main_win_show ( gboolean ); -gboolean audacious_drct_equalizer_is_visible ( void ); -void audacious_drct_equalizer_show ( gboolean ); -gboolean audacious_drct_playlist_is_visible ( void ); -void audacious_drct_playlist_show ( gboolean ); +void audacious_drct_main_win_toggle ( gboolean ); +gboolean audacious_drct_eq_win_is_visible ( void ); +void audacious_drct_eq_win_toggle ( gboolean ); +gboolean audacious_drct_pl_win_is_visible ( void ); +void audacious_drct_pl_win_toggle ( gboolean ); /* playback */ void audacious_drct_play ( void ); diff -r 2e86136729f1 -r 8ab4ef180201 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Fri May 11 18:04:31 2007 -0700 +++ b/src/audacious/build_stamp.c Fri May 11 18:12:56 2007 -0700 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070512-4510"; +const gchar *svn_stamp = "20070512-4512";