changeset 2500:04642d2d0941 trunk

[svn] - split out jump to track
author nenolod
date Sat, 10 Feb 2007 20:47:46 -0800
parents 15a1f5ee4d1c
children 2e6a15f364b3
files ChangeLog src/audacious/Makefile src/audacious/build_stamp.c src/audacious/controlsocket.c src/audacious/ui_fileopener.c src/audacious/ui_jumptotrack.c src/audacious/ui_jumptotrack.h src/audacious/ui_main.c
diffstat 8 files changed, 647 insertions(+), 524 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Feb 10 20:21:42 2007 -0800
+++ b/ChangeLog	Sat Feb 10 20:47:46 2007 -0800
@@ -1,3 +1,17 @@
+2007-02-11 04:21:42 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [4008]
+  - playlist_manager -> ui_playlist_manager, since it's a UI component.
+  
+  trunk/src/audacious/Makefile              |    2 
+  trunk/src/audacious/playlist.c            |    2 
+  trunk/src/audacious/playlist_manager.c    |  366 ------------------------------
+  trunk/src/audacious/playlist_manager.h    |   24 -
+  trunk/src/audacious/ui_playlist.c         |    2 
+  trunk/src/audacious/ui_playlist_manager.c |  366 ++++++++++++++++++++++++++++++
+  trunk/src/audacious/ui_playlist_manager.h |   24 +
+  7 files changed, 393 insertions(+), 393 deletions(-)
+
+
 2007-02-11 04:16:31 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [4006]
   - bring hints.h into something we like to call reality
--- a/src/audacious/Makefile	Sat Feb 10 20:21:42 2007 -0800
+++ b/src/audacious/Makefile	Sat Feb 10 20:47:46 2007 -0800
@@ -82,6 +82,7 @@
 	ui_fileinfo.c \
 	ui_fileinfopopup.c \
 	ui_fileopener.c \
+	ui_jumptotrack.c \
 	ui_main.c \
 	ui_manager.c \
 	ui_playlist.c \
--- a/src/audacious/build_stamp.c	Sat Feb 10 20:21:42 2007 -0800
+++ b/src/audacious/build_stamp.c	Sat Feb 10 20:47:46 2007 -0800
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070211-4006";
+const gchar *svn_stamp = "20070211-4008";
--- a/src/audacious/controlsocket.c	Sat Feb 10 20:21:42 2007 -0800
+++ b/src/audacious/controlsocket.c	Sat Feb 10 20:47:46 2007 -0800
@@ -55,6 +55,7 @@
 #include "ui_preferences.h"
 #include "libaudacious/beepctrl.h"
 #include "memorypool.h"
+#include "ui_jumptotrack.h"
 
 #define CTRLSOCKET_BACKLOG        100
 #define CTRLSOCKET_TIMEOUT        100000
@@ -715,7 +716,7 @@
         case CMD_SHOW_JTF_BOX:
 	    if (has_x11_connection != TRUE)
                 break;
-            mainwin_jump_to_file();
+            ui_jump_to_track();
             break;
         case CMD_TOGGLE_AOT:
 	    if (has_x11_connection != TRUE)
--- a/src/audacious/ui_fileopener.c	Sat Feb 10 20:21:42 2007 -0800
+++ b/src/audacious/ui_fileopener.c	Sat Feb 10 20:47:46 2007 -0800
@@ -36,9 +36,6 @@
     guint ctr = 0;
     Playlist *playlist = playlist_get_active();
 
