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