# HG changeset patch # User nenolod # Date 1163338728 28800 # Node ID fcf3900d05b98c8e316c19d876c3e8e6acf3dd0f # Parent b17f7a09fdd37464dc51e771107713b5e1b7b33f [svn] - temporarily display the newui at startup along with the oldui diff -r b17f7a09fdd3 -r fcf3900d05b9 ChangeLog --- a/ChangeLog Sun Nov 12 05:38:04 2006 -0800 +++ b/ChangeLog Sun Nov 12 05:38:48 2006 -0800 @@ -1,3 +1,11 @@ +2006-11-12 13:38:04 +0000 William Pitcock + revision [2905] + - add some more controls (seekbar and such) + + trunk/audacious/glade/newui.glade | 891 +++++++++++++++++++++----------------- + 1 file changed, 499 insertions(+), 392 deletions(-) + + 2006-11-12 11:09:28 +0000 William Pitcock revision [2903] - avoid freeing a NULL pointer in ui_fileinfo.c diff -r b17f7a09fdd3 -r fcf3900d05b9 audacious/main.c --- a/audacious/main.c Sun Nov 12 05:38:04 2006 -0800 +++ b/audacious/main.c Sun Nov 12 05:38:48 2006 -0800 @@ -76,6 +76,8 @@ #include "pixmaps.h" #include "images/audacious_player.xpm" +#include "newui/newui_window.h" + gboolean has_x11_connection = FALSE; /* do we have an X11 connection? */ /* Translatable string for beep.desktop's comment field */ @@ -1132,6 +1134,9 @@ create_fileinfo_window(); create_filepopup_window(); + create_newui_window(); + show_newui_window(); + if (cfg.player_visible) mainwin_show(TRUE); else if (!cfg.playlist_visible && !cfg.equalizer_visible) @@ -1160,7 +1165,11 @@ output_get_volume(&l, &r); output_set_volume(0,0); bmp_playback_initiate(); - for (i = 0; i < 20; i++) { /* Busy wait; loop is fairly tight to minimize duration of "frozen" GUI. Feel free to tune. --chainsaw */ + + /* Busy wait; loop is fairly tight to minimize duration of "frozen" GUI. Feel free to + * tune. --chainsaw + */ + for (i = 0; i < 20; i++) { g_usleep(1000); if (!ip_data.playing) break;