diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2004-08-02 07:58:43 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2004-08-02 07:58:43 +0000 |
commit | 1763a630c8eb0594391f0ac32e459432513befac (patch) | |
tree | f62357c4cf62f64dd2690106d35830dcf157b69a /x11-libs/xosd/files | |
parent | Removed GNAT 5.0 snapshots and added the new GCC 3.4.1-based GNAT (Manifest r... (diff) | |
download | gentoo-2-1763a630c8eb0594391f0ac32e459432513befac.tar.gz gentoo-2-1763a630c8eb0594391f0ac32e459432513befac.tar.bz2 gentoo-2-1763a630c8eb0594391f0ac32e459432513befac.zip |
add xmms trackpos patch again, bug #57985
Diffstat (limited to 'x11-libs/xosd/files')
-rw-r--r-- | x11-libs/xosd/files/2.2.8-xmms-trackpos.patch | 139 | ||||
-rw-r--r-- | x11-libs/xosd/files/digest-xosd-2.2.8-r1 | 1 | ||||
-rw-r--r-- | x11-libs/xosd/files/xosd-2.2.4-xmms-trackpos.patch | 97 |
3 files changed, 140 insertions, 97 deletions
diff --git a/x11-libs/xosd/files/2.2.8-xmms-trackpos.patch b/x11-libs/xosd/files/2.2.8-xmms-trackpos.patch new file mode 100644 index 000000000000..06d3e7cb7bc6 --- /dev/null +++ b/x11-libs/xosd/files/2.2.8-xmms-trackpos.patch @@ -0,0 +1,139 @@ +diff -rc xosd-2.2.8/src/xmms_plugin/dlg_config.c xosd-2.2.8.patch/src/xmms_plugin/dlg_config.c +*** xosd-2.2.8/src/xmms_plugin/dlg_config.c Fri Oct 3 02:09:32 2003 +--- xosd-2.2.8.patch/src/xmms_plugin/dlg_config.c Thu Jul 22 19:53:58 2004 +*************** +*** 26,32 **** + + static GtkToggleButton + * vol_on, *bal_on, +! *pause_on, *trackname_on, *stop_on, *repeat_on, *shuffle_on; + static GtkWidget *configure_win; + static GtkObject *timeout_obj, *offset_obj, *h_offset_obj, *shadow_obj, + *outline_obj; +--- 26,32 ---- + + static GtkToggleButton + * vol_on, *bal_on, +! *pause_on, *trackname_on, *stop_on, *repeat_on, *shuffle_on, *listpos_on; + static GtkWidget *configure_win; + static GtkObject *timeout_obj, *offset_obj, *h_offset_obj, *shadow_obj, + *outline_obj; +*************** +*** 58,64 **** + show.stop = isactive(stop_on); + show.repeat = isactive(repeat_on); + show.shuffle = isactive(shuffle_on); +! + + if (colour) + g_free(colour); +--- 58,64 ---- + show.stop = isactive(stop_on); + show.repeat = isactive(repeat_on); + show.shuffle = isactive(shuffle_on); +! show.listpos = isactive(listpos_on); + + if (colour) + g_free(colour); +*************** +*** 532,542 **** + show_item(vbox2, "Balance", show.balance, &bal_on); + show_item(vbox2, "Pause", show.pause, &pause_on); + show_item(vbox2, "Track Name", show.trackname, &trackname_on); +! vbox2 = gtk_vbox_new(FALSE, 5); + gtk_box_pack_start(GTK_BOX(hbox2), vbox2, FALSE, FALSE, 0); + show_item(vbox2, "Stop", show.stop, &stop_on); + show_item(vbox2, "Repeat", show.repeat, &repeat_on); + show_item(vbox2, "Shuffle", show.shuffle, &shuffle_on); + + sep = gtk_hseparator_new(); + gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); +--- 532,543 ---- + show_item(vbox2, "Balance", show.balance, &bal_on); + show_item(vbox2, "Pause", show.pause, &pause_on); + show_item(vbox2, "Track Name", show.trackname, &trackname_on); +! vbox2 = gtk_vbox_new(FALSE, 4); + gtk_box_pack_start(GTK_BOX(hbox2), vbox2, FALSE, FALSE, 0); + show_item(vbox2, "Stop", show.stop, &stop_on); + show_item(vbox2, "Repeat", show.repeat, &repeat_on); + show_item(vbox2, "Shuffle", show.shuffle, &shuffle_on); ++ show_item (vbox2, "Playlist Position", show.listpos, &listpos_on); + + sep = gtk_hseparator_new(); + gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); +diff -rc xosd-2.2.8/src/xmms_plugin/xmms_osd.c xosd-2.2.8.patch/src/xmms_plugin/xmms_osd.c +*** xosd-2.2.8/src/xmms_plugin/xmms_osd.c Fri Oct 3 02:09:31 2003 +--- xosd-2.2.8.patch/src/xmms_plugin/xmms_osd.c Thu Jul 22 23:15:50 2004 +*************** +*** 170,175 **** +--- 170,176 ---- + show.stop = 1; + show.repeat = 1; + show.shuffle = 1; ++ show.listpos = 1; + + g_free(colour); + g_free(font); +*************** +*** 201,206 **** +--- 202,208 ---- + xmms_cfg_read_int(cfgfile, "osd", "show_stop", &show.stop); + xmms_cfg_read_int(cfgfile, "osd", "show_repeat", &show.repeat); + xmms_cfg_read_int(cfgfile, "osd", "show_shuffle", &show.shuffle); ++ xmms_cfg_read_int(cfgfile, "osd", "show_listpos", &show.listpos); + xmms_cfg_free(cfgfile); + } + +*************** +*** 242,247 **** +--- 244,250 ---- + xmms_cfg_write_int(cfgfile, "osd", "show_stop", show.stop); + xmms_cfg_write_int(cfgfile, "osd", "show_repeat", show.repeat); + xmms_cfg_write_int(cfgfile, "osd", "show_shuffle", show.shuffle); ++ xmms_cfg_write_int(cfgfile, "osd", "show_listpos", show.listpos); + + xmms_cfg_write_default_file(cfgfile); + xmms_cfg_free(cfgfile); +*************** +*** 386,395 **** + title = malloc(len); + playlist_time = + withtime ? xmms_remote_get_output_time(gp.xmms_session) : 0; +! snprintf(title, len, + withtime ? "%i/%i: %s (%i:%02i)" : "%i/%i: %s", + current.pos + 1, playlist_length, current.title, + playlist_time / 1000 / 60, playlist_time / 1000 % 60); + replace_hexcodes(title); + xosd_display(osd, 1, XOSD_string, title); + free(title); +--- 389,405 ---- + title = malloc(len); + playlist_time = + withtime ? xmms_remote_get_output_time(gp.xmms_session) : 0; +! if (show.listpos) +! snprintf(title, len, + withtime ? "%i/%i: %s (%i:%02i)" : "%i/%i: %s", + current.pos + 1, playlist_length, current.title, + playlist_time / 1000 / 60, playlist_time / 1000 % 60); ++ else ++ snprintf(title, len, ++ withtime ? "%s (%i:%02i)" : "%s", ++ current.title, ++ playlist_time / 1000 / 60, playlist_time / 1000 % 60); ++ + replace_hexcodes(title); + xosd_display(osd, 1, XOSD_string, title); + free(title); +diff -rc xosd-2.2.8/src/xmms_plugin/xmms_osd.h xosd-2.2.8.patch/src/xmms_plugin/xmms_osd.h +*** xosd-2.2.8/src/xmms_plugin/xmms_osd.h Fri Oct 3 02:09:31 2003 +--- xosd-2.2.8.patch/src/xmms_plugin/xmms_osd.h Thu Jul 22 20:02:01 2004 +*************** +*** 21,26 **** +--- 21,27 ---- + gboolean stop; + gboolean repeat; + gboolean shuffle; ++ gboolean listpos; + }; + extern struct show show; + diff --git a/x11-libs/xosd/files/digest-xosd-2.2.8-r1 b/x11-libs/xosd/files/digest-xosd-2.2.8-r1 new file mode 100644 index 000000000000..c466c31d987e --- /dev/null +++ b/x11-libs/xosd/files/digest-xosd-2.2.8-r1 @@ -0,0 +1 @@ +MD5 85b00f6609603139855775d6213980cb xosd-2.2.8.tar.bz2 281156 diff --git a/x11-libs/xosd/files/xosd-2.2.4-xmms-trackpos.patch b/x11-libs/xosd/files/xosd-2.2.4-xmms-trackpos.patch deleted file mode 100644 index 995858392fe4..000000000000 --- a/x11-libs/xosd/files/xosd-2.2.4-xmms-trackpos.patch +++ /dev/null @@ -1,97 +0,0 @@ -diff -u -r xosd-2.2.4/src/xmms_plugin/dlg_config.c xosd-2.2.4.org/src/xmms_plugin/dlg_config.c ---- xosd-2.2.4/src/xmms_plugin/dlg_config.c 2003-09-12 15:31:17.802118056 +0200 -+++ xosd-2.2.4.org/src/xmms_plugin/dlg_config.c 2003-09-12 15:31:58.468935760 +0200 -@@ -28,7 +28,7 @@ - *vol_on, *bal_on, - *pause_on, *trackname_on, - *stop_on, *repeat_on, -- *shuffle_on; -+ *shuffle_on, *listpos_on; - static GtkWidget *configure_win; - static GtkObject *timeout_obj, *offset_obj, *h_offset_obj, *shadow_obj, *outline_obj; - static GtkWidget *timeout_spin,*offset_spin, *h_offset_spin, *shadow_spin, *outline_spin; -@@ -58,7 +58,7 @@ - show.stop = isactive (stop_on); - show.repeat = isactive (repeat_on); - show.shuffle = isactive (shuffle_on); -- -+ show.listpos = isactive (listpos_on); - - if (colour) - g_free (colour); -@@ -530,11 +530,12 @@ - show_item (vbox2, "Balance", show.balance, &bal_on); - show_item (vbox2, "Pause", show.pause, &pause_on); - show_item (vbox2, "Track Name", show.trackname, &trackname_on); -- vbox2 = gtk_vbox_new (FALSE, 5); -+ vbox2 = gtk_vbox_new (FALSE, 4); - gtk_box_pack_start (GTK_BOX (hbox2), vbox2, FALSE, FALSE, 0); - show_item (vbox2, "Stop", show.stop, &stop_on); - show_item (vbox2, "Repeat", show.repeat, &repeat_on); - show_item (vbox2, "Shuffle", show.shuffle, &shuffle_on); -+ show_item (vbox2, "Playlist Position", show.listpos, &listpos_on); - - sep = gtk_hseparator_new (); - gtk_box_pack_start (GTK_BOX (vbox), sep, FALSE, FALSE, 0); -diff -u -r xosd-2.2.4/src/xmms_plugin/xmms_osd.c xosd-2.2.4.org/src/xmms_plugin/xmms_osd.c ---- xosd-2.2.4/src/xmms_plugin/xmms_osd.c 2003-09-12 15:31:17.802118056 +0200 -+++ xosd-2.2.4.org/src/xmms_plugin/xmms_osd.c 2003-09-12 15:30:37.301275120 +0200 -@@ -175,6 +175,7 @@ - show.stop = 1; - show.repeat = 1; - show.shuffle = 1; -+ show.listpos = 1; - - g_free (colour); - g_free (font); -@@ -206,6 +207,7 @@ - xmms_cfg_read_int (cfgfile, "osd", "show_stop", &show.stop ); - xmms_cfg_read_int (cfgfile, "osd", "show_repeat", &show.repeat ); - xmms_cfg_read_int (cfgfile, "osd", "show_shuffle", &show.shuffle ); -+ xmms_cfg_read_int (cfgfile, "osd", "show_listpos", &show.listpos ); - xmms_cfg_free (cfgfile); - } - -@@ -247,6 +249,7 @@ - xmms_cfg_write_int (cfgfile, "osd", "show_stop", show.stop ); - xmms_cfg_write_int (cfgfile, "osd", "show_repeat", show.repeat ); - xmms_cfg_write_int (cfgfile, "osd", "show_shuffle", show.shuffle ); -+ xmms_cfg_write_int (cfgfile, "osd", "show_listpos", show.listpos ); - - xmms_cfg_write_default_file (cfgfile); - xmms_cfg_free (cfgfile); -@@ -373,7 +376,10 @@ - if (title!=NULL) - { - title2=malloc(strlen(current.title)+26); -- sprintf(title2,"%i/%i: %s",xmms_remote_get_playlist_pos (gp.xmms_session)+1,xmms_remote_get_playlist_length (gp.xmms_session),current.title); -+ if (show.listpos) -+ sprintf(title2,"%i/%i: %s",xmms_remote_get_playlist_pos (gp.xmms_session)+1,xmms_remote_get_playlist_length (gp.xmms_session),current.title); -+ else -+ sprintf(title2,"%s",current.title); - } - } - } -@@ -394,7 +400,10 @@ - if (current.title!=NULL) - { - title2=malloc(strlen(current.title)+52); -- sprintf(title2,"%i/%i: %s (%.2i:%.2i)",xmms_remote_get_playlist_pos (gp.xmms_session)+1,xmms_remote_get_playlist_length (gp.xmms_session),current.title,xmms_remote_get_output_time(gp.xmms_session)/1000/60,xmms_remote_get_output_time(gp.xmms_session)/1000%60); -+ if (show.listpos) -+ sprintf(title2,"%i/%i: %s (%.2i:%.2i)",xmms_remote_get_playlist_pos (gp.xmms_session)+1,xmms_remote_get_playlist_length (gp.xmms_session),current.title,xmms_remote_get_output_time(gp.xmms_session)/1000/60,xmms_remote_get_output_time(gp.xmms_session)/1000%60); -+ else -+ sprintf(title2,"%s (%.2i:%.2i)",current.title,xmms_remote_get_output_time(gp.xmms_session)/1000/60,xmms_remote_get_output_time(gp.xmms_session)/1000%60); - } - } - } -diff -u -r xosd-2.2.4/src/xmms_plugin/xmms_osd.h xosd-2.2.4.org/src/xmms_plugin/xmms_osd.h ---- xosd-2.2.4/src/xmms_plugin/xmms_osd.h 2003-09-12 15:31:17.802118056 +0200 -+++ xosd-2.2.4.org/src/xmms_plugin/xmms_osd.h 2003-09-12 15:30:37.301275120 +0200 -@@ -20,6 +20,7 @@ - gboolean stop; - gboolean repeat; - gboolean shuffle; -+ gboolean listpos; - }; - extern struct show show; - |