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