Mercurial > geeqie.yaz
annotate src/view_file_icon.c @ 557:d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
author | zas_ |
---|---|
date | Sat, 03 May 2008 11:58:41 +0000 |
parents | b7e99bfeadc9 |
children | 977b9bbd0e9b |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
3 * (C) 2006 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
281 | 13 #include "main.h" |
9 | 14 #include "view_file_icon.h" |
15 | |
16 #include "cellrenderericon.h" | |
17 #include "collect.h" | |
18 #include "collect-io.h" | |
19 #include "collect-table.h" | |
507 | 20 #include "debug.h" |
9 | 21 #include "dnd.h" |
22 #include "editors.h" | |
23 #include "img-view.h" | |
24 #include "info.h" | |
25 #include "filelist.h" | |
26 #include "layout.h" | |
27 #include "layout_image.h" | |
28 #include "menu.h" | |
29 #include "thumb.h" | |
30 #include "utilops.h" | |
31 #include "ui_bookmark.h" | |
32 #include "ui_fileops.h" | |
33 #include "ui_menu.h" | |
34 #include "ui_tree_edit.h" | |
35 | |
36 | |
37 #include <gdk/gdkkeysyms.h> /* for keyboard values */ | |
38 | |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
516
diff
changeset
|
39 #define VFICON_INFO_POINTER(_vf_) ((ViewFileInfoIcon *)(_vf_->info)) |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
516
diff
changeset
|
40 #define VFICON_INFO(_vf_, _part_) (VFICON_INFO_POINTER(_vf_)->_part_) |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
516
diff
changeset
|
41 |
9 | 42 /* between these, the icon width is increased by thumb_max_width / 2 */ |
43 #define THUMB_MIN_ICON_WIDTH 128 | |
44 #define THUMB_MAX_ICON_WIDTH 150 | |
45 | |
46 #define VFICON_MAX_COLUMNS 32 | |
47 #define THUMB_BORDER_PADDING 2 | |
48 | |
49 #define VFICON_TIP_DELAY 500 | |
50 | |
51 enum { | |
52 FILE_COLUMN_POINTER = 0, | |
53 FILE_COLUMN_COUNT | |
54 }; | |
55 | |
56 typedef enum { | |
57 SELECTION_NONE = 0, | |
58 SELECTION_SELECTED = 1 << 0, | |
59 SELECTION_PRELIGHT = 1 << 1, | |
60 SELECTION_FOCUS = 1 << 2 | |
61 } SelectionType; | |
62 | |
63 typedef struct _IconData IconData; | |
64 struct _IconData | |
65 { | |
66 SelectionType selected; | |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
67 gint row; |
138 | 68 FileData *fd; |
9 | 69 }; |
70 | |
138 | 71 static gint vficon_index_by_id(ViewFileIcon *vfi, IconData *in_id); |
72 | |
73 static IconData *vficon_icon_data(ViewFileIcon *vfi, FileData *fd) | |
74 { | |
75 IconData *id = NULL; | |
76 GList *work; | |
77 | |
78 if (!fd) return NULL; | |
79 work = vfi->list; | |
80 while (work && !id) | |
81 { | |
82 IconData *chk = work->data; | |
83 work = work->next; | |
84 if (chk->fd == fd) id = chk; | |
85 } | |
86 return id; | |
87 } | |
88 | |
9 | 89 |
90 static gint iconlist_read(const gchar *path, GList **list) | |
91 { | |
92 GList *temp; | |
93 GList *work; | |
94 | |
95 if (!filelist_read(path, &temp, NULL)) return FALSE; | |
96 | |
97 work = temp; | |
98 while (work) | |
99 { | |
100 FileData *fd; | |
101 IconData *id; | |
102 | |
103 fd = work->data; | |
442 | 104 g_assert(fd->magick == 0x12345678); |
9 | 105 id = g_new0(IconData, 1); |
106 | |
107 id->selected = SELECTION_NONE; | |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
108 id->row = -1; |
138 | 109 id->fd = fd; |
9 | 110 |
111 work->data = id; | |
112 work = work->next; | |
113 } | |
114 | |
115 *list = temp; | |
116 | |
117 return TRUE; | |
118 } | |
119 | |
120 static void iconlist_free(GList *list) | |
121 { | |
138 | 122 GList *work = list; |
123 while (work) | |
124 { | |
125 IconData *id = work->data; | |
126 file_data_unref(id->fd); | |
127 g_free(id); | |
442 | 128 work = work->next; |
129 } | |
130 | |
131 g_list_free(list); | |
138 | 132 |
133 } | |
134 | |
135 gint iconlist_sort_file_cb(void *a, void *b) | |
136 { | |
137 IconData *ida = a; | |
138 IconData *idb = b; | |
139 return filelist_sort_compare_filedata(ida->fd, idb->fd); | |
140 } | |
141 GList *iconlist_sort(GList *list, SortType method, gint ascend) | |
142 { | |
143 return filelist_sort_full(list, method, ascend, (GCompareFunc) iconlist_sort_file_cb); | |
144 } | |
145 | |
146 GList *iconlist_insert_sort(GList *list, IconData *id, SortType method, gint ascend) | |
147 { | |
148 return filelist_insert_sort_full(list, id, method, ascend, (GCompareFunc) iconlist_sort_file_cb); | |
9 | 149 } |
150 | |
151 | |
152 static void vficon_toggle_filenames(ViewFileIcon *vfi); | |
138 | 153 static void vficon_selection_remove(ViewFileIcon *vfi, IconData *id, SelectionType mask, GtkTreeIter *iter); |
9 | 154 static void vficon_move_focus(ViewFileIcon *vfi, gint row, gint col, gint relative); |
138 | 155 static void vficon_set_focus(ViewFileIcon *vfi, IconData *id); |
9 | 156 static void vficon_thumb_update(ViewFileIcon *vfi); |
157 static void vficon_populate_at_new_size(ViewFileIcon *vfi, gint w, gint h, gint force); | |
158 | |
159 | |
160 /* | |
161 *----------------------------------------------------------------------------- | |
162 * pop-up menu | |
163 *----------------------------------------------------------------------------- | |
164 */ | |
165 | |
166 static GList *vficon_pop_menu_file_list(ViewFileIcon *vfi) | |
167 { | |
138 | 168 if (!vfi->click_id) return NULL; |
169 | |
170 if (vfi->click_id->selected & SELECTION_SELECTED) | |
9 | 171 { |
172 return vficon_selection_get_list(vfi); | |
173 } | |
174 | |
138 | 175 return g_list_append(NULL, file_data_ref(vfi->click_id->fd)); |
9 | 176 } |
177 | |
178 static void vficon_pop_menu_edit_cb(GtkWidget *widget, gpointer data) | |
179 { | |
180 ViewFileIcon *vfi; | |
181 gint n; | |
182 GList *list; | |
183 | |
184 vfi = submenu_item_get_data(widget); | |
185 n = GPOINTER_TO_INT(data); | |
186 | |
187 if (!vfi) return; | |
188 | |
189 list = vficon_pop_menu_file_list(vfi); | |
138 | 190 start_editor_from_filelist(n, list); |
191 filelist_free(list); | |
9 | 192 } |
193 | |
194 static void vficon_pop_menu_info_cb(GtkWidget *widget, gpointer data) | |
195 { | |
196 ViewFileIcon *vfi = data; | |
197 | |
479
5212d4fed37f
Ensure Properties dialog is displayed above fullscreen window.
zas_
parents:
475
diff
changeset
|
198 info_window_new(NULL, vficon_pop_menu_file_list(vfi), NULL); |
9 | 199 } |
200 | |
201 static void vficon_pop_menu_view_cb(GtkWidget *widget, gpointer data) | |
202 { | |
203 ViewFileIcon *vfi = data; | |
204 | |
138 | 205 if (!vfi->click_id) return; |
206 | |
207 if (vfi->click_id->selected & SELECTION_SELECTED) | |
9 | 208 { |
209 GList *list; | |
442 | 210 |
9 | 211 list = vficon_selection_get_list(vfi); |
212 view_window_new_from_list(list); | |
138 | 213 filelist_free(list); |
9 | 214 } |
215 else | |
216 { | |
138 | 217 view_window_new(vfi->click_id->fd); |
9 | 218 } |
219 } | |
220 | |
221 static void vficon_pop_menu_copy_cb(GtkWidget *widget, gpointer data) | |
222 { | |
223 ViewFileIcon *vfi = data; | |
224 | |
225 file_util_copy(NULL, vficon_pop_menu_file_list(vfi), NULL, vfi->listview); | |
226 } | |
227 | |
228 static void vficon_pop_menu_move_cb(GtkWidget *widget, gpointer data) | |
229 { | |
230 ViewFileIcon *vfi = data; | |
231 | |
232 file_util_move(NULL, vficon_pop_menu_file_list(vfi), NULL, vfi->listview); | |
233 } | |
234 | |
235 static void vficon_pop_menu_rename_cb(GtkWidget *widget, gpointer data) | |
236 { | |
237 ViewFileIcon *vfi = data; | |
238 | |
239 file_util_rename(NULL, vficon_pop_menu_file_list(vfi), vfi->listview); | |
240 } | |
241 | |
242 static void vficon_pop_menu_delete_cb(GtkWidget *widget, gpointer data) | |
243 { | |
244 ViewFileIcon *vfi = data; | |
245 | |
246 file_util_delete(NULL, vficon_pop_menu_file_list(vfi), vfi->listview); | |
247 } | |
248 | |
497 | 249 static void vficon_pop_menu_copy_path_cb(GtkWidget *widget, gpointer data) |
250 { | |
251 ViewFileIcon *vfi = data; | |
252 | |
253 file_util_copy_path_list_to_clipboard(vficon_pop_menu_file_list(vfi)); | |
254 } | |
255 | |
9 | 256 static void vficon_pop_menu_sort_cb(GtkWidget *widget, gpointer data) |
257 { | |
258 ViewFileIcon *vfi; | |
259 SortType type; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
111
diff
changeset
|
260 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
111
diff
changeset
|
261 if (!gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget))) return; |
442 | 262 |
9 | 263 vfi = submenu_item_get_data(widget); |
264 if (!vfi) return; | |
265 | |
266 type = (SortType)GPOINTER_TO_INT(data); | |
267 | |
268 if (vfi->layout) | |
269 { | |
270 layout_sort_set(vfi->layout, type, vfi->sort_ascend); | |
271 } | |
272 else | |
273 { | |
274 vficon_sort_set(vfi, type, vfi->sort_ascend); | |
275 } | |
276 } | |
277 | |
278 static void vficon_pop_menu_sort_ascend_cb(GtkWidget *widget, gpointer data) | |
279 { | |
280 ViewFileIcon *vfi = data; | |
281 | |
282 if (vfi->layout) | |
283 { | |
284 layout_sort_set(vfi->layout, vfi->sort_method, !vfi->sort_ascend); | |
285 } | |
286 else | |
287 { | |
288 vficon_sort_set(vfi, vfi->sort_method, !vfi->sort_ascend); | |
289 } | |
290 } | |
291 | |
292 static void vficon_pop_menu_list_cb(GtkWidget *widget, gpointer data) | |
293 { | |
294 ViewFileIcon *vfi = data; | |
295 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
334
diff
changeset
|
296 if (vfi->layout) layout_views_set(vfi->layout, vfi->layout->dir_view_type, FALSE); |
9 | 297 } |
298 | |
299 static void vficon_pop_menu_show_names_cb(GtkWidget *widget, gpointer data) | |
300 { | |
301 ViewFileIcon *vfi = data; | |
302 | |
303 vficon_toggle_filenames(vfi); | |
304 } | |
305 | |
306 static void vficon_pop_menu_refresh_cb(GtkWidget *widget, gpointer data) | |
307 { | |
308 ViewFileIcon *vfi = data; | |
309 | |
310 vficon_refresh(vfi); | |
311 } | |
312 | |
313 static void vficon_popup_destroy_cb(GtkWidget *widget, gpointer data) | |
314 { | |
442 | 315 ViewFileIcon *vfi = data; |
138 | 316 vficon_selection_remove(vfi, vfi->click_id, SELECTION_PRELIGHT, NULL); |
317 vfi->click_id = NULL; | |
9 | 318 vfi->popup = NULL; |
319 } | |
320 | |
321 static GtkWidget *vficon_pop_menu(ViewFileIcon *vfi, gint active) | |
322 { | |
323 GtkWidget *menu; | |
324 GtkWidget *item; | |
325 GtkWidget *submenu; | |
326 | |
327 menu = popup_menu_short_lived(); | |
328 | |
329 g_signal_connect(G_OBJECT(menu), "destroy", | |
330 G_CALLBACK(vficon_popup_destroy_cb), vfi); | |
331 | |
332 submenu_add_edit(menu, &item, G_CALLBACK(vficon_pop_menu_edit_cb), vfi); | |
333 gtk_widget_set_sensitive(item, active); | |
334 | |
499
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
335 menu_item_add_stock_sensitive(menu, _("_Properties"), GTK_STOCK_PROPERTIES, active, |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
336 G_CALLBACK(vficon_pop_menu_info_cb), vfi); |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
337 |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
338 menu_item_add_stock_sensitive(menu, _("View in _new window"), GTK_STOCK_NEW, active, |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
339 G_CALLBACK(vficon_pop_menu_view_cb), vfi); |
9 | 340 menu_item_add_divider(menu); |
499
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
341 |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
342 menu_item_add_stock_sensitive(menu, _("_Copy..."), GTK_STOCK_COPY, active, |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
343 G_CALLBACK(vficon_pop_menu_copy_cb), vfi); |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
344 menu_item_add_sensitive(menu, _("_Move..."), active, |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
345 G_CALLBACK(vficon_pop_menu_move_cb), vfi); |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
346 menu_item_add_sensitive(menu, _("_Rename..."), active, |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
347 G_CALLBACK(vficon_pop_menu_rename_cb), vfi); |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
348 menu_item_add_stock_sensitive(menu, _("_Delete..."), GTK_STOCK_DELETE, active, |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
349 G_CALLBACK(vficon_pop_menu_delete_cb), vfi); |
497 | 350 if (options->show_copy_path) |
499
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
351 menu_item_add_sensitive(menu, _("_Copy path"), active, |
cc46a09d0805
Use menu_item_add_stock_sensitive() and menu_item_add_sensitive().
zas_
parents:
497
diff
changeset
|
352 G_CALLBACK(vficon_pop_menu_copy_path_cb), vfi); |
9 | 353 menu_item_add_divider(menu); |
354 | |
355 submenu = submenu_add_sort(NULL, G_CALLBACK(vficon_pop_menu_sort_cb), vfi, | |
356 FALSE, FALSE, TRUE, vfi->sort_method); | |
357 menu_item_add_divider(submenu); | |
358 menu_item_add_check(submenu, _("Ascending"), vfi->sort_ascend, | |
359 G_CALLBACK(vficon_pop_menu_sort_ascend_cb), vfi); | |
360 | |
361 item = menu_item_add(menu, _("_Sort"), NULL, NULL); | |
362 gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu); | |
363 | |
364 menu_item_add_check(menu, _("View as _icons"), TRUE, | |
365 G_CALLBACK(vficon_pop_menu_list_cb), vfi); | |
366 menu_item_add_check(menu, _("Show filename _text"), vfi->show_text, | |
367 G_CALLBACK(vficon_pop_menu_show_names_cb), vfi); | |
368 menu_item_add_stock(menu, _("Re_fresh"), GTK_STOCK_REFRESH, G_CALLBACK(vficon_pop_menu_refresh_cb), vfi); | |
369 | |
370 return menu; | |
371 } | |
372 | |
373 /* | |
374 *------------------------------------------------------------------- | |
375 * signals | |
376 *------------------------------------------------------------------- | |
377 */ | |
378 | |
379 static void vficon_send_update(ViewFileIcon *vfi) | |
380 { | |
381 if (vfi->func_status) vfi->func_status(vfi, vfi->data_status); | |
382 } | |
383 | |
138 | 384 static void vficon_send_layout_select(ViewFileIcon *vfi, IconData *id) |
9 | 385 { |
138 | 386 FileData *read_ahead_fd = NULL; |
144 | 387 FileData *sel_fd; |
388 FileData *cur_fd; | |
389 | |
390 if (!vfi->layout || !id || !id->fd) return; | |
391 | |
392 sel_fd = id->fd; | |
442 | 393 |
144 | 394 cur_fd = layout_image_get_fd(vfi->layout); |
395 if (sel_fd == cur_fd) return; /* no change */ | |
442 | 396 |
334 | 397 if (options->image.enable_read_ahead) |
9 | 398 { |
399 gint row; | |
400 | |
138 | 401 row = g_list_index(vfi->list, id); |
144 | 402 if (row > vficon_index_by_fd(vfi, cur_fd) && |
9 | 403 row + 1 < vficon_count(vfi, NULL)) |
404 { | |
144 | 405 read_ahead_fd = vficon_index_get_data(vfi, row + 1); |
9 | 406 } |
407 else if (row > 0) | |
408 { | |
144 | 409 read_ahead_fd = vficon_index_get_data(vfi, row - 1); |
9 | 410 } |
411 } | |
412 | |
144 | 413 layout_image_set_with_ahead(vfi->layout, sel_fd, read_ahead_fd); |
9 | 414 } |
415 | |
416 static void vficon_toggle_filenames(ViewFileIcon *vfi) | |
417 { | |
418 vfi->show_text = !vfi->show_text; | |
320 | 419 options->show_icon_names = vfi->show_text; |
9 | 420 |
421 vficon_populate_at_new_size(vfi, vfi->listview->allocation.width, vfi->listview->allocation.height, TRUE); | |
422 } | |
423 | |
424 static gint vficon_get_icon_width(ViewFileIcon *vfi) | |
425 { | |
426 gint width; | |
427 | |
333 | 428 if (!vfi->show_text) return options->thumbnails.max_width; |
429 | |
430 width = options->thumbnails.max_width + options->thumbnails.max_width / 2; | |
9 | 431 if (width < THUMB_MIN_ICON_WIDTH) width = THUMB_MIN_ICON_WIDTH; |
333 | 432 if (width > THUMB_MAX_ICON_WIDTH) width = options->thumbnails.max_width; |
9 | 433 |
434 return width; | |
435 } | |
436 | |
437 /* | |
438 *------------------------------------------------------------------- | |
439 * misc utils | |
440 *------------------------------------------------------------------- | |
441 */ | |
442 | |
138 | 443 static gint vficon_find_position(ViewFileIcon *vfi, IconData *id, gint *row, gint *col) |
9 | 444 { |
445 gint n; | |
446 | |
138 | 447 n = g_list_index(vfi->list, id); |
9 | 448 |
449 if (n < 0) return FALSE; | |
450 | |
451 *row = n / vfi->columns; | |
452 *col = n - (*row * vfi->columns); | |
453 | |
454 return TRUE; | |
455 } | |
456 | |
138 | 457 static gint vficon_find_iter(ViewFileIcon *vfi, IconData *id, GtkTreeIter *iter, gint *column) |
9 | 458 { |
459 GtkTreeModel *store; | |
460 gint row, col; | |
461 | |
462 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
138 | 463 if (!vficon_find_position(vfi, id, &row, &col)) return FALSE; |
9 | 464 if (!gtk_tree_model_iter_nth_child(store, iter, NULL, row)) return FALSE; |
465 if (column) *column = col; | |
466 | |
467 return TRUE; | |
468 } | |
469 | |
138 | 470 static IconData *vficon_find_data(ViewFileIcon *vfi, gint row, gint col, GtkTreeIter *iter) |
9 | 471 { |
472 GtkTreeModel *store; | |
473 GtkTreeIter p; | |
474 | |
475 if (row < 0 || col < 0) return NULL; | |
476 | |
477 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
478 if (gtk_tree_model_iter_nth_child(store, &p, NULL, row)) | |
479 { | |
480 GList *list; | |
481 | |
482 gtk_tree_model_get(store, &p, FILE_COLUMN_POINTER, &list, -1); | |
483 if (!list) return NULL; | |
484 | |
485 if (iter) *iter = p; | |
486 | |
487 return g_list_nth_data(list, col); | |
488 } | |
489 | |
490 return NULL; | |
491 } | |
492 | |
138 | 493 static IconData *vficon_find_data_by_coord(ViewFileIcon *vfi, gint x, gint y, GtkTreeIter *iter) |
9 | 494 { |
495 GtkTreePath *tpath; | |
496 GtkTreeViewColumn *column; | |
497 | |
498 if (gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vfi->listview), x, y, | |
499 &tpath, &column, NULL, NULL)) | |
500 { | |
501 GtkTreeModel *store; | |
502 GtkTreeIter row; | |
503 GList *list; | |
504 gint n; | |
505 | |
506 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
507 gtk_tree_model_get_iter(store, &row, tpath); | |
508 gtk_tree_path_free(tpath); | |
509 | |
510 gtk_tree_model_get(store, &row, FILE_COLUMN_POINTER, &list, -1); | |
511 | |
512 n = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(column), "column_number")); | |
513 if (list) | |
514 { | |
515 if (iter) *iter = row; | |
516 return g_list_nth_data(list, n); | |
517 } | |
518 } | |
519 | |
520 return NULL; | |
521 } | |
522 | |
523 /* | |
524 *------------------------------------------------------------------- | |
525 * tooltip type window | |
526 *------------------------------------------------------------------- | |
527 */ | |
528 | |
529 static void tip_show(ViewFileIcon *vfi) | |
530 { | |
531 GtkWidget *label; | |
532 gint x, y; | |
533 | |
534 if (vfi->tip_window) return; | |
535 | |
536 gdk_window_get_pointer(gtk_tree_view_get_bin_window(GTK_TREE_VIEW(vfi->listview)), &x, &y, NULL); | |
537 | |
138 | 538 vfi->tip_id = vficon_find_data_by_coord(vfi, x, y, NULL); |
539 if (!vfi->tip_id) return; | |
9 | 540 |
541 vfi->tip_window = gtk_window_new(GTK_WINDOW_POPUP); | |
542 gtk_window_set_resizable(GTK_WINDOW(vfi->tip_window), FALSE); | |
543 gtk_container_set_border_width(GTK_CONTAINER(vfi->tip_window), 2); | |
544 | |
138 | 545 label = gtk_label_new(vfi->tip_id->fd->name); |
9 | 546 |
547 g_object_set_data(G_OBJECT(vfi->tip_window), "tip_label", label); | |
548 gtk_container_add(GTK_CONTAINER(vfi->tip_window), label); | |
549 gtk_widget_show(label); | |
550 | |
551 gdk_window_get_pointer(NULL, &x, &y, NULL); | |
552 | |
553 if (!GTK_WIDGET_REALIZED(vfi->tip_window)) gtk_widget_realize(vfi->tip_window); | |
554 gtk_window_move(GTK_WINDOW(vfi->tip_window), x + 16, y + 16); | |
555 gtk_widget_show(vfi->tip_window); | |
556 } | |
557 | |
558 static void tip_hide(ViewFileIcon *vfi) | |
559 { | |
560 if (vfi->tip_window) gtk_widget_destroy(vfi->tip_window); | |
561 vfi->tip_window = NULL; | |
562 } | |
563 | |
564 static gint tip_schedule_cb(gpointer data) | |
565 { | |
566 ViewFileIcon *vfi = data; | |
567 GtkWidget *window; | |
568 | |
569 if (vfi->tip_delay_id == -1) return FALSE; | |
570 | |
571 window = gtk_widget_get_toplevel(vfi->listview); | |
572 | |
573 if (GTK_WIDGET_SENSITIVE(window) && | |
574 GTK_WINDOW(window)->has_focus) | |
575 { | |
576 tip_show(vfi); | |
577 } | |
578 | |
579 vfi->tip_delay_id = -1; | |
580 return FALSE; | |
581 } | |
582 | |
583 static void tip_schedule(ViewFileIcon *vfi) | |
584 { | |
585 tip_hide(vfi); | |
586 | |
587 if (vfi->tip_delay_id != -1) | |
588 { | |
589 g_source_remove(vfi->tip_delay_id); | |
590 vfi->tip_delay_id = -1; | |
591 } | |
592 | |
593 if (!vfi->show_text) | |
594 { | |
595 vfi->tip_delay_id = g_timeout_add(VFICON_TIP_DELAY, tip_schedule_cb, vfi); | |
596 } | |
597 } | |
598 | |
599 static void tip_unschedule(ViewFileIcon *vfi) | |
600 { | |
601 tip_hide(vfi); | |
602 | |
603 if (vfi->tip_delay_id != -1) g_source_remove(vfi->tip_delay_id); | |
604 vfi->tip_delay_id = -1; | |
605 } | |
606 | |
138 | 607 static void tip_update(ViewFileIcon *vfi, IconData *id) |
9 | 608 { |
609 if (vfi->tip_window) | |
610 { | |
611 gint x, y; | |
612 | |
613 gdk_window_get_pointer(NULL, &x, &y, NULL); | |
614 gtk_window_move(GTK_WINDOW(vfi->tip_window), x + 16, y + 16); | |
615 | |
138 | 616 if (id != vfi->tip_id) |
9 | 617 { |
618 GtkWidget *label; | |
619 | |
138 | 620 vfi->tip_id = id; |
621 | |
622 if (!vfi->tip_id) | |
9 | 623 { |
624 tip_hide(vfi); | |
625 tip_schedule(vfi); | |
626 return; | |
627 } | |
628 | |
629 label = g_object_get_data(G_OBJECT(vfi->tip_window), "tip_label"); | |
138 | 630 gtk_label_set_text(GTK_LABEL(label), vfi->tip_id->fd->name); |
9 | 631 } |
632 } | |
633 else | |
634 { | |
635 tip_schedule(vfi); | |
636 } | |
637 } | |
638 | |
639 /* | |
640 *------------------------------------------------------------------- | |
641 * dnd | |
642 *------------------------------------------------------------------- | |
643 */ | |
644 | |
645 static void vficon_dnd_get(GtkWidget *widget, GdkDragContext *context, | |
646 GtkSelectionData *selection_data, guint info, | |
647 guint time, gpointer data) | |
648 { | |
649 ViewFileIcon *vfi = data; | |
650 GList *list = NULL; | |
651 gchar *uri_text = NULL; | |
652 gint total; | |
653 | |
138 | 654 if (!vfi->click_id) return; |
655 | |
656 if (vfi->click_id->selected & SELECTION_SELECTED) | |
9 | 657 { |
658 list = vficon_selection_get_list(vfi); | |
659 } | |
660 else | |
661 { | |
138 | 662 list = g_list_append(NULL, file_data_ref(vfi->click_id->fd)); |
9 | 663 } |
664 | |
665 if (!list) return; | |
138 | 666 uri_text = uri_text_from_filelist(list, &total, (info == TARGET_TEXT_PLAIN)); |
667 filelist_free(list); | |
9 | 668 |
495 | 669 DEBUG_1(uri_text); |
9 | 670 |
671 gtk_selection_data_set(selection_data, selection_data->target, | |
64
04ff0df3ad2f
Mon Aug 15 17:13:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
672 8, (guchar *)uri_text, total); |
9 | 673 g_free(uri_text); |
674 } | |
675 | |
676 static void vficon_dnd_begin(GtkWidget *widget, GdkDragContext *context, gpointer data) | |
677 { | |
678 ViewFileIcon *vfi = data; | |
679 | |
680 tip_unschedule(vfi); | |
681 | |
138 | 682 if (vfi->click_id && vfi->click_id->fd->pixbuf) |
9 | 683 { |
684 gint items; | |
685 | |
138 | 686 if (vfi->click_id->selected & SELECTION_SELECTED) |
9 | 687 items = g_list_length(vfi->selection); |
688 else | |
689 items = 1; | |
690 | |
138 | 691 dnd_set_drag_icon(widget, context, vfi->click_id->fd->pixbuf, items); |
9 | 692 } |
693 } | |
694 | |
695 static void vficon_dnd_end(GtkWidget *widget, GdkDragContext *context, gpointer data) | |
696 { | |
697 ViewFileIcon *vfi = data; | |
698 | |
138 | 699 vficon_selection_remove(vfi, vfi->click_id, SELECTION_PRELIGHT, NULL); |
9 | 700 |
701 if (context->action == GDK_ACTION_MOVE) | |
702 { | |
703 vficon_refresh(vfi); | |
704 } | |
705 | |
706 tip_unschedule(vfi); | |
707 } | |
708 | |
709 static void vficon_dnd_init(ViewFileIcon *vfi) | |
710 { | |
711 gtk_drag_source_set(vfi->listview, GDK_BUTTON1_MASK | GDK_BUTTON2_MASK, | |
712 dnd_file_drag_types, dnd_file_drag_types_count, | |
713 GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK); | |
714 g_signal_connect(G_OBJECT(vfi->listview), "drag_data_get", | |
715 G_CALLBACK(vficon_dnd_get), vfi); | |
716 g_signal_connect(G_OBJECT(vfi->listview), "drag_begin", | |
717 G_CALLBACK(vficon_dnd_begin), vfi); | |
718 g_signal_connect(G_OBJECT(vfi->listview), "drag_end", | |
719 G_CALLBACK(vficon_dnd_end), vfi); | |
720 } | |
721 | |
722 /* | |
723 *------------------------------------------------------------------- | |
724 * cell updates | |
725 *------------------------------------------------------------------- | |
726 */ | |
727 | |
138 | 728 static void vficon_selection_set(ViewFileIcon *vfi, IconData *id, SelectionType value, GtkTreeIter *iter) |
9 | 729 { |
730 GtkTreeModel *store; | |
731 GList *list; | |
732 | |
138 | 733 if (!id) return; |
734 | |
9 | 735 |
736 if (id->selected == value) return; | |
737 id->selected = value; | |
738 | |
739 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
740 if (iter) | |
741 { | |
742 gtk_tree_model_get(store, iter, FILE_COLUMN_POINTER, &list, -1); | |
743 if (list) gtk_list_store_set(GTK_LIST_STORE(store), iter, FILE_COLUMN_POINTER, list, -1); | |
744 } | |
745 else | |
746 { | |
747 GtkTreeIter row; | |
748 | |
138 | 749 if (vficon_find_iter(vfi, id, &row, NULL)) |
9 | 750 { |
751 gtk_tree_model_get(store, &row, FILE_COLUMN_POINTER, &list, -1); | |
752 if (list) gtk_list_store_set(GTK_LIST_STORE(store), &row, FILE_COLUMN_POINTER, list, -1); | |
753 } | |
754 } | |
755 } | |
756 | |
138 | 757 static void vficon_selection_add(ViewFileIcon *vfi, IconData *id, SelectionType mask, GtkTreeIter *iter) |
9 | 758 { |
138 | 759 if (!id) return; |
760 | |
761 vficon_selection_set(vfi, id, id->selected | mask, iter); | |
9 | 762 } |
763 | |
138 | 764 static void vficon_selection_remove(ViewFileIcon *vfi, IconData *id, SelectionType mask, GtkTreeIter *iter) |
9 | 765 { |
138 | 766 if (!id) return; |
767 | |
768 vficon_selection_set(vfi, id, id->selected & ~mask, iter); | |
9 | 769 } |
770 | |
771 /* | |
772 *------------------------------------------------------------------- | |
773 * selections | |
774 *------------------------------------------------------------------- | |
775 */ | |
776 | |
777 static void vficon_verify_selections(ViewFileIcon *vfi) | |
778 { | |
779 GList *work; | |
780 | |
781 work = vfi->selection; | |
782 while (work) | |
783 { | |
138 | 784 IconData *id = work->data; |
9 | 785 work = work->next; |
138 | 786 if (vficon_index_by_id(vfi, id) < 0) |
9 | 787 { |
138 | 788 vfi->selection = g_list_remove(vfi->selection, id); |
9 | 789 } |
790 } | |
791 } | |
792 | |
793 void vficon_select_all(ViewFileIcon *vfi) | |
794 { | |
795 GList *work; | |
796 | |
797 g_list_free(vfi->selection); | |
798 vfi->selection = NULL; | |
799 | |
800 work = vfi->list; | |
801 while (work) | |
802 { | |
138 | 803 IconData *id = work->data; |
804 vfi->selection = g_list_append(vfi->selection, id); | |
9 | 805 vficon_selection_add(vfi, work->data, SELECTION_SELECTED, NULL); |
806 work = work->next; | |
807 } | |
808 | |
809 vficon_send_update(vfi); | |
810 } | |
811 | |
812 void vficon_select_none(ViewFileIcon *vfi) | |
813 { | |
814 GList *work; | |
815 | |
816 work = vfi->selection; | |
817 while (work) | |
818 { | |
819 vficon_selection_remove(vfi, work->data, SELECTION_SELECTED, NULL); | |
820 work = work->next; | |
821 } | |
822 | |
823 g_list_free(vfi->selection); | |
824 vfi->selection = NULL; | |
825 | |
826 vficon_send_update(vfi); | |
827 } | |
828 | |
138 | 829 static void vficon_select(ViewFileIcon *vfi, IconData *id) |
9 | 830 { |
138 | 831 vfi->prev_selection = id; |
832 | |
833 if (!id || id->selected & SELECTION_SELECTED) return; | |
834 | |
835 vfi->selection = g_list_append(vfi->selection, id); | |
836 vficon_selection_add(vfi, id, SELECTION_SELECTED, NULL); | |
9 | 837 |
838 vficon_send_update(vfi); | |
839 } | |
840 | |
138 | 841 static void vficon_unselect(ViewFileIcon *vfi, IconData *id) |
9 | 842 { |
138 | 843 vfi->prev_selection = id; |
844 | |
845 if (!id || !(id->selected & SELECTION_SELECTED) ) return; | |
846 | |
847 vfi->selection = g_list_remove(vfi->selection, id); | |
848 vficon_selection_remove(vfi, id, SELECTION_SELECTED, NULL); | |
9 | 849 |
850 vficon_send_update(vfi); | |
851 } | |
852 | |
138 | 853 static void vficon_select_util(ViewFileIcon *vfi, IconData *id, gint select) |
9 | 854 { |
855 if (select) | |
856 { | |
138 | 857 vficon_select(vfi, id); |
9 | 858 } |
859 else | |
860 { | |
138 | 861 vficon_unselect(vfi, id); |
9 | 862 } |
863 } | |
864 | |
138 | 865 static void vficon_select_region_util(ViewFileIcon *vfi, IconData *start, IconData *end, gint select) |
9 | 866 { |
867 gint row1, col1; | |
868 gint row2, col2; | |
869 gint t; | |
870 gint i, j; | |
871 | |
872 if (!vficon_find_position(vfi, start, &row1, &col1) || | |
873 !vficon_find_position(vfi, end, &row2, &col2) ) return; | |
874 | |
875 vfi->prev_selection = end; | |
876 | |
330 | 877 if (!options->collections.rectangular_selection) |
9 | 878 { |
879 GList *work; | |
138 | 880 IconData *id; |
9 | 881 |
882 if (g_list_index(vfi->list, start) > g_list_index(vfi->list, end)) | |
883 { | |
138 | 884 id = start; |
9 | 885 start = end; |
138 | 886 end = id; |
9 | 887 } |
888 | |
889 work = g_list_find(vfi->list, start); | |
890 while (work) | |
891 { | |
138 | 892 id = work->data; |
893 vficon_select_util(vfi, id, select); | |
442 | 894 |
9 | 895 if (work->data != end) |
896 work = work->next; | |
897 else | |
898 work = NULL; | |
899 } | |
900 return; | |
901 } | |
902 | |
903 if (row2 < row1) | |
904 { | |
905 t = row1; | |
906 row1 = row2; | |
907 row2 = t; | |
908 } | |
909 if (col2 < col1) | |
910 { | |
911 t = col1; | |
912 col1 = col2; | |
913 col2 = t; | |
914 } | |
915 | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
499
diff
changeset
|
916 DEBUG_1("table: %d x %d to %d x %d", row1, col1, row2, col2); |
9 | 917 |
918 for (i = row1; i <= row2; i++) | |
919 { | |
920 for (j = col1; j <= col2; j++) | |
921 { | |
138 | 922 IconData *id = vficon_find_data(vfi, i, j, NULL); |
923 if (id) vficon_select_util(vfi, id, select); | |
9 | 924 } |
925 } | |
926 } | |
927 | |
928 gint vficon_index_is_selected(ViewFileIcon *vfi, gint row) | |
929 { | |
138 | 930 IconData *id = g_list_nth_data(vfi->list, row); |
931 | |
932 if (!id) return FALSE; | |
933 | |
934 return (id->selected & SELECTION_SELECTED); | |
9 | 935 } |
936 | |
937 gint vficon_selection_count(ViewFileIcon *vfi, gint64 *bytes) | |
938 { | |
939 if (bytes) | |
940 { | |
941 gint64 b = 0; | |
942 GList *work; | |
943 | |
944 work = vfi->selection; | |
945 while (work) | |
946 { | |
138 | 947 IconData *id = work->data; |
948 FileData *fd = id->fd; | |
442 | 949 g_assert(fd->magick == 0x12345678); |
9 | 950 b += fd->size; |
951 | |
952 work = work->next; | |
953 } | |
954 | |
955 *bytes = b; | |
956 } | |
957 | |
958 return g_list_length(vfi->selection); | |
959 } | |
960 | |
961 GList *vficon_selection_get_list(ViewFileIcon *vfi) | |
962 { | |
963 GList *list = NULL; | |
964 GList *work; | |
965 | |
966 work = vfi->selection; | |
967 while (work) | |
968 { | |
138 | 969 IconData *id = work->data; |
970 FileData *fd = id->fd; | |
442 | 971 g_assert(fd->magick == 0x12345678); |
138 | 972 |
973 list = g_list_prepend(list, file_data_ref(fd)); | |
9 | 974 |
975 work = work->next; | |
976 } | |
977 | |
978 list = g_list_reverse(list); | |
979 | |
980 return list; | |
981 } | |
982 | |
983 GList *vficon_selection_get_list_by_index(ViewFileIcon *vfi) | |
984 { | |
985 GList *list = NULL; | |
986 GList *work; | |
987 | |
442 | 988 work = vfi->selection; |
9 | 989 while (work) |
990 { | |
991 list = g_list_prepend(list, GINT_TO_POINTER(g_list_index(vfi->list, work->data))); | |
992 work = work->next; | |
993 } | |
994 | |
995 return g_list_reverse(list); | |
996 } | |
997 | |
138 | 998 static void vficon_select_by_id(ViewFileIcon *vfi, IconData *id) |
999 { | |
1000 if (!id) return; | |
1001 | |
1002 if (!(id->selected & SELECTION_SELECTED)) | |
1003 { | |
1004 vficon_select_none(vfi); | |
1005 vficon_select(vfi, id); | |
1006 } | |
1007 | |
1008 vficon_set_focus(vfi, id); | |
1009 } | |
1010 | |
1011 | |
9 | 1012 void vficon_select_by_path(ViewFileIcon *vfi, const gchar *path) |
1013 { | |
138 | 1014 IconData *id = NULL; |
9 | 1015 GList *work; |
1016 | |
1017 if (!path) return; | |
1018 | |
1019 work = vfi->list; | |
138 | 1020 while (work && !id) |
9 | 1021 { |
138 | 1022 IconData *chk = work->data; |
9 | 1023 work = work->next; |
138 | 1024 if (strcmp(chk->fd->path, path) == 0) id = chk; |
9 | 1025 } |
138 | 1026 vficon_select_by_id(vfi, id); |
1027 } | |
1028 | |
1029 void vficon_select_by_fd(ViewFileIcon *vfi, FileData *fd) | |
1030 { | |
1031 IconData *id = NULL; | |
1032 GList *work; | |
9 | 1033 |
1034 if (!fd) return; | |
138 | 1035 work = vfi->list; |
1036 while (work && !id) | |
9 | 1037 { |
138 | 1038 IconData *chk = work->data; |
1039 work = work->next; | |
1040 if (chk->fd == fd) id = chk; | |
9 | 1041 } |
138 | 1042 vficon_select_by_id(vfi, id); |
9 | 1043 } |
1044 | |
165 | 1045 void vficon_mark_to_selection(ViewFileIcon *vfi, gint mark, MarkToSelectionMode mode) |
1046 { | |
1047 GList *work; | |
1048 | |
1049 work = vfi->list; | |
1050 while (work) | |
1051 { | |
1052 IconData *id = work->data; | |
1053 FileData *fd = id->fd; | |
1054 gboolean mark_val, selected; | |
1055 | |
442 | 1056 g_assert(fd->magick == 0x12345678); |
165 | 1057 |
1058 mark_val = fd->marks[mark]; | |
1059 selected = (id->selected & SELECTION_SELECTED); | |
442 | 1060 |
1061 switch (mode) | |
165 | 1062 { |
1063 case MTS_MODE_SET: selected = mark_val; | |
1064 break; | |
1065 case MTS_MODE_OR: selected = mark_val | selected; | |
1066 break; | |
1067 case MTS_MODE_AND: selected = mark_val & selected; | |
1068 break; | |
1069 case MTS_MODE_MINUS: selected = !mark_val & selected; | |
1070 break; | |
1071 } | |
442 | 1072 |
165 | 1073 vficon_select_util(vfi, id, selected); |
1074 | |
1075 work = work->next; | |
1076 } | |
1077 } | |
1078 | |
1079 void vficon_selection_to_mark(ViewFileIcon *vfi, gint mark, SelectionToMarkMode mode) | |
1080 { | |
1081 GList *slist; | |
1082 GList *work; | |
1083 | |
1084 g_assert(mark >= 0 && mark < FILEDATA_MARKS_SIZE); | |
1085 | |
1086 slist = vficon_selection_get_list(vfi); | |
1087 work = slist; | |
1088 while (work) | |
1089 { | |
1090 FileData *fd = work->data; | |
442 | 1091 |
165 | 1092 switch (mode) |
1093 { | |
1094 case STM_MODE_SET: fd->marks[mark] = 1; | |
1095 break; | |
1096 case STM_MODE_RESET: fd->marks[mark] = 0; | |
1097 break; | |
1098 case STM_MODE_TOGGLE: fd->marks[mark] = !fd->marks[mark]; | |
1099 break; | |
1100 } | |
442 | 1101 |
165 | 1102 work = work->next; |
1103 } | |
1104 filelist_free(slist); | |
1105 } | |
138 | 1106 |
1107 | |
9 | 1108 /* |
1109 *------------------------------------------------------------------- | |
1110 * focus | |
1111 *------------------------------------------------------------------- | |
1112 */ | |
1113 | |
1114 static void vficon_move_focus(ViewFileIcon *vfi, gint row, gint col, gint relative) | |
1115 { | |
1116 gint new_row; | |
1117 gint new_col; | |
1118 | |
1119 if (relative) | |
1120 { | |
1121 new_row = vfi->focus_row; | |
1122 new_col = vfi->focus_column; | |
1123 | |
1124 new_row += row; | |
1125 if (new_row < 0) new_row = 0; | |
1126 if (new_row >= vfi->rows) new_row = vfi->rows - 1; | |
1127 | |
516 | 1128 while (col != 0) |
9 | 1129 { |
1130 if (col < 0) | |
1131 { | |
1132 new_col--; | |
1133 col++; | |
1134 } | |
1135 else | |
1136 { | |
1137 new_col++; | |
1138 col--; | |
1139 } | |
1140 | |
1141 if (new_col < 0) | |
1142 { | |
1143 if (new_row > 0) | |
1144 { | |
1145 new_row--; | |
1146 new_col = vfi->columns - 1; | |
1147 } | |
1148 else | |
1149 { | |
1150 new_col = 0; | |
1151 } | |
1152 } | |
1153 if (new_col >= vfi->columns) | |
1154 { | |
1155 if (new_row < vfi->rows - 1) | |
1156 { | |
1157 new_row++; | |
1158 new_col = 0; | |
1159 } | |
1160 else | |
1161 { | |
1162 new_col = vfi->columns - 1; | |
1163 } | |
1164 } | |
1165 } | |
1166 } | |
1167 else | |
1168 { | |
1169 new_row = row; | |
1170 new_col = col; | |
1171 | |
1172 if (new_row >= vfi->rows) | |
1173 { | |
1174 if (vfi->rows > 0) | |
1175 new_row = vfi->rows - 1; | |
1176 else | |
1177 new_row = 0; | |
1178 new_col = vfi->columns - 1; | |
1179 } | |
1180 if (new_col >= vfi->columns) new_col = vfi->columns - 1; | |
1181 } | |
1182 | |
1183 if (new_row == vfi->rows - 1) | |
1184 { | |
1185 gint l; | |
1186 | |
1187 /* if we moved beyond the last image, go to the last image */ | |
1188 | |
1189 l = g_list_length(vfi->list); | |
1190 if (vfi->rows > 1) l -= (vfi->rows - 1) * vfi->columns; | |
1191 if (new_col >= l) new_col = l - 1; | |
1192 } | |
1193 | |
1194 vficon_set_focus(vfi, vficon_find_data(vfi, new_row, new_col, NULL)); | |
1195 } | |
1196 | |
138 | 1197 static void vficon_set_focus(ViewFileIcon *vfi, IconData *id) |
9 | 1198 { |
1199 GtkTreeIter iter; | |
1200 gint row, col; | |
1201 | |
138 | 1202 if (g_list_find(vfi->list, vfi->focus_id)) |
9 | 1203 { |
138 | 1204 if (id == vfi->focus_id) |
9 | 1205 { |
1206 /* ensure focus row col are correct */ | |
138 | 1207 vficon_find_position(vfi, vfi->focus_id, &vfi->focus_row, &vfi->focus_column); |
9 | 1208 return; |
1209 } | |
138 | 1210 vficon_selection_remove(vfi, vfi->focus_id, SELECTION_FOCUS, NULL); |
9 | 1211 } |
1212 | |
138 | 1213 if (!vficon_find_position(vfi, id, &row, &col)) |
9 | 1214 { |
138 | 1215 vfi->focus_id = NULL; |
9 | 1216 vfi->focus_row = -1; |
1217 vfi->focus_column = -1; | |
1218 return; | |
1219 } | |
1220 | |
138 | 1221 vfi->focus_id = id; |
9 | 1222 vfi->focus_row = row; |
1223 vfi->focus_column = col; | |
138 | 1224 vficon_selection_add(vfi, vfi->focus_id, SELECTION_FOCUS, NULL); |
1225 | |
1226 if (vficon_find_iter(vfi, vfi->focus_id, &iter, NULL)) | |
9 | 1227 { |
1228 GtkTreePath *tpath; | |
1229 GtkTreeViewColumn *column; | |
1230 GtkTreeModel *store; | |
1231 | |
1232 tree_view_row_make_visible(GTK_TREE_VIEW(vfi->listview), &iter, FALSE); | |
1233 | |
1234 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
1235 tpath = gtk_tree_model_get_path(store, &iter); | |
1236 /* focus is set to an extra column with 0 width to hide focus, we draw it ourself */ | |
1237 column = gtk_tree_view_get_column(GTK_TREE_VIEW(vfi->listview), VFICON_MAX_COLUMNS); | |
1238 gtk_tree_view_set_cursor(GTK_TREE_VIEW(vfi->listview), tpath, column, FALSE); | |
1239 gtk_tree_path_free(tpath); | |
1240 } | |
1241 } | |
1242 | |
1243 static void vficon_update_focus(ViewFileIcon *vfi) | |
1244 { | |
1245 gint new_row = 0; | |
1246 gint new_col = 0; | |
1247 | |
138 | 1248 if (vfi->focus_id && vficon_find_position(vfi, vfi->focus_id, &new_row, &new_col)) |
9 | 1249 { |
1250 /* first find the old focus, if it exists and is valid */ | |
1251 } | |
1252 else | |
1253 { | |
1254 /* (try to) stay where we were */ | |
1255 new_row = vfi->focus_row; | |
1256 new_col = vfi->focus_column; | |
1257 } | |
1258 | |
1259 vficon_move_focus(vfi, new_row, new_col, FALSE); | |
1260 } | |
1261 | |
1262 /* used to figure the page up/down distances */ | |
1263 static gint page_height(ViewFileIcon *vfi) | |
1264 { | |
1265 GtkAdjustment *adj; | |
1266 gint page_size; | |
1267 gint row_height; | |
1268 gint ret; | |
1269 | |
1270 adj = gtk_tree_view_get_vadjustment(GTK_TREE_VIEW(vfi->listview)); | |
1271 page_size = (gint)adj->page_increment; | |
1272 | |
333 | 1273 row_height = options->thumbnails.max_height + THUMB_BORDER_PADDING * 2; |
1274 if (vfi->show_text) row_height += options->thumbnails.max_height / 3; | |
9 | 1275 |
1276 ret = page_size / row_height; | |
1277 if (ret < 1) ret = 1; | |
1278 | |
1279 return ret; | |
1280 } | |
1281 | |
1282 /* | |
1283 *------------------------------------------------------------------- | |
1284 * keyboard | |
1285 *------------------------------------------------------------------- | |
1286 */ | |
1287 | |
1288 static void vfi_menu_position_cb(GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer data) | |
1289 { | |
1290 ViewFileIcon *vfi = data; | |
1291 GtkTreeModel *store; | |
1292 GtkTreeIter iter; | |
1293 gint column; | |
1294 GtkTreePath *tpath; | |
1295 gint cw, ch; | |
1296 | |
138 | 1297 if (!vficon_find_iter(vfi, vfi->click_id, &iter, &column)) return; |
9 | 1298 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); |
1299 tpath = gtk_tree_model_get_path(store, &iter); | |
1300 tree_view_get_cell_clamped(GTK_TREE_VIEW(vfi->listview), tpath, column, FALSE, x, y, &cw, &ch); | |
1301 gtk_tree_path_free(tpath); | |
1302 *y += ch; | |
1303 popup_menu_position_clamp(menu, x, y, 0); | |
1304 } | |
1305 | |
1306 static gint vficon_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data) | |
1307 { | |
1308 ViewFileIcon *vfi = data; | |
1309 gint focus_row = 0; | |
1310 gint focus_col = 0; | |
138 | 1311 IconData *id; |
85
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1312 gint stop_signal; |
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1313 |
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1314 stop_signal = TRUE; |
9 | 1315 switch (event->keyval) |
1316 { | |
1317 case GDK_Left: case GDK_KP_Left: | |
1318 focus_col = -1; | |
1319 break; | |
1320 case GDK_Right: case GDK_KP_Right: | |
1321 focus_col = 1; | |
1322 break; | |
1323 case GDK_Up: case GDK_KP_Up: | |
1324 focus_row = -1; | |
1325 break; | |
1326 case GDK_Down: case GDK_KP_Down: | |
1327 focus_row = 1; | |
1328 break; | |
1329 case GDK_Page_Up: case GDK_KP_Page_Up: | |
1330 focus_row = -page_height(vfi); | |
1331 break; | |
1332 case GDK_Page_Down: case GDK_KP_Page_Down: | |
1333 focus_row = page_height(vfi); | |
1334 break; | |
1335 case GDK_Home: case GDK_KP_Home: | |
1336 focus_row = -vfi->focus_row; | |
1337 focus_col = -vfi->focus_column; | |
1338 break; | |
1339 case GDK_End: case GDK_KP_End: | |
1340 focus_row = vfi->rows - 1 - vfi->focus_row; | |
1341 focus_col = vfi->columns - 1 - vfi->focus_column; | |
1342 break; | |
1343 case GDK_space: | |
138 | 1344 id = vficon_find_data(vfi, vfi->focus_row, vfi->focus_column, NULL); |
1345 if (id) | |
9 | 1346 { |
138 | 1347 vfi->click_id = id; |
9 | 1348 if (event->state & GDK_CONTROL_MASK) |
1349 { | |
1350 gint selected; | |
1351 | |
138 | 1352 selected = id->selected & SELECTION_SELECTED; |
9 | 1353 if (selected) |
1354 { | |
138 | 1355 vficon_unselect(vfi, id); |
9 | 1356 } |
1357 else | |
1358 { | |
138 | 1359 vficon_select(vfi, id); |
1360 vficon_send_layout_select(vfi, id); | |
9 | 1361 } |
1362 } | |
1363 else | |
1364 { | |
1365 vficon_select_none(vfi); | |
138 | 1366 vficon_select(vfi, id); |
1367 vficon_send_layout_select(vfi, id); | |
9 | 1368 } |
1369 } | |
1370 break; | |
1371 case GDK_Menu: | |
138 | 1372 id = vficon_find_data(vfi, vfi->focus_row, vfi->focus_column, NULL); |
1373 vfi->click_id = id; | |
1374 | |
1375 vficon_selection_add(vfi, vfi->click_id, SELECTION_PRELIGHT, NULL); | |
9 | 1376 tip_unschedule(vfi); |
1377 | |
138 | 1378 vfi->popup = vficon_pop_menu(vfi, (id != NULL)); |
9 | 1379 gtk_menu_popup(GTK_MENU(vfi->popup), NULL, NULL, vfi_menu_position_cb, vfi, 0, GDK_CURRENT_TIME); |
1380 break; | |
1381 default: | |
85
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1382 stop_signal = FALSE; |
9 | 1383 break; |
1384 } | |
1385 | |
1386 if (focus_row != 0 || focus_col != 0) | |
1387 { | |
138 | 1388 IconData *new_id; |
1389 IconData *old_id; | |
1390 | |
1391 old_id = vficon_find_data(vfi, vfi->focus_row, vfi->focus_column, NULL); | |
9 | 1392 vficon_move_focus(vfi, focus_row, focus_col, TRUE); |
138 | 1393 new_id = vficon_find_data(vfi, vfi->focus_row, vfi->focus_column, NULL); |
1394 | |
1395 if (new_id != old_id) | |
9 | 1396 { |
1397 if (event->state & GDK_SHIFT_MASK) | |
1398 { | |
330 | 1399 if (!options->collections.rectangular_selection) |
9 | 1400 { |
138 | 1401 vficon_select_region_util(vfi, old_id, new_id, FALSE); |
9 | 1402 } |
1403 else | |
1404 { | |
138 | 1405 vficon_select_region_util(vfi, vfi->click_id, old_id, FALSE); |
9 | 1406 } |
138 | 1407 vficon_select_region_util(vfi, vfi->click_id, new_id, TRUE); |
1408 vficon_send_layout_select(vfi, new_id); | |
9 | 1409 } |
1410 else if (event->state & GDK_CONTROL_MASK) | |
1411 { | |
138 | 1412 vfi->click_id = new_id; |
9 | 1413 } |
1414 else | |
1415 { | |
138 | 1416 vfi->click_id = new_id; |
9 | 1417 vficon_select_none(vfi); |
138 | 1418 vficon_select(vfi, new_id); |
1419 vficon_send_layout_select(vfi, new_id); | |
9 | 1420 } |
1421 } | |
1422 } | |
1423 | |
1424 if (stop_signal) | |
1425 { | |
85
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1426 #if 0 |
9 | 1427 g_signal_stop_emission_by_name(GTK_OBJECT(widget), "key_press_event"); |
85
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1428 #endif |
9 | 1429 tip_unschedule(vfi); |
1430 } | |
1431 | |
1432 return stop_signal; | |
1433 } | |
1434 | |
1435 /* | |
1436 *------------------------------------------------------------------- | |
1437 * mouse | |
1438 *------------------------------------------------------------------- | |
1439 */ | |
1440 | |
1441 static gint vficon_motion_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) | |
1442 { | |
1443 ViewFileIcon *vfi = data; | |
138 | 1444 IconData *id; |
1445 | |
1446 id = vficon_find_data_by_coord(vfi, (gint)bevent->x, (gint)bevent->y, NULL); | |
1447 tip_update(vfi, id); | |
9 | 1448 |
1449 return FALSE; | |
1450 } | |
1451 | |
1452 static gint vficon_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) | |
1453 { | |
1454 ViewFileIcon *vfi = data; | |
1455 GtkTreeIter iter; | |
138 | 1456 IconData *id; |
9 | 1457 |
1458 tip_unschedule(vfi); | |
442 | 1459 |
138 | 1460 id = vficon_find_data_by_coord(vfi, (gint)bevent->x, (gint)bevent->y, &iter); |
1461 | |
1462 vfi->click_id = id; | |
1463 vficon_selection_add(vfi, vfi->click_id, SELECTION_PRELIGHT, &iter); | |
9 | 1464 |
1465 switch (bevent->button) | |
1466 { | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
1467 case MOUSE_BUTTON_LEFT: |
9 | 1468 if (!GTK_WIDGET_HAS_FOCUS(vfi->listview)) |
1469 { | |
1470 gtk_widget_grab_focus(vfi->listview); | |
1471 } | |
1472 #if 0 | |
1473 if (bevent->type == GDK_2BUTTON_PRESS && | |
1474 vfi->layout) | |
1475 { | |
138 | 1476 vficon_selection_remove(vfi, vfi->click_id, SELECTION_PRELIGHT, &iter); |
9 | 1477 layout_image_full_screen_start(vfi->layout); |
1478 } | |
1479 #endif | |
1480 break; | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
1481 case MOUSE_BUTTON_RIGHT: |
138 | 1482 vfi->popup = vficon_pop_menu(vfi, (id != NULL)); |
9 | 1483 gtk_menu_popup(GTK_MENU(vfi->popup), NULL, NULL, NULL, NULL, bevent->button, bevent->time); |
1484 break; | |
1485 default: | |
1486 break; | |
1487 } | |
1488 | |
1489 return TRUE; | |
1490 } | |
1491 | |
1492 static gint vficon_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) | |
1493 { | |
1494 ViewFileIcon *vfi = data; | |
1495 GtkTreeIter iter; | |
138 | 1496 IconData *id = NULL; |
9 | 1497 gint was_selected = FALSE; |
1498 | |
1499 tip_schedule(vfi); | |
1500 | |
1501 if ((gint)bevent->x != 0 || (gint) bevent->y != 0) | |
1502 { | |
138 | 1503 id = vficon_find_data_by_coord(vfi, (gint)bevent->x, (gint)bevent->y, &iter); |
9 | 1504 } |
1505 | |
138 | 1506 if (vfi->click_id) |
9 | 1507 { |
138 | 1508 vficon_selection_remove(vfi, vfi->click_id, SELECTION_PRELIGHT, NULL); |
9 | 1509 } |
1510 | |
138 | 1511 if (id) was_selected = (id->selected & SELECTION_SELECTED); |
9 | 1512 |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
1513 if (bevent->button == MOUSE_BUTTON_LEFT && |
138 | 1514 id && vfi->click_id == id) |
9 | 1515 { |
138 | 1516 vficon_set_focus(vfi, id); |
442 | 1517 |
9 | 1518 if (bevent->state & GDK_CONTROL_MASK) |
1519 { | |
1520 gint select; | |
1521 | |
138 | 1522 select = !(id->selected & SELECTION_SELECTED); |
9 | 1523 if ((bevent->state & GDK_SHIFT_MASK) && vfi->prev_selection) |
1524 { | |
138 | 1525 vficon_select_region_util(vfi, vfi->prev_selection, id, select); |
9 | 1526 } |
1527 else | |
1528 { | |
138 | 1529 vficon_select_util(vfi, id, select); |
9 | 1530 } |
1531 } | |
1532 else | |
1533 { | |
1534 vficon_select_none(vfi); | |
1535 | |
1536 if ((bevent->state & GDK_SHIFT_MASK) && | |
1537 vfi->prev_selection) | |
1538 { | |
138 | 1539 vficon_select_region_util(vfi, vfi->prev_selection, id, TRUE); |
9 | 1540 } |
1541 else | |
1542 { | |
138 | 1543 vficon_select_util(vfi, id, TRUE); |
9 | 1544 was_selected = FALSE; |
1545 } | |
1546 } | |
1547 } | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
1548 else if (bevent->button == MOUSE_BUTTON_MIDDLE && |
138 | 1549 id && vfi->click_id == id) |
9 | 1550 { |
138 | 1551 vficon_select_util(vfi, id, !(id->selected & SELECTION_SELECTED)); |
9 | 1552 } |
1553 | |
138 | 1554 if (id && !was_selected && |
1555 (id->selected & SELECTION_SELECTED)) | |
9 | 1556 { |
138 | 1557 vficon_send_layout_select(vfi, id); |
9 | 1558 } |
1559 | |
1560 return TRUE; | |
1561 } | |
1562 | |
1563 static gint vficon_leave_cb(GtkWidget *widget, GdkEventCrossing *event, gpointer data) | |
1564 { | |
1565 ViewFileIcon *vfi = data; | |
1566 | |
1567 tip_unschedule(vfi); | |
1568 return FALSE; | |
1569 } | |
1570 | |
1571 /* | |
1572 *------------------------------------------------------------------- | |
1573 * population | |
1574 *------------------------------------------------------------------- | |
1575 */ | |
1576 | |
1577 static gboolean vficon_destroy_node_cb(GtkTreeModel *store, GtkTreePath *tpath, GtkTreeIter *iter, gpointer data) | |
1578 { | |
1579 GList *list; | |
1580 | |
1581 gtk_tree_model_get(store, iter, FILE_COLUMN_POINTER, &list, -1); | |
1582 g_list_free(list); | |
1583 | |
1584 return FALSE; | |
1585 } | |
1586 | |
1587 static void vficon_clear_store(ViewFileIcon *vfi) | |
1588 { | |
1589 GtkTreeModel *store; | |
1590 | |
1591 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
1592 gtk_tree_model_foreach(store, vficon_destroy_node_cb, NULL); | |
1593 | |
1594 gtk_list_store_clear(GTK_LIST_STORE(store)); | |
1595 } | |
1596 | |
1597 static void vficon_set_thumb(ViewFileIcon *vfi, FileData *fd, GdkPixbuf *pb) | |
1598 { | |
1599 GtkTreeModel *store; | |
1600 GtkTreeIter iter; | |
1601 GList *list; | |
1602 | |
138 | 1603 if (!vficon_find_iter(vfi, vficon_icon_data(vfi, fd), &iter, NULL)) return; |
9 | 1604 |
1605 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
1606 | |
1607 if (pb) g_object_ref(pb); | |
1608 if (fd->pixbuf) g_object_unref(fd->pixbuf); | |
1609 fd->pixbuf = pb; | |
1610 | |
1611 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1612 gtk_list_store_set(GTK_LIST_STORE(store), &iter, FILE_COLUMN_POINTER, list, -1); | |
1613 } | |
1614 | |
1615 static GList *vficon_add_row(ViewFileIcon *vfi, GtkTreeIter *iter) | |
1616 { | |
1617 GtkListStore *store; | |
1618 GList *list = NULL; | |
1619 gint i; | |
1620 | |
1621 for (i = 0; i < vfi->columns; i++) list = g_list_prepend(list, NULL); | |
1622 | |
1623 store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview))); | |
1624 gtk_list_store_append(store, iter); | |
1625 gtk_list_store_set(store, iter, FILE_COLUMN_POINTER, list, -1); | |
1626 | |
1627 return list; | |
1628 } | |
1629 | |
1630 static void vficon_populate(ViewFileIcon *vfi, gint resize, gint keep_position) | |
1631 { | |
1632 GtkTreeModel *store; | |
1633 GtkTreePath *tpath; | |
1634 gint row; | |
1635 GList *work; | |
138 | 1636 IconData *visible_id = NULL; |
9 | 1637 |
1638 vficon_verify_selections(vfi); | |
1639 | |
1640 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
1641 | |
1642 if (keep_position && GTK_WIDGET_REALIZED(vfi->listview) && | |
1643 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vfi->listview), 0, 0, &tpath, NULL, NULL, NULL)) | |
1644 { | |
1645 GtkTreeIter iter; | |
1646 GList *list; | |
1647 | |
1648 gtk_tree_model_get_iter(store, &iter, tpath); | |
1649 gtk_tree_path_free(tpath); | |
1650 | |
1651 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
138 | 1652 if (list) visible_id = list->data; |
9 | 1653 } |
1654 | |
1655 vficon_clear_store(vfi); | |
1656 | |
1657 if (resize) | |
1658 { | |
1659 gint i; | |
1660 gint thumb_width; | |
1661 | |
1662 thumb_width = vficon_get_icon_width(vfi); | |
1663 | |
1664 for (i = 0; i < VFICON_MAX_COLUMNS; i++) | |
1665 { | |
1666 GtkTreeViewColumn *column; | |
1667 GtkCellRenderer *cell; | |
1668 GList *list; | |
1669 | |
1670 column = gtk_tree_view_get_column(GTK_TREE_VIEW(vfi->listview), i); | |
1671 gtk_tree_view_column_set_visible(column, (i < vfi->columns)); | |
1672 gtk_tree_view_column_set_fixed_width(column, thumb_width + (THUMB_BORDER_PADDING * 6)); | |
1673 | |
1674 list = gtk_tree_view_column_get_cell_renderers(column); | |
1675 cell = (list) ? list->data : NULL; | |
1676 g_list_free(list); | |
1677 | |
1678 if (cell && GQV_IS_CELL_RENDERER_ICON(cell)) | |
1679 { | |
1680 g_object_set(G_OBJECT(cell), "fixed_width", thumb_width, | |
333 | 1681 "fixed_height", options->thumbnails.max_height, |
9 | 1682 "show_text", vfi->show_text, NULL); |
1683 } | |
1684 } | |
1685 if (GTK_WIDGET_REALIZED(vfi->listview)) gtk_tree_view_columns_autosize(GTK_TREE_VIEW(vfi->listview)); | |
1686 } | |
1687 | |
1688 row = -1; | |
1689 work = vfi->list; | |
1690 while (work) | |
1691 { | |
1692 GList *list; | |
1693 GtkTreeIter iter; | |
1694 | |
1695 row++; | |
1696 | |
1697 list = vficon_add_row(vfi, &iter); | |
1698 while (work && list) | |
1699 { | |
138 | 1700 IconData *id; |
1701 | |
1702 id = work->data; | |
1703 id->row = row; | |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1704 |
9 | 1705 list->data = work->data; |
1706 list = list->next; | |
1707 work = work->next; | |
1708 } | |
1709 } | |
1710 | |
138 | 1711 if (visible_id && |
9 | 1712 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vfi->listview), 0, 0, &tpath, NULL, NULL, NULL)) |
1713 { | |
1714 GtkTreeIter iter; | |
1715 GList *list; | |
1716 | |
1717 gtk_tree_model_get_iter(store, &iter, tpath); | |
1718 gtk_tree_path_free(tpath); | |
1719 | |
1720 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
138 | 1721 if (g_list_find(list, visible_id) == NULL && |
1722 vficon_find_iter(vfi, visible_id, &iter, NULL)) | |
9 | 1723 { |
1724 tree_view_row_make_visible(GTK_TREE_VIEW(vfi->listview), &iter, FALSE); | |
1725 } | |
1726 } | |
1727 | |
1728 vfi->rows = row + 1; | |
1729 | |
1730 vficon_send_update(vfi); | |
1731 vficon_thumb_update(vfi); | |
1732 } | |
1733 | |
1734 static void vficon_populate_at_new_size(ViewFileIcon *vfi, gint w, gint h, gint force) | |
1735 { | |
1736 gint new_cols; | |
1737 gint thumb_width; | |
1738 | |
1739 thumb_width = vficon_get_icon_width(vfi); | |
1740 | |
1741 new_cols = w / (thumb_width + (THUMB_BORDER_PADDING * 6)); | |
1742 if (new_cols < 1) new_cols = 1; | |
1743 | |
1744 if (!force && new_cols == vfi->columns) return; | |
1745 | |
1746 vfi->columns = new_cols; | |
1747 | |
1748 vficon_populate(vfi, TRUE, TRUE); | |
1749 | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
499
diff
changeset
|
1750 DEBUG_1("col tab pop cols=%d rows=%d", vfi->columns, vfi->rows); |
9 | 1751 } |
1752 | |
1753 static void vficon_sync(ViewFileIcon *vfi) | |
1754 { | |
1755 GtkTreeModel *store; | |
1756 GtkTreeIter iter; | |
1757 GList *work; | |
1758 gint r, c; | |
1759 | |
1760 if (vfi->rows == 0) return; | |
1761 | |
1762 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
1763 | |
1764 r = -1; | |
1765 c = 0; | |
1766 | |
1767 work = vfi->list; | |
1768 while (work) | |
1769 { | |
1770 GList *list; | |
1771 r++; | |
1772 c = 0; | |
1773 if (gtk_tree_model_iter_nth_child(store, &iter, NULL, r)) | |
1774 { | |
1775 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1776 gtk_list_store_set(GTK_LIST_STORE(store), &iter, FILE_COLUMN_POINTER, list, -1); | |
1777 } | |
1778 else | |
1779 { | |
1780 list = vficon_add_row(vfi, &iter); | |
1781 } | |
442 | 1782 |
9 | 1783 while (list) |
1784 { | |
138 | 1785 IconData *id; |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1786 |
9 | 1787 if (work) |
1788 { | |
138 | 1789 id = work->data; |
9 | 1790 work = work->next; |
1791 c++; | |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1792 |
138 | 1793 id->row = r; |
9 | 1794 } |
1795 else | |
1796 { | |
138 | 1797 id = NULL; |
9 | 1798 } |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1799 |
138 | 1800 list->data = id; |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1801 list = list->next; |
9 | 1802 } |
1803 } | |
1804 | |
1805 r++; | |
1806 while (gtk_tree_model_iter_nth_child(store, &iter, NULL, r)) | |
1807 { | |
1808 GList *list; | |
1809 | |
1810 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1811 gtk_list_store_remove(GTK_LIST_STORE(store), &iter); | |
1812 g_list_free(list); | |
1813 } | |
1814 | |
1815 vfi->rows = r; | |
1816 | |
1817 vficon_update_focus(vfi); | |
1818 } | |
1819 | |
1820 static gint vficon_sync_idle_cb(gpointer data) | |
1821 { | |
1822 ViewFileIcon *vfi = data; | |
1823 | |
1824 if (vfi->sync_idle_id == -1) return FALSE; | |
1825 vfi->sync_idle_id = -1; | |
1826 | |
1827 vficon_sync(vfi); | |
1828 return FALSE; | |
1829 } | |
1830 | |
1831 static void vficon_sync_idle(ViewFileIcon *vfi) | |
1832 { | |
1833 if (vfi->sync_idle_id == -1) | |
1834 { | |
1835 /* high priority, the view needs to be resynced before a redraw | |
1836 * may contain invalid pointers at this time | |
1837 */ | |
1838 vfi->sync_idle_id = g_idle_add_full(G_PRIORITY_HIGH, vficon_sync_idle_cb, vfi, NULL); | |
1839 } | |
1840 } | |
1841 | |
1842 static void vficon_sized_cb(GtkWidget *widget, GtkAllocation *allocation, gpointer data) | |
1843 { | |
1844 ViewFileIcon *vfi = data; | |
1845 | |
1846 vficon_populate_at_new_size(vfi, allocation->width, allocation->height, FALSE); | |
1847 } | |
1848 | |
1849 /* | |
1850 *----------------------------------------------------------------------------- | |
1851 * misc | |
1852 *----------------------------------------------------------------------------- | |
1853 */ | |
1854 | |
1855 void vficon_sort_set(ViewFileIcon *vfi, SortType type, gint ascend) | |
1856 { | |
1857 if (vfi->sort_method == type && vfi->sort_ascend == ascend) return; | |
1858 | |
1859 vfi->sort_method = type; | |
1860 vfi->sort_ascend = ascend; | |
1861 | |
1862 if (!vfi->list) return; | |
1863 | |
138 | 1864 vfi->list = iconlist_sort(vfi->list, vfi->sort_method, vfi->sort_ascend); |
9 | 1865 vficon_sync(vfi); |
1866 } | |
1867 | |
1868 /* | |
1869 *----------------------------------------------------------------------------- | |
1870 * thumb updates | |
1871 *----------------------------------------------------------------------------- | |
1872 */ | |
1873 | |
1874 static gint vficon_thumb_next(ViewFileIcon *vfi); | |
1875 | |
1876 static void vficon_thumb_status(ViewFileIcon *vfi, gdouble val, const gchar *text) | |
1877 { | |
1878 if (vfi->func_thumb_status) | |
1879 { | |
1880 vfi->func_thumb_status(vfi, val, text, vfi->data_thumb_status); | |
1881 } | |
1882 } | |
1883 | |
1884 static void vficon_thumb_cleanup(ViewFileIcon *vfi) | |
1885 { | |
1886 vficon_thumb_status(vfi, 0.0, NULL); | |
1887 | |
1888 g_list_free(vfi->thumbs_list); | |
1889 vfi->thumbs_list = NULL; | |
1890 vfi->thumbs_count = 0; | |
1891 vfi->thumbs_running = FALSE; | |
1892 | |
1893 thumb_loader_free(vfi->thumbs_loader); | |
1894 vfi->thumbs_loader = NULL; | |
1895 | |
1896 vfi->thumbs_fd = NULL; | |
1897 } | |
1898 | |
1899 static void vficon_thumb_stop(ViewFileIcon *vfi) | |
1900 { | |
1901 if (vfi->thumbs_running) vficon_thumb_cleanup(vfi); | |
1902 } | |
1903 | |
1904 static void vficon_thumb_do(ViewFileIcon *vfi, ThumbLoader *tl, FileData *fd) | |
1905 { | |
1906 GdkPixbuf *pixbuf; | |
1907 | |
1908 if (!fd) return; | |
1909 | |
1910 pixbuf = thumb_loader_get_pixbuf(tl, TRUE); | |
1911 vficon_set_thumb(vfi, fd, pixbuf); | |
1912 g_object_unref(pixbuf); | |
1913 | |
1914 vficon_thumb_status(vfi, (gdouble)(vfi->thumbs_count) / g_list_length(vfi->list), _("Loading thumbs...")); | |
1915 } | |
1916 | |
1917 static void vficon_thumb_error_cb(ThumbLoader *tl, gpointer data) | |
1918 { | |
1919 ViewFileIcon *vfi = data; | |
1920 | |
1921 if (vfi->thumbs_fd && vfi->thumbs_loader == tl) | |
1922 { | |
1923 vficon_thumb_do(vfi, tl, vfi->thumbs_fd); | |
1924 } | |
1925 | |
1926 while (vficon_thumb_next(vfi)); | |
1927 } | |
1928 | |
1929 static void vficon_thumb_done_cb(ThumbLoader *tl, gpointer data) | |
1930 { | |
1931 ViewFileIcon *vfi = data; | |
1932 | |
1933 if (vfi->thumbs_fd && vfi->thumbs_loader == tl) | |
1934 { | |
1935 vficon_thumb_do(vfi, tl, vfi->thumbs_fd); | |
1936 } | |
1937 | |
1938 while (vficon_thumb_next(vfi)); | |
1939 } | |
1940 | |
1941 static gint vficon_thumb_next(ViewFileIcon *vfi) | |
1942 { | |
1943 GtkTreePath *tpath; | |
1944 FileData *fd = NULL; | |
1945 | |
1946 if (!GTK_WIDGET_REALIZED(vfi->listview)) | |
1947 { | |
1948 vficon_thumb_status(vfi, 0.0, NULL); | |
1949 return FALSE; | |
1950 } | |
1951 | |
1952 if (gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vfi->listview), 0, 0, &tpath, NULL, NULL, NULL)) | |
1953 { | |
1954 GtkTreeModel *store; | |
1955 GtkTreeIter iter; | |
1956 gint valid = TRUE; | |
1957 | |
1958 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
1959 gtk_tree_model_get_iter(store, &iter, tpath); | |
1960 gtk_tree_path_free(tpath); | |
1961 | |
1962 while (!fd && valid && tree_view_row_get_visibility(GTK_TREE_VIEW(vfi->listview), &iter, FALSE) == 0) | |
1963 { | |
1964 GList *list; | |
1965 | |
1966 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1967 | |
1968 while (!fd && list) | |
1969 { | |
138 | 1970 IconData *id = list->data; |
1971 if (id && !id->fd->pixbuf) fd = id->fd; | |
9 | 1972 list = list->next; |
1973 } | |
1974 | |
1975 valid = gtk_tree_model_iter_next(store, &iter); | |
1976 } | |
1977 } | |
1978 | |
1979 /* then find first undone */ | |
1980 | |
1981 if (!fd) | |
1982 { | |
1983 GList *work = vfi->list; | |
1984 while (work && !fd) | |
1985 { | |
138 | 1986 IconData *id = work->data; |
1987 FileData *fd_p = id->fd; | |
9 | 1988 work = work->next; |
1989 | |
1990 if (!fd_p->pixbuf) fd = fd_p; | |
1991 } | |
1992 } | |
1993 | |
1994 if (!fd) | |
1995 { | |
1996 /* done */ | |
1997 vficon_thumb_cleanup(vfi); | |
1998 return FALSE; | |
1999 } | |
2000 | |
2001 vfi->thumbs_count++; | |
2002 | |
2003 vfi->thumbs_fd = fd; | |
2004 | |
2005 thumb_loader_free(vfi->thumbs_loader); | |
2006 | |
333 | 2007 vfi->thumbs_loader = thumb_loader_new(options->thumbnails.max_width, options->thumbnails.max_height); |
9 | 2008 thumb_loader_set_callbacks(vfi->thumbs_loader, |
2009 vficon_thumb_done_cb, | |
2010 vficon_thumb_error_cb, | |
2011 NULL, | |
2012 vfi); | |
2013 | |
2014 if (!thumb_loader_start(vfi->thumbs_loader, fd->path)) | |
2015 { | |
2016 /* set icon to unknown, continue */ | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
499
diff
changeset
|
2017 DEBUG_1("thumb loader start failed %s", vfi->thumbs_loader->path); |
9 | 2018 vficon_thumb_do(vfi, vfi->thumbs_loader, fd); |
2019 | |
2020 return TRUE; | |
2021 } | |
2022 | |
2023 return FALSE; | |
2024 } | |
2025 | |
2026 static void vficon_thumb_update(ViewFileIcon *vfi) | |
2027 { | |
2028 vficon_thumb_stop(vfi); | |
2029 | |
2030 vficon_thumb_status(vfi, 0.0, _("Loading thumbs...")); | |
2031 vfi->thumbs_running = TRUE; | |
2032 | |
2033 while (vficon_thumb_next(vfi)); | |
2034 } | |
2035 | |
2036 /* | |
2037 *----------------------------------------------------------------------------- | |
2038 * row stuff | |
2039 *----------------------------------------------------------------------------- | |
2040 */ | |
2041 | |
2042 FileData *vficon_index_get_data(ViewFileIcon *vfi, gint row) | |
2043 { | |
138 | 2044 IconData *id; |
442 | 2045 |
138 | 2046 id = g_list_nth_data(vfi->list, row); |
2047 return id ? id->fd : NULL; | |
9 | 2048 } |
2049 | |
2050 gchar *vficon_index_get_path(ViewFileIcon *vfi, gint row) | |
2051 { | |
2052 FileData *fd; | |
138 | 2053 IconData *id; |
442 | 2054 |
138 | 2055 id = g_list_nth_data(vfi->list, row); |
2056 fd = id ? id->fd : NULL; | |
9 | 2057 |
2058 return (fd ? fd->path : NULL); | |
2059 } | |
2060 | |
2061 gint vficon_index_by_path(ViewFileIcon *vfi, const gchar *path) | |
2062 { | |
2063 gint p = 0; | |
2064 GList *work; | |
2065 | |
2066 if (!path) return -1; | |
2067 | |
2068 work = vfi->list; | |
2069 while (work) | |
2070 { | |
138 | 2071 IconData *id = work->data; |
2072 FileData *fd = id->fd; | |
9 | 2073 if (strcmp(path, fd->path) == 0) return p; |
2074 work = work->next; | |
2075 p++; | |
2076 } | |
2077 | |
2078 return -1; | |
2079 } | |
2080 | |
138 | 2081 gint vficon_index_by_fd(ViewFileIcon *vfi, FileData *in_fd) |
2082 { | |
2083 gint p = 0; | |
2084 GList *work; | |
2085 | |
2086 if (!in_fd) return -1; | |
2087 | |
2088 work = vfi->list; | |
2089 while (work) | |
2090 { | |
2091 IconData *id = work->data; | |
2092 FileData *fd = id->fd; | |
2093 if (fd == in_fd) return p; | |
2094 work = work->next; | |
2095 p++; | |
2096 } | |
2097 | |
2098 return -1; | |
2099 } | |
2100 | |
2101 static gint vficon_index_by_id(ViewFileIcon *vfi, IconData *in_id) | |
2102 { | |
2103 gint p = 0; | |
2104 GList *work; | |
2105 | |
2106 if (!in_id) return -1; | |
2107 | |
2108 work = vfi->list; | |
2109 while (work) | |
2110 { | |
2111 IconData *id = work->data; | |
2112 if (id == in_id) return p; | |
2113 work = work->next; | |
2114 p++; | |
2115 } | |
2116 | |
2117 return -1; | |
2118 } | |
2119 | |
9 | 2120 gint vficon_count(ViewFileIcon *vfi, gint64 *bytes) |
2121 { | |
2122 if (bytes) | |
2123 { | |
2124 gint64 b = 0; | |
2125 GList *work; | |
2126 | |
2127 work = vfi->list; | |
2128 while (work) | |
2129 { | |
442 | 2130 |
138 | 2131 IconData *id = work->data; |
2132 FileData *fd = id->fd; | |
9 | 2133 work = work->next; |
2134 b += fd->size; | |
2135 } | |
2136 | |
2137 *bytes = b; | |
2138 } | |
2139 | |
2140 return g_list_length(vfi->list); | |
2141 } | |
2142 | |
2143 GList *vficon_get_list(ViewFileIcon *vfi) | |
2144 { | |
2145 GList *list = NULL; | |
2146 GList *work; | |
2147 | |
2148 work = vfi->list; | |
2149 while (work) | |
2150 { | |
138 | 2151 IconData *id = work->data; |
2152 FileData *fd = id->fd; | |
9 | 2153 work = work->next; |
2154 | |
138 | 2155 list = g_list_prepend(list, file_data_ref(fd)); |
9 | 2156 } |
2157 | |
2158 return g_list_reverse(list); | |
2159 } | |
2160 | |
2161 /* | |
2162 *----------------------------------------------------------------------------- | |
2163 * | |
2164 *----------------------------------------------------------------------------- | |
2165 */ | |
2166 | |
2167 static gint vficon_refresh_real(ViewFileIcon *vfi, gint keep_position) | |
2168 { | |
2169 gint ret = TRUE; | |
2170 GList *old_list; | |
2171 GList *work; | |
138 | 2172 IconData *focus_id; |
2173 | |
2174 focus_id = vfi->focus_id; | |
9 | 2175 |
2176 old_list = vfi->list; | |
2177 vfi->list = NULL; | |
2178 | |
2179 if (vfi->path) | |
2180 { | |
2181 ret = iconlist_read(vfi->path, &vfi->list); | |
2182 } | |
2183 | |
2184 /* check for same files from old_list */ | |
2185 work = old_list; | |
2186 while (work) | |
2187 { | |
138 | 2188 IconData *id; |
9 | 2189 FileData *fd; |
442 | 2190 |
9 | 2191 GList *needle; |
2192 | |
138 | 2193 id = work->data; |
2194 fd = id->fd; | |
442 | 2195 |
9 | 2196 needle = vfi->list; |
2197 while (needle) | |
2198 { | |
138 | 2199 IconData *idn = needle->data; |
2200 FileData *fdn = idn->fd; | |
167 | 2201 if (fdn == fd) |
9 | 2202 { |
2203 /* swap, to retain old thumb, selection */ | |
138 | 2204 needle->data = id; |
2205 work->data = idn; | |
9 | 2206 needle = NULL; |
2207 } | |
2208 else | |
2209 { | |
2210 needle = needle->next; | |
2211 } | |
2212 } | |
2213 | |
2214 work = work->next; | |
2215 } | |
2216 | |
138 | 2217 vfi->list = iconlist_sort(vfi->list, vfi->sort_method, vfi->sort_ascend); |
9 | 2218 |
2219 work = old_list; | |
2220 while (work) | |
2221 { | |
138 | 2222 IconData *id = work->data; |
9 | 2223 work = work->next; |
2224 | |
138 | 2225 if (id == vfi->prev_selection) vfi->prev_selection = NULL; |
2226 if (id == vfi->click_id) vfi->click_id = NULL; | |
9 | 2227 } |
2228 | |
2229 vficon_populate(vfi, TRUE, keep_position); | |
2230 | |
2231 /* attempt to keep focus on same icon when refreshing */ | |
138 | 2232 if (focus_id && g_list_find(vfi->list, focus_id)) |
9 | 2233 { |
138 | 2234 vficon_set_focus(vfi, focus_id); |
9 | 2235 } |
2236 | |
2237 iconlist_free(old_list); | |
2238 | |
2239 return ret; | |
2240 } | |
2241 | |
2242 gint vficon_refresh(ViewFileIcon *vfi) | |
2243 { | |
2244 return vficon_refresh_real(vfi, TRUE); | |
2245 } | |
2246 | |
2247 /* | |
2248 *----------------------------------------------------------------------------- | |
2249 * draw, etc. | |
2250 *----------------------------------------------------------------------------- | |
2251 */ | |
2252 | |
2253 typedef struct _ColumnData ColumnData; | |
2254 struct _ColumnData | |
2255 { | |
2256 ViewFileIcon *vfi; | |
2257 gint number; | |
2258 }; | |
2259 | |
2260 static void vficon_cell_data_cb(GtkTreeViewColumn *tree_column, GtkCellRenderer *cell, | |
2261 GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data) | |
2262 { | |
2263 ColumnData *cd = data; | |
2264 ViewFileIcon *vfi; | |
2265 GtkStyle *style; | |
2266 GList *list; | |
2267 GdkColor color_fg; | |
2268 GdkColor color_bg; | |
138 | 2269 IconData *id; |
9 | 2270 |
2271 vfi = cd->vfi; | |
2272 | |
2273 gtk_tree_model_get(tree_model, iter, FILE_COLUMN_POINTER, &list, -1); | |
442 | 2274 |
138 | 2275 id = g_list_nth_data(list, cd->number); |
442 | 2276 |
138 | 2277 if (id) g_assert(id->fd->magick == 0x12345678); |
442 | 2278 |
9 | 2279 style = gtk_widget_get_style(vfi->listview); |
138 | 2280 if (id && id->selected & SELECTION_SELECTED) |
9 | 2281 { |
2282 memcpy(&color_fg, &style->text[GTK_STATE_SELECTED], sizeof(color_fg)); | |
2283 memcpy(&color_bg, &style->base[GTK_STATE_SELECTED], sizeof(color_bg)); | |
2284 } | |
2285 else | |
2286 { | |
2287 memcpy(&color_fg, &style->text[GTK_STATE_NORMAL], sizeof(color_fg)); | |
2288 memcpy(&color_bg, &style->base[GTK_STATE_NORMAL], sizeof(color_bg)); | |
2289 } | |
2290 | |
138 | 2291 if (id && id->selected & SELECTION_PRELIGHT) |
9 | 2292 { |
2293 #if 0 | |
2294 shift_color(&color_fg, -1, 0); | |
2295 #endif | |
2296 shift_color(&color_bg, -1, 0); | |
2297 } | |
2298 | |
2299 if (GQV_IS_CELL_RENDERER_ICON(cell)) | |
442 | 2300 { |
138 | 2301 if (id) |
9 | 2302 { |
138 | 2303 g_object_set(cell, "pixbuf", id->fd->pixbuf, |
2304 "text", id->fd->name, | |
9 | 2305 "cell-background-gdk", &color_bg, |
2306 "cell-background-set", TRUE, | |
2307 "foreground-gdk", &color_fg, | |
2308 "foreground-set", TRUE, | |
138 | 2309 "has-focus", (vfi->focus_id == id), NULL); |
9 | 2310 } |
2311 else | |
2312 { | |
2313 g_object_set(cell, "pixbuf", NULL, | |
2314 "text", NULL, | |
2315 "cell-background-set", FALSE, | |
2316 "foreground-set", FALSE, | |
2317 "has-focus", FALSE, NULL); | |
442 | 2318 } |
9 | 2319 } |
2320 } | |
2321 | |
2322 static void vficon_append_column(ViewFileIcon *vfi, gint n) | |
2323 { | |
2324 ColumnData *cd; | |
2325 GtkTreeViewColumn *column; | |
2326 GtkCellRenderer *renderer; | |
2327 | |
2328 column = gtk_tree_view_column_new(); | |
2329 gtk_tree_view_column_set_min_width(column, 0); | |
2330 | |
2331 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); | |
2332 gtk_tree_view_column_set_alignment(column, 0.5); | |
2333 | |
2334 renderer = gqv_cell_renderer_icon_new(); | |
2335 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
2336 g_object_set(G_OBJECT(renderer), "xpad", THUMB_BORDER_PADDING * 2, | |
2337 "ypad", THUMB_BORDER_PADDING, | |
2338 "mode", GTK_CELL_RENDERER_MODE_ACTIVATABLE, NULL); | |
2339 | |
2340 g_object_set_data(G_OBJECT(column), "column_number", GINT_TO_POINTER(n)); | |
2341 | |
2342 cd = g_new0(ColumnData, 1); | |
2343 cd->vfi = vfi; | |
2344 cd->number = n; | |
2345 gtk_tree_view_column_set_cell_data_func(column, renderer, vficon_cell_data_cb, cd, g_free); | |
2346 | |
2347 gtk_tree_view_append_column(GTK_TREE_VIEW(vfi->listview), column); | |
2348 } | |
2349 | |
2350 /* | |
2351 *----------------------------------------------------------------------------- | |
2352 * base | |
2353 *----------------------------------------------------------------------------- | |
2354 */ | |
2355 | |
2356 gint vficon_set_path(ViewFileIcon *vfi, const gchar *path) | |
2357 { | |
2358 gint ret; | |
2359 | |
2360 if (!path) return FALSE; | |
2361 if (vfi->path && strcmp(path, vfi->path) == 0) return TRUE; | |
2362 | |
2363 g_free(vfi->path); | |
2364 vfi->path = g_strdup(path); | |
2365 | |
2366 g_list_free(vfi->selection); | |
2367 vfi->selection = NULL; | |
2368 | |
2369 iconlist_free(vfi->list); | |
2370 vfi->list = NULL; | |
2371 | |
2372 /* NOTE: populate will clear the store for us */ | |
2373 ret = vficon_refresh_real(vfi, FALSE); | |
2374 | |
138 | 2375 vfi->focus_id = NULL; |
9 | 2376 vficon_move_focus(vfi, 0, 0, FALSE); |
2377 | |
2378 return ret; | |
2379 } | |
2380 | |
2381 static void vficon_destroy_cb(GtkWidget *widget, gpointer data) | |
2382 { | |
2383 ViewFileIcon *vfi = data; | |
2384 | |
2385 if (vfi->popup) | |
2386 { | |
2387 g_signal_handlers_disconnect_matched(G_OBJECT(vfi->popup), G_SIGNAL_MATCH_DATA, | |
2388 0, 0, 0, NULL, vfi); | |
2389 gtk_widget_destroy(vfi->popup); | |
2390 } | |
2391 | |
2392 if (vfi->sync_idle_id != -1) g_source_remove(vfi->sync_idle_id); | |
2393 | |
2394 tip_unschedule(vfi); | |
2395 | |
2396 vficon_thumb_cleanup(vfi); | |
2397 | |
2398 g_free(vfi->path); | |
2399 | |
2400 iconlist_free(vfi->list); | |
2401 g_list_free(vfi->selection); | |
2402 g_free(vfi); | |
2403 } | |
2404 | |
2405 ViewFileIcon *vficon_new(const gchar *path) | |
2406 { | |
2407 ViewFileIcon *vfi; | |
2408 GtkListStore *store; | |
2409 GtkTreeSelection *selection; | |
2410 gint i; | |
2411 | |
2412 vfi = g_new0(ViewFileIcon, 1); | |
2413 | |
2414 vfi->path = NULL; | |
2415 vfi->sort_method = SORT_NAME; | |
2416 vfi->sort_ascend = TRUE; | |
2417 | |
2418 vfi->selection = NULL; | |
2419 vfi->prev_selection = NULL; | |
2420 | |
2421 vfi->tip_window = NULL; | |
2422 vfi->tip_delay_id = -1; | |
2423 | |
2424 vfi->focus_row = 0; | |
2425 vfi->focus_column = 0; | |
138 | 2426 vfi->focus_id = NULL; |
9 | 2427 |
320 | 2428 vfi->show_text = options->show_icon_names; |
9 | 2429 |
2430 vfi->sync_idle_id = -1; | |
2431 | |
2432 vfi->popup = NULL; | |
2433 | |
2434 vfi->widget = gtk_scrolled_window_new(NULL, NULL); | |
2435 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(vfi->widget), GTK_SHADOW_IN); | |
2436 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(vfi->widget), | |
2437 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
2438 g_signal_connect(G_OBJECT(vfi->widget), "destroy", | |
2439 G_CALLBACK(vficon_destroy_cb), vfi); | |
2440 | |
2441 store = gtk_list_store_new(1, G_TYPE_POINTER); | |
2442 vfi->listview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store)); | |
2443 g_object_unref(store); | |
2444 | |
2445 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vfi->listview)); | |
2446 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_NONE); | |
2447 | |
2448 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(vfi->listview), FALSE); | |
2449 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(vfi->listview), FALSE); | |
2450 | |
2451 for (i = 0; i < VFICON_MAX_COLUMNS; i++) | |
2452 { | |
2453 vficon_append_column(vfi, i); | |
2454 } | |
2455 | |
2456 /* zero width column to hide tree view focus, we draw it ourselves */ | |
2457 vficon_append_column(vfi, i); | |
2458 /* end column to fill white space */ | |
2459 vficon_append_column(vfi, i); | |
2460 | |
2461 g_signal_connect(G_OBJECT(vfi->listview), "size_allocate", | |
2462 G_CALLBACK(vficon_sized_cb), vfi); | |
2463 g_signal_connect(G_OBJECT(vfi->listview), "key_press_event", | |
2464 G_CALLBACK(vficon_press_key_cb), vfi); | |
2465 | |
2466 gtk_container_add(GTK_CONTAINER(vfi->widget), vfi->listview); | |
2467 gtk_widget_show(vfi->listview); | |
2468 | |
2469 vficon_dnd_init(vfi); | |
2470 | |
2471 gtk_widget_set_events(vfi->listview, GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK | | |
2472 GDK_BUTTON_PRESS_MASK | GDK_LEAVE_NOTIFY_MASK); | |
2473 g_signal_connect(G_OBJECT(vfi->listview), "button_press_event", | |
2474 G_CALLBACK(vficon_press_cb), vfi); | |
2475 g_signal_connect(G_OBJECT(vfi->listview), "button_release_event", | |
2476 G_CALLBACK(vficon_release_cb), vfi); | |
2477 g_signal_connect(G_OBJECT(vfi->listview),"motion_notify_event", | |
2478 G_CALLBACK(vficon_motion_cb), vfi); | |
2479 g_signal_connect(G_OBJECT(vfi->listview), "leave_notify_event", | |
2480 G_CALLBACK(vficon_leave_cb), vfi); | |
2481 | |
2482 /* force vfi->columns to be at least 1 (sane) - this will be corrected in the size_cb */ | |
2483 vficon_populate_at_new_size(vfi, 1, 1, FALSE); | |
2484 | |
2485 if (path) vficon_set_path(vfi, path); | |
2486 | |
2487 return vfi; | |
2488 } | |
2489 | |
2490 void vficon_set_status_func(ViewFileIcon *vfi, | |
2491 void (*func)(ViewFileIcon *vfi, gpointer data), gpointer data) | |
2492 { | |
2493 vfi->func_status = func; | |
2494 vfi->data_status = data; | |
2495 } | |
2496 | |
2497 void vficon_set_thumb_status_func(ViewFileIcon *vfi, | |
2498 void (*func)(ViewFileIcon *vfi, gdouble val, const gchar *text, gpointer data), | |
2499 gpointer data) | |
2500 { | |
2501 vfi->func_thumb_status = func; | |
2502 vfi->data_thumb_status = data; | |
2503 } | |
2504 | |
2505 void vficon_set_layout(ViewFileIcon *vfi, LayoutWindow *layout) | |
2506 { | |
2507 vfi->layout = layout; | |
2508 } | |
2509 | |
2510 /* | |
2511 *----------------------------------------------------------------------------- | |
2512 * maintenance (for rename, move, remove) | |
2513 *----------------------------------------------------------------------------- | |
2514 */ | |
2515 | |
2516 static gint vficon_maint_find_closest(ViewFileIcon *vfi, gint row, gint count, GList *ignore_list) | |
2517 { | |
2518 GList *list = NULL; | |
2519 GList *work; | |
2520 gint rev = row - 1; | |
2521 row ++; | |
2522 | |
2523 work = ignore_list; | |
2524 while (work) | |
2525 { | |
138 | 2526 FileData *fd = work->data; |
2527 gint f = vficon_index_by_fd(vfi, work->data); | |
2528 g_assert(fd->magick == 0x12345678); | |
9 | 2529 if (f >= 0) list = g_list_prepend(list, GINT_TO_POINTER(f)); |
2530 work = work->next; | |
2531 } | |
2532 | |
2533 while (list) | |
2534 { | |
2535 gint c = TRUE; | |
2536 work = list; | |
2537 while (work && c) | |
2538 { | |
2539 gpointer p = work->data; | |
2540 work = work->next; | |
2541 if (row == GPOINTER_TO_INT(p)) | |
2542 { | |
2543 row++; | |
2544 c = FALSE; | |
2545 } | |
2546 if (rev == GPOINTER_TO_INT(p)) | |
2547 { | |
2548 rev--; | |
2549 c = FALSE; | |
2550 } | |
2551 if (!c) list = g_list_remove(list, p); | |
2552 } | |
2553 if (c && list) | |
2554 { | |
2555 g_list_free(list); | |
2556 list = NULL; | |
2557 } | |
2558 } | |
2559 if (row > count - 1) | |
2560 { | |
2561 if (rev < 0) | |
2562 return -1; | |
2563 else | |
2564 return rev; | |
2565 } | |
2566 else | |
2567 { | |
2568 return row; | |
2569 } | |
2570 } | |
2571 | |
138 | 2572 gint vficon_maint_renamed(ViewFileIcon *vfi, FileData *fd) |
9 | 2573 { |
2574 gint ret = FALSE; | |
2575 gint row; | |
2576 gchar *source_base; | |
2577 gchar *dest_base; | |
138 | 2578 IconData *id = vficon_icon_data(vfi, fd); |
2579 | |
2580 if (!id) return FALSE; | |
2581 | |
2582 row = vficon_index_by_id(vfi, id); | |
9 | 2583 if (row < 0) return FALSE; |
2584 | |
138 | 2585 source_base = remove_level_from_path(fd->change->source); |
2586 dest_base = remove_level_from_path(fd->change->dest); | |
9 | 2587 |
2588 if (strcmp(source_base, dest_base) == 0) | |
2589 { | |
138 | 2590 vfi->list = g_list_remove(vfi->list, id); |
2591 vfi->list = iconlist_insert_sort(vfi->list, id, vfi->sort_method, vfi->sort_ascend); | |
9 | 2592 |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
2593 vficon_sync_idle(vfi); |
9 | 2594 ret = TRUE; |
2595 } | |
2596 else | |
2597 { | |
138 | 2598 ret = vficon_maint_removed(vfi, fd, NULL); |
9 | 2599 } |
2600 | |
2601 g_free(source_base); | |
2602 g_free(dest_base); | |
2603 | |
2604 return ret; | |
2605 } | |
2606 | |
138 | 2607 gint vficon_maint_removed(ViewFileIcon *vfi, FileData *fd, GList *ignore_list) |
9 | 2608 { |
2609 gint row; | |
2610 gint new_row = -1; | |
2611 GtkTreeModel *store; | |
2612 GtkTreeIter iter; | |
138 | 2613 IconData *id = vficon_icon_data(vfi, fd); |
2614 | |
2615 if (!id) return FALSE; | |
2616 | |
2617 row = g_list_index(vfi->list, id); | |
9 | 2618 if (row < 0) return FALSE; |
2619 | |
138 | 2620 if ((id->selected & SELECTION_SELECTED) && |
9 | 2621 layout_image_get_collection(vfi->layout, NULL) == NULL) |
2622 { | |
138 | 2623 vficon_unselect(vfi, id); |
9 | 2624 |
2625 if (!vfi->selection) | |
2626 { | |
2627 gint n; | |
2628 | |
2629 n = vficon_count(vfi, NULL); | |
2630 if (ignore_list) | |
2631 { | |
2632 new_row = vficon_maint_find_closest(vfi, row, n, ignore_list); | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
499
diff
changeset
|
2633 DEBUG_1("row = %d, closest is %d", row, new_row); |
9 | 2634 } |
2635 else | |
2636 { | |
2637 if (row + 1 < n) | |
2638 { | |
2639 new_row = row + 1; | |
2640 } | |
2641 else if (row > 0) | |
2642 { | |
2643 new_row = row - 1; | |
2644 } | |
2645 } | |
2646 } | |
2647 else if (ignore_list) | |
2648 { | |
2649 GList *work; | |
2650 | |
2651 work = vfi->selection; | |
2652 while (work) | |
2653 { | |
138 | 2654 IconData *ignore_id; |
9 | 2655 FileData *ignore_fd; |
2656 GList *tmp; | |
2657 gint match = FALSE; | |
2658 | |
138 | 2659 ignore_id = work->data; |
2660 ignore_fd = ignore_id->fd; | |
442 | 2661 g_assert(ignore_fd->magick == 0x12345678); |
9 | 2662 work = work->next; |
2663 | |
2664 tmp = ignore_list; | |
2665 while (tmp && !match) | |
2666 { | |
138 | 2667 FileData *ignore_list_fd = tmp->data; |
442 | 2668 g_assert(ignore_list_fd->magick == 0x12345678); |
9 | 2669 tmp = tmp->next; |
2670 | |
138 | 2671 if (ignore_list_fd == ignore_fd) |
9 | 2672 { |
2673 match = TRUE; | |
2674 } | |
2675 } | |
2676 if (!match) | |
2677 { | |
138 | 2678 new_row = g_list_index(vfi->list, ignore_id); |
9 | 2679 work = NULL; |
2680 } | |
2681 } | |
2682 if (new_row == -1) | |
2683 { | |
2684 /* selection all ignored, use closest */ | |
2685 new_row = vficon_maint_find_closest(vfi, row, vficon_count(vfi, NULL), ignore_list); | |
2686 } | |
2687 } | |
2688 else | |
2689 { | |
2690 new_row = g_list_index(vfi->list, vfi->selection->data); | |
2691 } | |
2692 if (new_row >= 0) | |
2693 { | |
272 | 2694 IconData *idn = g_list_nth_data(vfi->list, new_row); |
9 | 2695 |
138 | 2696 vficon_select(vfi, idn); |
2697 vficon_send_layout_select(vfi, idn); | |
9 | 2698 } |
2699 } | |
2700 | |
2701 /* Thumb loader check */ | |
2702 if (fd == vfi->thumbs_fd) vfi->thumbs_fd = NULL; | |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
2703 if (vfi->thumbs_count > 0) vfi->thumbs_count--; |
9 | 2704 |
138 | 2705 if (vfi->prev_selection == id) vfi->prev_selection = NULL; |
2706 if (vfi->click_id == id) vfi->click_id = NULL; | |
9 | 2707 |
2708 /* remove pointer to this fd from grid */ | |
2709 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vfi->listview)); | |
138 | 2710 if (id->row >= 0 && |
2711 gtk_tree_model_iter_nth_child(store, &iter, NULL, id->row)) | |
9 | 2712 { |
2713 GList *list; | |
2714 | |
2715 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
138 | 2716 list = g_list_find(list, id); |
9 | 2717 if (list) list->data = NULL; |
2718 } | |
2719 | |
138 | 2720 vfi->list = g_list_remove(vfi->list, id); |
2721 file_data_unref(fd); | |
2722 g_free(id); | |
9 | 2723 |
2724 vficon_sync_idle(vfi); | |
2725 vficon_send_update(vfi); | |
2726 | |
2727 return TRUE; | |
2728 } | |
2729 | |
138 | 2730 gint vficon_maint_moved(ViewFileIcon *vfi, FileData *fd, GList *ignore_list) |
9 | 2731 { |
2732 gint ret = FALSE; | |
2733 gchar *buf; | |
2734 | |
138 | 2735 if (!fd->change->source || !vfi->path) return FALSE; |
2736 | |
2737 buf = remove_level_from_path(fd->change->source); | |
9 | 2738 |
2739 if (strcmp(buf, vfi->path) == 0) | |
2740 { | |
138 | 2741 ret = vficon_maint_removed(vfi, fd, ignore_list); |
9 | 2742 } |
2743 | |
2744 g_free(buf); | |
2745 | |
2746 return ret; | |
2747 } |