Mercurial > audlegacy
changeset 2743:2e86136729f1 trunk
[svn] - auddrct: more calls implemented (part 2)
author | giacomo |
---|---|
date | Fri, 11 May 2007 18:04:31 -0700 |
parents | 1333d28e2c50 |
children | 8ab4ef180201 |
files | ChangeLog src/audacious/auddrct.c src/audacious/auddrct.h src/audacious/build_stamp.c |
diffstat | 4 files changed, 18 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri May 11 17:58:39 2007 -0700 +++ b/ChangeLog Fri May 11 18:04:31 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-12 00:58:39 +0000 Giacomo Lozito <james@develia.org> + revision [4510] + - auddrct: more calls implemented + trunk/src/audacious/auddrct.c | 80 ++++++++++++++++++++++++++++++++++++++++++ + trunk/src/audacious/auddrct.h | 13 ++++++ + 2 files changed, 93 insertions(+) + + 2007-05-12 00:49:37 +0000 Giacomo Lozito <james@develia.org> revision [4508] - fix cfg options for visibility
--- a/src/audacious/auddrct.c Fri May 11 17:58:39 2007 -0700 +++ b/src/audacious/auddrct.c Fri May 11 18:04:31 2007 -0700 @@ -21,9 +21,12 @@ plugins, originally intended for migration from xmms_remote_* calls */ +#include "main.h" #include "input.h" #include "playback.h" #include "ui_main.h" +#include "ui_playlist.h" +#include "ui_equalizer.h" /* player */ @@ -50,7 +53,7 @@ } void -audacious_drct_main_win_show ( void ) +audacious_drct_main_win_show ( gboolean show ) { if (has_x11_connection) mainwin_show(show); @@ -64,7 +67,7 @@ } void -audacious_drct_equalizer_show ( void ) +audacious_drct_equalizer_show ( gboolean show ) { if (has_x11_connection) equalizerwin_show(show); @@ -78,7 +81,7 @@ } void -audacious_drct_playlist_show ( void ) +audacious_drct_playlist_show ( gboolean show ) { if (has_x11_connection) { if (show)
--- a/src/audacious/auddrct.h Fri May 11 17:58:39 2007 -0700 +++ b/src/audacious/auddrct.h Fri May 11 18:04:31 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 ( void ); +void audacious_drct_main_win_show ( gboolean ); gboolean audacious_drct_equalizer_is_visible ( void ); -void audacious_drct_equalizer_show ( void ); +void audacious_drct_equalizer_show ( gboolean ); gboolean audacious_drct_playlist_is_visible ( void ); -void audacious_drct_playlist_show ( void ); +void audacious_drct_playlist_show ( gboolean ); /* playback */ void audacious_drct_play ( void );