Mercurial > geeqie.yaz
annotate src/view_file_list.c @ 658:dc09f544d292
Move VFICON_INFO() and VFLIST_INFO() macros to view_file.h
author | zas_ |
---|---|
date | Tue, 13 May 2008 19:56:52 +0000 |
parents | a2d74c9843db |
children | 542bb47fef04 |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
281 | 13 #include "main.h" |
9 | 14 #include "view_file_list.h" |
15 | |
16 #include "cache_maint.h" | |
507 | 17 #include "debug.h" |
9 | 18 #include "dnd.h" |
19 #include "editors.h" | |
20 #include "img-view.h" | |
21 #include "info.h" | |
22 #include "layout.h" | |
23 #include "layout_image.h" | |
24 #include "menu.h" | |
25 #include "thumb.h" | |
26 #include "utilops.h" | |
27 #include "ui_bookmark.h" | |
28 #include "ui_fileops.h" | |
29 #include "ui_menu.h" | |
30 #include "ui_tree_edit.h" | |
633 | 31 #include "view_file.h" |
9 | 32 |
33 #include <gdk/gdkkeysyms.h> /* for keyboard values */ | |
34 | |
35 | |
36 enum { | |
37 FILE_COLUMN_POINTER = 0, | |
38 FILE_COLUMN_THUMB, | |
39 FILE_COLUMN_NAME, | |
139 | 40 FILE_COLUMN_SIDECARS, |
9 | 41 FILE_COLUMN_SIZE, |
42 FILE_COLUMN_DATE, | |
43 FILE_COLUMN_COLOR, | |
139 | 44 FILE_COLUMN_MARKS, |
45 FILE_COLUMN_MARKS_LAST = FILE_COLUMN_MARKS + FILEDATA_MARKS_SIZE - 1, | |
9 | 46 FILE_COLUMN_COUNT |
47 }; | |
48 | |
49 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
50 static gint vflist_row_is_selected(ViewFile *vf, FileData *fd); |
9 | 51 static gint vflist_row_rename_cb(TreeEditData *td, const gchar *old, const gchar *new, gpointer data); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
52 static void vflist_populate_view(ViewFile *vf); |
9 | 53 |
54 | |
55 /* | |
56 *----------------------------------------------------------------------------- | |
57 * misc | |
58 *----------------------------------------------------------------------------- | |
59 */ | |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
60 typedef struct { |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
61 FileData *fd; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
62 GtkTreeIter *iter; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
63 gint found; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
64 gint row; |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
65 } ViewFileFindRowData; |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
66 |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
67 static gboolean vflist_find_row_cb(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
68 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
69 ViewFileFindRowData *find = data; |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
70 FileData *fd; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
71 gtk_tree_model_get(model, iter, FILE_COLUMN_POINTER, &fd, -1); |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
72 if (fd == find->fd) |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
73 { |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
74 *find->iter = *iter; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
75 find->found = 1; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
76 return TRUE; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
77 } |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
78 find->row++; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
79 return FALSE; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
80 } |
9 | 81 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
82 static gint vflist_find_row(ViewFile *vf, FileData *fd, GtkTreeIter *iter) |
9 | 83 { |
84 GtkTreeModel *store; | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
85 ViewFileFindRowData data = {fd, iter, 0, 0}; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
86 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
87 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
88 gtk_tree_model_foreach(store, vflist_find_row_cb, &data); |
9 | 89 |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
90 if (data.found) |
9 | 91 { |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
92 return data.row; |
9 | 93 } |
94 | |
95 return -1; | |
96 } | |
97 | |
169 | 98 |
259 | 99 /* |
169 | 100 static gint vflist_find_sidecar_list_idx(GList *work, FileData *fd) |
101 { | |
102 gint i = 0; | |
103 while (work) | |
104 { | |
105 FileData *fd_p = work->data; | |
106 if (fd == fd_p) return i; | |
442 | 107 |
169 | 108 i++; |
109 | |
110 GList *work2 = fd_p->sidecar_files; | |
111 while (work2) | |
112 { | |
442 | 113 fd_p = work2->data; |
169 | 114 if (fd == fd_p) return i; |
442 | 115 |
169 | 116 i++; |
117 work2 = work2->next; | |
118 } | |
119 work = work->next; | |
120 } | |
121 return -1; | |
122 } | |
259 | 123 */ |
169 | 124 |
125 static gint vflist_sidecar_list_count(GList *work) | |
126 { | |
127 gint i = 0; | |
128 while (work) | |
129 { | |
130 FileData *fd = work->data; | |
131 i++; | |
132 | |
133 GList *work2 = fd->sidecar_files; | |
134 while (work2) | |
135 { | |
136 i++; | |
137 work2 = work2->next; | |
138 } | |
139 work = work->next; | |
140 } | |
141 return i; | |
142 } | |
143 | |
144 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
145 static void vflist_color_set(ViewFile *vf, FileData *fd, gint color_set) |
9 | 146 { |
147 GtkTreeModel *store; | |
148 GtkTreeIter iter; | |
149 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
150 if (vflist_find_row(vf, fd, &iter) < 0) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
151 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
152 gtk_tree_store_set(GTK_TREE_STORE(store), &iter, FILE_COLUMN_COLOR, color_set, -1); |
9 | 153 } |
154 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
155 static void vflist_move_cursor(ViewFile *vf, GtkTreeIter *iter) |
9 | 156 { |
157 GtkTreeModel *store; | |
158 GtkTreePath *tpath; | |
159 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
160 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 161 |
162 tpath = gtk_tree_model_get_path(store, iter); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
163 gtk_tree_view_set_cursor(GTK_TREE_VIEW(vf->listview), tpath, NULL, FALSE); |
9 | 164 gtk_tree_path_free(tpath); |
165 } | |
166 | |
157 | 167 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
168 static gint vflist_column_idx(ViewFile *vf, gint store_idx) |
157 | 169 { |
170 GList *columns, *work; | |
171 gint i = 0; | |
172 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
173 columns = gtk_tree_view_get_columns(GTK_TREE_VIEW(vf->listview)); |
157 | 174 work = columns; |
175 while (work) | |
176 { | |
177 GtkTreeViewColumn *column = work->data; | |
178 if (store_idx == GPOINTER_TO_INT(g_object_get_data (G_OBJECT(column), "column_store_idx"))) | |
179 break; | |
180 work = work->next; | |
181 i++; | |
182 } | |
442 | 183 |
157 | 184 g_list_free(columns); |
185 return i; | |
186 } | |
187 | |
188 | |
9 | 189 /* |
190 *----------------------------------------------------------------------------- | |
191 * dnd | |
192 *----------------------------------------------------------------------------- | |
193 */ | |
194 | |
195 static void vflist_dnd_get(GtkWidget *widget, GdkDragContext *context, | |
196 GtkSelectionData *selection_data, guint info, | |
197 guint time, gpointer data) | |
198 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
199 ViewFile *vf = data; |
9 | 200 GList *list = NULL; |
201 gchar *uri_text = NULL; | |
202 gint total; | |
203 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
204 if (!VFLIST_INFO(vf, click_fd)) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
205 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
206 if (vflist_row_is_selected(vf, VFLIST_INFO(vf, click_fd))) |
9 | 207 { |
633 | 208 list = vf_selection_get_list(vf); |
9 | 209 } |
210 else | |
211 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
212 list = g_list_append(NULL, file_data_ref(VFLIST_INFO(vf, click_fd))); |
9 | 213 } |
214 | |
215 if (!list) return; | |
216 | |
138 | 217 uri_text = uri_text_from_filelist(list, &total, (info == TARGET_TEXT_PLAIN)); |
218 filelist_free(list); | |
9 | 219 |
495 | 220 DEBUG_1(uri_text); |
9 | 221 |
64
04ff0df3ad2f
Mon Aug 15 17:13:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
222 gtk_selection_data_set(selection_data, selection_data->target, |
04ff0df3ad2f
Mon Aug 15 17:13:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
223 8, (guchar *)uri_text, total); |
9 | 224 g_free(uri_text); |
225 } | |
226 | |
227 static void vflist_dnd_begin(GtkWidget *widget, GdkDragContext *context, gpointer data) | |
228 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
229 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
230 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
231 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), TRUE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
232 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
233 if (VFLIST_INFO(vf, thumbs_enabled) && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
234 VFLIST_INFO(vf, click_fd) && VFLIST_INFO(vf, click_fd)->pixbuf) |
9 | 235 { |
236 gint items; | |
237 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
238 if (vflist_row_is_selected(vf, VFLIST_INFO(vf, click_fd))) |
633 | 239 items = vf_selection_count(vf, NULL); |
9 | 240 else |
241 items = 1; | |
242 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
243 dnd_set_drag_icon(widget, context, VFLIST_INFO(vf, click_fd)->pixbuf, items); |
9 | 244 } |
245 } | |
246 | |
247 static void vflist_dnd_end(GtkWidget *widget, GdkDragContext *context, gpointer data) | |
248 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
249 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
250 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
251 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
9 | 252 |
253 if (context->action == GDK_ACTION_MOVE) | |
254 { | |
633 | 255 vf_refresh(vf); |
9 | 256 } |
257 } | |
258 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
259 void vflist_dnd_init(ViewFile *vf) |
9 | 260 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
261 gtk_drag_source_set(vf->listview, GDK_BUTTON1_MASK | GDK_BUTTON2_MASK, |
9 | 262 dnd_file_drag_types, dnd_file_drag_types_count, |
263 GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
264 g_signal_connect(G_OBJECT(vf->listview), "drag_data_get", |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
265 G_CALLBACK(vflist_dnd_get), vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
266 g_signal_connect(G_OBJECT(vf->listview), "drag_begin", |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
267 G_CALLBACK(vflist_dnd_begin), vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
268 g_signal_connect(G_OBJECT(vf->listview), "drag_end", |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
269 G_CALLBACK(vflist_dnd_end), vf); |
9 | 270 } |
271 | |
272 /* | |
273 *----------------------------------------------------------------------------- | |
274 * pop-up menu | |
275 *----------------------------------------------------------------------------- | |
276 */ | |
277 | |
634 | 278 GList *vflist_pop_menu_file_list(ViewFile *vf) |
9 | 279 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
280 if (!VFLIST_INFO(vf, click_fd)) return NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
281 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
282 if (vflist_row_is_selected(vf, VFLIST_INFO(vf, click_fd))) |
9 | 283 { |
633 | 284 return vf_selection_get_list(vf); |
9 | 285 } |
286 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
287 return g_list_append(NULL, file_data_ref(VFLIST_INFO(vf, click_fd))); |
9 | 288 } |
289 | |
637 | 290 void vflist_pop_menu_view_cb(GtkWidget *widget, gpointer data) |
9 | 291 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
292 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
293 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
294 if (vflist_row_is_selected(vf, VFLIST_INFO(vf, click_fd))) |
9 | 295 { |
296 GList *list; | |
297 | |
633 | 298 list = vf_selection_get_list(vf); |
9 | 299 view_window_new_from_list(list); |
138 | 300 filelist_free(list); |
9 | 301 } |
302 else | |
303 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
304 view_window_new(VFLIST_INFO(vf, click_fd)); |
9 | 305 } |
306 } | |
307 | |
637 | 308 void vflist_pop_menu_rename_cb(GtkWidget *widget, gpointer data) |
9 | 309 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
310 ViewFile *vf = data; |
9 | 311 GList *list; |
312 | |
634 | 313 list = vf_pop_menu_file_list(vf); |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
334
diff
changeset
|
314 if (options->file_ops.enable_in_place_rename && |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
315 list && !list->next && VFLIST_INFO(vf, click_fd)) |
9 | 316 { |
317 GtkTreeModel *store; | |
318 GtkTreeIter iter; | |
319 | |
138 | 320 filelist_free(list); |
9 | 321 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
322 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
323 if (vflist_find_row(vf, VFLIST_INFO(vf, click_fd), &iter) >= 0) |
9 | 324 { |
325 GtkTreePath *tpath; | |
326 | |
327 tpath = gtk_tree_model_get_path(store, &iter); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
328 tree_edit_by_path(GTK_TREE_VIEW(vf->listview), tpath, |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
329 vflist_column_idx(vf, FILE_COLUMN_NAME), VFLIST_INFO(vf, click_fd)->name, |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
330 vflist_row_rename_cb, vf); |
9 | 331 gtk_tree_path_free(tpath); |
332 } | |
333 return; | |
334 } | |
335 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
336 file_util_rename(NULL, list, vf->listview); |
9 | 337 } |
338 | |
339 static void vflist_pop_menu_thumbs_cb(GtkWidget *widget, gpointer data) | |
340 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
341 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
342 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
343 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
344 if (vf->layout) |
9 | 345 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
346 layout_thumb_set(vf->layout, !VFLIST_INFO(vf, thumbs_enabled)); |
9 | 347 } |
348 else | |
349 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
350 vflist_thumb_set(vf, !VFLIST_INFO(vf, thumbs_enabled)); |
9 | 351 } |
352 } | |
353 | |
637 | 354 void vflist_pop_menu_refresh_cb(GtkWidget *widget, gpointer data) |
9 | 355 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
356 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
357 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
358 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
633 | 359 vf_refresh(vf); |
9 | 360 } |
361 | |
637 | 362 void vflist_popup_destroy_cb(GtkWidget *widget, gpointer data) |
9 | 363 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
364 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
365 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
366 VFLIST_INFO(vf, click_fd) = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
367 vf->popup = NULL; |
9 | 368 } |
369 | |
150 | 370 |
656
a2d74c9843db
vflist_pop_menu(): drop FileData * parameter, use stored click_fd instead.
zas_
parents:
655
diff
changeset
|
371 static GtkWidget *vflist_pop_menu(ViewFile *vf) |
9 | 372 { |
373 GtkWidget *menu; | |
374 GtkWidget *item; | |
375 GtkWidget *submenu; | |
376 gint active; | |
377 | |
656
a2d74c9843db
vflist_pop_menu(): drop FileData * parameter, use stored click_fd instead.
zas_
parents:
655
diff
changeset
|
378 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), TRUE); |
a2d74c9843db
vflist_pop_menu(): drop FileData * parameter, use stored click_fd instead.
zas_
parents:
655
diff
changeset
|
379 active = (VFLIST_INFO(vf, click_fd) != NULL); |
9 | 380 |
381 menu = popup_menu_short_lived(); | |
382 g_signal_connect(G_OBJECT(menu), "destroy", | |
637 | 383 G_CALLBACK(vf_popup_destroy_cb), vf); |
9 | 384 |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
385 if (vf->clicked_mark > 0) |
150 | 386 { |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
387 gint mark = vf->clicked_mark; |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
388 gchar *str_set_mark = g_strdup_printf(_("_Set mark %d"), mark); |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
389 gchar *str_res_mark = g_strdup_printf(_("_Reset mark %d"), mark); |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
390 gchar *str_toggle_mark = g_strdup_printf(_("_Toggle mark %d"), mark); |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
391 gchar *str_sel_mark = g_strdup_printf(_("_Select mark %d"), mark); |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
392 gchar *str_sel_mark_or = g_strdup_printf(_("_Add mark %d"), mark); |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
393 gchar *str_sel_mark_and = g_strdup_printf(_("_Intersection with mark %d"), mark); |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
394 gchar *str_sel_mark_minus = g_strdup_printf(_("_Unselect mark %d"), mark); |
442 | 395 |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
396 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
442 | 397 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
398 vf->active_mark = mark; |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
399 vf->clicked_mark = 0; |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
400 |
150 | 401 menu_item_add_sensitive(menu, str_set_mark, active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
402 G_CALLBACK(vf_pop_menu_set_mark_sel_cb), vf); |
442 | 403 |
150 | 404 menu_item_add_sensitive(menu, str_res_mark, active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
405 G_CALLBACK(vf_pop_menu_res_mark_sel_cb), vf); |
442 | 406 |
150 | 407 menu_item_add_sensitive(menu, str_toggle_mark, active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
408 G_CALLBACK(vf_pop_menu_toggle_mark_sel_cb), vf); |
161 | 409 |
410 menu_item_add_divider(menu); | |
442 | 411 |
150 | 412 menu_item_add_sensitive(menu, str_sel_mark, active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
413 G_CALLBACK(vf_pop_menu_sel_mark_cb), vf); |
161 | 414 menu_item_add_sensitive(menu, str_sel_mark_or, active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
415 G_CALLBACK(vf_pop_menu_sel_mark_or_cb), vf); |
161 | 416 menu_item_add_sensitive(menu, str_sel_mark_and, active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
417 G_CALLBACK(vf_pop_menu_sel_mark_and_cb), vf); |
161 | 418 menu_item_add_sensitive(menu, str_sel_mark_minus, active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
419 G_CALLBACK(vf_pop_menu_sel_mark_minus_cb), vf); |
442 | 420 |
150 | 421 menu_item_add_divider(menu); |
442 | 422 |
150 | 423 g_free(str_set_mark); |
424 g_free(str_res_mark); | |
425 g_free(str_toggle_mark); | |
426 g_free(str_sel_mark); | |
161 | 427 g_free(str_sel_mark_and); |
428 g_free(str_sel_mark_or); | |
429 g_free(str_sel_mark_minus); | |
150 | 430 } |
431 | |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
432 submenu_add_edit(menu, &item, G_CALLBACK(vf_pop_menu_edit_cb), vf); |
9 | 433 gtk_widget_set_sensitive(item, active); |
434 | |
435 menu_item_add_stock_sensitive(menu, _("_Properties"), GTK_STOCK_PROPERTIES, active, | |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
436 G_CALLBACK(vf_pop_menu_info_cb), vf); |
9 | 437 menu_item_add_stock_sensitive(menu, _("View in _new window"), GTK_STOCK_NEW, active, |
637 | 438 G_CALLBACK(vf_pop_menu_view_cb), vf); |
9 | 439 |
440 menu_item_add_divider(menu); | |
441 menu_item_add_stock_sensitive(menu, _("_Copy..."), GTK_STOCK_COPY, active, | |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
442 G_CALLBACK(vf_pop_menu_copy_cb), vf); |
9 | 443 menu_item_add_sensitive(menu, _("_Move..."), active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
444 G_CALLBACK(vf_pop_menu_move_cb), vf); |
9 | 445 menu_item_add_sensitive(menu, _("_Rename..."), active, |
637 | 446 G_CALLBACK(vf_pop_menu_rename_cb), vf); |
9 | 447 menu_item_add_stock_sensitive(menu, _("_Delete..."), GTK_STOCK_DELETE, active, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
448 G_CALLBACK(vf_pop_menu_delete_cb), vf); |
497 | 449 if (options->show_copy_path) |
450 menu_item_add_sensitive(menu, _("_Copy path"), active, | |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
451 G_CALLBACK(vf_pop_menu_copy_path_cb), vf); |
9 | 452 |
453 menu_item_add_divider(menu); | |
454 | |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
455 submenu = submenu_add_sort(NULL, G_CALLBACK(vf_pop_menu_sort_cb), vf, |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
456 FALSE, FALSE, TRUE, vf->sort_method); |
9 | 457 menu_item_add_divider(submenu); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
458 menu_item_add_check(submenu, _("Ascending"), vf->sort_ascend, |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
459 G_CALLBACK(vf_pop_menu_sort_ascend_cb), vf); |
9 | 460 |
461 item = menu_item_add(menu, _("_Sort"), NULL, NULL); | |
462 gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu); | |
463 | |
464 menu_item_add_check(menu, _("View as _icons"), FALSE, | |
635
eaca3e910ecd
Move a part of pop up menu common code to view_file.[ch].
zas_
parents:
634
diff
changeset
|
465 G_CALLBACK(vf_pop_menu_toggle_view_type_cb), vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
466 menu_item_add_check(menu, _("Show _thumbnails"), VFLIST_INFO(vf, thumbs_enabled), |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
467 G_CALLBACK(vflist_pop_menu_thumbs_cb), vf); |
637 | 468 menu_item_add_stock(menu, _("Re_fresh"), GTK_STOCK_REFRESH, G_CALLBACK(vf_pop_menu_refresh_cb), vf); |
9 | 469 |
470 return menu; | |
471 } | |
472 | |
473 /* | |
474 *----------------------------------------------------------------------------- | |
475 * callbacks | |
476 *----------------------------------------------------------------------------- | |
477 */ | |
478 | |
479 static gint vflist_row_rename_cb(TreeEditData *td, const gchar *old, const gchar *new, gpointer data) | |
480 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
481 ViewFile *vf = data; |
9 | 482 gchar *old_path; |
483 gchar *new_path; | |
484 | |
485 if (strlen(new) == 0) return FALSE; | |
486 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
487 old_path = concat_dir_and_file(vf->path, old); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
488 new_path = concat_dir_and_file(vf->path, new); |
9 | 489 |
490 if (strchr(new, '/') != NULL) | |
491 { | |
492 gchar *text = g_strdup_printf(_("Invalid file name:\n%s"), new); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
493 file_util_warning_dialog(_("Error renaming file"), text, GTK_STOCK_DIALOG_ERROR, vf->listview); |
9 | 494 g_free(text); |
495 } | |
496 else if (isfile(new_path)) | |
497 { | |
498 gchar *text = g_strdup_printf(_("A file with name %s already exists."), new); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
499 file_util_warning_dialog(_("Error renaming file"), text, GTK_STOCK_DIALOG_ERROR, vf->listview); |
9 | 500 g_free(text); |
501 } | |
442 | 502 else |
9 | 503 { |
633 | 504 gint row = vf_index_by_path(vf, old_path); |
442 | 505 if (row >= 0) |
138 | 506 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
507 GList *work = g_list_nth(vf->list, row); |
138 | 508 FileData *fd = work->data; |
442 | 509 |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
142
diff
changeset
|
510 if (!file_data_add_change_info(fd, FILEDATA_CHANGE_RENAME, old_path, new_path) || !rename_file_ext(fd)) |
138 | 511 { |
512 gchar *text = g_strdup_printf(_("Unable to rename file:\n%s\nto:\n%s"), old, new); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
513 file_util_warning_dialog(_("Error renaming file"), text, GTK_STOCK_DIALOG_ERROR, vf->listview); |
138 | 514 g_free(text); |
515 } | |
516 } | |
517 | |
9 | 518 } |
519 g_free(old_path); | |
520 g_free(new_path); | |
521 | |
522 return FALSE; | |
523 } | |
524 | |
525 static void vflist_menu_position_cb(GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer data) | |
526 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
527 ViewFile *vf = data; |
9 | 528 GtkTreeModel *store; |
529 GtkTreeIter iter; | |
530 GtkTreePath *tpath; | |
531 gint cw, ch; | |
532 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
533 if (vflist_find_row(vf, VFLIST_INFO(vf, click_fd), &iter) < 0) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
534 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 535 tpath = gtk_tree_model_get_path(store, &iter); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
536 tree_view_get_cell_clamped(GTK_TREE_VIEW(vf->listview), tpath, FILE_COLUMN_NAME - 1, TRUE, x, y, &cw, &ch); |
9 | 537 gtk_tree_path_free(tpath); |
538 *y += ch; | |
539 popup_menu_position_clamp(menu, x, y, 0); | |
540 } | |
541 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
542 gint vflist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data) |
9 | 543 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
544 ViewFile *vf = data; |
9 | 545 GtkTreePath *tpath; |
546 | |
547 if (event->keyval != GDK_Menu) return FALSE; | |
548 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
549 gtk_tree_view_get_cursor(GTK_TREE_VIEW(vf->listview), &tpath, NULL); |
9 | 550 if (tpath) |
551 { | |
552 GtkTreeModel *store; | |
553 GtkTreeIter iter; | |
554 | |
555 store = gtk_tree_view_get_model(GTK_TREE_VIEW(widget)); | |
556 gtk_tree_model_get_iter(store, &iter, tpath); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
557 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &VFLIST_INFO(vf, click_fd), -1); |
9 | 558 gtk_tree_path_free(tpath); |
559 } | |
560 else | |
561 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
562 VFLIST_INFO(vf, click_fd) = NULL; |
9 | 563 } |
564 | |
656
a2d74c9843db
vflist_pop_menu(): drop FileData * parameter, use stored click_fd instead.
zas_
parents:
655
diff
changeset
|
565 vf->popup = vflist_pop_menu(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
566 gtk_menu_popup(GTK_MENU(vf->popup), NULL, NULL, vflist_menu_position_cb, vf, 0, GDK_CURRENT_TIME); |
9 | 567 |
568 return TRUE; | |
569 } | |
570 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
571 gint vflist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) |
9 | 572 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
573 ViewFile *vf = data; |
9 | 574 GtkTreePath *tpath; |
575 GtkTreeIter iter; | |
576 FileData *fd = NULL; | |
149 | 577 GtkTreeViewColumn *column; |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
578 |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
579 vf->clicked_mark = 0; |
442 | 580 |
9 | 581 if (gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(widget), bevent->x, bevent->y, |
132 | 582 &tpath, &column, NULL, NULL)) |
9 | 583 { |
584 GtkTreeModel *store; | |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
585 gint col_idx = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(column), "column_store_idx")); |
442 | 586 |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
587 if (bevent->button == MOUSE_BUTTON_LEFT && |
149 | 588 col_idx >= FILE_COLUMN_MARKS && col_idx <= FILE_COLUMN_MARKS_LAST) |
589 return FALSE; | |
442 | 590 |
655
beacc4c68c53
Fix last patch, only set vf->clicked_mark for a valid mark.
zas_
parents:
654
diff
changeset
|
591 if (col_idx >= FILE_COLUMN_MARKS && col_idx <= FILE_COLUMN_MARKS_LAST) |
beacc4c68c53
Fix last patch, only set vf->clicked_mark for a valid mark.
zas_
parents:
654
diff
changeset
|
592 vf->clicked_mark = 1 + (col_idx - FILE_COLUMN_MARKS); |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
593 |
149 | 594 store = gtk_tree_view_get_model(GTK_TREE_VIEW(widget)); |
9 | 595 |
596 gtk_tree_model_get_iter(store, &iter, tpath); | |
597 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
598 #if 0 | |
599 gtk_tree_view_set_cursor(GTK_TREE_VIEW(widget), tpath, NULL, FALSE); | |
600 #endif | |
601 gtk_tree_path_free(tpath); | |
602 } | |
603 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
604 VFLIST_INFO(vf, click_fd) = fd; |
9 | 605 |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
606 if (bevent->button == MOUSE_BUTTON_RIGHT) |
9 | 607 { |
656
a2d74c9843db
vflist_pop_menu(): drop FileData * parameter, use stored click_fd instead.
zas_
parents:
655
diff
changeset
|
608 vf->popup = vflist_pop_menu(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
609 gtk_menu_popup(GTK_MENU(vf->popup), NULL, NULL, NULL, NULL, |
9 | 610 bevent->button, bevent->time); |
611 return TRUE; | |
612 } | |
613 | |
614 if (!fd) return FALSE; | |
615 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
616 if (bevent->button == MOUSE_BUTTON_MIDDLE) |
9 | 617 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
618 if (!vflist_row_is_selected(vf, fd)) |
9 | 619 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
620 vflist_color_set(vf, fd, TRUE); |
9 | 621 } |
622 return TRUE; | |
623 } | |
624 | |
625 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
626 if (bevent->button == MOUSE_BUTTON_LEFT && bevent->type == GDK_BUTTON_PRESS && |
9 | 627 !(bevent->state & GDK_SHIFT_MASK ) && |
628 !(bevent->state & GDK_CONTROL_MASK ) && | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
629 vflist_row_is_selected(vf, fd)) |
9 | 630 { |
526 | 631 GtkTreeSelection *selection; |
632 | |
9 | 633 gtk_widget_grab_focus(widget); |
526 | 634 |
635 | |
636 /* returning FALSE and further processing of the event is needed for | |
637 correct operation of the expander, to show the sidecar files. | |
638 It however resets the selection of multiple files. With this condition | |
639 it should work for both cases */ | |
640 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget)); | |
641 return (gtk_tree_selection_count_selected_rows(selection) > 1); | |
9 | 642 } |
643 | |
644 #if 0 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
645 if (bevent->button == MOUSE_BUTTON_LEFT && bevent->type == GDK_2BUTTON_PRESS) |
9 | 646 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
647 if (vf->layout) layout_image_full_screen_start(vf->layout); |
9 | 648 } |
649 #endif | |
650 | |
651 return FALSE; | |
652 } | |
653 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
654 gint vflist_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) |
9 | 655 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
656 ViewFile *vf = data; |
9 | 657 GtkTreePath *tpath; |
658 GtkTreeIter iter; | |
659 FileData *fd = NULL; | |
660 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
661 if (bevent->button == MOUSE_BUTTON_MIDDLE) |
9 | 662 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
663 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
9 | 664 } |
665 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
666 if (bevent->button != MOUSE_BUTTON_LEFT && bevent->button != MOUSE_BUTTON_MIDDLE) |
9 | 667 { |
668 return TRUE; | |
669 } | |
670 | |
671 if ((bevent->x != 0 || bevent->y != 0) && | |
672 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(widget), bevent->x, bevent->y, | |
673 &tpath, NULL, NULL, NULL)) | |
674 { | |
675 GtkTreeModel *store; | |
676 | |
677 store = gtk_tree_view_get_model(GTK_TREE_VIEW(widget)); | |
678 gtk_tree_model_get_iter(store, &iter, tpath); | |
679 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
680 gtk_tree_path_free(tpath); | |
681 } | |
682 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
683 if (bevent->button == MOUSE_BUTTON_MIDDLE) |
9 | 684 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
685 if (fd && VFLIST_INFO(vf, click_fd) == fd) |
9 | 686 { |
687 GtkTreeSelection *selection; | |
688 | |
689 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget)); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
690 if (vflist_row_is_selected(vf, fd)) |
9 | 691 { |
692 gtk_tree_selection_unselect_iter(selection, &iter); | |
693 } | |
694 else | |
695 { | |
696 gtk_tree_selection_select_iter(selection, &iter); | |
697 } | |
698 } | |
699 return TRUE; | |
700 } | |
701 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
702 if (fd && VFLIST_INFO(vf, click_fd) == fd && |
9 | 703 !(bevent->state & GDK_SHIFT_MASK ) && |
704 !(bevent->state & GDK_CONTROL_MASK ) && | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
705 vflist_row_is_selected(vf, fd)) |
9 | 706 { |
707 GtkTreeSelection *selection; | |
708 | |
709 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget)); | |
710 gtk_tree_selection_unselect_all(selection); | |
711 gtk_tree_selection_select_iter(selection, &iter); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
712 vflist_move_cursor(vf, &iter); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
713 // return TRUE;// FIXME - expand |
9 | 714 } |
715 | |
716 return FALSE; | |
717 } | |
718 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
719 static void vflist_select_image(ViewFile *vf, FileData *sel_fd) |
9 | 720 { |
138 | 721 FileData *read_ahead_fd = NULL; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
722 gint row; |
144 | 723 FileData *cur_fd; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
724 if (!sel_fd) return; |
442 | 725 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
726 cur_fd = layout_image_get_fd(vf->layout); |
144 | 727 if (sel_fd == cur_fd) return; /* no change */ |
442 | 728 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
729 row = g_list_index(vf->list, sel_fd); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
730 // FIXME sidecar data |
9 | 731 |
334 | 732 if (sel_fd && options->image.enable_read_ahead && row >= 0) |
9 | 733 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
734 if (row > g_list_index(vf->list, cur_fd) && |
633 | 735 row + 1 < vf_count(vf, NULL)) |
9 | 736 { |
633 | 737 read_ahead_fd = vf_index_get_data(vf, row + 1); |
9 | 738 } |
739 else if (row > 0) | |
740 { | |
633 | 741 read_ahead_fd = vf_index_get_data(vf, row - 1); |
9 | 742 } |
743 } | |
744 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
745 layout_image_set_with_ahead(vf->layout, sel_fd, read_ahead_fd); |
9 | 746 } |
747 | |
748 static gint vflist_select_idle_cb(gpointer data) | |
749 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
750 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
751 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
752 if (!vf->layout) |
9 | 753 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
754 VFLIST_INFO(vf, select_idle_id) = -1; |
9 | 755 return FALSE; |
756 } | |
757 | |
633 | 758 vf_send_update(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
759 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
760 if (VFLIST_INFO(vf, select_fd)) |
9 | 761 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
762 vflist_select_image(vf, VFLIST_INFO(vf, select_fd)); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
763 VFLIST_INFO(vf, select_fd) = NULL; |
9 | 764 } |
765 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
766 VFLIST_INFO(vf, select_idle_id) = -1; |
9 | 767 return FALSE; |
768 } | |
769 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
770 static void vflist_select_idle_cancel(ViewFile *vf) |
9 | 771 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
772 if (VFLIST_INFO(vf, select_idle_id) != -1) g_source_remove(VFLIST_INFO(vf, select_idle_id)); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
773 VFLIST_INFO(vf, select_idle_id) = -1; |
9 | 774 } |
775 | |
776 static gboolean vflist_select_cb(GtkTreeSelection *selection, GtkTreeModel *store, GtkTreePath *tpath, | |
777 gboolean path_currently_selected, gpointer data) | |
778 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
779 ViewFile *vf = data; |
9 | 780 GtkTreeIter iter; |
781 | |
782 if (!path_currently_selected && | |
783 gtk_tree_model_get_iter(store, &iter, tpath)) | |
784 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
785 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &VFLIST_INFO(vf, select_fd), -1); |
9 | 786 } |
787 else | |
788 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
789 VFLIST_INFO(vf, select_fd) = NULL; |
9 | 790 } |
791 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
792 if (vf->layout && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
793 VFLIST_INFO(vf, select_idle_id) == -1) |
9 | 794 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
795 VFLIST_INFO(vf, select_idle_id) = g_idle_add(vflist_select_idle_cb, vf); |
9 | 796 } |
797 | |
798 return TRUE; | |
799 } | |
800 | |
801 /* | |
802 *----------------------------------------------------------------------------- | |
803 * misc | |
804 *----------------------------------------------------------------------------- | |
805 */ | |
806 | |
259 | 807 /* |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
808 static gboolean vflist_dummy_select_cb(GtkTreeSelection *selection, GtkTreeModel *store, GtkTreePath *tpath, |
442 | 809 gboolean path_currently_selected, gpointer data) |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
810 { |
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
811 return TRUE; |
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
812 } |
259 | 813 */ |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
814 |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
815 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
816 static void vflist_setup_iter(ViewFile *vf, GtkTreeStore *store, GtkTreeIter *iter, FileData *fd) |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
817 { |
167 | 818 int i; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
819 gchar *size; |
167 | 820 gchar *sidecars = NULL; |
821 | |
822 if (fd->sidecar_files) | |
596 | 823 sidecars = file_data_sc_list_to_string(fd); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
824 size = text_from_size(fd->size); |
442 | 825 |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
826 gtk_tree_store_set(store, iter, FILE_COLUMN_POINTER, fd, |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
827 FILE_COLUMN_THUMB, (VFLIST_INFO(vf, thumbs_enabled)) ? fd->pixbuf : NULL, |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
828 FILE_COLUMN_NAME, fd->name, |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
829 FILE_COLUMN_SIDECARS, sidecars, |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
830 FILE_COLUMN_SIZE, size, |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
831 FILE_COLUMN_DATE, text_from_time(fd->date), |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
832 FILE_COLUMN_COLOR, FALSE, -1); |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
833 for (i = 0; i < FILEDATA_MARKS_SIZE; i++) |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
834 gtk_tree_store_set(store, iter, FILE_COLUMN_MARKS + i, fd->marks[i], -1); |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
835 |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
836 g_free(size); |
167 | 837 if (sidecars) |
838 g_free(sidecars); | |
839 } | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
840 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
841 static void vflist_setup_iter_with_sidecars(ViewFile *vf, GtkTreeStore *store, GtkTreeIter *iter, FileData *fd) |
167 | 842 { |
843 GList *work; | |
844 GtkTreeIter s_iter; | |
845 gint valid; | |
846 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
847 vflist_setup_iter(vf, store, iter, fd); |
167 | 848 |
849 | |
442 | 850 /* this is almost the same code as in vflist_populate_view |
167 | 851 maybe it should be made more generic and used in both places */ |
442 | 852 |
853 | |
167 | 854 valid = gtk_tree_model_iter_children(GTK_TREE_MODEL(store), &s_iter, iter); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
855 |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
856 work = fd->sidecar_files; |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
857 while (work) |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
858 { |
167 | 859 gint match; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
860 FileData *sfd = work->data; |
167 | 861 gint done = FALSE; |
862 | |
863 while (!done) | |
864 { | |
865 FileData *old_sfd = NULL; | |
442 | 866 |
167 | 867 if (valid) |
868 { | |
869 gtk_tree_model_get(GTK_TREE_MODEL(store), &s_iter, FILE_COLUMN_POINTER, &old_sfd, -1); | |
442 | 870 |
167 | 871 if (sfd == old_sfd) |
872 { | |
873 match = 0; | |
874 } | |
875 else | |
876 { | |
877 match = filelist_sort_compare_filedata_full(sfd, old_sfd, SORT_NAME, TRUE); | |
878 } | |
879 } | |
442 | 880 |
167 | 881 else |
882 { | |
883 match = -1; | |
884 } | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
885 |
167 | 886 if (match < 0) |
887 { | |
888 GtkTreeIter new; | |
442 | 889 |
167 | 890 if (valid) |
891 { | |
892 gtk_tree_store_insert_before(store, &new, iter, &s_iter); | |
893 } | |
894 else | |
895 { | |
896 gtk_tree_store_append(store, &new, iter); | |
897 } | |
442 | 898 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
899 vflist_setup_iter(vf, store, &new, sfd); |
167 | 900 |
901 done = TRUE; | |
902 } | |
903 else if (match > 0) | |
904 { | |
905 valid = gtk_tree_store_remove(store, &s_iter); | |
906 } | |
907 else | |
908 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
909 vflist_setup_iter(vf, store, &s_iter, sfd); |
167 | 910 |
911 if (valid) valid = gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &s_iter); | |
912 | |
913 done = TRUE; | |
914 } | |
915 } | |
916 work = work->next; | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
917 } |
167 | 918 |
919 while (valid) | |
920 { | |
921 valid = gtk_tree_store_remove(store, &s_iter); | |
922 } | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
923 } |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
924 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
925 void vflist_sort_set(ViewFile *vf, SortType type, gint ascend) |
9 | 926 { |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
927 gint i; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
928 GHashTable *fd_idx_hash = g_hash_table_new(NULL, NULL); |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
929 gint *new_order; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
930 GtkTreeStore *store; |
9 | 931 GList *work; |
932 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
933 if (vf->sort_method == type && vf->sort_ascend == ascend) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
934 if (!vf->list) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
935 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
936 work = vf->list; |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
937 i = 0; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
938 while (work) |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
939 { |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
940 FileData *fd = work->data; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
941 g_hash_table_insert(fd_idx_hash, fd, GINT_TO_POINTER(i)); |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
942 i++; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
943 work = work->next; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
944 } |
9 | 945 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
946 vf->sort_method = type; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
947 vf->sort_ascend = ascend; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
948 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
949 vf->list = filelist_sort(vf->list, vf->sort_method, vf->sort_ascend); |
442 | 950 |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
951 new_order = g_malloc(i * sizeof(gint)); |
442 | 952 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
953 work = vf->list; |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
954 i = 0; |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
955 while (work) |
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
956 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
957 FileData *fd = work->data; |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
958 new_order[i] = GPOINTER_TO_INT(g_hash_table_lookup(fd_idx_hash, fd)); |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
959 i++; |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
960 work = work->next; |
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
961 } |
442 | 962 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
963 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
964 gtk_tree_store_reorder(store, NULL, new_order); |
442 | 965 |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
966 g_free(new_order); |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
967 g_hash_table_destroy(fd_idx_hash); |
9 | 968 } |
969 | |
970 /* | |
971 *----------------------------------------------------------------------------- | |
972 * thumb updates | |
973 *----------------------------------------------------------------------------- | |
974 */ | |
975 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
976 static gint vflist_thumb_next(ViewFile *vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
977 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
978 static void vflist_thumb_status(ViewFile *vf, gdouble val, const gchar *text) |
9 | 979 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
980 if (vf->func_thumb_status) |
9 | 981 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
982 vf->func_thumb_status(vf, val, text, vf->data_thumb_status); |
9 | 983 } |
984 } | |
985 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
986 static void vflist_thumb_cleanup(ViewFile *vf) |
9 | 987 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
988 vflist_thumb_status(vf, 0.0, NULL); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
989 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
990 vf->thumbs_count = 0; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
991 vf->thumbs_running = FALSE; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
992 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
993 thumb_loader_free(vf->thumbs_loader); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
994 vf->thumbs_loader = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
995 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
996 vf->thumbs_filedata = NULL; |
9 | 997 } |
998 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
999 static void vflist_thumb_stop(ViewFile *vf) |
9 | 1000 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1001 if (vf->thumbs_running) vflist_thumb_cleanup(vf); |
9 | 1002 } |
1003 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1004 static void vflist_thumb_do(ViewFile *vf, ThumbLoader *tl, FileData *fd) |
9 | 1005 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1006 GtkTreeStore *store; |
9 | 1007 GtkTreeIter iter; |
1008 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1009 if (!fd || vflist_find_row(vf, fd, &iter) < 0) return; |
9 | 1010 |
1011 if (fd->pixbuf) g_object_unref(fd->pixbuf); | |
1012 fd->pixbuf = thumb_loader_get_pixbuf(tl, TRUE); | |
1013 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1014 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1015 gtk_tree_store_set(store, &iter, FILE_COLUMN_THUMB, fd->pixbuf, -1); |
9 | 1016 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1017 vflist_thumb_status(vf, (gdouble)(vf->thumbs_count) / vflist_sidecar_list_count(vf->list), _("Loading thumbs...")); |
9 | 1018 } |
1019 | |
1020 static void vflist_thumb_error_cb(ThumbLoader *tl, gpointer data) | |
1021 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1022 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1023 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1024 if (vf->thumbs_filedata && vf->thumbs_loader == tl) |
9 | 1025 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1026 vflist_thumb_do(vf, tl, vf->thumbs_filedata); |
9 | 1027 } |
1028 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1029 while (vflist_thumb_next(vf)); |
9 | 1030 } |
1031 | |
1032 static void vflist_thumb_done_cb(ThumbLoader *tl, gpointer data) | |
1033 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1034 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1035 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1036 if (vf->thumbs_filedata && vf->thumbs_loader == tl) |
9 | 1037 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1038 vflist_thumb_do(vf, tl, vf->thumbs_filedata); |
9 | 1039 } |
1040 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1041 while (vflist_thumb_next(vf)); |
9 | 1042 } |
1043 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1044 static gint vflist_thumb_next(ViewFile *vf) |
9 | 1045 { |
1046 GtkTreePath *tpath; | |
1047 FileData *fd = NULL; | |
1048 | |
1049 /* first check the visible files */ | |
1050 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1051 if (GTK_WIDGET_REALIZED(vf->listview) && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1052 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vf->listview), 0, 0, &tpath, NULL, NULL, NULL)) |
9 | 1053 { |
1054 GtkTreeModel *store; | |
1055 GtkTreeIter iter; | |
1056 gint valid = TRUE; | |
1057 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1058 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1059 gtk_tree_model_get_iter(store, &iter, tpath); |
1060 gtk_tree_path_free(tpath); | |
1061 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1062 while (!fd && valid && tree_view_row_get_visibility(GTK_TREE_VIEW(vf->listview), &iter, FALSE) == 0) |
9 | 1063 { |
1064 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
1065 if (fd->pixbuf) fd = NULL; | |
1066 | |
1067 valid = gtk_tree_model_iter_next(store, &iter); | |
1068 } | |
1069 } | |
1070 | |
1071 /* then find first undone */ | |
1072 | |
1073 if (!fd) | |
1074 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1075 GList *work = vf->list; |
9 | 1076 while (work && !fd) |
1077 { | |
1078 FileData *fd_p = work->data; | |
442 | 1079 if (!fd_p->pixbuf) |
169 | 1080 fd = fd_p; |
1081 else | |
1082 { | |
1083 GList *work2 = fd_p->sidecar_files; | |
442 | 1084 |
169 | 1085 while (work2 && !fd) |
1086 { | |
442 | 1087 fd_p = work2->data; |
169 | 1088 if (!fd_p->pixbuf) fd = fd_p; |
1089 work2 = work2->next; | |
1090 } | |
1091 } | |
9 | 1092 work = work->next; |
1093 } | |
1094 } | |
1095 | |
1096 if (!fd) | |
1097 { | |
1098 /* done */ | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1099 vflist_thumb_cleanup(vf); |
9 | 1100 return FALSE; |
1101 } | |
1102 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1103 vf->thumbs_count++; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1104 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1105 vf->thumbs_filedata = fd; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1106 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1107 thumb_loader_free(vf->thumbs_loader); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1108 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1109 vf->thumbs_loader = thumb_loader_new(options->thumbnails.max_width, options->thumbnails.max_height); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1110 thumb_loader_set_callbacks(vf->thumbs_loader, |
9 | 1111 vflist_thumb_done_cb, |
1112 vflist_thumb_error_cb, | |
1113 NULL, | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1114 vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1115 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1116 if (!thumb_loader_start(vf->thumbs_loader, fd->path)) |
9 | 1117 { |
1118 /* set icon to unknown, continue */ | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1119 DEBUG_1("thumb loader start failed %s", vf->thumbs_loader->path); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1120 vflist_thumb_do(vf, vf->thumbs_loader, fd); |
9 | 1121 |
1122 return TRUE; | |
1123 } | |
1124 | |
1125 return FALSE; | |
1126 } | |
1127 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1128 static void vflist_thumb_update(ViewFile *vf) |
9 | 1129 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1130 vflist_thumb_stop(vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1131 if (!VFLIST_INFO(vf, thumbs_enabled)) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1132 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1133 vflist_thumb_status(vf, 0.0, _("Loading thumbs...")); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1134 vf->thumbs_running = TRUE; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1135 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1136 while (vflist_thumb_next(vf)); |
9 | 1137 } |
1138 | |
1139 /* | |
1140 *----------------------------------------------------------------------------- | |
1141 * row stuff | |
1142 *----------------------------------------------------------------------------- | |
1143 */ | |
1144 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1145 FileData *vflist_index_get_data(ViewFile *vf, gint row) |
9 | 1146 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1147 return g_list_nth_data(vf->list, row); |
9 | 1148 } |
1149 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1150 static gint vflist_row_by_path(ViewFile *vf, const gchar *path, FileData **fd) |
9 | 1151 { |
1152 gint p = 0; | |
1153 GList *work; | |
1154 | |
1155 if (!path) return -1; | |
1156 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1157 work = vf->list; |
9 | 1158 while (work) |
1159 { | |
1160 FileData *fd_n = work->data; | |
1161 if (strcmp(path, fd_n->path) == 0) | |
1162 { | |
1163 if (fd) *fd = fd_n; | |
1164 return p; | |
1165 } | |
1166 work = work->next; | |
1167 p++; | |
1168 } | |
1169 | |
1170 if (fd) *fd = NULL; | |
1171 return -1; | |
1172 } | |
1173 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1174 gint vflist_index_by_path(ViewFile *vf, const gchar *path) |
9 | 1175 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1176 return vflist_row_by_path(vf, path, NULL); |
9 | 1177 } |
1178 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1179 gint vflist_count(ViewFile *vf, gint64 *bytes) |
9 | 1180 { |
1181 if (bytes) | |
1182 { | |
1183 gint64 b = 0; | |
1184 GList *work; | |
1185 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1186 work = vf->list; |
9 | 1187 while (work) |
1188 { | |
1189 FileData *fd = work->data; | |
1190 work = work->next; | |
1191 b += fd->size; | |
1192 } | |
1193 | |
1194 *bytes = b; | |
1195 } | |
1196 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1197 return g_list_length(vf->list); |
9 | 1198 } |
1199 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1200 GList *vflist_get_list(ViewFile *vf) |
9 | 1201 { |
1202 GList *list = NULL; | |
1203 GList *work; | |
1204 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1205 work = vf->list; |
9 | 1206 while (work) |
1207 { | |
1208 FileData *fd = work->data; | |
1209 work = work->next; | |
1210 | |
138 | 1211 list = g_list_prepend(list, file_data_ref(fd)); |
9 | 1212 } |
1213 | |
1214 return g_list_reverse(list); | |
1215 } | |
1216 | |
1217 /* | |
1218 *----------------------------------------------------------------------------- | |
1219 * selections | |
1220 *----------------------------------------------------------------------------- | |
1221 */ | |
1222 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1223 static gint vflist_row_is_selected(ViewFile *vf, FileData *fd) |
9 | 1224 { |
1225 GtkTreeModel *store; | |
1226 GtkTreeSelection *selection; | |
1227 GList *slist; | |
1228 GList *work; | |
1229 gint found = FALSE; | |
1230 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1231 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1232 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1233 work = slist; | |
1234 while (!found && work) | |
1235 { | |
1236 GtkTreePath *tpath = work->data; | |
1237 FileData *fd_n; | |
1238 GtkTreeIter iter; | |
1239 | |
1240 gtk_tree_model_get_iter(store, &iter, tpath); | |
1241 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd_n, -1); | |
1242 if (fd_n == fd) found = TRUE; | |
1243 work = work->next; | |
1244 } | |
1245 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1246 g_list_free(slist); | |
1247 | |
1248 return found; | |
1249 } | |
1250 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1251 gint vflist_index_is_selected(ViewFile *vf, gint row) |
9 | 1252 { |
1253 FileData *fd; | |
1254 | |
633 | 1255 fd = vf_index_get_data(vf, row); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1256 return vflist_row_is_selected(vf, fd); |
9 | 1257 } |
1258 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1259 gint vflist_selection_count(ViewFile *vf, gint64 *bytes) |
9 | 1260 { |
1261 GtkTreeModel *store; | |
1262 GtkTreeSelection *selection; | |
1263 GList *slist; | |
1264 gint count; | |
1265 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1266 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1267 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1268 | |
1269 if (bytes) | |
1270 { | |
1271 gint64 b = 0; | |
1272 GList *work; | |
1273 | |
1274 work = slist; | |
1275 while (work) | |
1276 { | |
1277 GtkTreePath *tpath = work->data; | |
1278 GtkTreeIter iter; | |
1279 FileData *fd; | |
1280 | |
1281 gtk_tree_model_get_iter(store, &iter, tpath); | |
1282 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
1283 b += fd->size; | |
1284 | |
1285 work = work->next; | |
1286 } | |
1287 | |
1288 *bytes = b; | |
1289 } | |
1290 | |
1291 count = g_list_length(slist); | |
1292 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1293 g_list_free(slist); | |
1294 | |
1295 return count; | |
1296 } | |
1297 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1298 GList *vflist_selection_get_list(ViewFile *vf) |
9 | 1299 { |
1300 GtkTreeModel *store; | |
1301 GtkTreeSelection *selection; | |
1302 GList *slist; | |
1303 GList *list = NULL; | |
1304 GList *work; | |
1305 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1306 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1307 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1308 work = slist; | |
1309 while (work) | |
1310 { | |
1311 GtkTreePath *tpath = work->data; | |
1312 FileData *fd; | |
1313 GtkTreeIter iter; | |
1314 | |
1315 gtk_tree_model_get_iter(store, &iter, tpath); | |
1316 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
1317 | |
138 | 1318 list = g_list_prepend(list, file_data_ref(fd)); |
9 | 1319 |
1320 work = work->next; | |
1321 } | |
1322 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1323 g_list_free(slist); | |
1324 | |
1325 return g_list_reverse(list); | |
1326 } | |
1327 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1328 GList *vflist_selection_get_list_by_index(ViewFile *vf) |
9 | 1329 { |
1330 GtkTreeModel *store; | |
1331 GtkTreeSelection *selection; | |
1332 GList *slist; | |
1333 GList *list = NULL; | |
1334 GList *work; | |
1335 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1336 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1337 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1338 work = slist; | |
1339 while (work) | |
1340 { | |
1341 GtkTreePath *tpath = work->data; | |
1342 FileData *fd; | |
1343 GtkTreeIter iter; | |
1344 | |
1345 gtk_tree_model_get_iter(store, &iter, tpath); | |
1346 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
1347 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1348 list = g_list_prepend(list, GINT_TO_POINTER(g_list_index(vf->list, fd))); |
9 | 1349 |
1350 work = work->next; | |
1351 } | |
1352 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1353 g_list_free(slist); | |
1354 | |
1355 return g_list_reverse(list); | |
1356 } | |
1357 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1358 void vflist_select_all(ViewFile *vf) |
9 | 1359 { |
1360 GtkTreeSelection *selection; | |
1361 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1362 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1363 gtk_tree_selection_select_all(selection); |
1364 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1365 VFLIST_INFO(vf, select_fd) = NULL; |
9 | 1366 } |
1367 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1368 void vflist_select_none(ViewFile *vf) |
9 | 1369 { |
1370 GtkTreeSelection *selection; | |
1371 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1372 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1373 gtk_tree_selection_unselect_all(selection); |
1374 } | |
1375 | |
601 | 1376 static gboolean tree_model_iter_prev(GtkTreeModel *store, GtkTreeIter *iter) |
1377 { | |
1378 GtkTreePath *tpath; | |
1379 gboolean result; | |
1380 | |
1381 tpath = gtk_tree_model_get_path(store, iter); | |
1382 result = gtk_tree_path_prev(tpath); | |
1383 if (result) | |
1384 gtk_tree_model_get_iter(store, iter, tpath); | |
1385 | |
1386 gtk_tree_path_free(tpath); | |
1387 | |
1388 return result; | |
1389 } | |
1390 | |
1391 static gboolean tree_model_get_iter_last(GtkTreeModel *store, GtkTreeIter *iter) | |
1392 { | |
1393 if (!gtk_tree_model_get_iter_first(store, iter)) | |
1394 return FALSE; | |
1395 | |
1396 while (TRUE) | |
1397 { | |
1398 GtkTreeIter next = *iter; | |
1399 | |
1400 if (gtk_tree_model_iter_next(store, &next)) | |
1401 *iter = next; | |
1402 else | |
1403 break; | |
1404 } | |
1405 | |
1406 return TRUE; | |
1407 } | |
1408 | |
1409 void vflist_select_invert(ViewFile *vf) | |
1410 { | |
1411 GtkTreeIter iter; | |
1412 GtkTreeSelection *selection; | |
1413 GtkTreeModel *store; | |
1414 gboolean valid; | |
1415 | |
1416 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); | |
1417 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); | |
1418 | |
1419 /* Backward iteration prevents scrolling to the end of the list, | |
1420 * it scrolls to the first selected row instead. */ | |
1421 valid = tree_model_get_iter_last(store, &iter); | |
1422 | |
1423 while (valid) | |
1424 { | |
1425 gint selected = gtk_tree_selection_iter_is_selected(selection, &iter); | |
1426 | |
1427 if (selected) | |
1428 gtk_tree_selection_unselect_iter(selection, &iter); | |
1429 else | |
1430 gtk_tree_selection_select_iter(selection, &iter); | |
1431 | |
1432 valid = tree_model_iter_prev(store, &iter); | |
1433 } | |
1434 } | |
1435 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1436 void vflist_select_by_fd(ViewFile *vf, FileData *fd) |
138 | 1437 { |
9 | 1438 GtkTreeIter iter; |
1439 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1440 if (vflist_find_row(vf, fd, &iter) < 0) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1441 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1442 tree_view_row_make_visible(GTK_TREE_VIEW(vf->listview), &iter, TRUE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1443 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1444 if (!vflist_row_is_selected(vf, fd)) |
9 | 1445 { |
1446 GtkTreeSelection *selection; | |
1447 GtkTreeModel *store; | |
1448 GtkTreePath *tpath; | |
1449 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1450 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1451 gtk_tree_selection_unselect_all(selection); |
1452 gtk_tree_selection_select_iter(selection, &iter); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1453 vflist_move_cursor(vf, &iter); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1454 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1455 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1456 tpath = gtk_tree_model_get_path(store, &iter); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1457 gtk_tree_view_set_cursor(GTK_TREE_VIEW(vf->listview), tpath, NULL, FALSE); |
9 | 1458 gtk_tree_path_free(tpath); |
1459 } | |
1460 } | |
1461 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1462 void vflist_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode) |
150 | 1463 { |
1464 GtkTreeModel *store; | |
1465 GtkTreeIter iter; | |
1466 GtkTreeSelection *selection; | |
1467 gint valid; | |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1468 gint n = mark - 1; |
442 | 1469 |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1470 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
150 | 1471 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1472 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1473 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
442 | 1474 |
150 | 1475 valid = gtk_tree_model_get_iter_first(store, &iter); |
1476 while (valid) | |
1477 { | |
1478 FileData *fd; | |
161 | 1479 gboolean mark_val, selected; |
150 | 1480 gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, FILE_COLUMN_POINTER, &fd, -1); |
442 | 1481 |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1482 mark_val = fd->marks[n]; |
161 | 1483 selected = gtk_tree_selection_iter_is_selected(selection, &iter); |
442 | 1484 |
1485 switch (mode) | |
161 | 1486 { |
1487 case MTS_MODE_SET: selected = mark_val; | |
1488 break; | |
1489 case MTS_MODE_OR: selected = mark_val | selected; | |
1490 break; | |
1491 case MTS_MODE_AND: selected = mark_val & selected; | |
1492 break; | |
1493 case MTS_MODE_MINUS: selected = !mark_val & selected; | |
1494 break; | |
1495 } | |
442 | 1496 |
161 | 1497 if (selected) |
150 | 1498 gtk_tree_selection_select_iter(selection, &iter); |
161 | 1499 else |
1500 gtk_tree_selection_unselect_iter(selection, &iter); | |
150 | 1501 |
1502 valid = gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &iter); | |
1503 } | |
1504 } | |
1505 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1506 void vflist_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode) |
150 | 1507 { |
1508 GtkTreeModel *store; | |
1509 GtkTreeSelection *selection; | |
1510 GList *slist; | |
1511 GList *work; | |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1512 gint n = mark - 1; |
150 | 1513 |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1514 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
150 | 1515 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1516 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
150 | 1517 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1518 work = slist; | |
1519 while (work) | |
1520 { | |
1521 GtkTreePath *tpath = work->data; | |
1522 FileData *fd; | |
1523 GtkTreeIter iter; | |
1524 | |
1525 gtk_tree_model_get_iter(store, &iter, tpath); | |
1526 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
442 | 1527 |
161 | 1528 switch (mode) |
1529 { | |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1530 case STM_MODE_SET: fd->marks[n] = 1; |
161 | 1531 break; |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1532 case STM_MODE_RESET: fd->marks[n] = 0; |
161 | 1533 break; |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1534 case STM_MODE_TOGGLE: fd->marks[n] = !fd->marks[n]; |
161 | 1535 break; |
1536 } | |
442 | 1537 |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1538 gtk_tree_store_set(GTK_TREE_STORE(store), &iter, FILE_COLUMN_MARKS + n, fd->marks[n], -1); |
150 | 1539 |
1540 work = work->next; | |
1541 } | |
1542 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1543 g_list_free(slist); | |
1544 } | |
1545 | |
9 | 1546 /* |
1547 *----------------------------------------------------------------------------- | |
1548 * core (population) | |
1549 *----------------------------------------------------------------------------- | |
1550 */ | |
1551 | |
1552 static void vflist_listview_set_height(GtkWidget *listview, gint thumb) | |
1553 { | |
1554 GtkTreeViewColumn *column; | |
1555 GtkCellRenderer *cell; | |
1556 GList *list; | |
1557 | |
1558 column = gtk_tree_view_get_column(GTK_TREE_VIEW(listview), FILE_COLUMN_THUMB - 1); | |
1559 if (!column) return; | |
1560 | |
333 | 1561 gtk_tree_view_column_set_fixed_width(column, ((thumb) ? options->thumbnails.max_width : 4) + 10); |
9 | 1562 |
1563 list = gtk_tree_view_column_get_cell_renderers(column); | |
1564 if (!list) return; | |
1565 cell = list->data; | |
1566 g_list_free(list); | |
1567 | |
333 | 1568 g_object_set(G_OBJECT(cell), "height", (thumb) ? options->thumbnails.max_height : -1, NULL); |
9 | 1569 gtk_tree_view_columns_autosize(GTK_TREE_VIEW(listview)); |
1570 } | |
1571 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1572 static void vflist_populate_view(ViewFile *vf) |
9 | 1573 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1574 GtkTreeStore *store; |
9 | 1575 GtkTreeIter iter; |
1576 gint thumbs; | |
1577 GList *work; | |
1578 GtkTreeRowReference *visible_row = NULL; | |
1579 GtkTreePath *tpath; | |
1580 gint valid; | |
1581 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1582 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1583 thumbs = VFLIST_INFO(vf, thumbs_enabled); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1584 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1585 vflist_thumb_stop(vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1586 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1587 if (!vf->list) |
9 | 1588 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1589 gtk_tree_store_clear(store); |
633 | 1590 vf_send_update(vf); |
9 | 1591 return; |
1592 } | |
1593 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1594 if (GTK_WIDGET_REALIZED(vf->listview) && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1595 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vf->listview), 0, 0, &tpath, NULL, NULL, NULL)) |
9 | 1596 { |
1597 visible_row = gtk_tree_row_reference_new(GTK_TREE_MODEL(store), tpath); | |
1598 gtk_tree_path_free(tpath); | |
1599 } | |
1600 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1601 vflist_listview_set_height(vf->listview, thumbs); |
9 | 1602 |
1603 valid = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter); | |
1604 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1605 work = vf->list; |
9 | 1606 while (work) |
1607 { | |
1608 gint match; | |
1609 FileData *fd = work->data; | |
1610 gint done = FALSE; | |
1611 | |
1612 while (!done) | |
1613 { | |
1614 FileData *old_fd = NULL; | |
442 | 1615 |
9 | 1616 if (valid) |
1617 { | |
1618 gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, FILE_COLUMN_POINTER, &old_fd, -1); | |
442 | 1619 |
167 | 1620 if (fd == old_fd) |
1621 { | |
1622 match = 0; | |
1623 } | |
1624 else | |
1625 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1626 match = filelist_sort_compare_filedata_full(fd, old_fd, vf->sort_method, vf->sort_ascend); |
167 | 1627 if (match == 0) |
1628 match = -1; /* probably should not happen*/ | |
1629 } | |
9 | 1630 } |
442 | 1631 |
9 | 1632 else |
1633 { | |
1634 match = -1; | |
1635 } | |
1636 | |
1637 if (match < 0) | |
1638 { | |
1639 GtkTreeIter new; | |
442 | 1640 |
9 | 1641 if (valid) |
1642 { | |
167 | 1643 gtk_tree_store_insert_before(store, &new, NULL, &iter); |
9 | 1644 } |
1645 else | |
1646 { | |
167 | 1647 gtk_tree_store_append(store, &new, NULL); |
9 | 1648 } |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1649 vflist_setup_iter_with_sidecars(vf, store, &new, fd); |
9 | 1650 |
1651 done = TRUE; | |
1652 } | |
1653 else if (match > 0) | |
1654 { | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1655 valid = gtk_tree_store_remove(store, &iter); |
9 | 1656 } |
1657 else | |
1658 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1659 vflist_setup_iter_with_sidecars(vf, store, &iter, fd); |
9 | 1660 |
1661 if (valid) valid = gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &iter); | |
1662 | |
1663 done = TRUE; | |
1664 } | |
1665 } | |
1666 work = work->next; | |
1667 } | |
1668 | |
1669 while (valid) | |
1670 { | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1671 valid = gtk_tree_store_remove(store, &iter); |
9 | 1672 } |
1673 | |
1674 if (visible_row) | |
1675 { | |
1676 if (gtk_tree_row_reference_valid(visible_row)) | |
1677 { | |
1678 tpath = gtk_tree_row_reference_get_path(visible_row); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1679 gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(vf->listview), tpath, NULL, TRUE, 0.0, 0.0); |
9 | 1680 gtk_tree_path_free(tpath); |
1681 } | |
1682 gtk_tree_row_reference_free(visible_row); | |
1683 } | |
1684 | |
633 | 1685 vf_send_update(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1686 vflist_thumb_update(vf); |
9 | 1687 } |
1688 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1689 gint vflist_refresh(ViewFile *vf) |
9 | 1690 { |
1691 GList *old_list; | |
1692 gint ret = TRUE; | |
1693 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1694 old_list = vf->list; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1695 vf->list = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1696 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1697 if (vf->path) |
9 | 1698 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1699 ret = filelist_read(vf->path, &vf->list, NULL); |
9 | 1700 } |
1701 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1702 vf->list = filelist_sort(vf->list, vf->sort_method, vf->sort_ascend); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1703 vflist_populate_view(vf); |
9 | 1704 |
1705 filelist_free(old_list); | |
1706 | |
1707 return ret; | |
1708 } | |
1709 | |
1710 /* this overrides the low default of a GtkCellRenderer from 100 to CELL_HEIGHT_OVERRIDE, something sane for our purposes */ | |
1711 | |
1712 #define CELL_HEIGHT_OVERRIDE 512 | |
1713 | |
1714 static void cell_renderer_height_override(GtkCellRenderer *renderer) | |
1715 { | |
1716 GParamSpec *spec; | |
1717 | |
1718 spec = g_object_class_find_property(G_OBJECT_GET_CLASS(G_OBJECT(renderer)), "height"); | |
1719 if (spec && G_IS_PARAM_SPEC_INT(spec)) | |
1720 { | |
1721 GParamSpecInt *spec_int; | |
1722 | |
1723 spec_int = G_PARAM_SPEC_INT(spec); | |
1724 if (spec_int->maximum < CELL_HEIGHT_OVERRIDE) spec_int->maximum = CELL_HEIGHT_OVERRIDE; | |
1725 } | |
1726 } | |
1727 | |
1728 static GdkColor *vflist_listview_color_shifted(GtkWidget *widget) | |
1729 { | |
1730 static GdkColor color; | |
1731 static GtkWidget *done = NULL; | |
1732 | |
1733 if (done != widget) | |
1734 { | |
1735 GtkStyle *style; | |
1736 | |
1737 style = gtk_widget_get_style(widget); | |
1738 memcpy(&color, &style->base[GTK_STATE_NORMAL], sizeof(color)); | |
1739 shift_color(&color, -1, 0); | |
1740 done = widget; | |
1741 } | |
1742 | |
1743 return &color; | |
1744 } | |
1745 | |
1746 static void vflist_listview_color_cb(GtkTreeViewColumn *tree_column, GtkCellRenderer *cell, | |
1747 GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data) | |
1748 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1749 ViewFile *vf = data; |
9 | 1750 gboolean set; |
1751 | |
1752 gtk_tree_model_get(tree_model, iter, FILE_COLUMN_COLOR, &set, -1); | |
1753 g_object_set(G_OBJECT(cell), | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1754 "cell-background-gdk", vflist_listview_color_shifted(vf->listview), |
9 | 1755 "cell-background-set", set, NULL); |
1756 } | |
1757 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1758 static void vflist_listview_add_column(ViewFile *vf, gint n, const gchar *title, gint image, gint right_justify, gint expand) |
9 | 1759 { |
1760 GtkTreeViewColumn *column; | |
1761 GtkCellRenderer *renderer; | |
1762 | |
1763 column = gtk_tree_view_column_new(); | |
1764 gtk_tree_view_column_set_title(column, title); | |
1765 gtk_tree_view_column_set_min_width(column, 4); | |
1766 | |
1767 if (!image) | |
1768 { | |
149 | 1769 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY); |
9 | 1770 renderer = gtk_cell_renderer_text_new(); |
1771 if (right_justify) | |
1772 { | |
1773 g_object_set(G_OBJECT(renderer), "xalign", 1.0, NULL); | |
1774 } | |
1775 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
1776 gtk_tree_view_column_add_attribute(column, renderer, "text", n); | |
149 | 1777 if (expand) |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1778 gtk_tree_view_column_set_expand(column, TRUE); |
149 | 1779 } |
9 | 1780 else |
1781 { | |
1782 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); | |
1783 renderer = gtk_cell_renderer_pixbuf_new(); | |
1784 cell_renderer_height_override(renderer); | |
1785 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
1786 gtk_tree_view_column_add_attribute(column, renderer, "pixbuf", n); | |
1787 } | |
1788 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1789 gtk_tree_view_column_set_cell_data_func(column, renderer, vflist_listview_color_cb, vf, NULL); |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
1790 g_object_set_data(G_OBJECT(column), "column_store_idx", GUINT_TO_POINTER(n)); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
1791 g_object_set_data(G_OBJECT(renderer), "column_store_idx", GUINT_TO_POINTER(n)); |
9 | 1792 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1793 gtk_tree_view_append_column(GTK_TREE_VIEW(vf->listview), column); |
9 | 1794 } |
1795 | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1796 static void vflist_listview_mark_toggled(GtkCellRendererToggle *cell, gchar *path_str, GtkTreeStore *store) |
132 | 1797 { |
149 | 1798 GtkTreePath *path = gtk_tree_path_new_from_string(path_str); |
1799 GtkTreeIter iter; | |
1800 FileData *fd; | |
1801 gboolean mark; | |
1802 guint col_idx; | |
442 | 1803 |
149 | 1804 if (!path || !gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, path)) |
1805 return; | |
132 | 1806 |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1807 col_idx = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(cell), "column_store_idx")); |
442 | 1808 |
149 | 1809 g_assert(col_idx >= FILE_COLUMN_MARKS && col_idx <= FILE_COLUMN_MARKS_LAST); |
442 | 1810 |
149 | 1811 gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, FILE_COLUMN_POINTER, &fd, col_idx, &mark, -1); |
150 | 1812 mark = !mark; |
149 | 1813 fd->marks[col_idx - FILE_COLUMN_MARKS] = mark; |
442 | 1814 |
149 | 1815 gtk_tree_store_set(store, &iter, col_idx, mark, -1); |
1816 gtk_tree_path_free(path); | |
132 | 1817 } |
1818 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1819 static void vflist_listview_add_column_toggle(ViewFile *vf, gint n, const gchar *title) |
132 | 1820 { |
149 | 1821 GtkTreeViewColumn *column; |
1822 GtkCellRenderer *renderer; | |
1823 GtkTreeStore *store; | |
1824 gint index; | |
442 | 1825 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1826 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
132 | 1827 |
149 | 1828 renderer = gtk_cell_renderer_toggle_new(); |
1829 column = gtk_tree_view_column_new_with_attributes(title, renderer, "active", n, NULL); | |
132 | 1830 |
149 | 1831 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
1832 g_object_set_data(G_OBJECT(column), "column_store_idx", GUINT_TO_POINTER(n)); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
1833 g_object_set_data(G_OBJECT(renderer), "column_store_idx", GUINT_TO_POINTER(n)); |
442 | 1834 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1835 index = gtk_tree_view_append_column(GTK_TREE_VIEW(vf->listview), column); |
149 | 1836 gtk_tree_view_column_set_fixed_width(column, 16); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1837 gtk_tree_view_column_set_visible(column, vf->marks_enabled); |
132 | 1838 |
442 | 1839 |
149 | 1840 g_signal_connect(G_OBJECT(renderer), "toggled", G_CALLBACK(vflist_listview_mark_toggled), store); |
132 | 1841 } |
1842 | |
9 | 1843 /* |
1844 *----------------------------------------------------------------------------- | |
1845 * base | |
1846 *----------------------------------------------------------------------------- | |
1847 */ | |
1848 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1849 gint vflist_set_path(ViewFile *vf, const gchar *path) |
9 | 1850 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1851 GtkTreeStore *store; |
9 | 1852 |
1853 if (!path) return FALSE; | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1854 if (vf->path && strcmp(path, vf->path) == 0) return TRUE; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1855 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1856 g_free(vf->path); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1857 vf->path = g_strdup(path); |
9 | 1858 |
1859 /* force complete reload */ | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1860 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1861 gtk_tree_store_clear(store); |
9 | 1862 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1863 filelist_free(vf->list); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1864 vf->list = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1865 |
633 | 1866 return vf_refresh(vf); |
9 | 1867 } |
1868 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1869 void vflist_destroy_cb(GtkWidget *widget, gpointer data) |
9 | 1870 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1871 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1872 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1873 vflist_select_idle_cancel(vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1874 vflist_thumb_stop(vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1875 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1876 filelist_free(vf->list); |
9 | 1877 } |
1878 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1879 ViewFile *vflist_new(ViewFile *vf, const gchar *path) |
9 | 1880 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1881 GtkTreeStore *store; |
9 | 1882 GtkTreeSelection *selection; |
1883 | |
149 | 1884 GType flist_types[FILE_COLUMN_COUNT]; |
1885 int i; | |
442 | 1886 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1887 vf->info = g_new0(ViewFileInfoList, 1); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1888 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1889 VFLIST_INFO(vf, click_fd) = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1890 VFLIST_INFO(vf, select_fd) = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1891 VFLIST_INFO(vf, thumbs_enabled) = FALSE; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1892 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1893 VFLIST_INFO(vf, select_idle_id) = -1; |
9 | 1894 |
139 | 1895 flist_types[FILE_COLUMN_POINTER] = G_TYPE_POINTER; |
1896 flist_types[FILE_COLUMN_THUMB] = GDK_TYPE_PIXBUF; | |
1897 flist_types[FILE_COLUMN_NAME] = G_TYPE_STRING; | |
1898 flist_types[FILE_COLUMN_SIDECARS] = G_TYPE_STRING; | |
1899 flist_types[FILE_COLUMN_SIZE] = G_TYPE_STRING; | |
1900 flist_types[FILE_COLUMN_DATE] = G_TYPE_STRING; | |
1901 flist_types[FILE_COLUMN_COLOR] = G_TYPE_BOOLEAN; | |
1902 for (i = FILE_COLUMN_MARKS; i < FILE_COLUMN_MARKS + FILEDATA_MARKS_SIZE; i++) | |
1903 flist_types[i] = G_TYPE_BOOLEAN; | |
132 | 1904 |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1905 store = gtk_tree_store_newv(FILE_COLUMN_COUNT, flist_types); |
442 | 1906 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1907 vf->listview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store)); |
9 | 1908 g_object_unref(store); |
1909 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1910 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1911 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_MULTIPLE); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1912 gtk_tree_selection_set_select_function(selection, vflist_select_cb, vf, NULL); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1913 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1914 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(vf->listview), FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1915 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(vf->listview), FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1916 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1917 vflist_listview_add_column(vf, FILE_COLUMN_THUMB, "", TRUE, FALSE, FALSE); |
9 | 1918 |
518 | 1919 for (i = 0; i < FILEDATA_MARKS_SIZE; i++) |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1920 vflist_listview_add_column_toggle(vf, i + FILE_COLUMN_MARKS, ""); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1921 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1922 vflist_listview_add_column(vf, FILE_COLUMN_NAME, _("Name"), FALSE, FALSE, FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1923 vflist_listview_add_column(vf, FILE_COLUMN_SIDECARS, _("SC"), FALSE, FALSE, FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1924 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1925 vflist_listview_add_column(vf, FILE_COLUMN_SIZE, _("Size"), FALSE, TRUE, FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1926 vflist_listview_add_column(vf, FILE_COLUMN_DATE, _("Date"), FALSE, TRUE, FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1927 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1928 return vf; |
9 | 1929 } |
1930 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1931 void vflist_thumb_set(ViewFile *vf, gint enable) |
9 | 1932 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1933 if (VFLIST_INFO(vf, thumbs_enabled) == enable) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1934 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1935 VFLIST_INFO(vf, thumbs_enabled) = enable; |
633 | 1936 if (vf->layout) vf_refresh(vf); |
9 | 1937 } |
1938 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1939 void vflist_marks_set(ViewFile *vf, gint enable) |
132 | 1940 { |
149 | 1941 GList *columns, *work; |
442 | 1942 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1943 if (vf->marks_enabled == enable) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1944 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1945 vf->marks_enabled = enable; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1946 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1947 columns = gtk_tree_view_get_columns(GTK_TREE_VIEW(vf->listview)); |
442 | 1948 |
149 | 1949 work = columns; |
1950 while (work) | |
1951 { | |
1952 GtkTreeViewColumn *column = work->data; | |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1953 gint col_idx = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(column), "column_store_idx")); |
149 | 1954 work = work->next; |
442 | 1955 |
1956 if (col_idx <= FILE_COLUMN_MARKS_LAST && col_idx >= FILE_COLUMN_MARKS) | |
149 | 1957 gtk_tree_view_column_set_visible(column, enable); |
1958 } | |
442 | 1959 |
149 | 1960 g_list_free(columns); |
633 | 1961 //vf_refresh(vf); |
132 | 1962 } |
1963 | |
9 | 1964 /* |
1965 *----------------------------------------------------------------------------- | |
1966 * maintenance (for rename, move, remove) | |
1967 *----------------------------------------------------------------------------- | |
1968 */ | |
1969 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1970 static gint vflist_maint_find_closest(ViewFile *vf, gint row, gint count, GList *ignore_list) |
9 | 1971 { |
1972 GList *list = NULL; | |
1973 GList *work; | |
1974 gint rev = row - 1; | |
1975 row ++; | |
1976 | |
1977 work = ignore_list; | |
1978 while (work) | |
1979 { | |
633 | 1980 gint f = vf_index_by_path(vf, work->data); |
9 | 1981 if (f >= 0) list = g_list_prepend(list, GINT_TO_POINTER(f)); |
1982 work = work->next; | |
1983 } | |
1984 | |
1985 while (list) | |
1986 { | |
1987 gint c = TRUE; | |
1988 work = list; | |
1989 while (work && c) | |
1990 { | |
1991 gpointer p = work->data; | |
1992 work = work->next; | |
1993 if (row == GPOINTER_TO_INT(p)) | |
1994 { | |
1995 row++; | |
1996 c = FALSE; | |
1997 } | |
1998 if (rev == GPOINTER_TO_INT(p)) | |
1999 { | |
2000 rev--; | |
2001 c = FALSE; | |
2002 } | |
2003 if (!c) list = g_list_remove(list, p); | |
2004 } | |
2005 if (c && list) | |
2006 { | |
2007 g_list_free(list); | |
2008 list = NULL; | |
2009 } | |
2010 } | |
2011 if (row > count - 1) | |
2012 { | |
2013 if (rev < 0) | |
2014 return -1; | |
2015 else | |
2016 return rev; | |
2017 } | |
2018 else | |
2019 { | |
2020 return row; | |
2021 } | |
2022 } | |
2023 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2024 gint vflist_maint_renamed(ViewFile *vf, FileData *fd) |
9 | 2025 { |
2026 gint ret = FALSE; | |
2027 gchar *source_base; | |
2028 gchar *dest_base; | |
2029 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2030 if (g_list_index(vf->list, fd) < 0) return FALSE; |
9 | 2031 |
138 | 2032 source_base = remove_level_from_path(fd->change->source); |
2033 dest_base = remove_level_from_path(fd->change->dest); | |
9 | 2034 |
2035 | |
2036 if (strcmp(source_base, dest_base) == 0) | |
2037 { | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
2038 GtkTreeStore *store; |
9 | 2039 GtkTreeIter iter; |
2040 GtkTreeIter position; | |
2041 gint old_row; | |
2042 gint n; | |
2043 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2044 old_row = g_list_index(vf->list, fd); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2045 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2046 vf->list = g_list_remove(vf->list, fd); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2047 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2048 vf->list = filelist_insert_sort(vf->list, fd, vf->sort_method, vf->sort_ascend); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2049 n = g_list_index(vf->list, fd); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2050 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2051 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2052 if (vflist_find_row(vf, fd, &iter) >= 0 && |
9 | 2053 gtk_tree_model_iter_nth_child(GTK_TREE_MODEL(store), &position, NULL, n)) |
2054 { | |
2055 if (old_row >= n) | |
2056 { | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
2057 gtk_tree_store_move_before(store, &iter, &position); |
9 | 2058 } |
2059 else | |
2060 { | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
2061 gtk_tree_store_move_after(store, &iter, &position); |
9 | 2062 } |
2063 } | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
2064 gtk_tree_store_set(store, &iter, FILE_COLUMN_NAME, fd->name, -1); |
9 | 2065 |
2066 ret = TRUE; | |
2067 } | |
2068 else | |
2069 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2070 ret = vflist_maint_removed(vf, fd, NULL); |
9 | 2071 } |
2072 | |
2073 g_free(source_base); | |
2074 g_free(dest_base); | |
2075 | |
2076 return ret; | |
2077 } | |
2078 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2079 gint vflist_maint_removed(ViewFile *vf, FileData *fd, GList *ignore_list) |
9 | 2080 { |
2081 GtkTreeIter iter; | |
2082 GList *list; | |
2083 gint row; | |
2084 gint new_row = -1; | |
2085 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2086 row = g_list_index(vf->list, fd); |
9 | 2087 if (row < 0) return FALSE; |
2088 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2089 if (vflist_index_is_selected(vf, row) && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2090 layout_image_get_collection(vf->layout, NULL) == NULL) |
9 | 2091 { |
2092 gint n; | |
2093 | |
633 | 2094 n = vf_count(vf, NULL); |
9 | 2095 if (ignore_list) |
2096 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2097 new_row = vflist_maint_find_closest(vf, row, n, ignore_list); |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
497
diff
changeset
|
2098 DEBUG_1("row = %d, closest is %d", row, new_row); |
9 | 2099 } |
2100 else | |
2101 { | |
2102 if (row + 1 < n) | |
2103 { | |
2104 new_row = row + 1; | |
2105 } | |
2106 else if (row > 0) | |
2107 { | |
2108 new_row = row - 1; | |
2109 } | |
2110 } | |
633 | 2111 vf_select_none(vf); |
9 | 2112 if (new_row >= 0) |
2113 { | |
633 | 2114 fd = vf_index_get_data(vf, new_row); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2115 if (vflist_find_row(vf, fd, &iter) >= 0) |
9 | 2116 { |
2117 GtkTreeSelection *selection; | |
2118 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2119 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 2120 gtk_tree_selection_select_iter(selection, &iter); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2121 vflist_move_cursor(vf, &iter); |
9 | 2122 } |
2123 } | |
2124 } | |
2125 | |
633 | 2126 fd = vf_index_get_data(vf, row); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2127 if (vflist_find_row(vf, fd, &iter) >= 0) |
9 | 2128 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
2129 GtkTreeStore *store; |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2130 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
2131 gtk_tree_store_remove(store, &iter); |
9 | 2132 } |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2133 list = g_list_nth(vf->list, row); |
9 | 2134 fd = list->data; |
2135 | |
2136 /* thumbnail loader check */ | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2137 if (fd == vf->thumbs_filedata) vf->thumbs_filedata = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2138 if (vf->thumbs_count > 0) vf->thumbs_count--; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2139 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2140 vf->list = g_list_remove(vf->list, fd); |
138 | 2141 file_data_unref(fd); |
9 | 2142 |
633 | 2143 vf_send_update(vf); |
9 | 2144 |
2145 return TRUE; | |
2146 } | |
2147 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2148 gint vflist_maint_moved(ViewFile *vf, FileData *fd, GList *ignore_list) |
9 | 2149 { |
2150 gint ret = FALSE; | |
2151 gchar *buf; | |
2152 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2153 if (!fd->change->source || !vf->path) return FALSE; |
9 | 2154 |
138 | 2155 buf = remove_level_from_path(fd->change->source); |
9 | 2156 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2157 if (strcmp(buf, vf->path) == 0) |
9 | 2158 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
2159 ret = vflist_maint_removed(vf, fd, ignore_list); |
9 | 2160 } |
2161 | |
2162 g_free(buf); | |
2163 | |
2164 return ret; | |
2165 } |