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