Mercurial > geeqie.yaz
annotate src/view_file_icon.c @ 1236:a501721c4ec6
French translation was updated.
author | zas_ |
---|---|
date | Sun, 04 Jan 2009 10:32:47 +0000 |
parents | b51874ca8642 |
children | 947e603a52c6 |
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; | |
1233
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1039 IconData *id = NULL; |
811 | 1040 |
1041 if (sel_fd->parent) sel_fd = sel_fd->parent; | |
1042 work = vf->list; | |
1043 | |
1044 while (work) | |
1045 { | |
1046 gint match; | |
1233
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1047 FileData *fd; |
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1048 |
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1049 id = work->data; |
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1050 fd = id->fd; |
811 | 1051 work = work->next; |
1052 | |
1053 match = filelist_sort_compare_filedata_full(fd, sel_fd, vf->sort_method, vf->sort_ascend); | |
1054 | |
1233
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1055 if (match >= 0) break; |
811 | 1056 } |
1233
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1057 |
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1058 if (id) |
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1059 { |
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1060 vficon_select(vf, id); |
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1061 vficon_send_layout_select(vf, id); |
b51874ca8642
fixed updating of selection after deleting the last image from the list
nadvornik
parents:
1206
diff
changeset
|
1062 } |
811 | 1063 } |
1064 | |
138 | 1065 |
9 | 1066 /* |
1067 *------------------------------------------------------------------- | |
1068 * focus | |
1069 *------------------------------------------------------------------- | |
1070 */ | |
1071 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1072 static void vficon_move_focus(ViewFile *vf, gint row, gint col, gint relative) |
9 | 1073 { |
1074 gint new_row; | |
1075 gint new_col; | |
1076 | |
1077 if (relative) | |
1078 { | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1079 new_row = VFICON(vf)->focus_row; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1080 new_col = VFICON(vf)->focus_column; |
9 | 1081 |
1082 new_row += row; | |
1083 if (new_row < 0) new_row = 0; | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1084 if (new_row >= VFICON(vf)->rows) new_row = VFICON(vf)->rows - 1; |
9 | 1085 |
516 | 1086 while (col != 0) |
9 | 1087 { |
1088 if (col < 0) | |
1089 { | |
1090 new_col--; | |
1091 col++; | |
1092 } | |
1093 else | |
1094 { | |
1095 new_col++; | |
1096 col--; | |
1097 } | |
1098 | |
1099 if (new_col < 0) | |
1100 { | |
1101 if (new_row > 0) | |
1102 { | |
1103 new_row--; | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1104 new_col = VFICON(vf)->columns - 1; |
9 | 1105 } |
1106 else | |
1107 { | |
1108 new_col = 0; | |
1109 } | |
1110 } | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1111 if (new_col >= VFICON(vf)->columns) |
9 | 1112 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1113 if (new_row < VFICON(vf)->rows - 1) |
9 | 1114 { |
1115 new_row++; | |
1116 new_col = 0; | |
1117 } | |
1118 else | |
1119 { | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1120 new_col = VFICON(vf)->columns - 1; |
9 | 1121 } |
1122 } | |
1123 } | |
1124 } | |
1125 else | |
1126 { | |
1127 new_row = row; | |
1128 new_col = col; | |
1129 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1130 if (new_row >= VFICON(vf)->rows) |
9 | 1131 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1132 if (VFICON(vf)->rows > 0) |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1133 new_row = VFICON(vf)->rows - 1; |
9 | 1134 else |
1135 new_row = 0; | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1136 new_col = VFICON(vf)->columns - 1; |
9 | 1137 } |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1138 if (new_col >= VFICON(vf)->columns) new_col = VFICON(vf)->columns - 1; |
9 | 1139 } |
1140 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1141 if (new_row == VFICON(vf)->rows - 1) |
9 | 1142 { |
1143 gint l; | |
1144 | |
1145 /* if we moved beyond the last image, go to the last image */ | |
1146 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1147 l = g_list_length(vf->list); |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1148 if (VFICON(vf)->rows > 1) l -= (VFICON(vf)->rows - 1) * VFICON(vf)->columns; |
9 | 1149 if (new_col >= l) new_col = l - 1; |
1150 } | |
1151 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1152 vficon_set_focus(vf, vficon_find_data(vf, new_row, new_col, NULL)); |
9 | 1153 } |
1154 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1155 static void vficon_set_focus(ViewFile *vf, IconData *id) |
9 | 1156 { |
1157 GtkTreeIter iter; | |
1158 gint row, col; | |
1159 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1160 if (g_list_find(vf->list, VFICON(vf)->focus_id)) |
9 | 1161 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1162 if (id == VFICON(vf)->focus_id) |
9 | 1163 { |
1164 /* ensure focus row col are correct */ | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1165 vficon_find_position(vf, VFICON(vf)->focus_id, &VFICON(vf)->focus_row, &VFICON(vf)->focus_column); |
9 | 1166 return; |
1167 } | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1168 vficon_selection_remove(vf, VFICON(vf)->focus_id, SELECTION_FOCUS, NULL); |
9 | 1169 } |
1170 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1171 if (!vficon_find_position(vf, id, &row, &col)) |
9 | 1172 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1173 VFICON(vf)->focus_id = NULL; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1174 VFICON(vf)->focus_row = -1; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1175 VFICON(vf)->focus_column = -1; |
9 | 1176 return; |
1177 } | |
1178 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1179 VFICON(vf)->focus_id = id; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1180 VFICON(vf)->focus_row = row; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1181 VFICON(vf)->focus_column = col; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1182 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
|
1183 |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1184 if (vficon_find_iter(vf, VFICON(vf)->focus_id, &iter, NULL)) |
9 | 1185 { |
1186 GtkTreePath *tpath; | |
1187 GtkTreeViewColumn *column; | |
1188 GtkTreeModel *store; | |
1189 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1190 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
|
1191 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1192 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1193 tpath = gtk_tree_model_get_path(store, &iter); |
1194 /* 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
|
1195 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
|
1196 gtk_tree_view_set_cursor(GTK_TREE_VIEW(vf->listview), tpath, column, FALSE); |
9 | 1197 gtk_tree_path_free(tpath); |
1198 } | |
1199 } | |
1200 | |
1005 | 1201 #if 0 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1202 static void vficon_update_focus(ViewFile *vf) |
9 | 1203 { |
1204 gint new_row = 0; | |
1205 gint new_col = 0; | |
1206 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1207 if (VFICON(vf)->focus_id && vficon_find_position(vf, VFICON(vf)->focus_id, &new_row, &new_col)) |
9 | 1208 { |
1209 /* first find the old focus, if it exists and is valid */ | |
1210 } | |
1211 else | |
1212 { | |
1213 /* (try to) stay where we were */ | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1214 new_row = VFICON(vf)->focus_row; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1215 new_col = VFICON(vf)->focus_column; |
9 | 1216 } |
1217 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1218 vficon_move_focus(vf, new_row, new_col, FALSE); |
9 | 1219 } |
1005 | 1220 #endif |
9 | 1221 |
1222 /* used to figure the page up/down distances */ | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1223 static gint page_height(ViewFile *vf) |
9 | 1224 { |
1225 GtkAdjustment *adj; | |
1226 gint page_size; | |
1227 gint row_height; | |
1228 gint ret; | |
1229 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1230 adj = gtk_tree_view_get_vadjustment(GTK_TREE_VIEW(vf->listview)); |
9 | 1231 page_size = (gint)adj->page_increment; |
1232 | |
333 | 1233 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
|
1234 if (VFICON(vf)->show_text) row_height += options->thumbnails.max_height / 3; |
9 | 1235 |
1236 ret = page_size / row_height; | |
1237 if (ret < 1) ret = 1; | |
1238 | |
1239 return ret; | |
1240 } | |
1241 | |
1242 /* | |
1243 *------------------------------------------------------------------- | |
1244 * keyboard | |
1245 *------------------------------------------------------------------- | |
1246 */ | |
1247 | |
1248 static void vfi_menu_position_cb(GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer data) | |
1249 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1250 ViewFile *vf = data; |
9 | 1251 GtkTreeModel *store; |
1252 GtkTreeIter iter; | |
1253 gint column; | |
1254 GtkTreePath *tpath; | |
1255 gint cw, ch; | |
1256 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1257 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
|
1258 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1259 tpath = gtk_tree_model_get_path(store, &iter); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1260 tree_view_get_cell_clamped(GTK_TREE_VIEW(vf->listview), tpath, column, FALSE, x, y, &cw, &ch); |
9 | 1261 gtk_tree_path_free(tpath); |
1262 *y += ch; | |
1263 popup_menu_position_clamp(menu, x, y, 0); | |
1264 } | |
1265 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
562
diff
changeset
|
1266 gint vficon_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data) |
9 | 1267 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1268 ViewFile *vf = data; |
9 | 1269 gint focus_row = 0; |
1270 gint focus_col = 0; | |
138 | 1271 IconData *id; |
85
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1272 gint stop_signal; |
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1273 |
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1274 stop_signal = TRUE; |
9 | 1275 switch (event->keyval) |
1276 { | |
1277 case GDK_Left: case GDK_KP_Left: | |
1278 focus_col = -1; | |
1279 break; | |
1280 case GDK_Right: case GDK_KP_Right: | |
1281 focus_col = 1; | |
1282 break; | |
1283 case GDK_Up: case GDK_KP_Up: | |
1284 focus_row = -1; | |
1285 break; | |
1286 case GDK_Down: case GDK_KP_Down: | |
1287 focus_row = 1; | |
1288 break; | |
1289 case GDK_Page_Up: case GDK_KP_Page_Up: | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1290 focus_row = -page_height(vf); |
9 | 1291 break; |
1292 case GDK_Page_Down: case GDK_KP_Page_Down: | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1293 focus_row = page_height(vf); |
9 | 1294 break; |
1295 case GDK_Home: case GDK_KP_Home: | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1296 focus_row = -VFICON(vf)->focus_row; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1297 focus_col = -VFICON(vf)->focus_column; |
9 | 1298 break; |
1299 case GDK_End: case GDK_KP_End: | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1300 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
|
1301 focus_col = VFICON(vf)->columns - 1 - VFICON(vf)->focus_column; |
9 | 1302 break; |
1303 case GDK_space: | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1304 id = vficon_find_data(vf, VFICON(vf)->focus_row, VFICON(vf)->focus_column, NULL); |
138 | 1305 if (id) |
9 | 1306 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1307 VFICON(vf)->click_id = id; |
9 | 1308 if (event->state & GDK_CONTROL_MASK) |
1309 { | |
1310 gint selected; | |
1311 | |
138 | 1312 selected = id->selected & SELECTION_SELECTED; |
9 | 1313 if (selected) |
1314 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1315 vficon_unselect(vf, id); |
9 | 1316 } |
1317 else | |
1318 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1319 vficon_select(vf, id); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1320 vficon_send_layout_select(vf, id); |
9 | 1321 } |
1322 } | |
1323 else | |
1324 { | |
633 | 1325 vf_select_none(vf); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1326 vficon_select(vf, id); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1327 vficon_send_layout_select(vf, id); |
9 | 1328 } |
1329 } | |
1330 break; | |
1331 case GDK_Menu: | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1332 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
|
1333 VFICON(vf)->click_id = id; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1334 |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1335 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
|
1336 tip_unschedule(vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1337 |
659
542bb47fef04
Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents:
658
diff
changeset
|
1338 vf->popup = vf_pop_menu(vf); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1339 gtk_menu_popup(GTK_MENU(vf->popup), NULL, NULL, vfi_menu_position_cb, vf, 0, GDK_CURRENT_TIME); |
9 | 1340 break; |
1341 default: | |
85
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1342 stop_signal = FALSE; |
9 | 1343 break; |
1344 } | |
1345 | |
1346 if (focus_row != 0 || focus_col != 0) | |
1347 { | |
138 | 1348 IconData *new_id; |
1349 IconData *old_id; | |
1350 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1351 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
|
1352 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
|
1353 new_id = vficon_find_data(vf, VFICON(vf)->focus_row, VFICON(vf)->focus_column, NULL); |
138 | 1354 |
1355 if (new_id != old_id) | |
9 | 1356 { |
1357 if (event->state & GDK_SHIFT_MASK) | |
1358 { | |
330 | 1359 if (!options->collections.rectangular_selection) |
9 | 1360 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1361 vficon_select_region_util(vf, old_id, new_id, FALSE); |
9 | 1362 } |
1363 else | |
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, old_id, FALSE); |
9 | 1366 } |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1367 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
|
1368 vficon_send_layout_select(vf, new_id); |
9 | 1369 } |
1370 else if (event->state & GDK_CONTROL_MASK) | |
1371 { | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1372 VFICON(vf)->click_id = new_id; |
9 | 1373 } |
1374 else | |
1375 { | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1376 VFICON(vf)->click_id = new_id; |
633 | 1377 vf_select_none(vf); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1378 vficon_select(vf, new_id); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1379 vficon_send_layout_select(vf, new_id); |
9 | 1380 } |
1381 } | |
1382 } | |
1383 | |
1384 if (stop_signal) | |
1385 { | |
85
9d5c75b5ec28
Fri Oct 20 09:20:10 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
1386 #if 0 |
9 | 1387 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
|
1388 #endif |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1389 tip_unschedule(vf); |
9 | 1390 } |
1391 | |
1392 return stop_signal; | |
1393 } | |
1394 | |
1395 /* | |
1396 *------------------------------------------------------------------- | |
1397 * mouse | |
1398 *------------------------------------------------------------------- | |
1399 */ | |
1400 | |
1401 static gint vficon_motion_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) | |
1402 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1403 ViewFile *vf = data; |
138 | 1404 IconData *id; |
1405 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1406 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
|
1407 tip_update(vf, id); |
9 | 1408 |
1409 return FALSE; | |
1410 } | |
1411 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
562
diff
changeset
|
1412 gint vficon_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) |
9 | 1413 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1414 ViewFile *vf = data; |
9 | 1415 GtkTreeIter iter; |
138 | 1416 IconData *id; |
9 | 1417 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1418 tip_unschedule(vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1419 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1420 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
|
1421 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1422 VFICON(vf)->click_id = id; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1423 vficon_selection_add(vf, VFICON(vf)->click_id, SELECTION_PRELIGHT, &iter); |
9 | 1424 |
1425 switch (bevent->button) | |
1426 { | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
1427 case MOUSE_BUTTON_LEFT: |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1428 if (!GTK_WIDGET_HAS_FOCUS(vf->listview)) |
9 | 1429 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1430 gtk_widget_grab_focus(vf->listview); |
9 | 1431 } |
1206
d79305a42a9b
Switch to fullscreen when double clicking on file in icon or list view. Feature request 1966042. The code was there since a long time but disabled, please report any issue.
zas_
parents:
1202
diff
changeset
|
1432 #if 1 |
9 | 1433 if (bevent->type == GDK_2BUTTON_PRESS && |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1434 vf->layout) |
9 | 1435 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1436 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
|
1437 layout_image_full_screen_start(vf->layout); |
9 | 1438 } |
1439 #endif | |
1440 break; | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
1441 case MOUSE_BUTTON_RIGHT: |
659
542bb47fef04
Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents:
658
diff
changeset
|
1442 vf->popup = vf_pop_menu(vf); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1443 gtk_menu_popup(GTK_MENU(vf->popup), NULL, NULL, NULL, NULL, bevent->button, bevent->time); |
9 | 1444 break; |
1445 default: | |
1446 break; | |
1447 } | |
1448 | |
966 | 1449 return FALSE; |
9 | 1450 } |
1451 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
562
diff
changeset
|
1452 gint vficon_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) |
9 | 1453 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1454 ViewFile *vf = data; |
9 | 1455 GtkTreeIter iter; |
138 | 1456 IconData *id = NULL; |
580 | 1457 gint was_selected; |
9 | 1458 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1459 tip_schedule(vf); |
9 | 1460 |
580 | 1461 if ((gint)bevent->x != 0 || (gint)bevent->y != 0) |
9 | 1462 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1463 id = vficon_find_data_by_coord(vf, (gint)bevent->x, (gint)bevent->y, &iter); |
9 | 1464 } |
1465 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1466 if (VFICON(vf)->click_id) |
9 | 1467 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1468 vficon_selection_remove(vf, VFICON(vf)->click_id, SELECTION_PRELIGHT, NULL); |
9 | 1469 } |
1470 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1471 if (!id || VFICON(vf)->click_id != id) return TRUE; |
580 | 1472 |
1473 was_selected = (id->selected & SELECTION_SELECTED); | |
1474 | |
1475 switch (bevent->button) | |
9 | 1476 { |
580 | 1477 case MOUSE_BUTTON_LEFT: |
9 | 1478 { |
580 | 1479 vficon_set_focus(vf, id); |
1480 | |
1481 if (bevent->state & GDK_CONTROL_MASK) | |
9 | 1482 { |
580 | 1483 gint select; |
1484 | |
1485 select = !(id->selected & SELECTION_SELECTED); | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1486 if ((bevent->state & GDK_SHIFT_MASK) && VFICON(vf)->prev_selection) |
580 | 1487 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1488 vficon_select_region_util(vf, VFICON(vf)->prev_selection, id, select); |
580 | 1489 } |
1490 else | |
1491 { | |
1492 vficon_select_util(vf, id, select); | |
1493 } | |
9 | 1494 } |
1495 else | |
1496 { | |
633 | 1497 vf_select_none(vf); |
580 | 1498 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1499 if ((bevent->state & GDK_SHIFT_MASK) && VFICON(vf)->prev_selection) |
580 | 1500 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1501 vficon_select_region_util(vf, VFICON(vf)->prev_selection, id, TRUE); |
580 | 1502 } |
1503 else | |
1504 { | |
1505 vficon_select_util(vf, id, TRUE); | |
1506 was_selected = FALSE; | |
1507 } | |
9 | 1508 } |
1509 } | |
580 | 1510 break; |
1511 case MOUSE_BUTTON_MIDDLE: | |
9 | 1512 { |
580 | 1513 vficon_select_util(vf, id, !(id->selected & SELECTION_SELECTED)); |
9 | 1514 } |
580 | 1515 break; |
1516 default: | |
1517 break; | |
9 | 1518 } |
580 | 1519 |
1520 if (!was_selected && (id->selected & SELECTION_SELECTED)) | |
9 | 1521 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1522 vficon_send_layout_select(vf, id); |
9 | 1523 } |
1524 | |
1525 return TRUE; | |
1526 } | |
1527 | |
1528 static gint vficon_leave_cb(GtkWidget *widget, GdkEventCrossing *event, gpointer data) | |
1529 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1530 ViewFile *vf = data; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1531 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1532 tip_unschedule(vf); |
9 | 1533 return FALSE; |
1534 } | |
1535 | |
1536 /* | |
1537 *------------------------------------------------------------------- | |
1538 * population | |
1539 *------------------------------------------------------------------- | |
1540 */ | |
1541 | |
1542 static gboolean vficon_destroy_node_cb(GtkTreeModel *store, GtkTreePath *tpath, GtkTreeIter *iter, gpointer data) | |
1543 { | |
1544 GList *list; | |
1545 | |
1546 gtk_tree_model_get(store, iter, FILE_COLUMN_POINTER, &list, -1); | |
1547 g_list_free(list); | |
1548 | |
1549 return FALSE; | |
1550 } | |
1551 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1552 static void vficon_clear_store(ViewFile *vf) |
9 | 1553 { |
1554 GtkTreeModel *store; | |
1555 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1556 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1557 gtk_tree_model_foreach(store, vficon_destroy_node_cb, NULL); |
1558 | |
1559 gtk_list_store_clear(GTK_LIST_STORE(store)); | |
1560 } | |
1561 | |
838 | 1562 static void vficon_set_thumb(ViewFile *vf, FileData *fd) |
9 | 1563 { |
1564 GtkTreeModel *store; | |
1565 GtkTreeIter iter; | |
1566 GList *list; | |
1567 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1568 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
|
1569 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1570 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1571 |
1572 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1573 gtk_list_store_set(GTK_LIST_STORE(store), &iter, FILE_COLUMN_POINTER, list, -1); | |
1574 } | |
1575 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1576 static GList *vficon_add_row(ViewFile *vf, GtkTreeIter *iter) |
9 | 1577 { |
1578 GtkListStore *store; | |
1579 GList *list = NULL; | |
1580 gint i; | |
1581 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1582 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
|
1583 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1584 store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
9 | 1585 gtk_list_store_append(store, iter); |
1586 gtk_list_store_set(store, iter, FILE_COLUMN_POINTER, list, -1); | |
1587 | |
1588 return list; | |
1589 } | |
1590 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1591 static void vficon_populate(ViewFile *vf, gint resize, gint keep_position) |
9 | 1592 { |
1593 GtkTreeModel *store; | |
1594 GtkTreePath *tpath; | |
1595 GList *work; | |
138 | 1596 IconData *visible_id = NULL; |
805 | 1597 gint r, c; |
1598 gint valid; | |
1599 GtkTreeIter iter; | |
9 | 1600 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1601 vficon_verify_selections(vf); |
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 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1604 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1605 if (keep_position && GTK_WIDGET_REALIZED(vf->listview) && |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1606 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vf->listview), 0, 0, &tpath, NULL, NULL, NULL)) |
9 | 1607 { |
1608 GtkTreeIter iter; | |
1609 GList *list; | |
1610 | |
1611 gtk_tree_model_get_iter(store, &iter, tpath); | |
1612 gtk_tree_path_free(tpath); | |
1613 | |
1614 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
138 | 1615 if (list) visible_id = list->data; |
9 | 1616 } |
1617 | |
1618 | |
1619 if (resize) | |
1620 { | |
1621 gint i; | |
1622 gint thumb_width; | |
805 | 1623 |
1624 vficon_clear_store(vf); | |
9 | 1625 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1626 thumb_width = vficon_get_icon_width(vf); |
9 | 1627 |
1628 for (i = 0; i < VFICON_MAX_COLUMNS; i++) | |
1629 { | |
1630 GtkTreeViewColumn *column; | |
1631 GtkCellRenderer *cell; | |
1632 GList *list; | |
1633 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1634 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
|
1635 gtk_tree_view_column_set_visible(column, (i < VFICON(vf)->columns)); |
9 | 1636 gtk_tree_view_column_set_fixed_width(column, thumb_width + (THUMB_BORDER_PADDING * 6)); |
1637 | |
1638 list = gtk_tree_view_column_get_cell_renderers(column); | |
1639 cell = (list) ? list->data : NULL; | |
1640 g_list_free(list); | |
1641 | |
1642 if (cell && GQV_IS_CELL_RENDERER_ICON(cell)) | |
1643 { | |
1644 g_object_set(G_OBJECT(cell), "fixed_width", thumb_width, | |
333 | 1645 "fixed_height", options->thumbnails.max_height, |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1646 "show_text", VFICON(vf)->show_text, |
852 | 1647 "show_marks", vf->marks_enabled, |
1648 "num_marks", FILEDATA_MARKS_SIZE, | |
1649 NULL); | |
9 | 1650 } |
1651 } | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1652 if (GTK_WIDGET_REALIZED(vf->listview)) gtk_tree_view_columns_autosize(GTK_TREE_VIEW(vf->listview)); |
9 | 1653 } |
1654 | |
805 | 1655 r = -1; |
1656 c = 0; | |
1657 | |
1658 valid = gtk_tree_model_iter_children(store, &iter, NULL); | |
1659 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1660 work = vf->list; |
9 | 1661 while (work) |
1662 { | |
1663 GList *list; | |
805 | 1664 r++; |
1665 c = 0; | |
1666 if (valid) | |
1667 { | |
1668 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1669 gtk_list_store_set(GTK_LIST_STORE(store), &iter, FILE_COLUMN_POINTER, list, -1); | |
1670 } | |
1671 else | |
1672 { | |
1673 list = vficon_add_row(vf, &iter); | |
1674 } | |
1675 | |
1676 while (list) | |
9 | 1677 { |
585 | 1678 IconData *id; |
1679 | |
805 | 1680 if (work) |
1681 { | |
1682 id = work->data; | |
1683 work = work->next; | |
1684 c++; | |
1685 | |
1686 id->row = r; | |
1687 } | |
1688 else | |
1689 { | |
1690 id = NULL; | |
1691 } | |
1692 | |
1693 list->data = id; | |
9 | 1694 list = list->next; |
1695 } | |
805 | 1696 if (valid) valid = gtk_tree_model_iter_next(store, &iter); |
9 | 1697 } |
1698 | |
805 | 1699 r++; |
1700 while (valid) | |
1701 { | |
1702 GList *list; | |
1703 | |
1704 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1705 valid = gtk_list_store_remove(GTK_LIST_STORE(store), &iter); | |
1706 g_list_free(list); | |
1707 } | |
1708 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1709 VFICON(vf)->rows = r; |
805 | 1710 |
138 | 1711 if (visible_id && |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1712 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vf->listview), 0, 0, &tpath, NULL, NULL, NULL)) |
9 | 1713 { |
1714 GtkTreeIter iter; | |
1715 GList *list; | |
1716 | |
1717 gtk_tree_model_get_iter(store, &iter, tpath); | |
1718 gtk_tree_path_free(tpath); | |
1719 | |
1720 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
138 | 1721 if (g_list_find(list, visible_id) == NULL && |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1722 vficon_find_iter(vf, visible_id, &iter, NULL)) |
9 | 1723 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1724 tree_view_row_make_visible(GTK_TREE_VIEW(vf->listview), &iter, FALSE); |
9 | 1725 } |
1726 } | |
1727 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1728 |
633 | 1729 vf_send_update(vf); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1730 vficon_thumb_update(vf); |
9 | 1731 } |
1732 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1733 static void vficon_populate_at_new_size(ViewFile *vf, gint w, gint h, gint force) |
9 | 1734 { |
1735 gint new_cols; | |
1736 gint thumb_width; | |
1737 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1738 thumb_width = vficon_get_icon_width(vf); |
9 | 1739 |
1740 new_cols = w / (thumb_width + (THUMB_BORDER_PADDING * 6)); | |
1741 if (new_cols < 1) new_cols = 1; | |
1742 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1743 if (!force && new_cols == VFICON(vf)->columns) return; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1744 |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1745 VFICON(vf)->columns = new_cols; |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1746 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1747 vficon_populate(vf, TRUE, TRUE); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1748 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1749 DEBUG_1("col tab pop cols=%d rows=%d", VFICON(vf)->columns, VFICON(vf)->rows); |
9 | 1750 } |
1751 | |
817
ad7f56cea841
dropped vficon_sync, use vficon_refresh everywhere
nadvornik
parents:
814
diff
changeset
|
1752 #if 0 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1753 static void vficon_sync(ViewFile *vf) |
9 | 1754 { |
1755 GtkTreeModel *store; | |
1756 GtkTreeIter iter; | |
1757 GList *work; | |
1758 gint r, c; | |
804 | 1759 gint valid; |
9 | 1760 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1761 if (VFICON(vf)->rows == 0) return; |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1762 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1763 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1764 |
1765 r = -1; | |
1766 c = 0; | |
1767 | |
804 | 1768 valid = gtk_tree_model_iter_children(store, &iter, NULL); |
1769 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1770 work = vf->list; |
9 | 1771 while (work) |
1772 { | |
1773 GList *list; | |
1774 r++; | |
1775 c = 0; | |
804 | 1776 if (valid) |
9 | 1777 { |
1778 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1779 gtk_list_store_set(GTK_LIST_STORE(store), &iter, FILE_COLUMN_POINTER, list, -1); | |
1780 } | |
1781 else | |
1782 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1783 list = vficon_add_row(vf, &iter); |
9 | 1784 } |
442 | 1785 |
9 | 1786 while (list) |
1787 { | |
138 | 1788 IconData *id; |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1789 |
9 | 1790 if (work) |
1791 { | |
138 | 1792 id = work->data; |
9 | 1793 work = work->next; |
1794 c++; | |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1795 |
138 | 1796 id->row = r; |
9 | 1797 } |
1798 else | |
1799 { | |
138 | 1800 id = NULL; |
9 | 1801 } |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1802 |
138 | 1803 list->data = id; |
111
3a69a7a3f461
Wed Nov 15 02:05:27 2006 John Ellis <johne@verizon.net>
gqview
parents:
85
diff
changeset
|
1804 list = list->next; |
9 | 1805 } |
804 | 1806 if (valid) valid = gtk_tree_model_iter_next(store, &iter); |
9 | 1807 } |
1808 | |
1809 r++; | |
804 | 1810 while (valid) |
9 | 1811 { |
1812 GList *list; | |
1813 | |
1814 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
804 | 1815 valid = gtk_list_store_remove(GTK_LIST_STORE(store), &iter); |
9 | 1816 g_list_free(list); |
1817 } | |
1818 | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1819 VFICON(vf)->rows = r; |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1820 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1821 vficon_update_focus(vf); |
9 | 1822 } |
817
ad7f56cea841
dropped vficon_sync, use vficon_refresh everywhere
nadvornik
parents:
814
diff
changeset
|
1823 #endif |
9 | 1824 |
812 | 1825 #if 0 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1826 static void vficon_sync_idle(ViewFile *vf) |
9 | 1827 { |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1828 if (VFICON(vf)->sync_idle_id == -1) |
9 | 1829 { |
1830 /* high priority, the view needs to be resynced before a redraw | |
1831 * may contain invalid pointers at this time | |
1832 */ | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
1833 VFICON(vf)->sync_idle_id = g_idle_add_full(G_PRIORITY_HIGH, vficon_sync_idle_cb, vf, NULL); |
9 | 1834 } |
1835 } | |
812 | 1836 #endif |
9 | 1837 |
1838 static void vficon_sized_cb(GtkWidget *widget, GtkAllocation *allocation, gpointer data) | |
1839 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1840 ViewFile *vf = data; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1841 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1842 vficon_populate_at_new_size(vf, allocation->width, allocation->height, FALSE); |
9 | 1843 } |
1844 | |
1845 /* | |
1846 *----------------------------------------------------------------------------- | |
1847 * misc | |
1848 *----------------------------------------------------------------------------- | |
1849 */ | |
1850 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1851 void vficon_sort_set(ViewFile *vf, SortType type, gint ascend) |
9 | 1852 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1853 if (vf->sort_method == type && vf->sort_ascend == ascend) return; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1854 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1855 vf->sort_method = type; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1856 vf->sort_ascend = ascend; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1857 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1858 if (!vf->list) return; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1859 |
817
ad7f56cea841
dropped vficon_sync, use vficon_refresh everywhere
nadvornik
parents:
814
diff
changeset
|
1860 vf_refresh(vf); |
9 | 1861 } |
1862 | |
1863 /* | |
1864 *----------------------------------------------------------------------------- | |
1865 * thumb updates | |
1866 *----------------------------------------------------------------------------- | |
1867 */ | |
1868 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1869 static gint vficon_thumb_next(ViewFile *vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1870 |
843 | 1871 static gdouble vficon_thumb_progress(ViewFile *vf) |
1872 { | |
1873 gint count = 0; | |
1874 gint done = 0; | |
1875 | |
1876 GList *work = vf->list; | |
1877 while (work) | |
1878 { | |
1879 IconData *id = work->data; | |
1880 FileData *fd = id->fd; | |
1881 work = work->next; | |
1882 | |
845 | 1883 if (fd->thumb_pixbuf) done++; |
843 | 1884 count++; |
1885 } | |
1886 DEBUG_1("thumb progress: %d of %d", done, count); | |
1887 return (gdouble)done / count; | |
1888 } | |
1889 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1890 static void vficon_thumb_status(ViewFile *vf, gdouble val, const gchar *text) |
9 | 1891 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1892 if (vf->func_thumb_status) |
9 | 1893 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1894 vf->func_thumb_status(vf, val, text, vf->data_thumb_status); |
9 | 1895 } |
1896 } | |
1897 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1898 static void vficon_thumb_cleanup(ViewFile *vf) |
9 | 1899 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1900 vficon_thumb_status(vf, 0.0, NULL); |
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 vf->thumbs_running = FALSE; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1903 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1904 thumb_loader_free(vf->thumbs_loader); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1905 vf->thumbs_loader = NULL; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1906 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1907 vf->thumbs_filedata = NULL; |
9 | 1908 } |
1909 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1910 static void vficon_thumb_stop(ViewFile *vf) |
9 | 1911 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1912 if (vf->thumbs_running) vficon_thumb_cleanup(vf); |
9 | 1913 } |
1914 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1915 static void vficon_thumb_do(ViewFile *vf, ThumbLoader *tl, FileData *fd) |
9 | 1916 { |
1917 if (!fd) return; | |
1918 | |
838 | 1919 vficon_set_thumb(vf, fd); |
9 | 1920 |
843 | 1921 vficon_thumb_status(vf, vficon_thumb_progress(vf), _("Loading thumbs...")); |
9 | 1922 } |
1923 | |
1924 static void vficon_thumb_error_cb(ThumbLoader *tl, gpointer data) | |
1925 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1926 ViewFile *vf = data; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1927 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1928 if (vf->thumbs_filedata && vf->thumbs_loader == tl) |
9 | 1929 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1930 vficon_thumb_do(vf, tl, vf->thumbs_filedata); |
9 | 1931 } |
1932 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1933 while (vficon_thumb_next(vf)); |
9 | 1934 } |
1935 | |
1936 static void vficon_thumb_done_cb(ThumbLoader *tl, gpointer data) | |
1937 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1938 ViewFile *vf = data; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1939 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1940 if (vf->thumbs_filedata && vf->thumbs_loader == tl) |
9 | 1941 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1942 vficon_thumb_do(vf, tl, vf->thumbs_filedata); |
9 | 1943 } |
1944 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1945 while (vficon_thumb_next(vf)); |
9 | 1946 } |
1947 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1948 static gint vficon_thumb_next(ViewFile *vf) |
9 | 1949 { |
1950 GtkTreePath *tpath; | |
1951 FileData *fd = NULL; | |
1952 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1953 if (!GTK_WIDGET_REALIZED(vf->listview)) |
9 | 1954 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1955 vficon_thumb_status(vf, 0.0, NULL); |
9 | 1956 return FALSE; |
1957 } | |
1958 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1959 if (gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vf->listview), 0, 0, &tpath, NULL, NULL, NULL)) |
9 | 1960 { |
1961 GtkTreeModel *store; | |
1962 GtkTreeIter iter; | |
1963 gint valid = TRUE; | |
1964 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1965 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1966 gtk_tree_model_get_iter(store, &iter, tpath); |
1967 gtk_tree_path_free(tpath); | |
1968 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1969 while (!fd && valid && tree_view_row_get_visibility(GTK_TREE_VIEW(vf->listview), &iter, FALSE) == 0) |
9 | 1970 { |
1971 GList *list; | |
1972 | |
1973 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &list, -1); | |
1974 | |
1975 while (!fd && list) | |
1976 { | |
138 | 1977 IconData *id = list->data; |
845 | 1978 if (id && !id->fd->thumb_pixbuf) fd = id->fd; |
9 | 1979 list = list->next; |
1980 } | |
1981 | |
1982 valid = gtk_tree_model_iter_next(store, &iter); | |
1983 } | |
1984 } | |
1985 | |
1986 /* then find first undone */ | |
1987 | |
1988 if (!fd) | |
1989 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
1990 GList *work = vf->list; |
9 | 1991 while (work && !fd) |
1992 { | |
138 | 1993 IconData *id = work->data; |
1994 FileData *fd_p = id->fd; | |
9 | 1995 work = work->next; |
1996 | |
845 | 1997 if (!fd_p->thumb_pixbuf) fd = fd_p; |
9 | 1998 } |
1999 } | |
2000 | |
2001 if (!fd) | |
2002 { | |
2003 /* done */ | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2004 vficon_thumb_cleanup(vf); |
9 | 2005 return FALSE; |
2006 } | |
2007 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2008 vf->thumbs_filedata = fd; |
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 thumb_loader_free(vf->thumbs_loader); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2011 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2012 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
|
2013 thumb_loader_set_callbacks(vf->thumbs_loader, |
9 | 2014 vficon_thumb_done_cb, |
2015 vficon_thumb_error_cb, | |
2016 NULL, | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2017 vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2018 |
838 | 2019 if (!thumb_loader_start(vf->thumbs_loader, fd)) |
9 | 2020 { |
2021 /* set icon to unknown, continue */ | |
838 | 2022 DEBUG_1("thumb loader start failed %s", fd->path); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2023 vficon_thumb_do(vf, vf->thumbs_loader, fd); |
9 | 2024 |
2025 return TRUE; | |
2026 } | |
2027 | |
2028 return FALSE; | |
2029 } | |
2030 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2031 static void vficon_thumb_update(ViewFile *vf) |
9 | 2032 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2033 vficon_thumb_stop(vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2034 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2035 vficon_thumb_status(vf, 0.0, _("Loading thumbs...")); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2036 vf->thumbs_running = TRUE; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2037 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2038 while (vficon_thumb_next(vf)); |
9 | 2039 } |
2040 | |
2041 /* | |
2042 *----------------------------------------------------------------------------- | |
2043 * row stuff | |
2044 *----------------------------------------------------------------------------- | |
2045 */ | |
2046 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2047 FileData *vficon_index_get_data(ViewFile *vf, gint row) |
9 | 2048 { |
138 | 2049 IconData *id; |
442 | 2050 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2051 id = g_list_nth_data(vf->list, row); |
138 | 2052 return id ? id->fd : NULL; |
9 | 2053 } |
2054 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2055 gint vficon_index_by_path(ViewFile *vf, const gchar *path) |
9 | 2056 { |
2057 gint p = 0; | |
2058 GList *work; | |
2059 | |
2060 if (!path) return -1; | |
2061 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2062 work = vf->list; |
9 | 2063 while (work) |
2064 { | |
138 | 2065 IconData *id = work->data; |
2066 FileData *fd = id->fd; | |
9 | 2067 if (strcmp(path, fd->path) == 0) return p; |
2068 work = work->next; | |
2069 p++; | |
2070 } | |
2071 | |
2072 return -1; | |
2073 } | |
2074 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2075 gint vficon_index_by_fd(ViewFile *vf, FileData *in_fd) |
138 | 2076 { |
2077 gint p = 0; | |
2078 GList *work; | |
2079 | |
2080 if (!in_fd) return -1; | |
2081 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2082 work = vf->list; |
138 | 2083 while (work) |
2084 { | |
2085 IconData *id = work->data; | |
2086 FileData *fd = id->fd; | |
2087 if (fd == in_fd) return p; | |
2088 work = work->next; | |
2089 p++; | |
2090 } | |
2091 | |
2092 return -1; | |
2093 } | |
2094 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2095 static gint vficon_index_by_id(ViewFile *vf, IconData *in_id) |
138 | 2096 { |
2097 gint p = 0; | |
2098 GList *work; | |
2099 | |
2100 if (!in_id) return -1; | |
2101 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2102 work = vf->list; |
138 | 2103 while (work) |
2104 { | |
2105 IconData *id = work->data; | |
2106 if (id == in_id) return p; | |
2107 work = work->next; | |
2108 p++; | |
2109 } | |
2110 | |
2111 return -1; | |
2112 } | |
2113 | |
736 | 2114 guint vficon_count(ViewFile *vf, gint64 *bytes) |
9 | 2115 { |
2116 if (bytes) | |
2117 { | |
2118 gint64 b = 0; | |
2119 GList *work; | |
2120 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2121 work = vf->list; |
9 | 2122 while (work) |
2123 { | |
138 | 2124 IconData *id = work->data; |
2125 FileData *fd = id->fd; | |
9 | 2126 work = work->next; |
579 | 2127 |
9 | 2128 b += fd->size; |
2129 } | |
2130 | |
2131 *bytes = b; | |
2132 } | |
2133 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2134 return g_list_length(vf->list); |
9 | 2135 } |
2136 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2137 GList *vficon_get_list(ViewFile *vf) |
9 | 2138 { |
2139 GList *list = NULL; | |
2140 GList *work; | |
2141 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2142 work = vf->list; |
9 | 2143 while (work) |
2144 { | |
138 | 2145 IconData *id = work->data; |
2146 FileData *fd = id->fd; | |
9 | 2147 work = work->next; |
2148 | |
138 | 2149 list = g_list_prepend(list, file_data_ref(fd)); |
9 | 2150 } |
2151 | |
2152 return g_list_reverse(list); | |
2153 } | |
2154 | |
2155 /* | |
2156 *----------------------------------------------------------------------------- | |
2157 * | |
2158 *----------------------------------------------------------------------------- | |
2159 */ | |
2160 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2161 static gint vficon_refresh_real(ViewFile *vf, gint keep_position) |
9 | 2162 { |
2163 gint ret = TRUE; | |
810 | 2164 GList *work, *work_fd; |
138 | 2165 IconData *focus_id; |
810 | 2166 GList *new_filelist = NULL; |
996
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2167 FileData *first_selected = NULL; |
832 | 2168 GList *new_iconlist = NULL; |
138 | 2169 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2170 focus_id = VFICON(vf)->focus_id; |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2171 |
783 | 2172 if (vf->dir_fd) |
9 | 2173 { |
810 | 2174 ret = filelist_read(vf->dir_fd, &new_filelist, NULL); |
964 | 2175 new_filelist = file_data_filter_marks_list(new_filelist, vf_marks_get_filter(vf)); |
9 | 2176 } |
2177 | |
810 | 2178 vf->list = iconlist_sort(vf->list, vf->sort_method, vf->sort_ascend); /* the list might not be sorted if there were renames */ |
2179 new_filelist = filelist_sort(new_filelist, vf->sort_method, vf->sort_ascend); | |
2180 | |
996
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2181 if (VFICON(vf)->selection) |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2182 { |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2183 first_selected = ((IconData *)(VFICON(vf)->selection->data))->fd; |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2184 file_data_ref(first_selected); |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2185 g_list_free(VFICON(vf)->selection); |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2186 VFICON(vf)->selection = NULL; |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2187 |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2188 |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2189 } |
811 | 2190 |
9 | 2191 /* check for same files from old_list */ |
810 | 2192 work = vf->list; |
2193 work_fd = new_filelist; | |
2194 while (work || work_fd) | |
9 | 2195 { |
810 | 2196 IconData *id = NULL; |
2197 FileData *fd = NULL; | |
2198 FileData *new_fd = NULL; | |
2199 gint match; | |
2200 | |
2201 if (work && work_fd) | |
9 | 2202 { |
810 | 2203 id = work->data; |
2204 fd = id->fd; | |
2205 | |
2206 new_fd = work_fd->data; | |
2207 | |
2208 if (fd == new_fd) | |
9 | 2209 { |
810 | 2210 /* not changed, go to next */ |
2211 work = work->next; | |
2212 work_fd = work_fd->next; | |
996
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2213 if (id->selected & SELECTION_SELECTED) |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2214 { |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2215 VFICON(vf)->selection = g_list_prepend(VFICON(vf)->selection, id); |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2216 } |
810 | 2217 continue; |
9 | 2218 } |
810 | 2219 |
2220 match = filelist_sort_compare_filedata_full(fd, new_fd, vf->sort_method, vf->sort_ascend); | |
2221 if (match == 0) g_warning("multiple fd for the same path"); | |
2222 } | |
2223 else if (work) | |
2224 { | |
2225 id = work->data; | |
2226 fd = id->fd; | |
2227 match = -1; | |
2228 } | |
2229 else /* work_fd */ | |
2230 { | |
2231 new_fd = work_fd->data; | |
2232 match = 1; | |
9 | 2233 } |
810 | 2234 |
2235 if (match < 0) | |
2236 { | |
2237 /* file no longer exists, delete from vf->list */ | |
2238 GList *to_delete = work; | |
2239 work = work->next; | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2240 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
|
2241 if (id == VFICON(vf)->click_id) VFICON(vf)->click_id = NULL; |
810 | 2242 file_data_unref(fd); |
2243 g_free(id); | |
2244 vf->list = g_list_delete_link(vf->list, to_delete); | |
2245 } | |
2246 else | |
2247 { | |
2248 /* new file, add to vf->list */ | |
2249 id = g_new0(IconData, 1); | |
2250 | |
2251 id->selected = SELECTION_NONE; | |
2252 id->row = -1; | |
2253 id->fd = file_data_ref(new_fd); | |
832 | 2254 if (work) |
2255 vf->list = g_list_insert_before(vf->list, work, id); | |
2256 else | |
2257 new_iconlist = g_list_prepend(new_iconlist, id); /* it is faster to append all new entries together later */ | |
2258 | |
810 | 2259 work_fd = work_fd->next; |
2260 } | |
2261 | |
9 | 2262 } |
2263 | |
832 | 2264 if (new_iconlist) |
2265 { | |
2266 vf->list = g_list_concat(vf->list, g_list_reverse(new_iconlist)); | |
2267 } | |
996
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2268 |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2269 VFICON(vf)->selection = g_list_reverse(VFICON(vf)->selection); |
832 | 2270 |
810 | 2271 filelist_free(new_filelist); |
9 | 2272 |
831
b02a24ebf441
fixed iconview update after deletion of selected image
nadvornik
parents:
817
diff
changeset
|
2273 vficon_populate(vf, TRUE, keep_position); |
b02a24ebf441
fixed iconview update after deletion of selected image
nadvornik
parents:
817
diff
changeset
|
2274 |
996
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2275 if (first_selected && !VFICON(vf)->selection) |
811 | 2276 { |
2277 /* all selected files disappeared */ | |
996
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2278 vficon_select_closest(vf, first_selected); |
811 | 2279 } |
996
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2280 file_data_unref(first_selected); |
4794cf5ecd8e
correctly maintain selection during iconlist refresh
nadvornik
parents:
995
diff
changeset
|
2281 |
9 | 2282 /* attempt to keep focus on same icon when refreshing */ |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2283 if (focus_id && g_list_find(vf->list, focus_id)) |
9 | 2284 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2285 vficon_set_focus(vf, focus_id); |
9 | 2286 } |
2287 | |
2288 return ret; | |
2289 } | |
2290 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2291 gint vficon_refresh(ViewFile *vf) |
9 | 2292 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2293 return vficon_refresh_real(vf, TRUE); |
9 | 2294 } |
2295 | |
2296 /* | |
2297 *----------------------------------------------------------------------------- | |
2298 * draw, etc. | |
2299 *----------------------------------------------------------------------------- | |
2300 */ | |
2301 | |
2302 typedef struct _ColumnData ColumnData; | |
2303 struct _ColumnData | |
2304 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2305 ViewFile *vf; |
9 | 2306 gint number; |
2307 }; | |
2308 | |
2309 static void vficon_cell_data_cb(GtkTreeViewColumn *tree_column, GtkCellRenderer *cell, | |
2310 GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data) | |
2311 { | |
2312 ColumnData *cd = data; | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2313 ViewFile *vf; |
9 | 2314 GtkStyle *style; |
2315 GList *list; | |
2316 GdkColor color_fg; | |
2317 GdkColor color_bg; | |
138 | 2318 IconData *id; |
9 | 2319 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2320 vf = cd->vf; |
9 | 2321 |
2322 gtk_tree_model_get(tree_model, iter, FILE_COLUMN_POINTER, &list, -1); | |
442 | 2323 |
138 | 2324 id = g_list_nth_data(list, cd->number); |
442 | 2325 |
138 | 2326 if (id) g_assert(id->fd->magick == 0x12345678); |
442 | 2327 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2328 style = gtk_widget_get_style(vf->listview); |
138 | 2329 if (id && id->selected & SELECTION_SELECTED) |
9 | 2330 { |
2331 memcpy(&color_fg, &style->text[GTK_STATE_SELECTED], sizeof(color_fg)); | |
2332 memcpy(&color_bg, &style->base[GTK_STATE_SELECTED], sizeof(color_bg)); | |
2333 } | |
2334 else | |
2335 { | |
2336 memcpy(&color_fg, &style->text[GTK_STATE_NORMAL], sizeof(color_fg)); | |
2337 memcpy(&color_bg, &style->base[GTK_STATE_NORMAL], sizeof(color_bg)); | |
2338 } | |
2339 | |
138 | 2340 if (id && id->selected & SELECTION_PRELIGHT) |
9 | 2341 { |
2342 #if 0 | |
2343 shift_color(&color_fg, -1, 0); | |
2344 #endif | |
2345 shift_color(&color_bg, -1, 0); | |
2346 } | |
2347 | |
2348 if (GQV_IS_CELL_RENDERER_ICON(cell)) | |
442 | 2349 { |
138 | 2350 if (id) |
9 | 2351 { |
851 | 2352 gchar *name_sidecars = (gchar *)id->fd->name; |
2353 gchar *sidecars = NULL; | |
2354 | |
2355 if (id->fd->sidecar_files) | |
2356 { | |
2357 sidecars = file_data_sc_list_to_string(id->fd); | |
2358 name_sidecars = g_strdup_printf("%s %s", id->fd->name, sidecars); | |
2359 } | |
2360 | |
845 | 2361 g_object_set(cell, "pixbuf", id->fd->thumb_pixbuf, |
851 | 2362 "text", name_sidecars, |
966 | 2363 "marks", file_data_get_marks(id->fd), |
852 | 2364 "show_marks", vf->marks_enabled, |
9 | 2365 "cell-background-gdk", &color_bg, |
2366 "cell-background-set", TRUE, | |
2367 "foreground-gdk", &color_fg, | |
2368 "foreground-set", TRUE, | |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2369 "has-focus", (VFICON(vf)->focus_id == id), NULL); |
851 | 2370 if (sidecars) |
2371 { | |
2372 g_free(sidecars); | |
2373 g_free(name_sidecars); | |
2374 } | |
9 | 2375 } |
2376 else | |
2377 { | |
2378 g_object_set(cell, "pixbuf", NULL, | |
2379 "text", NULL, | |
852 | 2380 "show_marks", FALSE, |
9 | 2381 "cell-background-set", FALSE, |
2382 "foreground-set", FALSE, | |
2383 "has-focus", FALSE, NULL); | |
442 | 2384 } |
9 | 2385 } |
2386 } | |
2387 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2388 static void vficon_append_column(ViewFile *vf, gint n) |
9 | 2389 { |
2390 ColumnData *cd; | |
2391 GtkTreeViewColumn *column; | |
2392 GtkCellRenderer *renderer; | |
2393 | |
2394 column = gtk_tree_view_column_new(); | |
2395 gtk_tree_view_column_set_min_width(column, 0); | |
2396 | |
2397 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); | |
2398 gtk_tree_view_column_set_alignment(column, 0.5); | |
2399 | |
2400 renderer = gqv_cell_renderer_icon_new(); | |
2401 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
2402 g_object_set(G_OBJECT(renderer), "xpad", THUMB_BORDER_PADDING * 2, | |
2403 "ypad", THUMB_BORDER_PADDING, | |
2404 "mode", GTK_CELL_RENDERER_MODE_ACTIVATABLE, NULL); | |
2405 | |
2406 g_object_set_data(G_OBJECT(column), "column_number", GINT_TO_POINTER(n)); | |
966 | 2407 g_object_set_data(G_OBJECT(renderer), "column_number", GINT_TO_POINTER(n)); |
9 | 2408 |
2409 cd = g_new0(ColumnData, 1); | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2410 cd->vf = vf; |
9 | 2411 cd->number = n; |
2412 gtk_tree_view_column_set_cell_data_func(column, renderer, vficon_cell_data_cb, cd, g_free); | |
2413 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2414 gtk_tree_view_append_column(GTK_TREE_VIEW(vf->listview), column); |
966 | 2415 |
2416 g_signal_connect(G_OBJECT(renderer), "toggled", G_CALLBACK(vficon_mark_toggled_cb), vf); | |
9 | 2417 } |
2418 | |
2419 /* | |
2420 *----------------------------------------------------------------------------- | |
2421 * base | |
2422 *----------------------------------------------------------------------------- | |
2423 */ | |
2424 | |
783 | 2425 gint vficon_set_fd(ViewFile *vf, FileData *dir_fd) |
9 | 2426 { |
2427 gint ret; | |
2428 | |
783 | 2429 if (!dir_fd) return FALSE; |
2430 if (vf->dir_fd == dir_fd) return TRUE; | |
2431 | |
2432 file_data_unref(vf->dir_fd); | |
2433 vf->dir_fd = file_data_ref(dir_fd); | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2434 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2435 g_list_free(VFICON(vf)->selection); |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2436 VFICON(vf)->selection = NULL; |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2437 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2438 iconlist_free(vf->list); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2439 vf->list = NULL; |
9 | 2440 |
2441 /* NOTE: populate will clear the store for us */ | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2442 ret = vficon_refresh_real(vf, FALSE); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2443 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2444 VFICON(vf)->focus_id = NULL; |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2445 vficon_move_focus(vf, 0, 0, FALSE); |
9 | 2446 |
2447 return ret; | |
2448 } | |
2449 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
562
diff
changeset
|
2450 void vficon_destroy_cb(GtkWidget *widget, gpointer data) |
9 | 2451 { |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2452 ViewFile *vf = data; |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2453 |
814 | 2454 vf_refresh_idle_cancel(vf); |
787 | 2455 |
814 | 2456 file_data_unregister_notify_func(vf_notify_cb, vf); |
574
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 tip_unschedule(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 vficon_thumb_cleanup(vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2461 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2462 iconlist_free(vf->list); |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2463 g_list_free(VFICON(vf)->selection); |
9 | 2464 } |
2465 | |
783 | 2466 ViewFile *vficon_new(ViewFile *vf, FileData *dir_fd) |
9 | 2467 { |
2468 GtkListStore *store; | |
2469 GtkTreeSelection *selection; | |
2470 gint i; | |
2471 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2472 vf->info = g_new0(ViewFileInfoIcon, 1); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2473 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2474 VFICON(vf)->selection = NULL; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2475 VFICON(vf)->prev_selection = NULL; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2476 |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2477 VFICON(vf)->tip_window = NULL; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2478 VFICON(vf)->tip_delay_id = -1; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2479 |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2480 VFICON(vf)->focus_row = 0; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2481 VFICON(vf)->focus_column = 0; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2482 VFICON(vf)->focus_id = NULL; |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2483 |
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2484 VFICON(vf)->show_text = options->show_icon_names; |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2485 |
9 | 2486 store = gtk_list_store_new(1, G_TYPE_POINTER); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2487 vf->listview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store)); |
9 | 2488 g_object_unref(store); |
2489 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2490 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 2491 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_NONE); |
2492 | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2493 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
|
2494 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(vf->listview), FALSE); |
9 | 2495 |
2496 for (i = 0; i < VFICON_MAX_COLUMNS; i++) | |
2497 { | |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2498 vficon_append_column(vf, i); |
9 | 2499 } |
2500 | |
2501 /* 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
|
2502 vficon_append_column(vf, i); |
9 | 2503 /* end column to fill white space */ |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2504 vficon_append_column(vf, i); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2505 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2506 g_signal_connect(G_OBJECT(vf->listview), "size_allocate", |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2507 G_CALLBACK(vficon_sized_cb), vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2508 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2509 gtk_widget_set_events(vf->listview, GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK | |
9 | 2510 GDK_BUTTON_PRESS_MASK | GDK_LEAVE_NOTIFY_MASK); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2511 |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2512 g_signal_connect(G_OBJECT(vf->listview),"motion_notify_event", |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2513 G_CALLBACK(vficon_motion_cb), vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2514 g_signal_connect(G_OBJECT(vf->listview), "leave_notify_event", |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2515 G_CALLBACK(vficon_leave_cb), vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2516 |
968
065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
zas_
parents:
967
diff
changeset
|
2517 /* 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
|
2518 vficon_populate_at_new_size(vf, 1, 1, FALSE); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2519 |
814 | 2520 file_data_register_notify_func(vf_notify_cb, vf, NOTIFY_PRIORITY_MEDIUM); |
787 | 2521 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
2522 return vf; |
9 | 2523 } |
2524 | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1005
diff
changeset
|
2525 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |