annotate src/audacious/ui_jumptotrack.c @ 4195:2281da647da9

beggining of GdkPixbuf transition
author Tomasz Mon <desowin@gmail.com>
date Sat, 19 Jan 2008 06:03:03 +0100
parents aca0dd668f7b
children ca077e01ed3a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
1 /* Audacious - Cross-platform multimedia player
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
2 * Copyright (C) 2005-2006 Audacious development team.
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
3 *
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
4 * BMP - Cross-platform multimedia player
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
5 * Copyright (C) 2003-2004 BMP development team.
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
6 *
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
7 * Based on XMMS:
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
8 * Copyright (C) 1998-2003 XMMS development team.
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
9 *
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
10 * This program is free software; you can redistribute it and/or modify
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
11 * it under the terms of the GNU General Public License as published by
3121
3b6d316f8b09 GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents: 3096
diff changeset
12 * the Free Software Foundation; under version 3 of the License.
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
13 *
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
14 * This program is distributed in the hope that it will be useful,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
17 * GNU General Public License for more details.
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
18 *
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
19 * You should have received a copy of the GNU General Public License
3121
3b6d316f8b09 GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents: 3096
diff changeset
20 * along with this program. If not, see <http://www.gnu.org/licenses>.
3123
f1c756f39e6c Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents: 3121
diff changeset
21 *
f1c756f39e6c Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents: 3121
diff changeset
22 * The Audacious team does not consider modular code linking to
f1c756f39e6c Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents: 3121
diff changeset
23 * Audacious or using our public API to be a derived work.
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
24 */
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
25
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
26 #ifdef HAVE_CONFIG_H
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
27 # include "config.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
28 #endif
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
29
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
30
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
31 #include <glib.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
32 #include <glib/gi18n.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
33 #include <glib/gprintf.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
34 #include <gtk/gtk.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
35 #include <gtk/gtkmessagedialog.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
36
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
37 /* GDK including */
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
38 #include "platform/smartinclude.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
39
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
40 #include <math.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
41 #include <stdlib.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
42 #include <string.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
43
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
44 #include <sys/types.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
45
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
46 #if defined(USE_REGEX_ONIGURUMA)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
47 #include <onigposix.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
48 #elif defined(USE_REGEX_PCRE)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
49 #include <pcreposix.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
50 #else
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
51 #include <regex.h>
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
52 #endif
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
53
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
54 #include "ui_main.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
55 #include "icons-stock.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
56
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
57 #include "actions-mainwin.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
58
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
59 #include "main.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
60
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
61 #include "dnd.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
62 #include "dock.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
63 #include "hints.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
64 #include "input.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
65 #include "playback.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
66 #include "playlist.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
67 #include "pluginenum.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
68 #include "ui_credits.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
69 #include "ui_equalizer.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
70 #include "ui_fileopener.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
71 #include "ui_manager.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
72 #include "ui_playlist.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
73 #include "ui_preferences.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
74 #include "ui_skinselector.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
75 #include "ui_urlopener.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
76 #include "strings.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
77 #include "util.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
78 #include "visualization.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
79
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
80 #include "ui_skinned_window.h"
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
81
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
82 static GtkWidget *jump_to_track_win = NULL;
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
83 static gulong serial = 0;
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
84
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
85 static void
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
86 change_song(guint pos)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
87 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
88 if (playback_get_playing())
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
89 playback_stop();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
90
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
91 playlist_set_position(playlist_get_active(), pos);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
92 playback_initiate();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
93 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
94
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
95 void
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
96 ui_jump_to_track_hide(void)
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
97 {
4115
e99284bb7936 Reset the text entry box to nothing when the jump to track window is requested.
William Pitcock <nenolod@atheme.org>
parents: 4085
diff changeset
98 g_return_if_fail(jump_to_track_win != NULL);
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
99 gtk_widget_hide(jump_to_track_win);
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
100 }
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
101
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
102 static void
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
103 ui_jump_to_track_jump(GtkTreeView * treeview)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
104 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
105 GtkTreeModel *model;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
106 GtkTreeSelection *selection;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
107 GtkTreeIter iter;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
108 guint pos;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
109
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
110 model = gtk_tree_view_get_model(treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
111 selection = gtk_tree_view_get_selection(treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
112
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
113 if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
114 return;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
115
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
116 gtk_tree_model_get(model, &iter, 0, &pos, -1);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
117
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
118 change_song(pos - 1);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
119
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
120 if(cfg.close_jtf_dialog)
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
121 ui_jump_to_track_hide();
3917
b5ee3a4a8e3b libaudclient:
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3526
diff changeset
122 }
b5ee3a4a8e3b libaudclient:
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3526
diff changeset
123
2805
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
124 static void
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
125 ui_jump_to_track_toggle_cb(GtkWidget * toggle)
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
126 {
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
127 cfg.close_jtf_dialog =
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
128 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toggle));
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
129 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
130
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
131 static void
4116
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
132 ui_jump_to_track_toggle2_cb(GtkWidget * toggle)
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
133 {
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
134 cfg.remember_jtf_entry =
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
135 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toggle));
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
136 }
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
137
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
138 static void
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
139 ui_jump_to_track_jump_cb(GtkTreeView * treeview,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
140 gpointer data)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
141 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
142 ui_jump_to_track_jump(treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
143 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
144
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
145 static void
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
146 ui_jump_to_track_set_queue_button_label(GtkButton * button,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
147 guint pos)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
148 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
149 if (playlist_is_position_queued(playlist_get_active(), pos))
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
150 gtk_button_set_label(button, _("Un_queue"));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
151 else
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
152 gtk_button_set_label(button, _("_Queue"));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
153 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
154
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
155 static void
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
156 ui_jump_to_track_queue_cb(GtkButton * button,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
157 gpointer data)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
158 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
159 GtkTreeView *treeview;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
160 GtkTreeModel *model;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
161 GtkTreeSelection *selection;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
162 GtkTreeIter iter;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
163 guint pos;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
164
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
165 treeview = GTK_TREE_VIEW(data);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
166 model = gtk_tree_view_get_model(treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
167 selection = gtk_tree_view_get_selection(treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
168
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
169 if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
170 return;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
171
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
172 gtk_tree_model_get(model, &iter, 0, &pos, -1);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
173
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
174 playlist_queue_position(playlist_get_active(), (pos - 1));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
175
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
176 ui_jump_to_track_set_queue_button_label(button, (pos - 1));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
177 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
178
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
179 static void
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
180 ui_jump_to_track_selection_changed_cb(GtkTreeSelection *treesel,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
181 gpointer data)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
182 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
183 GtkTreeView *treeview;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
184 GtkTreeModel *model;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
185 GtkTreeSelection *selection;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
186 GtkTreeIter iter;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
187 guint pos;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
188
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
189 treeview = gtk_tree_selection_get_tree_view(treesel);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
190 model = gtk_tree_view_get_model(treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
191 selection = gtk_tree_view_get_selection(treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
192
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
193 if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
194 return;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
195
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
196 gtk_tree_model_get(model, &iter, 0, &pos, -1);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
197
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
198 ui_jump_to_track_set_queue_button_label(GTK_BUTTON(data), (pos - 1));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
199 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
200
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
201 static gboolean
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
202 ui_jump_to_track_edit_keypress_cb(GtkWidget * object,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
203 GdkEventKey * event,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
204 gpointer data)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
205 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
206 switch (event->keyval) {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
207 case GDK_Return:
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
208 if (gtk_im_context_filter_keypress (GTK_ENTRY (object)->im_context, event)) {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
209 GTK_ENTRY (object)->need_im_reset = TRUE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
210 return TRUE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
211 } else {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
212 ui_jump_to_track_jump(GTK_TREE_VIEW(data));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
213 return TRUE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
214 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
215 default:
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
216 return FALSE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
217 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
218 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
219
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
220 static gboolean
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
221 ui_jump_to_track_keypress_cb(GtkWidget * object,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
222 GdkEventKey * event,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
223 gpointer data)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
224 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
225 switch (event->keyval) {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
226 case GDK_Escape:
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
227 ui_jump_to_track_hide();
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
228 return TRUE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
229 case GDK_KP_Enter:
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
230 ui_jump_to_track_queue_cb(NULL, data);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
231 return TRUE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
232 default:
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
233 return FALSE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
234 };
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
235
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
236 return FALSE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
237 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
238
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
239 static gboolean
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
240 ui_jump_to_track_match(const gchar * song, GSList *regex_list)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
241 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
242 if ( song == NULL )
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
243 return FALSE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
244
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
245 for ( ; regex_list ; regex_list = g_slist_next(regex_list) )
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
246 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
247 regex_t *regex = regex_list->data;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
248 if ( regexec( regex , song , 0 , NULL , 0 ) != 0 )
4179
aca0dd668f7b Jump to Track leaks memory when matching songs. (Bugzilla #81)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4178
diff changeset
249 return FALSE;
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
250 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
251
4179
aca0dd668f7b Jump to Track leaks memory when matching songs. (Bugzilla #81)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4178
diff changeset
252 return TRUE;
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
253 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
254
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
255 void
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
256 ui_jump_to_track_update(GtkWidget * widget, gpointer user_data)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
257 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
258 guint row;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
259 GList *playlist_glist;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
260 gchar *desc_buf = NULL;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
261 GtkTreeIter iter;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
262 GtkTreeSelection *selection;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
263 Playlist *playlist;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
264
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
265 GtkTreeModel *store;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
266
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
267 GtkTreeView *tree = GTK_TREE_VIEW(g_object_get_data(user_data, "treeview"));
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
268 GtkEntry *edit = g_object_get_data(user_data, "edit");
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
269
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
270 if (!jump_to_track_win)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
271 return;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
272
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
273 /* clear edit widget */
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
274 if(edit){
4116
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
275 gtk_entry_set_text(edit, "");
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
276 }
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
277
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
278 store = gtk_tree_view_get_model(tree);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
279 gtk_list_store_clear(GTK_LIST_STORE(store));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
280
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
281 row = 1;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
282 playlist = playlist_get_active();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
283 for (playlist_glist = playlist->entries; playlist_glist;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
284 playlist_glist = g_list_next(playlist_glist)) {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
285 PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
286
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
287 if (entry->title)
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
288 desc_buf = g_strdup(entry->title);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
289 else {
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
290 gchar *realfn = NULL;
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
291 realfn = g_filename_from_uri(entry->filename, NULL, NULL);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
292 if (strchr(realfn ? realfn : entry->filename, '/'))
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
293 desc_buf = str_to_utf8(strrchr(realfn ? realfn : entry->filename, '/') + 1);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
294 else
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
295 desc_buf = str_to_utf8(realfn ? realfn : entry->filename);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
296 g_free(realfn); realfn = NULL;
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
297 }
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
298
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
299 gtk_list_store_append(GTK_LIST_STORE(store), &iter);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
300 gtk_list_store_set(GTK_LIST_STORE(store), &iter,
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
301 0, row, 1, desc_buf, -1);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
302 row++;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
303
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
304 g_free(desc_buf);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
305 desc_buf = NULL;
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
306 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
307
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
308 gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter);
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
309 selection = gtk_tree_view_get_selection(tree);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
310 gtk_tree_selection_select_iter(selection, &iter);
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
311 serial = playlist->serial; // important. --yaz
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
312 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
313
4160
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
314
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
315 /**
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
316 * Normalizes an UTF-8 string to be used in case-insensitive searches.
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
317 *
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
318 * Returned string should be freed.
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
319 */
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
320 static gchar *
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
321 normalize_search_string(const gchar * string)
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
322 {
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
323 gchar* normalized_string = g_utf8_normalize(string, -1, G_NORMALIZE_NFKD);
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
324 gchar* folded_string = g_utf8_casefold(normalized_string, -1);
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
325 g_free(normalized_string);
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
326 return folded_string;
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
327 }
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
328
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
329 static void
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
330 ui_jump_to_track_edit_cb(GtkEntry * entry, gpointer user_data)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
331 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
332 GtkTreeView *treeview = GTK_TREE_VIEW(user_data);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
333 GtkTreeSelection *selection;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
334 GtkTreeIter iter;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
335
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
336 GtkListStore *store;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
337
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
338 guint song_index = 0;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
339 gchar **words;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
340 GList *playlist_glist;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
341 Playlist *playlist;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
342
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
343 gboolean match = FALSE;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
344
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
345 GSList *regex_list = NULL, *regex_list_tmp = NULL;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
346 gint i = -1;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
347
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
348 /* Chop the key string into ' '-separated key regex-pattern strings */
4160
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
349 gchar *search_text = normalize_search_string(gtk_entry_get_text(entry));
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
350 words = g_strsplit(search_text, " ", 0);
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
351 g_free(search_text);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
352
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
353 /* create a list of regex using the regex-pattern strings */
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
354 while ( words[++i] != NULL )
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
355 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
356 regex_t *regex = g_malloc(sizeof(regex_t));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
357 #if defined(USE_REGEX_PCRE)
4160
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
358 if ( regcomp( regex , words[i] , REG_NOSUB | REG_UTF8 ) == 0 )
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
359 #else
4160
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
360 if ( regcomp( regex , words[i] , REG_NOSUB ) == 0 )
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
361 #endif
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
362 regex_list = g_slist_append( regex_list , regex );
4179
aca0dd668f7b Jump to Track leaks memory when matching songs. (Bugzilla #81)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4178
diff changeset
363 else
aca0dd668f7b Jump to Track leaks memory when matching songs. (Bugzilla #81)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4178
diff changeset
364 g_free( regex );
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
365 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
366
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
367 /* FIXME: Remove the connected signals before clearing
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
368 * (row-selected will still eventually arrive once) */
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
369 store = GTK_LIST_STORE(gtk_tree_view_get_model(treeview));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
370 /* detach model from treeview */
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
371 g_object_ref( store );
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
372 gtk_tree_view_set_model( GTK_TREE_VIEW(treeview) , NULL );
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
373
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
374 gtk_list_store_clear(store);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
375
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
376 playlist = playlist_get_active();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
377
3468
440877c9360e Changed PLAYLIST_{UN}LOCK() macros to use playlist itself as argument, not
Matti Hamalainen <ccr@tnsp.org>
parents: 3251
diff changeset
378 PLAYLIST_LOCK(playlist);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
379
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
380 for (playlist_glist = playlist->entries; playlist_glist;
2546
9fe930a34683 [svn] - run gtk events while iterating through the playlist
nenolod
parents: 2500
diff changeset
381 playlist_glist = g_list_next(playlist_glist))
9fe930a34683 [svn] - run gtk events while iterating through the playlist
nenolod
parents: 2500
diff changeset
382 {
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
383 PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
384 gchar *title = NULL;
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
385
4160
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
386 if (entry->title) {
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
387 title = normalize_search_string(entry->title);
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
388 } else {
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
389 gchar *realfn = NULL;
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
390 realfn = g_filename_from_uri(entry->filename, NULL, NULL);
4160
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
391 gchar *tmp_title = str_to_utf8(realfn ? realfn : entry->filename);
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
392 title = normalize_search_string(tmp_title);
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
393 g_free(tmp_title);
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
394 g_free(realfn); realfn = NULL;
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
395 }
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
396
2819
75b12d24b7dc [svn] match the whole filename when tag isn't available, but i couldnt figure out how to do this all the time because it kept crashing...
majeru
parents: 2805
diff changeset
397 /*we are matching all the path not just the filename or title*/
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
398
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
399 /* Compare the reg.expressions to the string - if all the
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
400 regexp in regex_list match, add to the ListStore */
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
401
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
402 /*
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
403 * FIXME: The search string should be adapted to the
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
404 * current display setting, e.g. if the user has set it to
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
405 * "%p - %t" then build the match string like that too, or
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
406 * even better, search for each of the tags seperatly.
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
407 *
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
408 * In any case the string to match should _never_ contain
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
409 * something the user can't actually see in the playlist.
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
410 */
2819
75b12d24b7dc [svn] match the whole filename when tag isn't available, but i couldnt figure out how to do this all the time because it kept crashing...
majeru
parents: 2805
diff changeset
411 //g_print ("it passed\n");
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
412 if (regex_list != NULL)
2819
75b12d24b7dc [svn] match the whole filename when tag isn't available, but i couldnt figure out how to do this all the time because it kept crashing...
majeru
parents: 2805
diff changeset
413 match = ui_jump_to_track_match(title, regex_list);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
414 else
2819
75b12d24b7dc [svn] match the whole filename when tag isn't available, but i couldnt figure out how to do this all the time because it kept crashing...
majeru
parents: 2805
diff changeset
415 match = TRUE;
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
416
4160
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
417 g_free(title); title = NULL;
472aaaca02c0 Make "jump to track" feature to normalize search and match strings (Bugzilla #20)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4116
diff changeset
418
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
419 if (match) {
2819
75b12d24b7dc [svn] match the whole filename when tag isn't available, but i couldnt figure out how to do this all the time because it kept crashing...
majeru
parents: 2805
diff changeset
420 if (entry->title)
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
421 title = g_strdup(entry->title);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
422 else {
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
423 gchar *realfn = NULL;
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
424 realfn = g_filename_from_uri(entry->filename, NULL, NULL);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
425 if (strchr(realfn ? realfn : entry->filename, '/'))
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
426 title = str_to_utf8(strrchr(realfn ? realfn : entry->filename, '/') + 1);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
427 else
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
428 title = str_to_utf8(realfn ? realfn : entry->filename);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
429 g_free(realfn); realfn = NULL;
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
430 }
2819
75b12d24b7dc [svn] match the whole filename when tag isn't available, but i couldnt figure out how to do this all the time because it kept crashing...
majeru
parents: 2805
diff changeset
431 gtk_list_store_append(store, &iter);
75b12d24b7dc [svn] match the whole filename when tag isn't available, but i couldnt figure out how to do this all the time because it kept crashing...
majeru
parents: 2805
diff changeset
432 gtk_list_store_set(store, &iter, 0, song_index + 1 , 1, title, -1);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
433 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
434 song_index++;
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
435 g_free(title); title = NULL;
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
436 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
437
3468
440877c9360e Changed PLAYLIST_{UN}LOCK() macros to use playlist itself as argument, not
Matti Hamalainen <ccr@tnsp.org>
parents: 3251
diff changeset
438 PLAYLIST_UNLOCK(playlist);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
439
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
440 /* attach the model again to the treeview */
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
441 gtk_tree_view_set_model( GTK_TREE_VIEW(treeview) , GTK_TREE_MODEL(store) );
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
442 g_object_unref( store );
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
443
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
444 if ( regex_list != NULL )
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
445 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
446 regex_list_tmp = regex_list;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
447 while ( regex_list != NULL )
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
448 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
449 regex_t *regex = regex_list->data;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
450 regfree( regex );
4179
aca0dd668f7b Jump to Track leaks memory when matching songs. (Bugzilla #81)
Jussi Judin <jjudin+audacious@iki.fi>
parents: 4178
diff changeset
451 g_free( regex );
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
452 regex_list = g_slist_next(regex_list);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
453 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
454 g_slist_free( regex_list_tmp );
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
455 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
456 g_strfreev(words);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
457
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
458 if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter)) {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
459 selection = gtk_tree_view_get_selection(treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
460 gtk_tree_selection_select_iter(selection, &iter);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
461 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
462 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
463
2639
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
464 static gboolean
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
465 ui_jump_to_track_fill(gpointer treeview)
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
466 {
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
467 GList *playlist_glist;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
468 Playlist *playlist;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
469 gchar *desc_buf = NULL;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
470 guint row;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
471 GtkTreeIter iter;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
472 GtkListStore *jtf_store = (GtkListStore*)gtk_tree_view_get_model( GTK_TREE_VIEW(treeview) );
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
473
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
474 /* detach model from treeview before fill */
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
475 g_object_ref(jtf_store);
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
476 gtk_tree_view_set_model( GTK_TREE_VIEW(treeview), NULL );
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
477
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
478 gtk_list_store_clear(jtf_store);
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
479
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
480 row = 1;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
481 playlist = playlist_get_active();
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
482
3468
440877c9360e Changed PLAYLIST_{UN}LOCK() macros to use playlist itself as argument, not
Matti Hamalainen <ccr@tnsp.org>
parents: 3251
diff changeset
483 PLAYLIST_LOCK(playlist);
2639
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
484 for (playlist_glist = playlist->entries; playlist_glist;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
485 playlist_glist = g_list_next(playlist_glist)) {
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
486
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
487 PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data);
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
488
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
489 if (entry->title)
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
490 desc_buf = g_strdup(entry->title);
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
491 else {
3081
ba2143c1c6f5 unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2976
diff changeset
492 gchar *realfn = NULL;
ba2143c1c6f5 unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2976
diff changeset
493 realfn = g_filename_from_uri(entry->filename, NULL, NULL);
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
494 if (strchr(realfn ? realfn : entry->filename, '/'))
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
495 desc_buf = str_to_utf8(strrchr(realfn ? realfn : entry->filename, '/') + 1);
3081
ba2143c1c6f5 unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2976
diff changeset
496 else
3096
8e4da6a4ab91 - make jump to track more friendly to file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3092
diff changeset
497 desc_buf = str_to_utf8(realfn ? realfn : entry->filename);
3081
ba2143c1c6f5 unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2976
diff changeset
498 g_free(realfn); realfn = NULL;
ba2143c1c6f5 unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2976
diff changeset
499 }
2639
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
500
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
501 gtk_list_store_append(GTK_LIST_STORE(jtf_store), &iter);
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
502 gtk_list_store_set(GTK_LIST_STORE(jtf_store), &iter,
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
503 0, row, 1, desc_buf, -1);
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
504 row++;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
505
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
506 g_free(desc_buf);
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
507 desc_buf = NULL;
2639
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
508 }
3468
440877c9360e Changed PLAYLIST_{UN}LOCK() macros to use playlist itself as argument, not
Matti Hamalainen <ccr@tnsp.org>
parents: 3251
diff changeset
509 PLAYLIST_UNLOCK(playlist);
2639
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
510
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
511 /* attach liststore to treeview */
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
512 gtk_tree_view_set_model(GTK_TREE_VIEW(treeview), GTK_TREE_MODEL(jtf_store));
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
513 g_object_unref(jtf_store);
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
514 serial = playlist->serial;
2639
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
515 return FALSE;
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
516 }
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
517
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
518 static gboolean
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
519 watchdog(gpointer storage)
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
520 {
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
521 GtkWidget *widget;
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
522 Playlist *playlist = playlist_get_active();
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
523
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
524 if(serial == playlist->serial)
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
525 return TRUE;
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
526
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
527 widget = g_object_get_data(storage, "widget");
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
528 ui_jump_to_track_update(widget, storage);
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
529 return TRUE;
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
530 }
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
531
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
532 void
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
533 ui_jump_to_track(void)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
534 {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
535 GtkWidget *scrollwin;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
536 GtkWidget *vbox, *bbox, *sep;
4116
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
537 GtkWidget *toggle, *toggle2;
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
538 GtkWidget *jump, *queue, *close;
4085
008708425c83 make filter field in jtf dialog always grab focus on appearance.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3920
diff changeset
539 GtkWidget *rescan;
4115
e99284bb7936 Reset the text entry box to nothing when the jump to track window is requested.
William Pitcock <nenolod@atheme.org>
parents: 4085
diff changeset
540 GtkWidget *search_label, *hbox;
4085
008708425c83 make filter field in jtf dialog always grab focus on appearance.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3920
diff changeset
541 static GtkWidget *edit;
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
542
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
543 GtkWidget *treeview = NULL;
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
544 GtkListStore *jtf_store;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
545
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
546 GtkCellRenderer *renderer;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
547 GtkTreeViewColumn *column;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
548
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
549 gpointer storage;
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
550
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
551 if (jump_to_track_win) {
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
552 gtk_window_present(GTK_WINDOW(jump_to_track_win));
4116
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
553
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
554 if(!cfg.remember_jtf_entry)
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
555 gtk_entry_set_text(GTK_ENTRY(edit), "");
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
556
4085
008708425c83 make filter field in jtf dialog always grab focus on appearance.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3920
diff changeset
557 gtk_widget_grab_focus(edit);
4116
5853d43e539a remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 4115
diff changeset
558 gtk_editable_select_region(GTK_EDITABLE(edit), 0, -1);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
559 return;
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
560 }
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
561
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
562 #if defined(USE_REGEX_ONIGURUMA)
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
563 /* set encoding for Oniguruma regex to UTF-8 */
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
564 reg_set_encoding( REG_POSIX_ENCODING_UTF8 );
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
565 onig_set_default_syntax( ONIG_SYNTAX_POSIX_BASIC );
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
566 #endif
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
567
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
568 jump_to_track_win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
569 gtk_window_set_type_hint(GTK_WINDOW(jump_to_track_win),
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
570 GDK_WINDOW_TYPE_HINT_DIALOG);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
571
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
572 gtk_window_set_title(GTK_WINDOW(jump_to_track_win), _("Jump to Track"));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
573
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
574 gtk_window_set_position(GTK_WINDOW(jump_to_track_win), GTK_WIN_POS_CENTER);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
575 g_signal_connect(jump_to_track_win, "destroy",
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
576 G_CALLBACK(gtk_widget_destroyed), &jump_to_track_win);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
577
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
578 gtk_container_border_width(GTK_CONTAINER(jump_to_track_win), 10);
4177
948d373a513c just a little bigger
Cristi Magherusan <majeru@atheme-project.org>
parents: 4176
diff changeset
579 gtk_window_set_default_size(GTK_WINDOW(jump_to_track_win), 600, 500);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
580
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
581 vbox = gtk_vbox_new(FALSE, 5);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
582 gtk_container_add(GTK_CONTAINER(jump_to_track_win), vbox);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
583
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
584 jtf_store = gtk_list_store_new(2, G_TYPE_UINT, G_TYPE_STRING);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
585 treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(jtf_store));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
586 g_object_unref(jtf_store);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
587
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
588 gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(treeview), TRUE);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
589
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
590 column = gtk_tree_view_column_new();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
591 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview), FALSE);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
592 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
593
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
594 renderer = gtk_cell_renderer_text_new();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
595 gtk_tree_view_column_pack_start(column, renderer, FALSE);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
596 gtk_tree_view_column_set_attributes(column, renderer, "text", 0, NULL);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
597 gtk_tree_view_column_set_spacing(column, 4);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
598
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
599 renderer = gtk_cell_renderer_text_new();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
600 gtk_tree_view_column_pack_start(column, renderer, FALSE);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
601 gtk_tree_view_column_set_attributes(column, renderer, "text", 1, NULL);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
602 gtk_tree_view_column_set_spacing(column, 4);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
603 gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
604
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
605 gtk_tree_view_set_search_column(GTK_TREE_VIEW(treeview), 1);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
606
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
607 g_signal_connect(treeview, "row-activated",
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
608 G_CALLBACK(ui_jump_to_track_jump), NULL);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
609
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
610 hbox = gtk_hbox_new(FALSE, 3);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
611 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
612
4178
cb0952a41f7b - removed genres that appeared twice in the file info dialog
mf0102 <0102@gmx.at>
parents: 4177
diff changeset
613
cb0952a41f7b - removed genres that appeared twice in the file info dialog
mf0102 <0102@gmx.at>
parents: 4177
diff changeset
614 /* filter box */
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
615 search_label = gtk_label_new(_("Filter: "));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
616 gtk_label_set_markup_with_mnemonic(GTK_LABEL(search_label), _("_Filter:"));
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
617 gtk_box_pack_start(GTK_BOX(hbox), search_label, FALSE, FALSE, 0);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
618
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
619 edit = gtk_entry_new();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
620 gtk_entry_set_editable(GTK_ENTRY(edit), TRUE);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
621 gtk_label_set_mnemonic_widget(GTK_LABEL(search_label), edit);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
622 g_signal_connect(edit, "changed",
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
623 G_CALLBACK(ui_jump_to_track_edit_cb), treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
624
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
625 g_signal_connect(edit, "key_press_event",
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
626 G_CALLBACK(ui_jump_to_track_edit_keypress_cb), treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
627
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
628 g_signal_connect(jump_to_track_win, "key_press_event",
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
629 G_CALLBACK(ui_jump_to_track_keypress_cb), treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
630
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
631 gtk_box_pack_start(GTK_BOX(hbox), edit, TRUE, TRUE, 3);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
632
4174
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
633 /* remember text entry */
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
634 toggle2 = gtk_check_button_new_with_label(_("Remember"));
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
635 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle2),
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
636 cfg.remember_jtf_entry ? TRUE : FALSE);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
637 gtk_box_pack_start(GTK_BOX(hbox), toggle2, FALSE, FALSE, 0);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
638 g_signal_connect(toggle2, "clicked",
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
639 G_CALLBACK(ui_jump_to_track_toggle2_cb),
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
640 toggle2);
4178
cb0952a41f7b - removed genres that appeared twice in the file info dialog
mf0102 <0102@gmx.at>
parents: 4177
diff changeset
641
cb0952a41f7b - removed genres that appeared twice in the file info dialog
mf0102 <0102@gmx.at>
parents: 4177
diff changeset
642 /* clear button */
4174
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
643 rescan = gtk_button_new_from_stock(GTK_STOCK_CLEAR);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
644 gtk_box_pack_start(GTK_BOX(hbox), rescan, FALSE, FALSE, 0);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
645
4178
cb0952a41f7b - removed genres that appeared twice in the file info dialog
mf0102 <0102@gmx.at>
parents: 4177
diff changeset
646
4174
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
647 /* pack to container */
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
648 storage = g_object_new(G_TYPE_OBJECT, NULL);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
649 g_object_set_data(storage, "widget", rescan);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
650 g_object_set_data(storage, "treeview", treeview);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
651 g_object_set_data(storage, "edit", edit);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
652
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
653 g_signal_connect(rescan, "clicked",
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
654 G_CALLBACK(ui_jump_to_track_update), storage);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
655
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
656 GTK_WIDGET_SET_FLAGS(rescan, GTK_CAN_DEFAULT);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
657 gtk_widget_grab_default(rescan);
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
658
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
659 scrollwin = gtk_scrolled_window_new(NULL, NULL);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
660 gtk_container_add(GTK_CONTAINER(scrollwin), treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
661 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrollwin),
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
662 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
663 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrollwin),
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
664 GTK_SHADOW_IN);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
665 gtk_box_pack_start(GTK_BOX(vbox), scrollwin, TRUE, TRUE, 0);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
666
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
667 sep = gtk_hseparator_new();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
668 gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
669
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
670 bbox = gtk_hbutton_box_new();
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
671 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
4174
6425fbe741f1 reorganized the JTF dialog, it's not so wide anymore
Cristi Magherusan <majeru@atheme-project.org>
parents: 4160
diff changeset
672 gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 4);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
673 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
674
2805
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
675 /* close dialog toggle */
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
676 toggle = gtk_check_button_new_with_label(_("Close on Jump"));
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
677 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle),
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
678 cfg.close_jtf_dialog ? TRUE : FALSE);
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
679 gtk_box_pack_start(GTK_BOX(bbox), toggle, FALSE, FALSE, 0);
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
680 g_signal_connect(toggle, "clicked",
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
681 G_CALLBACK(ui_jump_to_track_toggle_cb),
6295535fbf49 [svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents: 2717
diff changeset
682 toggle);
4176
75188b91097e added the GTK_STOCK_ADD pixmap to the queue button
Cristi Magherusan <majeru@atheme-project.org>
parents: 4174
diff changeset
683
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
684 queue = gtk_button_new_with_mnemonic(_("_Queue"));
4176
75188b91097e added the GTK_STOCK_ADD pixmap to the queue button
Cristi Magherusan <majeru@atheme-project.org>
parents: 4174
diff changeset
685 gtk_button_set_image(GTK_BUTTON(queue),
4178
cb0952a41f7b - removed genres that appeared twice in the file info dialog
mf0102 <0102@gmx.at>
parents: 4177
diff changeset
686 gtk_image_new_from_stock(AUD_STOCK_QUEUETOGGLE, GTK_ICON_SIZE_BUTTON));
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
687 gtk_box_pack_start(GTK_BOX(bbox), queue, FALSE, FALSE, 0);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
688 GTK_WIDGET_SET_FLAGS(queue, GTK_CAN_DEFAULT);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
689 g_signal_connect(queue, "clicked",
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
690 G_CALLBACK(ui_jump_to_track_queue_cb),
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
691 treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
692 g_signal_connect(gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)), "changed",
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
693 G_CALLBACK(ui_jump_to_track_selection_changed_cb),
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
694 queue);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
695
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
696 jump = gtk_button_new_from_stock(GTK_STOCK_JUMP_TO);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
697 gtk_box_pack_start(GTK_BOX(bbox), jump, FALSE, FALSE, 0);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
698
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
699 g_signal_connect_swapped(jump, "clicked",
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
700 G_CALLBACK(ui_jump_to_track_jump_cb),
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
701 treeview);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
702
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
703 GTK_WIDGET_SET_FLAGS(jump, GTK_CAN_DEFAULT);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
704 gtk_widget_grab_default(jump);
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
705
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
706 close = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
707 gtk_box_pack_start(GTK_BOX(bbox), close, FALSE, FALSE, 0);
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
708 g_signal_connect_swapped(close, "clicked",
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
709 G_CALLBACK(gtk_widget_hide),
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
710 jump_to_track_win); // just hide --yaz
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
711 GTK_WIDGET_SET_FLAGS(close, GTK_CAN_DEFAULT);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
712
2639
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
713 g_timeout_add(100, (GSourceFunc)ui_jump_to_track_fill, treeview);
3920
c2b2828186ba - serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 3917
diff changeset
714 g_timeout_add(500, (GSourceFunc)watchdog, storage);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
715
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
716 gtk_widget_show_all(jump_to_track_win);
2639
ed67025aeea5 [svn] - give focus to jump_to_track window before filling it with information; this way user can start typing while huge playlists are loaded
giacomo
parents: 2627
diff changeset
717 gtk_widget_grab_focus(edit);
2500
04642d2d0941 [svn] - split out jump to track
nenolod
parents:
diff changeset
718 }