-    if (GTK_IS_WIDGET(mainwin_jtf))
-        gtk_widget_set_sensitive(mainwin_jtf, FALSE);
-
     for (cur = files; cur; cur = g_slist_next(cur)) {
 
         if (g_file_test(cur->data,G_FILE_TEST_IS_DIR)) {
@@ -56,9 +53,6 @@
 
     playlistwin_update_list(playlist);
 
-    if (GTK_IS_WIDGET(mainwin_jtf))
-        gtk_widget_set_sensitive(mainwin_jtf, TRUE);
-
     ptr = gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(browser));
 
     g_free(cfg.filesel_path);
@@ -276,17 +270,12 @@
     char *ptr;
     Playlist *playlist = playlist_get_active();
 
-    if (GTK_IS_WIDGET(mainwin_jtf))
-    gtk_widget_set_sensitive(mainwin_jtf, FALSE);
 
     while (files[ctr] != NULL) {
-    playlist_add(playlist, files[ctr++]);
+        playlist_add(playlist, files[ctr++]);
     }
     playlistwin_update_list(playlist);
 
-    if (GTK_IS_WIDGET(mainwin_jtf))
-    gtk_widget_set_sensitive(mainwin_jtf, TRUE);
-
     gtk_label_get(GTK_LABEL(GTK_BIN(filesel->history_pulldown)->child),
           &ptr);
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/audacious/ui_jumptotrack.c	Sat Feb 10 20:47:46 2007 -0800
@@ -0,0 +1,594 @@
+/*  Audacious - Cross-platform multimedia player
+ *  Copyright (C) 2005-2006  Audacious development team.
+ *
+ *  BMP - Cross-platform multimedia player
+ *  Copyright (C) 2003-2004  BMP development team.
+ *
+ *  Based on XMMS:
+ *  Copyright (C) 1998-2003  XMMS development team.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; under version 2 of the License.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#  include "config.h"
+#endif
+
+
+#include <glib.h>
+#include <glib/gi18n.h>
+#include <glib/gprintf.h>
+#include <gtk/gtk.h>
+#include <gtk/gtkmessagedialog.h>
+
+/* GDK including */
+#include "platform/smartinclude.h"
+
+#include <math.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <X11/Xlib.h>
+
+#include <sys/types.h>
+
+#if defined(USE_REGEX_ONIGURUMA)
+  #include <onigposix.h>
+#elif defined(USE_REGEX_PCRE)
+  #include <pcreposix.h>
+#else
+  #include <regex.h>
+#endif
+
+#include "widgets/widgetcore.h"
+#include "ui_main.h"
+#include "icons-stock.h"
+
+#include "actions-mainwin.h"
+
+#include "main.h"
+
+#include "controlsocket.h"
+#include "dnd.h"
+#include "dock.h"
+#include "genevent.h"
+#include "hints.h"
+#include "input.h"
+#include "libaudacious/configdb.h"
+#include "urldecode.h"
+#include "playback.h"
+#include "playlist.h"
+#include "pluginenum.h"
+#include "ui_credits.h"
+#include "ui_equalizer.h"
+#include "ui_fileopener.h"
+#include "ui_manager.h"
+#include "ui_playlist.h"
+#include "ui_preferences.h"
+#include "ui_skinselector.h"
+#include "ui_urlopener.h"
+#include "strings.h"
+#include "util.h"
+#include "visualization.h"
+
+#include "ui_skinned_window.h"
+
+static GtkWidget *jump_to_track_win = NULL;
+
+static void
+change_song(guint pos)
+{
+    if (playback_get_playing())
+        playback_stop();
+
+    playlist_set_position(playlist_get_active(), pos);
+    playback_initiate();
+}
+
+static void
+ui_jump_to_track_jump(GtkTreeView * treeview)
+{
+    GtkTreeModel *model;
+    GtkTreeSelection *selection;
+    GtkTreeIter iter;
+    guint pos;
+
+    model = gtk_tree_view_get_model(treeview);
+    selection = gtk_tree_view_get_selection(treeview);
+
+    if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
+        return;
+
+    gtk_tree_model_get(model, &iter, 0, &pos, -1);
+
+    change_song(pos - 1);
+
+    /* FIXME: should only hide window */
+    gtk_widget_destroy(jump_to_track_win);
+    jump_to_track_win = NULL;
+}
+
+static void
+ui_jump_to_track_jump_cb(GtkTreeView * treeview,
+                             gpointer data)
+{
+    ui_jump_to_track_jump(treeview);
+}
+
+static void
+ui_jump_to_track_set_queue_button_label(GtkButton * button,
+                                      guint pos)
+{
+    if (playlist_is_position_queued(playlist_get_active(), pos))
+        gtk_button_set_label(button, _("Un_queue"));
+    else
+        gtk_button_set_label(button, _("_Queue"));
+}
+
+static void
+ui_jump_to_track_queue_cb(GtkButton * button,
+                              gpointer data)
+{
+    GtkTreeView *treeview;
+    GtkTreeModel *model;
+    GtkTreeSelection *selection;
+    GtkTreeIter iter;
+    guint pos;
+
+    treeview = GTK_TREE_VIEW(data);
+    model = gtk_tree_view_get_model(treeview);
+    selection = gtk_tree_view_get_selection(treeview);
+
+    if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
+        return;
+
+    gtk_tree_model_get(model, &iter, 0, &pos, -1);
+
+    playlist_queue_position(playlist_get_active(), (pos - 1));
+
+    ui_jump_to_track_set_queue_button_label(button, (pos - 1));
+}
+
+static void
+ui_jump_to_track_selection_changed_cb(GtkTreeSelection *treesel,
+                                          gpointer data)
+{
+    GtkTreeView *treeview;
+    GtkTreeModel *model;
+    GtkTreeSelection *selection;
+    GtkTreeIter iter;
+    guint pos;
+
+    treeview = gtk_tree_selection_get_tree_view(treesel);
+    model = gtk_tree_view_get_model(treeview);
+    selection = gtk_tree_view_get_selection(treeview);
+
+    if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
+        return;
+
+    gtk_tree_model_get(model, &iter, 0, &pos, -1);
+
+    ui_jump_to_track_set_queue_button_label(GTK_BUTTON(data), (pos - 1));
+}
+
+static gboolean
+ui_jump_to_track_edit_keypress_cb(GtkWidget * object,
+                 GdkEventKey * event,
+                 gpointer data)
+{
+    switch (event->keyval) {
+    case GDK_Return:
+        if (gtk_im_context_filter_keypress (GTK_ENTRY (object)->im_context, event)) {
+            GTK_ENTRY (object)->need_im_reset = TRUE;
+            return TRUE;
+        } else {
+            ui_jump_to_track_jump(GTK_TREE_VIEW(data));
+            return TRUE;
+        }
+    default:
+        return FALSE;
+    }
+}
+
+static gboolean
+ui_jump_to_track_keypress_cb(GtkWidget * object,
+                                 GdkEventKey * event,
+                                 gpointer data)
+{
+    switch (event->keyval) {
+    case GDK_Escape:
+        /* FIXME: show only hide window */
+        gtk_widget_destroy(jump_to_track_win);
+        jump_to_track_win = NULL;
+        return TRUE;
+    case GDK_KP_Enter:
+        ui_jump_to_track_queue_cb(NULL, data);
+        return TRUE;
+    default:
+        return FALSE;
+    };
+
+    return FALSE;
+}
+
+static gboolean
+ui_jump_to_track_match(const gchar * song, GSList *regex_list)
+{
+    gboolean rv = TRUE;
+
+    if ( song == NULL )
+        return FALSE;
+
+    for ( ; regex_list ; regex_list = g_slist_next(regex_list) )
+    {
+        regex_t *regex = regex_list->data;
+        if ( regexec( regex , song , 0 , NULL , 0 ) != 0 )
+        {
+            rv = FALSE;
+            break;
+        }
+    }
+
+    return rv;
+}
+
+/* FIXME: Clear the entry when the list gets updated */
+void
+ui_jump_to_track_update(GtkWidget * widget, gpointer user_data)
+{
+    /* FIXME: Is not in sync with playlist due to delayed extinfo
+     * reading */
+    guint row;
+    GList *playlist_glist;
+    gchar *desc_buf = NULL;
+    GtkTreeIter iter;
+    GtkTreeSelection *selection;
+    Playlist *playlist;
+
+    GtkTreeModel *store;
+
+    if (!jump_to_track_win)
+        return;
+
+    store = gtk_tree_view_get_model(GTK_TREE_VIEW(user_data));
+    gtk_list_store_clear(GTK_LIST_STORE(store));
+
+    row = 1;
+    playlist = playlist_get_active();
+    for (playlist_glist = playlist->entries; playlist_glist;
+         playlist_glist = g_list_next(playlist_glist)) {
+        PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
+
+        if (entry->title)
+        desc_buf = g_strdup(entry->title);
+        else if (strchr(entry->filename, '/'))
+        desc_buf = str_to_utf8(strrchr(entry->filename, '/') + 1);
+        else
+        desc_buf = str_to_utf8(entry->filename);
+
+        gtk_list_store_append(GTK_LIST_STORE(store), &iter);
+        gtk_list_store_set(GTK_LIST_STORE(store), &iter,
+                           0, row, 1, desc_buf, -1);
+        row++;
+
+        if(desc_buf) {
+            g_free(desc_buf);
+            desc_buf = NULL;
+        }
+    }
+
+    gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter);
+    selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(user_data));
+    gtk_tree_selection_select_iter(selection, &iter);
+}
+
+static void
+ui_jump_to_track_edit_cb(GtkEntry * entry, gpointer user_data)
+{
+    GtkTreeView *treeview = GTK_TREE_VIEW(user_data);
+    GtkTreeSelection *selection;
+    GtkTreeIter iter;
+
+    GtkListStore *store;
+
+    guint song_index = 0;
+    gchar **words;
+    GList *playlist_glist;
+    Playlist *playlist;
+
+    gboolean match = FALSE;
+
+    GSList *regex_list = NULL, *regex_list_tmp = NULL;
+    gint i = -1;
+
+    /* Chop the key string into ' '-separated key regex-pattern strings */
+    words = g_strsplit(gtk_entry_get_text(entry), " ", 0);
+
+    /* create a list of regex using the regex-pattern strings */
+    while ( words[++i] != NULL )
+    {
+        regex_t *regex = g_malloc(sizeof(regex_t));
+    #if defined(USE_REGEX_PCRE)
+        if ( regcomp( regex , words[i] , REG_NOSUB | REG_ICASE | REG_UTF8 ) == 0 )
+    #else
+        if ( regcomp( regex , words[i] , REG_NOSUB | REG_ICASE ) == 0 )
+    #endif
+            regex_list = g_slist_append( regex_list , regex );
+    }
+
+    /* FIXME: Remove the connected signals before clearing
+     * (row-selected will still eventually arrive once) */
+    store = GTK_LIST_STORE(gtk_tree_view_get_model(treeview));
+    /* detach model from treeview */
+    g_object_ref( store );
+    gtk_tree_view_set_model( GTK_TREE_VIEW(treeview) , NULL );
+
+    gtk_list_store_clear(store);
+
+    playlist = playlist_get_active();
+
+    PLAYLIST_LOCK(playlist->mutex);
+
+    for (playlist_glist = playlist->entries; playlist_glist;
+         playlist_glist = g_list_next(playlist_glist)) {
+
+        PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
+        const gchar *title;
+        gchar *filename = NULL;
+
+        title = entry->title;
+        if (!title) {
+        filename = str_to_utf8(entry->filename);
+
+            if (strchr(filename, '/'))
+                title = strrchr(filename, '/') + 1;
+            else
+                title = filename;
+        }
+
+        /* Compare the reg.expressions to the string - if all the
+           regexp in regex_list match, add to the ListStore */
+
+        /*
+         * FIXME: The search string should be adapted to the
+         * current display setting, e.g. if the user has set it to
+         * "%p - %t" then build the match string like that too, or
+         * even better, search for each of the tags seperatly.
+         *
+         * In any case the string to match should _never_ contain
+         * something the user can't actually see in the playlist.
+         */
+        if (regex_list != NULL)
+            match = ui_jump_to_track_match(title, regex_list);
+        else
+            match = TRUE;
+
+        if (match) {
+            gtk_list_store_append(store, &iter);
+            gtk_list_store_set(store, &iter, 0, song_index + 1 , 1, title, -1);
+        }
+
+        song_index++;
+
+        if (filename) {
+            g_free(filename);
+            filename = NULL;
+        }
+    }
+
+    PLAYLIST_UNLOCK(playlist->mutex);
+
+    /* attach the model again to the treeview */
+    gtk_tree_view_set_model( GTK_TREE_VIEW(treeview) , GTK_TREE_MODEL(store) );
+    g_object_unref( store );
+
+    if ( regex_list != NULL )
+    {
+        regex_list_tmp = regex_list;
+        while ( regex_list != NULL )
+        {
+            regex_t *regex = regex_list->data;
+            regfree( regex );
+            regex_list = g_slist_next(regex_list);
+        }
+        g_slist_free( regex_list_tmp );
+    }
+    g_strfreev(words);
+
+    if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter)) {
+        selection = gtk_tree_view_get_selection(treeview);
+        gtk_tree_selection_select_iter(selection, &iter);
+    }
+}
+
+void
+ui_jump_to_track(void)
+{
+    GtkWidget *scrollwin;
+    GtkWidget *vbox, *bbox, *sep;
+    GtkWidget *jump, *queue, *cancel;
+    GtkWidget *rescan, *edit;
+    GtkWidget *search_label, *hbox;
+    GList *playlist_glist;
+    Playlist *playlist;
+    gchar *desc_buf = NULL;
+    guint row;
+
+    GtkWidget *treeview;
+    GtkListStore *jtf_store;
+
+    GtkTreeIter iter;
+    GtkCellRenderer *renderer;
+    GtkTreeViewColumn *column;
+
+    if (jump_to_track_win) {
+        gtk_window_present(GTK_WINDOW(jump_to_track_win));
+        return;
+    }
+
+    #if defined(USE_REGEX_ONIGURUMA)
+    /* set encoding for Oniguruma regex to UTF-8 */
+    reg_set_encoding( REG_POSIX_ENCODING_UTF8 );
+    onig_set_default_syntax( ONIG_SYNTAX_POSIX_BASIC );
+    #endif
+
+    jump_to_track_win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+    gtk_window_set_type_hint(GTK_WINDOW(jump_to_track_win),
+                             GDK_WINDOW_TYPE_HINT_DIALOG);
+
+    gtk_window_set_title(GTK_WINDOW(jump_to_track_win), _("Jump to Track"));
+
+    gtk_window_set_position(GTK_WINDOW(jump_to_track_win), GTK_WIN_POS_CENTER);
+    g_signal_connect(jump_to_track_win, "destroy",
+                     G_CALLBACK(gtk_widget_destroyed), &jump_to_track_win);
+
+    gtk_container_border_width(GTK_CONTAINER(jump_to_track_win), 10);
+    gtk_window_set_default_size(GTK_WINDOW(jump_to_track_win), 550, 350);
+
+    vbox = gtk_vbox_new(FALSE, 5);
+    gtk_container_add(GTK_CONTAINER(jump_to_track_win), vbox);
+
+    jtf_store = gtk_list_store_new(2, G_TYPE_UINT, G_TYPE_STRING);
+    treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(jtf_store));
+    g_object_unref(jtf_store);
+
+    gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(treeview), TRUE);
+
+    column = gtk_tree_view_column_new();
+    gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview), FALSE);
+    gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
+
+    renderer = gtk_cell_renderer_text_new();
+    gtk_tree_view_column_pack_start(column, renderer, FALSE);
+    gtk_tree_view_column_set_attributes(column, renderer, "text", 0, NULL);
+    gtk_tree_view_column_set_spacing(column, 4);
+
+    renderer = gtk_cell_renderer_text_new();
+    gtk_tree_view_column_pack_start(column, renderer, FALSE);
+    gtk_tree_view_column_set_attributes(column, renderer, "text", 1, NULL);
+    gtk_tree_view_column_set_spacing(column, 4);
+    gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column);
+
+    gtk_tree_view_set_search_column(GTK_TREE_VIEW(treeview), 1);
+
+    g_signal_connect(treeview, "row-activated",
+                     G_CALLBACK(ui_jump_to_track_jump), NULL);
+
+    hbox = gtk_hbox_new(FALSE, 3);
+    gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
+
+    search_label = gtk_label_new(_("Filter: "));
+    gtk_label_set_markup_with_mnemonic(GTK_LABEL(search_label), _("_Filter:"));
+    gtk_box_pack_start(GTK_BOX(hbox), search_label, FALSE, FALSE, 0);
+
+    edit = gtk_entry_new();
+    gtk_entry_set_editable(GTK_ENTRY(edit), TRUE);
+    gtk_label_set_mnemonic_widget(GTK_LABEL(search_label), edit);
+    g_signal_connect(edit, "changed",
+                     G_CALLBACK(ui_jump_to_track_edit_cb), treeview);
+
+    g_signal_connect(edit, "key_press_event",
+                     G_CALLBACK(ui_jump_to_track_edit_keypress_cb), treeview);
+
+    g_signal_connect(jump_to_track_win, "key_press_event",
+                     G_CALLBACK(ui_jump_to_track_keypress_cb), treeview);
+
+    gtk_box_pack_start(GTK_BOX(hbox), edit, TRUE, TRUE, 3);
+
+    scrollwin = gtk_scrolled_window_new(NULL, NULL);
+    gtk_container_add(GTK_CONTAINER(scrollwin), treeview);
+    gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrollwin),
+                                   GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
+    gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrollwin),
+                                        GTK_SHADOW_IN);
+    gtk_box_pack_start(GTK_BOX(vbox), scrollwin, TRUE, TRUE, 0);
+
+    sep = gtk_hseparator_new();
+    gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0);
+
+    bbox = gtk_hbutton_box_new();
+    gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
+    gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5);
+    gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
+
+    queue = gtk_button_new_with_mnemonic(_("_Queue"));
+    gtk_box_pack_start(GTK_BOX(bbox), queue, FALSE, FALSE, 0);
+    GTK_WIDGET_SET_FLAGS(queue, GTK_CAN_DEFAULT);
+    g_signal_connect(queue, "clicked", 
+                     G_CALLBACK(ui_jump_to_track_queue_cb),
+                     treeview);
+    g_signal_connect(gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)), "changed",
+                     G_CALLBACK(ui_jump_to_track_selection_changed_cb),
+                     queue);
+
+    rescan = gtk_button_new_from_stock(GTK_STOCK_REFRESH);
+    gtk_box_pack_start(GTK_BOX(bbox), rescan, FALSE, FALSE, 0);
+    g_signal_connect(rescan, "clicked",
+                     G_CALLBACK(ui_jump_to_track_update), treeview);
+    GTK_WIDGET_SET_FLAGS(rescan, GTK_CAN_DEFAULT);
+    gtk_widget_grab_default(rescan);
+
+    jump = gtk_button_new_from_stock(GTK_STOCK_JUMP_TO);
+    gtk_box_pack_start(GTK_BOX(bbox), jump, FALSE, FALSE, 0);
+
+    g_signal_connect_swapped(jump, "clicked",
+                             G_CALLBACK(ui_jump_to_track_jump_cb),
+                             treeview);
+
+    GTK_WIDGET_SET_FLAGS(jump, GTK_CAN_DEFAULT);
+    gtk_widget_grab_default(jump);
+
+    cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
+    gtk_box_pack_start(GTK_BOX(bbox), cancel, FALSE, FALSE, 0);
+    g_signal_connect_swapped(cancel, "clicked",
+                             G_CALLBACK(gtk_widget_destroy),
+                             jump_to_track_win);
+    GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT);
+
+    gtk_list_store_clear(jtf_store);
+
+    row = 1;
+
+    playlist = playlist_get_active();
+
+    PLAYLIST_LOCK(playlist->mutex);
+
+    for (playlist_glist = playlist->entries; playlist_glist;
+         playlist_glist = g_list_next(playlist_glist)) {
+
+        PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
+
+        if (entry->title)
+        desc_buf = g_strdup(entry->title);
+        else if (strchr(entry->filename, '/'))
+        desc_buf = str_to_utf8(strrchr(entry->filename, '/') + 1);
+        else
+        desc_buf = str_to_utf8(entry->filename);
+
+        gtk_list_store_append(GTK_LIST_STORE(jtf_store), &iter);
+        gtk_list_store_set(GTK_LIST_STORE(jtf_store), &iter,
+                           0, row, 1, desc_buf, -1);
+        row++;
+
+        if (desc_buf) {
+            g_free(desc_buf);
+            desc_buf = NULL;
+        }
+    }
+
+    PLAYLIST_UNLOCK(playlist->mutex);
+
+    gtk_widget_show_all(jump_to_track_win);
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/audacious/ui_jumptotrack.h	Sat Feb 10 20:47:46 2007 -0800
@@ -0,0 +1,30 @@
+/*  Audacious - Cross-platform multimedia player
+ *  Copyright (C) 2005-2006  Audacious development team.
+ *
+ *  BMP - Cross-platform multimedia player
+ *  Copyright (C) 2003-2004  BMP development team.
+ *
+ *  Based on XMMS:
+ *  Copyright (C) 1998-2003  XMMS development team.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; under version 2 of the License.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef UI_JUMPTOTRACK_H
+#define UI_JUMPTOTRACK_H
+
+extern void ui_jump_to_track_update(GtkWidget * widget, gpointer user_data);
+extern void ui_jump_to_track(void);
+
+#endif
--- a/src/audacious/ui_main.c	Sat Feb 10 20:21:42 2007 -0800
+++ b/src/audacious/ui_main.c	Sat Feb 10 20:47:46 2007 -0800
@@ -83,6 +83,7 @@
 #include "visualization.h"
 
 #include "ui_skinned_window.h"
+#include "ui_jumptotrack.h"
 
 static GTimeVal cb_time; /* click delay for tristate is defined by TRISTATE_THRESHOLD */
 
