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