Mercurial > audlegacy
annotate src/audacious/ui_jumptotrack.c @ 3015:02a62ac3d9c2 trunk
Handle metadata sources where there are no mimetype support yet implemented.
author | William Pitcock <nenolod@atheme-project.org> |
---|---|
date | Mon, 09 Jul 2007 05:17:21 -0500 |
parents | 6131bf51ee63 |
children | ba2143c1c6f5 |
rev | line source |
---|---|
2500 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2006 Audacious development team. | |
3 * | |
4 * BMP - Cross-platform multimedia player | |
5 * Copyright (C) 2003-2004 BMP development team. | |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; under version 2 of the License. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 # include "config.h" | |
26 #endif | |
27 | |
28 | |
29 #include <glib.h> | |
30 #include <glib/gi18n.h> | |
31 #include <glib/gprintf.h> | |
32 #include <gtk/gtk.h> | |
33 #include <gtk/gtkmessagedialog.h> | |
34 | |
35 /* GDK including */ | |
36 #include "platform/smartinclude.h" | |
37 | |
38 #include <math.h> | |
39 #include <stdlib.h> | |
40 #include <string.h> | |
41 | |
42 #include <X11/Xlib.h> | |
43 | |
44 #include <sys/types.h> | |
45 | |
46 #if defined(USE_REGEX_ONIGURUMA) | |
47 #include <onigposix.h> | |
48 #elif defined(USE_REGEX_PCRE) | |
49 #include <pcreposix.h> | |
50 #else | |
51 #include <regex.h> | |
52 #endif | |
53 | |
54 #include "widgets/widgetcore.h" | |
55 #include "ui_main.h" | |
56 #include "icons-stock.h" | |
57 | |
58 #include "actions-mainwin.h" | |
59 | |
60 #include "main.h" | |
61 | |
62 #include "dnd.h" | |
63 #include "dock.h" | |
64 #include "genevent.h" | |
65 #include "hints.h" | |
66 #include "input.h" | |
67 #include "playback.h" | |
68 #include "playlist.h" | |
69 #include "pluginenum.h" | |
70 #include "ui_credits.h" | |
71 #include "ui_equalizer.h" | |
72 #include "ui_fileopener.h" | |
73 #include "ui_manager.h" | |
74 #include "ui_playlist.h" | |
75 #include "ui_preferences.h" | |
76 #include "ui_skinselector.h" | |
77 #include "ui_urlopener.h" | |
78 #include "strings.h" | |
79 #include "util.h" | |
80 #include "visualization.h" | |
81 | |
82 #include "ui_skinned_window.h" | |
83 | |
84 static GtkWidget *jump_to_track_win = NULL; | |
85 | |
86 static void | |
87 change_song(guint pos) | |
88 { | |
89 if (playback_get_playing()) | |
90 playback_stop(); | |
91 | |
92 playlist_set_position(playlist_get_active(), pos); | |
93 playback_initiate(); | |
94 } | |
95 | |
96 static void | |
97 ui_jump_to_track_jump(GtkTreeView * treeview) | |
98 { | |
99 GtkTreeModel *model; | |
100 GtkTreeSelection *selection; | |
101 GtkTreeIter iter; | |
102 guint pos; | |
103 | |
104 model = gtk_tree_view_get_model(treeview); | |
105 selection = gtk_tree_view_get_selection(treeview); | |
106 | |
107 if (!gtk_tree_selection_get_selected(selection, NULL, &iter)) | |
108 return; | |
109 | |
110 gtk_tree_model_get(model, &iter, 0, &pos, -1); | |
111 | |
112 change_song(pos - 1); | |
113 | |
114 /* FIXME: should only hide window */ | |
2805
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
115 if(cfg.close_jtf_dialog){ |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
116 gtk_widget_destroy(jump_to_track_win); |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
117 jump_to_track_win = NULL; |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
118 } |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
119 } |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
120 |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
121 static void |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
122 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
|
123 { |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
124 cfg.close_jtf_dialog = |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
125 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toggle)); |
2500 | 126 } |
127 | |
128 static void | |
129 ui_jump_to_track_jump_cb(GtkTreeView * treeview, | |
130 gpointer data) | |
131 { | |
132 ui_jump_to_track_jump(treeview); | |
133 } | |
134 | |
135 static void | |
136 ui_jump_to_track_set_queue_button_label(GtkButton * button, | |
137 guint pos) | |
138 { | |
139 if (playlist_is_position_queued(playlist_get_active(), pos)) | |
140 gtk_button_set_label(button, _("Un_queue")); | |
141 else | |
142 gtk_button_set_label(button, _("_Queue")); | |
143 } | |
144 | |
145 static void | |
146 ui_jump_to_track_queue_cb(GtkButton * button, | |
147 gpointer data) | |
148 { | |
149 GtkTreeView *treeview; | |
150 GtkTreeModel *model; | |
151 GtkTreeSelection *selection; | |
152 GtkTreeIter iter; | |
153 guint pos; | |
154 | |
155 treeview = GTK_TREE_VIEW(data); | |
156 model = gtk_tree_view_get_model(treeview); | |
157 selection = gtk_tree_view_get_selection(treeview); | |
158 | |
159 if (!gtk_tree_selection_get_selected(selection, NULL, &iter)) | |
160 return; | |
161 | |
162 gtk_tree_model_get(model, &iter, 0, &pos, -1); | |
163 | |
164 playlist_queue_position(playlist_get_active(), (pos - 1)); | |
165 | |
166 ui_jump_to_track_set_queue_button_label(button, (pos - 1)); | |
167 } | |
168 | |
169 static void | |
170 ui_jump_to_track_selection_changed_cb(GtkTreeSelection *treesel, | |
171 gpointer data) | |
172 { | |
173 GtkTreeView *treeview; | |
174 GtkTreeModel *model; | |
175 GtkTreeSelection *selection; | |
176 GtkTreeIter iter; | |
177 guint pos; | |
178 | |
179 treeview = gtk_tree_selection_get_tree_view(treesel); | |
180 model = gtk_tree_view_get_model(treeview); | |
181 selection = gtk_tree_view_get_selection(treeview); | |
182 | |
183 if (!gtk_tree_selection_get_selected(selection, NULL, &iter)) | |
184 return; | |
185 | |
186 gtk_tree_model_get(model, &iter, 0, &pos, -1); | |
187 | |
188 ui_jump_to_track_set_queue_button_label(GTK_BUTTON(data), (pos - 1)); | |
189 } | |
190 | |
191 static gboolean | |
192 ui_jump_to_track_edit_keypress_cb(GtkWidget * object, | |
193 GdkEventKey * event, | |
194 gpointer data) | |
195 { | |
196 switch (event->keyval) { | |
197 case GDK_Return: | |
198 if (gtk_im_context_filter_keypress (GTK_ENTRY (object)->im_context, event)) { | |
199 GTK_ENTRY (object)->need_im_reset = TRUE; | |
200 return TRUE; | |
201 } else { | |
202 ui_jump_to_track_jump(GTK_TREE_VIEW(data)); | |
203 return TRUE; | |
204 } | |
205 default: | |
206 return FALSE; | |
207 } | |
208 } | |
209 | |
210 static gboolean | |
211 ui_jump_to_track_keypress_cb(GtkWidget * object, | |
212 GdkEventKey * event, | |
213 gpointer data) | |
214 { | |
215 switch (event->keyval) { | |
216 case GDK_Escape: | |
217 /* FIXME: show only hide window */ | |
218 gtk_widget_destroy(jump_to_track_win); | |
219 jump_to_track_win = NULL; | |
220 return TRUE; | |
221 case GDK_KP_Enter: | |
222 ui_jump_to_track_queue_cb(NULL, data); | |
223 return TRUE; | |
224 default: | |
225 return FALSE; | |
226 }; | |
227 | |
228 return FALSE; | |
229 } | |
230 | |
231 static gboolean | |
232 ui_jump_to_track_match(const gchar * song, GSList *regex_list) | |
233 { | |
234 gboolean rv = TRUE; | |
235 | |
236 if ( song == NULL ) | |
237 return FALSE; | |
238 | |
239 for ( ; regex_list ; regex_list = g_slist_next(regex_list) ) | |
240 { | |
241 regex_t *regex = regex_list->data; | |
242 if ( regexec( regex , song , 0 , NULL , 0 ) != 0 ) | |
243 { | |
244 rv = FALSE; | |
245 break; | |
246 } | |
247 } | |
248 | |
249 return rv; | |
250 } | |
251 | |
252 /* FIXME: Clear the entry when the list gets updated */ | |
253 void | |
254 ui_jump_to_track_update(GtkWidget * widget, gpointer user_data) | |
255 { | |
256 /* FIXME: Is not in sync with playlist due to delayed extinfo | |
257 * reading */ | |
258 guint row; | |
259 GList *playlist_glist; | |
260 gchar *desc_buf = NULL; | |
261 GtkTreeIter iter; | |
262 GtkTreeSelection *selection; | |
263 Playlist *playlist; | |
264 | |
265 GtkTreeModel *store; | |
266 | |
267 if (!jump_to_track_win) | |
268 return; | |
269 | |
270 store = gtk_tree_view_get_model(GTK_TREE_VIEW(user_data)); | |
271 gtk_list_store_clear(GTK_LIST_STORE(store)); | |
272 | |
273 row = 1; | |
274 playlist = playlist_get_active(); | |
275 for (playlist_glist = playlist->entries; playlist_glist; | |
276 playlist_glist = g_list_next(playlist_glist)) { | |
277 PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data); | |
278 | |
279 if (entry->title) | |
280 desc_buf = g_strdup(entry->title); | |
281 else if (strchr(entry->filename, '/')) | |
282 desc_buf = str_to_utf8(strrchr(entry->filename, '/') + 1); | |
283 else | |
284 desc_buf = str_to_utf8(entry->filename); | |
285 | |
286 gtk_list_store_append(GTK_LIST_STORE(store), &iter); | |
287 gtk_list_store_set(GTK_LIST_STORE(store), &iter, | |
288 0, row, 1, desc_buf, -1); | |
289 row++; | |
290 | |
291 if(desc_buf) { | |
292 g_free(desc_buf); | |
293 desc_buf = NULL; | |
294 } | |
295 } | |
296 | |
297 gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter); | |
298 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(user_data)); | |
299 gtk_tree_selection_select_iter(selection, &iter); | |
300 } | |
301 | |
302 static void | |
303 ui_jump_to_track_edit_cb(GtkEntry * entry, gpointer user_data) | |
304 { | |
305 GtkTreeView *treeview = GTK_TREE_VIEW(user_data); | |
306 GtkTreeSelection *selection; | |
307 GtkTreeIter iter; | |
308 | |
309 GtkListStore *store; | |
310 | |
311 guint song_index = 0; | |
312 gchar **words; | |
313 GList *playlist_glist; | |
314 Playlist *playlist; | |
315 | |
316 gboolean match = FALSE; | |
317 | |
318 GSList *regex_list = NULL, *regex_list_tmp = NULL; | |
319 gint i = -1; | |
320 | |
321 /* Chop the key string into ' '-separated key regex-pattern strings */ | |
322 words = g_strsplit(gtk_entry_get_text(entry), " ", 0); | |
323 | |
324 /* create a list of regex using the regex-pattern strings */ | |
325 while ( words[++i] != NULL ) | |
326 { | |
327 regex_t *regex = g_malloc(sizeof(regex_t)); | |
328 #if defined(USE_REGEX_PCRE) | |
329 if ( regcomp( regex , words[i] , REG_NOSUB | REG_ICASE | REG_UTF8 ) == 0 ) | |
330 #else | |
331 if ( regcomp( regex , words[i] , REG_NOSUB | REG_ICASE ) == 0 ) | |
332 #endif | |
333 regex_list = g_slist_append( regex_list , regex ); | |
334 } | |
335 | |
336 /* FIXME: Remove the connected signals before clearing | |
337 * (row-selected will still eventually arrive once) */ | |
338 store = GTK_LIST_STORE(gtk_tree_view_get_model(treeview)); | |
339 /* detach model from treeview */ | |
340 g_object_ref( store ); | |
341 gtk_tree_view_set_model( GTK_TREE_VIEW(treeview) , NULL ); | |
342 | |
343 gtk_list_store_clear(store); | |
344 | |
345 playlist = playlist_get_active(); | |
346 | |
347 PLAYLIST_LOCK(playlist->mutex); | |
348 | |
349 for (playlist_glist = playlist->entries; playlist_glist; | |
2546
9fe930a34683
[svn] - run gtk events while iterating through the playlist
nenolod
parents:
2500
diff
changeset
|
350 playlist_glist = g_list_next(playlist_glist)) |
9fe930a34683
[svn] - run gtk events while iterating through the playlist
nenolod
parents:
2500
diff
changeset
|
351 { |
2500 | 352 PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data); |
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
|
353 const gchar *title=NULL; |
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
|
354 gchar *filename = NULL; |
2500 | 355 filename = str_to_utf8(entry->filename); |
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
|
356 if (entry->title) |
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
|
357 title = entry->title; |
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
|
358 else |
2500 | 359 title = filename; |
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
|
360 /*we are matching all the path not just the filename or title*/ |
2500 | 361 |
362 /* Compare the reg.expressions to the string - if all the | |
363 regexp in regex_list match, add to the ListStore */ | |
364 | |
365 /* | |
366 * FIXME: The search string should be adapted to the | |
367 * current display setting, e.g. if the user has set it to | |
368 * "%p - %t" then build the match string like that too, or | |
369 * even better, search for each of the tags seperatly. | |
370 * | |
371 * In any case the string to match should _never_ contain | |
372 * something the user can't actually see in the playlist. | |
373 */ | |
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
|
374 //g_print ("it passed\n"); |
2500 | 375 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
|
376 match = ui_jump_to_track_match(title, regex_list); |
2500 | 377 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
|
378 match = TRUE; |
2500 | 379 |
380 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
|
381 if (entry->title) |
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
|
382 title = g_strdup(entry->title); |
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
|
383 else if (strchr(entry->filename, '/')) |
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
|
384 title = str_to_utf8(strrchr(entry->filename, '/') + 1); |
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
|
385 else |
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
|
386 title = str_to_utf8(entry->filename); |
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
|
387 |
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
|
388 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
|
389 gtk_list_store_set(store, &iter, 0, song_index + 1 , 1, title, -1); |
2500 | 390 } |
391 song_index++; | |
392 | |
393 if (filename) { | |
394 g_free(filename); | |
395 filename = NULL; | |
396 } | |
397 } | |
398 | |
399 PLAYLIST_UNLOCK(playlist->mutex); | |
400 | |
401 /* attach the model again to the treeview */ | |
402 gtk_tree_view_set_model( GTK_TREE_VIEW(treeview) , GTK_TREE_MODEL(store) ); | |
403 g_object_unref( store ); | |
404 | |
405 if ( regex_list != NULL ) | |
406 { | |
407 regex_list_tmp = regex_list; | |
408 while ( regex_list != NULL ) | |
409 { | |
410 regex_t *regex = regex_list->data; | |
411 regfree( regex ); | |
412 regex_list = g_slist_next(regex_list); | |
413 } | |
414 g_slist_free( regex_list_tmp ); | |
415 } | |
416 g_strfreev(words); | |
417 | |
418 if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter)) { | |
419 selection = gtk_tree_view_get_selection(treeview); | |
420 gtk_tree_selection_select_iter(selection, &iter); | |
421 } | |
422 } | |
423 | |
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
|
424 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
|
425 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
|
426 { |
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
|
427 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
|
428 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
|
429 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
|
430 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
|
431 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
|
432 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
|
433 |
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
|
434 /* 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
|
435 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
|
436 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
|
437 |
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
|
438 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
|
439 |
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
|
440 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
|
441 |
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
|
442 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
|
443 |
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
|
444 PLAYLIST_LOCK(playlist->mutex); |
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
|
445 |
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
|
446 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
|
447 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
|
448 |
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
|
449 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
|
450 |
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
|
451 if (entry->title) |
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
|
452 desc_buf = g_strdup(entry->title); |
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
|
453 else if (strchr(entry->filename, '/')) |
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
|
454 desc_buf = str_to_utf8(strrchr(entry->filename, '/') + 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
|
455 else |
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
|
456 desc_buf = str_to_utf8(entry->filename); |
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
|
457 |
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
|
458 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
|
459 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
|
460 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
|
461 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
|
462 |
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
|
463 if (desc_buf) { |
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 g_free(desc_buf); |
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 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
|
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 } |
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 |
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 PLAYLIST_UNLOCK(playlist->mutex); |
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 |
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 /* 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
|
472 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
|
473 g_object_unref(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
|
474 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
|
475 } |
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 |
2500 | 477 void |
478 ui_jump_to_track(void) | |
479 { | |
480 GtkWidget *scrollwin; | |
481 GtkWidget *vbox, *bbox, *sep; | |
2805
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
482 GtkWidget *toggle; |
2500 | 483 GtkWidget *jump, *queue, *cancel; |
484 GtkWidget *rescan, *edit; | |
485 GtkWidget *search_label, *hbox; | |
486 | |
487 GtkWidget *treeview; | |
488 GtkListStore *jtf_store; | |
489 | |
490 GtkCellRenderer *renderer; | |
491 GtkTreeViewColumn *column; | |
492 | |
493 if (jump_to_track_win) { | |
494 gtk_window_present(GTK_WINDOW(jump_to_track_win)); | |
495 return; | |
496 } | |
497 | |
498 #if defined(USE_REGEX_ONIGURUMA) | |
499 /* set encoding for Oniguruma regex to UTF-8 */ | |
500 reg_set_encoding( REG_POSIX_ENCODING_UTF8 ); | |
501 onig_set_default_syntax( ONIG_SYNTAX_POSIX_BASIC ); | |
502 #endif | |
503 | |
504 jump_to_track_win = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
505 gtk_window_set_type_hint(GTK_WINDOW(jump_to_track_win), | |
506 GDK_WINDOW_TYPE_HINT_DIALOG); | |
507 | |
508 gtk_window_set_title(GTK_WINDOW(jump_to_track_win), _("Jump to Track")); | |
509 | |
510 gtk_window_set_position(GTK_WINDOW(jump_to_track_win), GTK_WIN_POS_CENTER); | |
511 g_signal_connect(jump_to_track_win, "destroy", | |
512 G_CALLBACK(gtk_widget_destroyed), &jump_to_track_win); | |
513 | |
514 gtk_container_border_width(GTK_CONTAINER(jump_to_track_win), 10); | |
515 gtk_window_set_default_size(GTK_WINDOW(jump_to_track_win), 550, 350); | |
516 | |
517 vbox = gtk_vbox_new(FALSE, 5); | |
518 gtk_container_add(GTK_CONTAINER(jump_to_track_win), vbox); | |
519 | |
520 jtf_store = gtk_list_store_new(2, G_TYPE_UINT, G_TYPE_STRING); | |
521 treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(jtf_store)); | |
522 g_object_unref(jtf_store); | |
523 | |
524 gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(treeview), TRUE); | |
525 | |
526 column = gtk_tree_view_column_new(); | |
527 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview), FALSE); | |
528 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
529 | |
530 renderer = gtk_cell_renderer_text_new(); | |
531 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
532 gtk_tree_view_column_set_attributes(column, renderer, "text", 0, NULL); | |
533 gtk_tree_view_column_set_spacing(column, 4); | |
534 | |
535 renderer = gtk_cell_renderer_text_new(); | |
536 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
537 gtk_tree_view_column_set_attributes(column, renderer, "text", 1, NULL); | |
538 gtk_tree_view_column_set_spacing(column, 4); | |
539 gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column); | |
540 | |
541 gtk_tree_view_set_search_column(GTK_TREE_VIEW(treeview), 1); | |
542 | |
543 g_signal_connect(treeview, "row-activated", | |
544 G_CALLBACK(ui_jump_to_track_jump), NULL); | |
545 | |
546 hbox = gtk_hbox_new(FALSE, 3); | |
547 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3); | |
548 | |
549 search_label = gtk_label_new(_("Filter: ")); | |
550 gtk_label_set_markup_with_mnemonic(GTK_LABEL(search_label), _("_Filter:")); | |
551 gtk_box_pack_start(GTK_BOX(hbox), search_label, FALSE, FALSE, 0); | |
552 | |
553 edit = gtk_entry_new(); | |
554 gtk_entry_set_editable(GTK_ENTRY(edit), TRUE); | |
555 gtk_label_set_mnemonic_widget(GTK_LABEL(search_label), edit); | |
556 g_signal_connect(edit, "changed", | |
557 G_CALLBACK(ui_jump_to_track_edit_cb), treeview); | |
558 | |
559 g_signal_connect(edit, "key_press_event", | |
560 G_CALLBACK(ui_jump_to_track_edit_keypress_cb), treeview); | |
561 | |
562 g_signal_connect(jump_to_track_win, "key_press_event", | |
563 G_CALLBACK(ui_jump_to_track_keypress_cb), treeview); | |
564 | |
565 gtk_box_pack_start(GTK_BOX(hbox), edit, TRUE, TRUE, 3); | |
566 | |
567 scrollwin = gtk_scrolled_window_new(NULL, NULL); | |
568 gtk_container_add(GTK_CONTAINER(scrollwin), treeview); | |
569 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrollwin), | |
570 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); | |
571 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrollwin), | |
572 GTK_SHADOW_IN); | |
573 gtk_box_pack_start(GTK_BOX(vbox), scrollwin, TRUE, TRUE, 0); | |
574 | |
575 sep = gtk_hseparator_new(); | |
576 gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); | |
577 | |
578 bbox = gtk_hbutton_box_new(); | |
579 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
580 gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5); | |
581 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
582 | |
2805
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
583 /* close dialog toggle */ |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
584 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
|
585 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
|
586 cfg.close_jtf_dialog ? TRUE : FALSE); |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
587 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
|
588 g_signal_connect(toggle, "clicked", |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
589 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
|
590 toggle); |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
591 |
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2717
diff
changeset
|
592 |
2500 | 593 queue = gtk_button_new_with_mnemonic(_("_Queue")); |
594 gtk_box_pack_start(GTK_BOX(bbox), queue, FALSE, FALSE, 0); | |
595 GTK_WIDGET_SET_FLAGS(queue, GTK_CAN_DEFAULT); | |
596 g_signal_connect(queue, "clicked", | |
597 G_CALLBACK(ui_jump_to_track_queue_cb), | |
598 treeview); | |
599 g_signal_connect(gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)), "changed", | |
600 G_CALLBACK(ui_jump_to_track_selection_changed_cb), | |
601 queue); | |
602 | |
603 rescan = gtk_button_new_from_stock(GTK_STOCK_REFRESH); | |
604 gtk_box_pack_start(GTK_BOX(bbox), rescan, FALSE, FALSE, 0); | |
605 g_signal_connect(rescan, "clicked", | |
606 G_CALLBACK(ui_jump_to_track_update), treeview); | |
607 GTK_WIDGET_SET_FLAGS(rescan, GTK_CAN_DEFAULT); | |
608 gtk_widget_grab_default(rescan); | |
609 | |
610 jump = gtk_button_new_from_stock(GTK_STOCK_JUMP_TO); | |
611 gtk_box_pack_start(GTK_BOX(bbox), jump, FALSE, FALSE, 0); | |
612 | |
613 g_signal_connect_swapped(jump, "clicked", | |
614 G_CALLBACK(ui_jump_to_track_jump_cb), | |
615 treeview); | |
616 | |
617 GTK_WIDGET_SET_FLAGS(jump, GTK_CAN_DEFAULT); | |
618 gtk_widget_grab_default(jump); | |
619 | |
620 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
621 gtk_box_pack_start(GTK_BOX(bbox), cancel, FALSE, FALSE, 0); | |
622 g_signal_connect_swapped(cancel, "clicked", | |
623 G_CALLBACK(gtk_widget_destroy), | |
624 jump_to_track_win); | |
625 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); | |
626 | |
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
|
627 g_timeout_add(100, (GSourceFunc)ui_jump_to_track_fill, treeview); |
2500 | 628 |
629 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
|
630 gtk_widget_grab_focus(edit); |
2500 | 631 } |
632 |