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