@@ -119,7 +120,6 @@
 static GdkBitmap *nullmask;
 static gint balance;
 
-GtkWidget *mainwin_jtf = NULL;
 static GtkWidget *mainwin_jtt = NULL;
 
 gint seek_state = MAINWIN_SEEK_NIL;
@@ -1262,7 +1262,7 @@
         playlist_next(playlist);
         break;
     case GDK_KP_Insert:
-        mainwin_jump_to_file();
+        ui_jump_to_track();
         break;
     case GDK_KP_5:
         mainwin_play_pushed();
@@ -1396,512 +1396,6 @@
     gtk_widget_grab_default(jump);
 }
 
-static void
-change_song(guint pos)
-{
-    if (playback_get_playing())
-        playback_stop();
-
-    playlist_set_position(playlist_get_active(), pos);
-    playback_initiate();
-}
-
-static void
-mainwin_jump_to_file_jump(GtkTreeView * treeview)
-{
-    GtkTreeModel *model;
-    GtkTreeSelection *selection;
-    GtkTreeIter iter;
-    guint pos;
-
-    model = gtk_tree_view_get_model(treeview);
-    selection = gtk_tree_view_get_selection(treeview);
-
-    if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
-        return;
-
-    gtk_tree_model_get(model, &iter, 0, &pos, -1);
-
-    change_song(pos - 1);
-
-    /* FIXME: should only hide window */
-    gtk_widget_destroy(mainwin_jtf);
-    mainwin_jtf = NULL;
-}
-
-static void
-mainwin_jump_to_file_jump_cb(GtkTreeView * treeview,
-                             gpointer data)
-{
-    mainwin_jump_to_file_jump(treeview);
-}
-
-static void
-mainwin_jump_to_file_set_queue_button_label(GtkButton * button,
-                                      guint pos)
-{
-    if (playlist_is_position_queued(playlist_get_active(), pos))
-        gtk_button_set_label(button, _("Un_queue"));
-    else
-        gtk_button_set_label(button, _("_Queue"));
-}
-
-static void
-mainwin_jump_to_file_queue_cb(GtkButton * button,
-                              gpointer data)
-{
-    GtkTreeView *treeview;
-    GtkTreeModel *model;
-    GtkTreeSelection *selection;
-    GtkTreeIter iter;
-    guint pos;
-
-    treeview = GTK_TREE_VIEW(data);
-    model = gtk_tree_view_get_model(treeview);
-    selection = gtk_tree_view_get_selection(treeview);
-
-    if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
-        return;
-
-    gtk_tree_model_get(model, &iter, 0, &pos, -1);
-
-    playlist_queue_position(playlist_get_active(), (pos - 1));
-
-    mainwin_jump_to_file_set_queue_button_label(button, (pos - 1));
-}
-
-static void
-mainwin_jump_to_file_selection_changed_cb(GtkTreeSelection *treesel,
-                                          gpointer data)
-{
-    GtkTreeView *treeview;
-    GtkTreeModel *model;
-    GtkTreeSelection *selection;
-    GtkTreeIter iter;
-    guint pos;
-
-    treeview = gtk_tree_selection_get_tree_view(treesel);
-    model = gtk_tree_view_get_model(treeview);
-    selection = gtk_tree_view_get_selection(treeview);
-
-    if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
-        return;
-
-    gtk_tree_model_get(model, &iter, 0, &pos, -1);
-
-    mainwin_jump_to_file_set_queue_button_label(GTK_BUTTON(data), (pos - 1));
-}
-
-static gboolean
-mainwin_jump_to_file_edit_keypress_cb(GtkWidget * object,
-                 GdkEventKey * event,
-                 gpointer data)
-{
-    switch (event->keyval) {
-    case GDK_Return:
-        if (gtk_im_context_filter_keypress (GTK_ENTRY (object)->im_context, event)) {
-            GTK_ENTRY (object)->need_im_reset = TRUE;
-            return TRUE;
-        } else {
-            mainwin_jump_to_file_jump(GTK_TREE_VIEW(data));
-            return TRUE;
-        }
-    default:
-        return FALSE;
-    }
-}
-
-static gboolean
-mainwin_jump_to_file_keypress_cb(GtkWidget * object,
-                                 GdkEventKey * event,
-                                 gpointer data)
-{
-    switch (event->keyval) {
-    case GDK_Escape:
-        /* FIXME: show only hide window */
-        gtk_widget_destroy(mainwin_jtf);
-        mainwin_jtf = NULL;
-        return TRUE;
-    case GDK_KP_Enter:
-        mainwin_jump_to_file_queue_cb(NULL, data);
-        return TRUE;
-    default:
-        return FALSE;
-    };
-
-    return FALSE;
-}
-
-static gboolean
-mainwin_jump_to_file_match(const gchar * song, GSList *regex_list)
-{
-    gboolean rv = TRUE;
-
-    if ( song == NULL )
-        return FALSE;
-
-    for ( ; regex_list ; regex_list = g_slist_next(regex_list) )
-    {
-        regex_t *regex = regex_list->data;
-        if ( regexec( regex , song , 0 , NULL , 0 ) != 0 )
-        {
-            rv = FALSE;
-            break;
-        }
-    }
-
-    return rv;
-}
-
-/* FIXME: Clear the entry when the list gets updated */
-static void
-mainwin_update_jtf(GtkWidget * widget, gpointer user_data)
-{
-    /* FIXME: Is not in sync with playlist due to delayed extinfo
-     * reading */
-    guint row;
-    GList *playlist_glist;
-    gchar *desc_buf = NULL;
-    GtkTreeIter iter;
-    GtkTreeSelection *selection;
-    Playlist *playlist;
-
-    GtkTreeModel *store;
-
-    if (!mainwin_jtf)
-        return;
-
-    store = gtk_tree_view_get_model(GTK_TREE_VIEW(user_data));
-    gtk_list_store_clear(GTK_LIST_STORE(store));
-
-    row = 1;
-    playlist = playlist_get_active();
-    for (playlist_glist = playlist->entries; playlist_glist;
-         playlist_glist = g_list_next(playlist_glist)) {
-        PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
-
-        if (entry->title)
-        desc_buf = g_strdup(entry->title);
-        else if (strchr(entry->filename, '/'))
-        desc_buf = str_to_utf8(strrchr(entry->filename, '/') + 1);
-        else
-        desc_buf = str_to_utf8(entry->filename);
-
-        gtk_list_store_append(GTK_LIST_STORE(store), &iter);
-        gtk_list_store_set(GTK_LIST_STORE(store), &iter,
-                           0, row, 1, desc_buf, -1);
-        row++;
-
-        if(desc_buf) {
-            g_free(desc_buf);
-            desc_buf = NULL;
-        }
-    }
-
-    gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter);
-    selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(user_data));
-    gtk_tree_selection_select_iter(selection, &iter);
-}
-
-static void
-mainwin_jump_to_file_edit_cb(GtkEntry * entry, gpointer user_data)
-{
-    GtkTreeView *treeview = GTK_TREE_VIEW(user_data);
-    GtkTreeSelection *selection;
-    GtkTreeIter iter;
-
-    GtkListStore *store;
-
-    guint song_index = 0;
-    gchar **words;
-    GList *playlist_glist;
-    Playlist *playlist;
-
-    gboolean match = FALSE;
-
-    GSList *regex_list = NULL, *regex_list_tmp = NULL;
-    gint i = -1;
-
-    /* Chop the key string into ' '-separated key regex-pattern strings */
-    words = g_strsplit(gtk_entry_get_text(entry), " ", 0);
-
-    /* create a list of regex using the regex-pattern strings */
-    while ( words[++i] != NULL )
-    {
-        regex_t *regex = g_malloc(sizeof(regex_t));
-    #if defined(USE_REGEX_PCRE)
-        if ( regcomp( regex , words[i] , REG_NOSUB | REG_ICASE | REG_UTF8 ) == 0 )
-    #else
-        if ( regcomp( regex , words[i] , REG_NOSUB | REG_ICASE ) == 0 )
-    #endif
-            regex_list = g_slist_append( regex_list , regex );
-    }
-
-    /* FIXME: Remove the connected signals before clearing
-     * (row-selected will still eventually arrive once) */
-    store = GTK_LIST_STORE(gtk_tree_view_get_model(treeview));
-    /* detach model from treeview */
-    g_object_ref( store );
-    gtk_tree_view_set_model( GTK_TREE_VIEW(treeview) , NULL );
-
-    gtk_list_store_clear(store);
-
-    playlist = playlist_get_active();
-
-    PLAYLIST_LOCK(playlist->mutex);
-
-    for (playlist_glist = playlist->entries; playlist_glist;
-         playlist_glist = g_list_next(playlist_glist)) {
-
-        PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
-        const gchar *title;
-        gchar *filename = NULL;
-
-        title = entry->title;
-        if (!title) {
-        filename = str_to_utf8(entry->filename);
-
-            if (strchr(filename, '/'))
-                title = strrchr(filename, '/') + 1;
-            else
-                title = filename;
-        }
-
-        /* Compare the reg.expressions to the string - if all the
-           regexp in regex_list match, add to the ListStore */
-
-        /*
-         * FIXME: The search string should be adapted to the
-         * current display setting, e.g. if the user has set it to
-         * "%p - %t" then build the match string like that too, or
-         * even better, search for each of the tags seperatly.
-         *
-         * In any case the string to match should _never_ contain
-         * something the user can't actually see in the playlist.
-         */
-        if (regex_list != NULL)
-            match = mainwin_jump_to_file_match(title, regex_list);
-        else
-            match = TRUE;
-
-        if (match) {
-            gtk_list_store_append(store, &iter);
-            gtk_list_store_set(store, &iter, 0, song_index + 1 , 1, title, -1);
-        }
-
-        song_index++;
-
-        if (filename) {
-            g_free(filename);
-            filename = NULL;
-        }
-    }
-
-    PLAYLIST_UNLOCK(playlist->mutex);
-
-    /* attach the model again to the treeview */
-    gtk_tree_view_set_model( GTK_TREE_VIEW(treeview) , GTK_TREE_MODEL(store) );
-    g_object_unref( store );
-
-    if ( regex_list != NULL )
-    {
-        regex_list_tmp = regex_list;
-        while ( regex_list != NULL )
-        {
-            regex_t *regex = regex_list->data;
-            regfree( regex );
-            regex_list = g_slist_next(regex_list);
-        }
-        g_slist_free( regex_list_tmp );
-    }
-    g_strfreev(words);
-
-    if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter)) {
-        selection = gtk_tree_view_get_selection(treeview);
-        gtk_tree_selection_select_iter(selection, &iter);
-    }
-}
-
-void
-mainwin_jump_to_file(void)
-{
-    GtkWidget *scrollwin;
-    GtkWidget *vbox, *bbox, *sep;
-    GtkWidget *jump, *queue, *cancel;
-    GtkWidget *rescan, *edit;
-    GtkWidget *search_label, *hbox;
-    GList *playlist_glist;
-    Playlist *playlist;
-    gchar *desc_buf = NULL;
-    guint row;
-
-    GtkWidget *treeview;
-    GtkListStore *jtf_store;
-
-    GtkTreeIter iter;
-    GtkCellRenderer *renderer;
-    GtkTreeViewColumn *column;
-
-    if (mainwin_jtf) {
-        gtk_window_present(GTK_WINDOW(mainwin_jtf));
-        return;
-    }
-
-    #if defined(USE_REGEX_ONIGURUMA)
-    /* set encoding for Oniguruma regex to UTF-8 */
-    reg_set_encoding( REG_POSIX_ENCODING_UTF8 );
-    onig_set_default_syntax( ONIG_SYNTAX_POSIX_BASIC );
-    #endif
-
-    mainwin_jtf = gtk_window_new(GTK_WINDOW_TOPLEVEL);
-    gtk_window_set_type_hint(GTK_WINDOW(mainwin_jtf),
-                             GDK_WINDOW_TYPE_HINT_DIALOG);
-
-    gtk_window_set_title(GTK_WINDOW(mainwin_jtf), _("Jump to Track"));
-
-    gtk_window_set_position(GTK_WINDOW(mainwin_jtf), GTK_WIN_POS_CENTER);
-    g_signal_connect(mainwin_jtf, "destroy",
-                     G_CALLBACK(gtk_widget_destroyed), &mainwin_jtf);
-
-    gtk_container_border_width(GTK_CONTAINER(mainwin_jtf), 10);
-    gtk_window_set_default_size(GTK_WINDOW(mainwin_jtf), 550, 350);
-
-    vbox = gtk_vbox_new(FALSE, 5);
-    gtk_container_add(GTK_CONTAINER(mainwin_jtf), vbox);
-
-    jtf_store = gtk_list_store_new(2, G_TYPE_UINT, G_TYPE_STRING);
-    treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(jtf_store));
-    g_object_unref(jtf_store);
-
-    gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(treeview), TRUE);
-
-    column = gtk_tree_view_column_new();
-    gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview), FALSE);
-    gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
-
-    renderer = gtk_cell_renderer_text_new();
-    gtk_tree_view_column_pack_start(column, renderer, FALSE);
-    gtk_tree_view_column_set_attributes(column, renderer, "text", 0, NULL);
-    gtk_tree_view_column_set_spacing(column, 4);
-
-    renderer = gtk_cell_renderer_text_new();
-    gtk_tree_view_column_pack_start(column, renderer, FALSE);
-    gtk_tree_view_column_set_attributes(column, renderer, "text", 1, NULL);
-    gtk_tree_view_column_set_spacing(column, 4);
-    gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column);
-
-    gtk_tree_view_set_search_column(GTK_TREE_VIEW(treeview), 1);
-
-    g_signal_connect(treeview, "row-activated",
-                     G_CALLBACK(mainwin_jump_to_file_jump), NULL);
-
-    hbox = gtk_hbox_new(FALSE, 3);
-    gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
-
-    search_label = gtk_label_new(_("Filter: "));
-    gtk_label_set_markup_with_mnemonic(GTK_LABEL(search_label), _("_Filter:"));
-    gtk_box_pack_start(GTK_BOX(hbox), search_label, FALSE, FALSE, 0);
-
-    edit = gtk_entry_new();
-    gtk_entry_set_editable(GTK_ENTRY(edit), TRUE);
-    gtk_label_set_mnemonic_widget(GTK_LABEL(search_label), edit);
-    g_signal_connect(edit, "changed",
-                     G_CALLBACK(mainwin_jump_to_file_edit_cb), treeview);
-
-    g_signal_connect(edit, "key_press_event",
-                     G_CALLBACK(mainwin_jump_to_file_edit_keypress_cb), treeview);
-
-    g_signal_connect(mainwin_jtf, "key_press_event",
-                     G_CALLBACK(mainwin_jump_to_file_keypress_cb), treeview);
-
-    gtk_box_pack_start(GTK_BOX(hbox), edit, TRUE, TRUE, 3);
-
-    scrollwin = gtk_scrolled_window_new(NULL, NULL);
-    gtk_container_add(GTK_CONTAINER(scrollwin), treeview);
-    gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrollwin),
-                                   GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
-    gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrollwin),
-                                        GTK_SHADOW_IN);
-    gtk_box_pack_start(GTK_BOX(vbox), scrollwin, TRUE, TRUE, 0);
-
-    sep = gtk_hseparator_new();
-    gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0);
-
-    bbox = gtk_hbutton_box_new();
-    gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
-    gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5);
-    gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
-
-    queue = gtk_button_new_with_mnemonic(_("_Queue"));
-    gtk_box_pack_start(GTK_BOX(bbox), queue, FALSE, FALSE, 0);
-    GTK_WIDGET_SET_FLAGS(queue, GTK_CAN_DEFAULT);
-    g_signal_connect(queue, "clicked", 
-                     G_CALLBACK(mainwin_jump_to_file_queue_cb),
-                     treeview);
-    g_signal_connect(gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)), "changed",
-                     G_CALLBACK(mainwin_jump_to_file_selection_changed_cb),
-                     queue);
-
-    rescan = gtk_button_new_from_stock(GTK_STOCK_REFRESH);
-    gtk_box_pack_start(GTK_BOX(bbox), rescan, FALSE, FALSE, 0);
-    g_signal_connect(rescan, "clicked",
-                     G_CALLBACK(mainwin_update_jtf), treeview);
-    GTK_WIDGET_SET_FLAGS(rescan, GTK_CAN_DEFAULT);
-    gtk_widget_grab_default(rescan);
-
-    jump = gtk_button_new_from_stock(GTK_STOCK_JUMP_TO);
-    gtk_box_pack_start(GTK_BOX(bbox), jump, FALSE, FALSE, 0);
-
-    g_signal_connect_swapped(jump, "clicked",
-                             G_CALLBACK(mainwin_jump_to_file_jump_cb),
-                             treeview);
-
-    GTK_WIDGET_SET_FLAGS(jump, GTK_CAN_DEFAULT);
-    gtk_widget_grab_default(jump);
-
-    cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
-    gtk_box_pack_start(GTK_BOX(bbox), cancel, FALSE, FALSE, 0);
-    g_signal_connect_swapped(cancel, "clicked",
-                             G_CALLBACK(gtk_widget_destroy),
-                             mainwin_jtf);
-    GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT);
-
-    gtk_list_store_clear(jtf_store);
-
-    row = 1;
-
-    playlist = playlist_get_active();
-
-    PLAYLIST_LOCK(playlist->mutex);
-
-    for (playlist_glist = playlist->entries; playlist_glist;
-         playlist_glist = g_list_next(playlist_glist)) {
-
-        PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
-
-        if (entry->title)
-        desc_buf = g_strdup(entry->title);
-        else if (strchr(entry->filename, '/'))
-        desc_buf = str_to_utf8(strrchr(entry->filename, '/') + 1);
-        else
-        desc_buf = str_to_utf8(entry->filename);
-
-        gtk_list_store_append(GTK_LIST_STORE(jtf_store), &iter);
-        gtk_list_store_set(GTK_LIST_STORE(jtf_store), &iter,
-                           0, row, 1, desc_buf, -1);
-        row++;
-
-    if (desc_buf) {
-        g_free(desc_buf);
-        desc_buf = NULL;
-    }
-    }
-
-    PLAYLIST_UNLOCK(playlist->mutex);
-
-    gtk_widget_show_all(mainwin_jtf);
-}
-
 static gboolean
 mainwin_configure(GtkWidget * window,
                   GdkEventConfigure * event,
@@ -2587,7 +2081,7 @@
         mainwin_jump_to_time();
         break;
     case MAINWIN_GENERAL_JTF:
-        mainwin_jump_to_file();
+        ui_jump_to_track();
         break;
     case MAINWIN_GENERAL_EXIT:
         mainwin_quit_cb();
@@ -3907,7 +3401,7 @@
 void
 action_jump_to_file( void )
 {
-    mainwin_jump_to_file();
+    ui_jump_to_track();
 }
 
 void