changeset 2744:8ab4ef180201 trunk

[svn] - auddrct: more calls implemented (part 3)
author giacomo
date Fri, 11 May 2007 18:12:56 -0700
parents 2e86136729f1
children 72781ef7ece3
files ChangeLog src/audacious/auddrct.c src/audacious/auddrct.h src/audacious/build_stamp.c
diffstat 4 files changed, 19 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- 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 <james@develia.org>
+  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 <james@develia.org>
   revision [4510]
   - auddrct: more calls implemented
--- 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)
--- 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 );
--- 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 <glib.h>
-const gchar *svn_stamp = "20070512-4510";
+const gchar *svn_stamp = "20070512-4512";