Mercurial > geeqie
annotate src/view_file_list.c @ 814:721c2bbaceec
moved notification to view_file.c
author | nadvornik |
---|---|
date | Mon, 09 Jun 2008 20:27:39 +0000 |
parents | 7c12beef474a |
children | a204fc1d1145 |
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" | |
17 #include "dnd.h" | |
18 #include "editors.h" | |
19 #include "img-view.h" | |
20 #include "info.h" | |
21 #include "layout.h" | |
22 #include "layout_image.h" | |
23 #include "menu.h" | |
24 #include "thumb.h" | |
25 #include "utilops.h" | |
26 #include "ui_bookmark.h" | |
27 #include "ui_fileops.h" | |
28 #include "ui_menu.h" | |
29 #include "ui_tree_edit.h" | |
633 | 30 #include "view_file.h" |
9 | 31 |
32 #include <gdk/gdkkeysyms.h> /* for keyboard values */ | |
33 | |
34 | |
35 enum { | |
36 FILE_COLUMN_POINTER = 0, | |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
762
diff
changeset
|
37 FILE_COLUMN_VERSION, |
9 | 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 | |
801 | 144 static gboolean vflist_store_clear_cb(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) |
145 { | |
146 FileData *fd; | |
147 gtk_tree_model_get(model, iter, FILE_COLUMN_POINTER, &fd, -1); | |
148 file_data_unref(fd); | |
149 return FALSE; | |
150 } | |
151 | |
152 static void vflist_store_clear(ViewFile *vf) | |
153 { | |
154 GtkTreeModel *store; | |
155 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); | |
156 gtk_tree_model_foreach(store, vflist_store_clear_cb, NULL); | |
157 gtk_tree_store_clear(GTK_TREE_STORE(store)); | |
158 } | |
169 | 159 |
659
542bb47fef04
Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents:
658
diff
changeset
|
160 void vflist_color_set(ViewFile *vf, FileData *fd, gint color_set) |
9 | 161 { |
162 GtkTreeModel *store; | |
163 GtkTreeIter iter; | |
164 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
165 if (vflist_find_row(vf, fd, &iter) < 0) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
166 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
|
167 gtk_tree_store_set(GTK_TREE_STORE(store), &iter, FILE_COLUMN_COLOR, color_set, -1); |
9 | 168 } |
169 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
170 static void vflist_move_cursor(ViewFile *vf, GtkTreeIter *iter) |
9 | 171 { |
172 GtkTreeModel *store; | |
173 GtkTreePath *tpath; | |
174 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
175 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 176 |
177 tpath = gtk_tree_model_get_path(store, iter); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
178 gtk_tree_view_set_cursor(GTK_TREE_VIEW(vf->listview), tpath, NULL, FALSE); |
9 | 179 gtk_tree_path_free(tpath); |
180 } | |
181 | |
157 | 182 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
183 static gint vflist_column_idx(ViewFile *vf, gint store_idx) |
157 | 184 { |
185 GList *columns, *work; | |
186 gint i = 0; | |
187 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
188 columns = gtk_tree_view_get_columns(GTK_TREE_VIEW(vf->listview)); |
157 | 189 work = columns; |
190 while (work) | |
191 { | |
192 GtkTreeViewColumn *column = work->data; | |
193 if (store_idx == GPOINTER_TO_INT(g_object_get_data (G_OBJECT(column), "column_store_idx"))) | |
194 break; | |
195 work = work->next; | |
196 i++; | |
197 } | |
442 | 198 |
157 | 199 g_list_free(columns); |
200 return i; | |
201 } | |
202 | |
203 | |
9 | 204 /* |
205 *----------------------------------------------------------------------------- | |
206 * dnd | |
207 *----------------------------------------------------------------------------- | |
208 */ | |
209 | |
210 static void vflist_dnd_get(GtkWidget *widget, GdkDragContext *context, | |
211 GtkSelectionData *selection_data, guint info, | |
212 guint time, gpointer data) | |
213 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
214 ViewFile *vf = data; |
9 | 215 GList *list = NULL; |
216 gchar *uri_text = NULL; | |
217 gint total; | |
218 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
219 if (!VFLIST_INFO(vf, click_fd)) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
220 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
221 if (vflist_row_is_selected(vf, VFLIST_INFO(vf, click_fd))) |
9 | 222 { |
633 | 223 list = vf_selection_get_list(vf); |
9 | 224 } |
225 else | |
226 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
227 list = g_list_append(NULL, file_data_ref(VFLIST_INFO(vf, click_fd))); |
9 | 228 } |
229 | |
230 if (!list) return; | |
231 | |
138 | 232 uri_text = uri_text_from_filelist(list, &total, (info == TARGET_TEXT_PLAIN)); |
233 filelist_free(list); | |
9 | 234 |
495 | 235 DEBUG_1(uri_text); |
9 | 236 |
64
04ff0df3ad2f
Mon Aug 15 17:13:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
237 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
|
238 8, (guchar *)uri_text, total); |
9 | 239 g_free(uri_text); |
240 } | |
241 | |
242 static void vflist_dnd_begin(GtkWidget *widget, GdkDragContext *context, gpointer data) | |
243 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
244 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
245 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
246 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), TRUE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
247 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
248 if (VFLIST_INFO(vf, thumbs_enabled) && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
249 VFLIST_INFO(vf, click_fd) && VFLIST_INFO(vf, click_fd)->pixbuf) |
9 | 250 { |
736 | 251 guint items; |
9 | 252 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
253 if (vflist_row_is_selected(vf, VFLIST_INFO(vf, click_fd))) |
633 | 254 items = vf_selection_count(vf, NULL); |
9 | 255 else |
256 items = 1; | |
257 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
258 dnd_set_drag_icon(widget, context, VFLIST_INFO(vf, click_fd)->pixbuf, items); |
9 | 259 } |
260 } | |
261 | |
262 static void vflist_dnd_end(GtkWidget *widget, GdkDragContext *context, gpointer data) | |
263 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
264 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
265 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
266 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
9 | 267 |
268 if (context->action == GDK_ACTION_MOVE) | |
269 { | |
633 | 270 vf_refresh(vf); |
9 | 271 } |
272 } | |
273 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
274 void vflist_dnd_init(ViewFile *vf) |
9 | 275 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
276 gtk_drag_source_set(vf->listview, GDK_BUTTON1_MASK | GDK_BUTTON2_MASK, |
9 | 277 dnd_file_drag_types, dnd_file_drag_types_count, |
278 GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
279 g_signal_connect(G_OBJECT(vf->listview), "drag_data_get", |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
280 G_CALLBACK(vflist_dnd_get), vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
281 g_signal_connect(G_OBJECT(vf->listview), "drag_begin", |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
282 G_CALLBACK(vflist_dnd_begin), vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
283 g_signal_connect(G_OBJECT(vf->listview), "drag_end", |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
284 G_CALLBACK(vflist_dnd_end), vf); |
9 | 285 } |
286 | |
287 /* | |
288 *----------------------------------------------------------------------------- | |
289 * pop-up menu | |
290 *----------------------------------------------------------------------------- | |
291 */ | |
292 | |
634 | 293 GList *vflist_pop_menu_file_list(ViewFile *vf) |
9 | 294 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
295 if (!VFLIST_INFO(vf, click_fd)) return NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
296 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
297 if (vflist_row_is_selected(vf, VFLIST_INFO(vf, click_fd))) |
9 | 298 { |
633 | 299 return vf_selection_get_list(vf); |
9 | 300 } |
301 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
302 return g_list_append(NULL, file_data_ref(VFLIST_INFO(vf, click_fd))); |
9 | 303 } |
304 | |
637 | 305 void vflist_pop_menu_view_cb(GtkWidget *widget, gpointer data) |
9 | 306 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
307 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
308 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
309 if (vflist_row_is_selected(vf, VFLIST_INFO(vf, click_fd))) |
9 | 310 { |
311 GList *list; | |
312 | |
633 | 313 list = vf_selection_get_list(vf); |
9 | 314 view_window_new_from_list(list); |
138 | 315 filelist_free(list); |
9 | 316 } |
317 else | |
318 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
319 view_window_new(VFLIST_INFO(vf, click_fd)); |
9 | 320 } |
321 } | |
322 | |
637 | 323 void vflist_pop_menu_rename_cb(GtkWidget *widget, gpointer data) |
9 | 324 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
325 ViewFile *vf = data; |
9 | 326 GList *list; |
327 | |
634 | 328 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
|
329 if (options->file_ops.enable_in_place_rename && |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
330 list && !list->next && VFLIST_INFO(vf, click_fd)) |
9 | 331 { |
332 GtkTreeModel *store; | |
333 GtkTreeIter iter; | |
334 | |
138 | 335 filelist_free(list); |
9 | 336 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
337 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
338 if (vflist_find_row(vf, VFLIST_INFO(vf, click_fd), &iter) >= 0) |
9 | 339 { |
340 GtkTreePath *tpath; | |
341 | |
342 tpath = gtk_tree_model_get_path(store, &iter); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
343 tree_edit_by_path(GTK_TREE_VIEW(vf->listview), tpath, |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
344 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
|
345 vflist_row_rename_cb, vf); |
9 | 346 gtk_tree_path_free(tpath); |
347 } | |
348 return; | |
349 } | |
350 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
351 file_util_rename(NULL, list, vf->listview); |
9 | 352 } |
353 | |
659
542bb47fef04
Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents:
658
diff
changeset
|
354 void vflist_pop_menu_thumbs_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); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
359 if (vf->layout) |
9 | 360 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
361 layout_thumb_set(vf->layout, !VFLIST_INFO(vf, thumbs_enabled)); |
9 | 362 } |
363 else | |
364 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
365 vflist_thumb_set(vf, !VFLIST_INFO(vf, thumbs_enabled)); |
9 | 366 } |
367 } | |
368 | |
637 | 369 void vflist_pop_menu_refresh_cb(GtkWidget *widget, gpointer data) |
9 | 370 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
371 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
372 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
373 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
633 | 374 vf_refresh(vf); |
9 | 375 } |
376 | |
637 | 377 void vflist_popup_destroy_cb(GtkWidget *widget, gpointer data) |
9 | 378 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
379 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
380 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
381 VFLIST_INFO(vf, click_fd) = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
382 vf->popup = NULL; |
9 | 383 } |
384 | |
150 | 385 |
9 | 386 /* |
387 *----------------------------------------------------------------------------- | |
388 * callbacks | |
389 *----------------------------------------------------------------------------- | |
390 */ | |
391 | |
392 static gint vflist_row_rename_cb(TreeEditData *td, const gchar *old, const gchar *new, gpointer data) | |
393 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
394 ViewFile *vf = data; |
9 | 395 gchar *old_path; |
396 gchar *new_path; | |
397 | |
398 if (strlen(new) == 0) return FALSE; | |
399 | |
783 | 400 old_path = g_build_filename(vf->dir_fd->path, old, NULL); |
401 new_path = g_build_filename(vf->dir_fd->path, new, NULL); | |
9 | 402 |
726 | 403 if (strchr(new, G_DIR_SEPARATOR) != NULL) |
9 | 404 { |
405 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
|
406 file_util_warning_dialog(_("Error renaming file"), text, GTK_STOCK_DIALOG_ERROR, vf->listview); |
9 | 407 g_free(text); |
408 } | |
409 else if (isfile(new_path)) | |
410 { | |
411 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
|
412 file_util_warning_dialog(_("Error renaming file"), text, GTK_STOCK_DIALOG_ERROR, vf->listview); |
9 | 413 g_free(text); |
414 } | |
442 | 415 else |
9 | 416 { |
633 | 417 gint row = vf_index_by_path(vf, old_path); |
442 | 418 if (row >= 0) |
138 | 419 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
420 GList *work = g_list_nth(vf->list, row); |
138 | 421 FileData *fd = work->data; |
753 | 422 |
423 file_util_rename_simple(fd, new_path, vf->listview); | |
442 | 424 |
138 | 425 } |
426 | |
9 | 427 } |
428 g_free(old_path); | |
429 g_free(new_path); | |
430 | |
431 return FALSE; | |
432 } | |
433 | |
434 static void vflist_menu_position_cb(GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer data) | |
435 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
436 ViewFile *vf = data; |
9 | 437 GtkTreeModel *store; |
438 GtkTreeIter iter; | |
439 GtkTreePath *tpath; | |
440 gint cw, ch; | |
441 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
442 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
|
443 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 444 tpath = gtk_tree_model_get_path(store, &iter); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
445 tree_view_get_cell_clamped(GTK_TREE_VIEW(vf->listview), tpath, FILE_COLUMN_NAME - 1, TRUE, x, y, &cw, &ch); |
9 | 446 gtk_tree_path_free(tpath); |
447 *y += ch; | |
448 popup_menu_position_clamp(menu, x, y, 0); | |
449 } | |
450 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
451 gint vflist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data) |
9 | 452 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
453 ViewFile *vf = data; |
9 | 454 GtkTreePath *tpath; |
455 | |
456 if (event->keyval != GDK_Menu) return FALSE; | |
457 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
458 gtk_tree_view_get_cursor(GTK_TREE_VIEW(vf->listview), &tpath, NULL); |
9 | 459 if (tpath) |
460 { | |
461 GtkTreeModel *store; | |
462 GtkTreeIter iter; | |
463 | |
464 store = gtk_tree_view_get_model(GTK_TREE_VIEW(widget)); | |
465 gtk_tree_model_get_iter(store, &iter, tpath); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
466 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &VFLIST_INFO(vf, click_fd), -1); |
9 | 467 gtk_tree_path_free(tpath); |
468 } | |
469 else | |
470 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
471 VFLIST_INFO(vf, click_fd) = NULL; |
9 | 472 } |
473 | |
659
542bb47fef04
Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents:
658
diff
changeset
|
474 vf->popup = vf_pop_menu(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
475 gtk_menu_popup(GTK_MENU(vf->popup), NULL, NULL, vflist_menu_position_cb, vf, 0, GDK_CURRENT_TIME); |
9 | 476 |
477 return TRUE; | |
478 } | |
479 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
480 gint vflist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) |
9 | 481 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
482 ViewFile *vf = data; |
9 | 483 GtkTreePath *tpath; |
484 GtkTreeIter iter; | |
485 FileData *fd = NULL; | |
149 | 486 GtkTreeViewColumn *column; |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
487 |
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
488 vf->clicked_mark = 0; |
442 | 489 |
9 | 490 if (gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(widget), bevent->x, bevent->y, |
132 | 491 &tpath, &column, NULL, NULL)) |
9 | 492 { |
493 GtkTreeModel *store; | |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
494 gint col_idx = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(column), "column_store_idx")); |
442 | 495 |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
496 if (bevent->button == MOUSE_BUTTON_LEFT && |
149 | 497 col_idx >= FILE_COLUMN_MARKS && col_idx <= FILE_COLUMN_MARKS_LAST) |
498 return FALSE; | |
442 | 499 |
655
beacc4c68c53
Fix last patch, only set vf->clicked_mark for a valid mark.
zas_
parents:
654
diff
changeset
|
500 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
|
501 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
|
502 |
149 | 503 store = gtk_tree_view_get_model(GTK_TREE_VIEW(widget)); |
9 | 504 |
505 gtk_tree_model_get_iter(store, &iter, tpath); | |
506 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
507 #if 0 | |
508 gtk_tree_view_set_cursor(GTK_TREE_VIEW(widget), tpath, NULL, FALSE); | |
509 #endif | |
510 gtk_tree_path_free(tpath); | |
511 } | |
512 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
513 VFLIST_INFO(vf, click_fd) = fd; |
9 | 514 |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
515 if (bevent->button == MOUSE_BUTTON_RIGHT) |
9 | 516 { |
659
542bb47fef04
Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents:
658
diff
changeset
|
517 vf->popup = vf_pop_menu(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
518 gtk_menu_popup(GTK_MENU(vf->popup), NULL, NULL, NULL, NULL, |
9 | 519 bevent->button, bevent->time); |
520 return TRUE; | |
521 } | |
522 | |
523 if (!fd) return FALSE; | |
524 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
525 if (bevent->button == MOUSE_BUTTON_MIDDLE) |
9 | 526 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
527 if (!vflist_row_is_selected(vf, fd)) |
9 | 528 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
529 vflist_color_set(vf, fd, TRUE); |
9 | 530 } |
531 return TRUE; | |
532 } | |
533 | |
534 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
535 if (bevent->button == MOUSE_BUTTON_LEFT && bevent->type == GDK_BUTTON_PRESS && |
9 | 536 !(bevent->state & GDK_SHIFT_MASK ) && |
537 !(bevent->state & GDK_CONTROL_MASK ) && | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
538 vflist_row_is_selected(vf, fd)) |
9 | 539 { |
526 | 540 GtkTreeSelection *selection; |
541 | |
9 | 542 gtk_widget_grab_focus(widget); |
526 | 543 |
544 | |
545 /* returning FALSE and further processing of the event is needed for | |
546 correct operation of the expander, to show the sidecar files. | |
547 It however resets the selection of multiple files. With this condition | |
548 it should work for both cases */ | |
549 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget)); | |
550 return (gtk_tree_selection_count_selected_rows(selection) > 1); | |
9 | 551 } |
552 | |
553 #if 0 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
554 if (bevent->button == MOUSE_BUTTON_LEFT && bevent->type == GDK_2BUTTON_PRESS) |
9 | 555 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
556 if (vf->layout) layout_image_full_screen_start(vf->layout); |
9 | 557 } |
558 #endif | |
559 | |
560 return FALSE; | |
561 } | |
562 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
563 gint vflist_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data) |
9 | 564 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
565 ViewFile *vf = data; |
9 | 566 GtkTreePath *tpath; |
567 GtkTreeIter iter; | |
568 FileData *fd = NULL; | |
569 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
570 if (bevent->button == MOUSE_BUTTON_MIDDLE) |
9 | 571 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
572 vflist_color_set(vf, VFLIST_INFO(vf, click_fd), FALSE); |
9 | 573 } |
574 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
575 if (bevent->button != MOUSE_BUTTON_LEFT && bevent->button != MOUSE_BUTTON_MIDDLE) |
9 | 576 { |
577 return TRUE; | |
578 } | |
579 | |
580 if ((bevent->x != 0 || bevent->y != 0) && | |
581 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(widget), bevent->x, bevent->y, | |
582 &tpath, NULL, NULL, NULL)) | |
583 { | |
584 GtkTreeModel *store; | |
585 | |
586 store = gtk_tree_view_get_model(GTK_TREE_VIEW(widget)); | |
587 gtk_tree_model_get_iter(store, &iter, tpath); | |
588 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
589 gtk_tree_path_free(tpath); | |
590 } | |
591 | |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
592 if (bevent->button == MOUSE_BUTTON_MIDDLE) |
9 | 593 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
594 if (fd && VFLIST_INFO(vf, click_fd) == fd) |
9 | 595 { |
596 GtkTreeSelection *selection; | |
597 | |
598 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget)); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
599 if (vflist_row_is_selected(vf, fd)) |
9 | 600 { |
601 gtk_tree_selection_unselect_iter(selection, &iter); | |
602 } | |
603 else | |
604 { | |
605 gtk_tree_selection_select_iter(selection, &iter); | |
606 } | |
607 } | |
608 return TRUE; | |
609 } | |
610 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
611 if (fd && VFLIST_INFO(vf, click_fd) == fd && |
9 | 612 !(bevent->state & GDK_SHIFT_MASK ) && |
613 !(bevent->state & GDK_CONTROL_MASK ) && | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
614 vflist_row_is_selected(vf, fd)) |
9 | 615 { |
616 GtkTreeSelection *selection; | |
617 | |
618 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget)); | |
619 gtk_tree_selection_unselect_all(selection); | |
620 gtk_tree_selection_select_iter(selection, &iter); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
621 vflist_move_cursor(vf, &iter); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
622 // return TRUE;// FIXME - expand |
9 | 623 } |
624 | |
625 return FALSE; | |
626 } | |
627 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
628 static void vflist_select_image(ViewFile *vf, FileData *sel_fd) |
9 | 629 { |
138 | 630 FileData *read_ahead_fd = NULL; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
631 gint row; |
144 | 632 FileData *cur_fd; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
633 if (!sel_fd) return; |
442 | 634 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
635 cur_fd = layout_image_get_fd(vf->layout); |
144 | 636 if (sel_fd == cur_fd) return; /* no change */ |
442 | 637 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
638 row = g_list_index(vf->list, sel_fd); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
639 // FIXME sidecar data |
9 | 640 |
334 | 641 if (sel_fd && options->image.enable_read_ahead && row >= 0) |
9 | 642 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
643 if (row > g_list_index(vf->list, cur_fd) && |
736 | 644 (guint) (row + 1) < vf_count(vf, NULL)) |
9 | 645 { |
633 | 646 read_ahead_fd = vf_index_get_data(vf, row + 1); |
9 | 647 } |
648 else if (row > 0) | |
649 { | |
633 | 650 read_ahead_fd = vf_index_get_data(vf, row - 1); |
9 | 651 } |
652 } | |
653 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
654 layout_image_set_with_ahead(vf->layout, sel_fd, read_ahead_fd); |
9 | 655 } |
656 | |
657 static gint vflist_select_idle_cb(gpointer data) | |
658 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
659 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
660 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
661 if (!vf->layout) |
9 | 662 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
663 VFLIST_INFO(vf, select_idle_id) = -1; |
9 | 664 return FALSE; |
665 } | |
666 | |
633 | 667 vf_send_update(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
668 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
669 if (VFLIST_INFO(vf, select_fd)) |
9 | 670 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
671 vflist_select_image(vf, VFLIST_INFO(vf, select_fd)); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
672 VFLIST_INFO(vf, select_fd) = NULL; |
9 | 673 } |
674 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
675 VFLIST_INFO(vf, select_idle_id) = -1; |
9 | 676 return FALSE; |
677 } | |
678 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
679 static void vflist_select_idle_cancel(ViewFile *vf) |
9 | 680 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
681 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
|
682 VFLIST_INFO(vf, select_idle_id) = -1; |
9 | 683 } |
684 | |
685 static gboolean vflist_select_cb(GtkTreeSelection *selection, GtkTreeModel *store, GtkTreePath *tpath, | |
686 gboolean path_currently_selected, gpointer data) | |
687 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
688 ViewFile *vf = data; |
9 | 689 GtkTreeIter iter; |
690 | |
691 if (!path_currently_selected && | |
692 gtk_tree_model_get_iter(store, &iter, tpath)) | |
693 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
694 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &VFLIST_INFO(vf, select_fd), -1); |
9 | 695 } |
696 else | |
697 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
698 VFLIST_INFO(vf, select_fd) = NULL; |
9 | 699 } |
700 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
701 if (vf->layout && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
702 VFLIST_INFO(vf, select_idle_id) == -1) |
9 | 703 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
704 VFLIST_INFO(vf, select_idle_id) = g_idle_add(vflist_select_idle_cb, vf); |
9 | 705 } |
706 | |
707 return TRUE; | |
708 } | |
709 | |
710 /* | |
711 *----------------------------------------------------------------------------- | |
712 * misc | |
713 *----------------------------------------------------------------------------- | |
714 */ | |
715 | |
259 | 716 /* |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
717 static gboolean vflist_dummy_select_cb(GtkTreeSelection *selection, GtkTreeModel *store, GtkTreePath *tpath, |
442 | 718 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
|
719 { |
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
720 return TRUE; |
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
721 } |
259 | 722 */ |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
723 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
724 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
|
725 { |
167 | 726 int i; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
727 gchar *size; |
167 | 728 gchar *sidecars = NULL; |
729 | |
730 if (fd->sidecar_files) | |
596 | 731 sidecars = file_data_sc_list_to_string(fd); |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
732 size = text_from_size(fd->size); |
442 | 733 |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
734 gtk_tree_store_set(store, iter, FILE_COLUMN_POINTER, fd, |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
762
diff
changeset
|
735 FILE_COLUMN_VERSION, fd->version, |
802
3cfc54c77b30
fixed switching thumbnails in listview on and off - bug 1984825
nadvornik
parents:
801
diff
changeset
|
736 FILE_COLUMN_THUMB, fd->pixbuf, |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
737 FILE_COLUMN_NAME, fd->name, |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
738 FILE_COLUMN_SIDECARS, sidecars, |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
739 FILE_COLUMN_SIZE, size, |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
740 FILE_COLUMN_DATE, text_from_time(fd->date), |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
741 FILE_COLUMN_COLOR, FALSE, -1); |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
742 for (i = 0; i < FILEDATA_MARKS_SIZE; i++) |
800 | 743 gtk_tree_store_set(store, iter, FILE_COLUMN_MARKS + i, file_data_get_mark(fd, i), -1); |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
744 |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
745 g_free(size); |
167 | 746 if (sidecars) |
747 g_free(sidecars); | |
748 } | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
749 |
771
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
750 static void vflist_setup_iter_recursive(ViewFile *vf, GtkTreeStore *store, GtkTreeIter *parent_iter, GList *list, GList *selected) |
167 | 751 { |
752 GList *work; | |
769 | 753 GtkTreeIter iter; |
167 | 754 gint valid; |
755 | |
769 | 756 valid = gtk_tree_model_iter_children(GTK_TREE_MODEL(store), &iter, parent_iter); |
167 | 757 |
769 | 758 work = list; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
759 while (work) |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
760 { |
167 | 761 gint match; |
769 | 762 FileData *fd = work->data; |
167 | 763 gint done = FALSE; |
764 | |
765 while (!done) | |
766 { | |
769 | 767 FileData *old_fd = NULL; |
768 gint old_version = 0; | |
442 | 769 |
167 | 770 if (valid) |
771 { | |
769 | 772 gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, |
773 FILE_COLUMN_POINTER, &old_fd, | |
774 FILE_COLUMN_VERSION, &old_version, | |
775 -1); | |
442 | 776 |
769 | 777 if (fd == old_fd) |
167 | 778 { |
779 match = 0; | |
780 } | |
781 else | |
782 { | |
769 | 783 if (parent_iter) |
784 match = filelist_sort_compare_filedata_full(fd, old_fd, SORT_NAME, TRUE); /* always sort sidecars by name */ | |
785 else | |
786 match = filelist_sort_compare_filedata_full(fd, old_fd, vf->sort_method, vf->sort_ascend); | |
787 | |
788 if (match == 0) g_warning("multiple fd for the same path"); | |
167 | 789 } |
769 | 790 |
167 | 791 } |
792 else | |
793 { | |
794 match = -1; | |
795 } | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
796 |
167 | 797 if (match < 0) |
798 { | |
799 GtkTreeIter new; | |
442 | 800 |
167 | 801 if (valid) |
802 { | |
769 | 803 gtk_tree_store_insert_before(store, &new, parent_iter, &iter); |
167 | 804 } |
805 else | |
806 { | |
769 | 807 gtk_tree_store_append(store, &new, parent_iter); |
167 | 808 } |
442 | 809 |
801 | 810 vflist_setup_iter(vf, store, &new, file_data_ref(fd)); |
771
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
811 vflist_setup_iter_recursive(vf, store, &new, fd->sidecar_files, selected); |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
812 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
813 if (g_list_find(selected, fd)) |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
814 { |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
815 /* renamed files - the same fd appears at different position - select it again*/ |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
816 GtkTreeSelection *selection; |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
817 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
818 gtk_tree_selection_select_iter(selection, &new); |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
819 } |
167 | 820 |
821 done = TRUE; | |
822 } | |
823 else if (match > 0) | |
824 { | |
801 | 825 file_data_unref(old_fd); |
769 | 826 valid = gtk_tree_store_remove(store, &iter); |
167 | 827 } |
828 else | |
829 { | |
769 | 830 if (fd->version != old_version) |
831 { | |
832 vflist_setup_iter(vf, store, &iter, fd); | |
771
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
833 vflist_setup_iter_recursive(vf, store, &iter, fd->sidecar_files, selected); |
769 | 834 } |
167 | 835 |
769 | 836 if (valid) valid = gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &iter); |
167 | 837 |
838 done = TRUE; | |
839 } | |
840 } | |
841 work = work->next; | |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
842 } |
167 | 843 |
844 while (valid) | |
845 { | |
801 | 846 FileData *old_fd; |
847 gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, FILE_COLUMN_POINTER, &old_fd, -1); | |
848 file_data_unref(old_fd); | |
849 | |
769 | 850 valid = gtk_tree_store_remove(store, &iter); |
167 | 851 } |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
852 } |
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
853 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
854 void vflist_sort_set(ViewFile *vf, SortType type, gint ascend) |
9 | 855 { |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
856 gint i; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
857 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
|
858 gint *new_order; |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
859 GtkTreeStore *store; |
9 | 860 GList *work; |
861 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
862 if (vf->sort_method == type && vf->sort_ascend == ascend) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
863 if (!vf->list) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
864 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
865 work = vf->list; |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
866 i = 0; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
867 while (work) |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
868 { |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
869 FileData *fd = work->data; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
870 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
|
871 i++; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
872 work = work->next; |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
873 } |
9 | 874 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
875 vf->sort_method = type; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
876 vf->sort_ascend = ascend; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
877 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
878 vf->list = filelist_sort(vf->list, vf->sort_method, vf->sort_ascend); |
442 | 879 |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
880 new_order = g_malloc(i * sizeof(gint)); |
442 | 881 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
882 work = vf->list; |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
883 i = 0; |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
884 while (work) |
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
885 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
886 FileData *fd = work->data; |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
887 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
|
888 i++; |
93
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
889 work = work->next; |
f1c8f8632e23
Thu Nov 2 14:38:54 2006 John Ellis <johne@verizon.net>
gqview
parents:
64
diff
changeset
|
890 } |
442 | 891 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
892 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
|
893 gtk_tree_store_reorder(store, NULL, new_order); |
442 | 894 |
168
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
895 g_free(new_order); |
a55ada12322a
fixed vflist_find_row and vflist_sort_set to work correctly with sidecar
nadvornik
parents:
167
diff
changeset
|
896 g_hash_table_destroy(fd_idx_hash); |
9 | 897 } |
898 | |
899 /* | |
900 *----------------------------------------------------------------------------- | |
901 * thumb updates | |
902 *----------------------------------------------------------------------------- | |
903 */ | |
904 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
905 static gint vflist_thumb_next(ViewFile *vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
906 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
907 static void vflist_thumb_status(ViewFile *vf, gdouble val, const gchar *text) |
9 | 908 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
909 if (vf->func_thumb_status) |
9 | 910 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
911 vf->func_thumb_status(vf, val, text, vf->data_thumb_status); |
9 | 912 } |
913 } | |
914 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
915 static void vflist_thumb_cleanup(ViewFile *vf) |
9 | 916 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
917 vflist_thumb_status(vf, 0.0, NULL); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
918 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
919 vf->thumbs_count = 0; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
920 vf->thumbs_running = FALSE; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
921 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
922 thumb_loader_free(vf->thumbs_loader); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
923 vf->thumbs_loader = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
924 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
925 vf->thumbs_filedata = NULL; |
9 | 926 } |
927 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
928 static void vflist_thumb_stop(ViewFile *vf) |
9 | 929 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
930 if (vf->thumbs_running) vflist_thumb_cleanup(vf); |
9 | 931 } |
932 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
933 static void vflist_thumb_do(ViewFile *vf, ThumbLoader *tl, FileData *fd) |
9 | 934 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
935 GtkTreeStore *store; |
9 | 936 GtkTreeIter iter; |
937 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
938 if (!fd || vflist_find_row(vf, fd, &iter) < 0) return; |
9 | 939 |
940 if (fd->pixbuf) g_object_unref(fd->pixbuf); | |
941 fd->pixbuf = thumb_loader_get_pixbuf(tl, TRUE); | |
942 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
943 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
|
944 gtk_tree_store_set(store, &iter, FILE_COLUMN_THUMB, fd->pixbuf, -1); |
9 | 945 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
946 vflist_thumb_status(vf, (gdouble)(vf->thumbs_count) / vflist_sidecar_list_count(vf->list), _("Loading thumbs...")); |
9 | 947 } |
948 | |
949 static void vflist_thumb_error_cb(ThumbLoader *tl, gpointer data) | |
950 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
951 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
952 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
953 if (vf->thumbs_filedata && vf->thumbs_loader == tl) |
9 | 954 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
955 vflist_thumb_do(vf, tl, vf->thumbs_filedata); |
9 | 956 } |
957 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
958 while (vflist_thumb_next(vf)); |
9 | 959 } |
960 | |
961 static void vflist_thumb_done_cb(ThumbLoader *tl, gpointer data) | |
962 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
963 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
964 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
965 if (vf->thumbs_filedata && vf->thumbs_loader == tl) |
9 | 966 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
967 vflist_thumb_do(vf, tl, vf->thumbs_filedata); |
9 | 968 } |
969 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
970 while (vflist_thumb_next(vf)); |
9 | 971 } |
972 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
973 static gint vflist_thumb_next(ViewFile *vf) |
9 | 974 { |
975 GtkTreePath *tpath; | |
976 FileData *fd = NULL; | |
977 | |
978 /* first check the visible files */ | |
979 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
980 if (GTK_WIDGET_REALIZED(vf->listview) && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
981 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vf->listview), 0, 0, &tpath, NULL, NULL, NULL)) |
9 | 982 { |
983 GtkTreeModel *store; | |
984 GtkTreeIter iter; | |
985 gint valid = TRUE; | |
986 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
987 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 988 gtk_tree_model_get_iter(store, &iter, tpath); |
989 gtk_tree_path_free(tpath); | |
990 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
991 while (!fd && valid && tree_view_row_get_visibility(GTK_TREE_VIEW(vf->listview), &iter, FALSE) == 0) |
9 | 992 { |
993 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
994 if (fd->pixbuf) fd = NULL; | |
995 | |
996 valid = gtk_tree_model_iter_next(store, &iter); | |
997 } | |
998 } | |
999 | |
1000 /* then find first undone */ | |
1001 | |
1002 if (!fd) | |
1003 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1004 GList *work = vf->list; |
9 | 1005 while (work && !fd) |
1006 { | |
1007 FileData *fd_p = work->data; | |
442 | 1008 if (!fd_p->pixbuf) |
169 | 1009 fd = fd_p; |
1010 else | |
1011 { | |
1012 GList *work2 = fd_p->sidecar_files; | |
442 | 1013 |
169 | 1014 while (work2 && !fd) |
1015 { | |
442 | 1016 fd_p = work2->data; |
169 | 1017 if (!fd_p->pixbuf) fd = fd_p; |
1018 work2 = work2->next; | |
1019 } | |
1020 } | |
9 | 1021 work = work->next; |
1022 } | |
1023 } | |
1024 | |
1025 if (!fd) | |
1026 { | |
1027 /* done */ | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1028 vflist_thumb_cleanup(vf); |
9 | 1029 return FALSE; |
1030 } | |
1031 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1032 vf->thumbs_count++; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1033 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1034 vf->thumbs_filedata = fd; |
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 thumb_loader_free(vf->thumbs_loader); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1037 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1038 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
|
1039 thumb_loader_set_callbacks(vf->thumbs_loader, |
9 | 1040 vflist_thumb_done_cb, |
1041 vflist_thumb_error_cb, | |
1042 NULL, | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1043 vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1044 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1045 if (!thumb_loader_start(vf->thumbs_loader, fd->path)) |
9 | 1046 { |
1047 /* set icon to unknown, continue */ | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1048 DEBUG_1("thumb loader start failed %s", vf->thumbs_loader->path); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1049 vflist_thumb_do(vf, vf->thumbs_loader, fd); |
9 | 1050 |
1051 return TRUE; | |
1052 } | |
1053 | |
1054 return FALSE; | |
1055 } | |
1056 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1057 static void vflist_thumb_update(ViewFile *vf) |
9 | 1058 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1059 vflist_thumb_stop(vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1060 if (!VFLIST_INFO(vf, thumbs_enabled)) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1061 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1062 vflist_thumb_status(vf, 0.0, _("Loading thumbs...")); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1063 vf->thumbs_running = TRUE; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1064 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1065 while (vflist_thumb_next(vf)); |
9 | 1066 } |
1067 | |
1068 /* | |
1069 *----------------------------------------------------------------------------- | |
1070 * row stuff | |
1071 *----------------------------------------------------------------------------- | |
1072 */ | |
1073 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1074 FileData *vflist_index_get_data(ViewFile *vf, gint row) |
9 | 1075 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1076 return g_list_nth_data(vf->list, row); |
9 | 1077 } |
1078 | |
664
db373fb1b9d8
Merge vflist_row_by_path() into vflist_index_by_path().
zas_
parents:
659
diff
changeset
|
1079 gint vflist_index_by_path(ViewFile *vf, const gchar *path) |
9 | 1080 { |
1081 gint p = 0; | |
1082 GList *work; | |
1083 | |
1084 if (!path) return -1; | |
1085 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1086 work = vf->list; |
9 | 1087 while (work) |
1088 { | |
664
db373fb1b9d8
Merge vflist_row_by_path() into vflist_index_by_path().
zas_
parents:
659
diff
changeset
|
1089 FileData *fd = work->data; |
db373fb1b9d8
Merge vflist_row_by_path() into vflist_index_by_path().
zas_
parents:
659
diff
changeset
|
1090 if (strcmp(path, fd->path) == 0) return p; |
db373fb1b9d8
Merge vflist_row_by_path() into vflist_index_by_path().
zas_
parents:
659
diff
changeset
|
1091 |
9 | 1092 work = work->next; |
1093 p++; | |
1094 } | |
1095 | |
1096 return -1; | |
1097 } | |
1098 | |
736 | 1099 guint vflist_count(ViewFile *vf, gint64 *bytes) |
9 | 1100 { |
1101 if (bytes) | |
1102 { | |
1103 gint64 b = 0; | |
1104 GList *work; | |
1105 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1106 work = vf->list; |
9 | 1107 while (work) |
1108 { | |
1109 FileData *fd = work->data; | |
1110 work = work->next; | |
1111 b += fd->size; | |
1112 } | |
1113 | |
1114 *bytes = b; | |
1115 } | |
1116 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1117 return g_list_length(vf->list); |
9 | 1118 } |
1119 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1120 GList *vflist_get_list(ViewFile *vf) |
9 | 1121 { |
1122 GList *list = NULL; | |
1123 GList *work; | |
1124 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1125 work = vf->list; |
9 | 1126 while (work) |
1127 { | |
1128 FileData *fd = work->data; | |
1129 work = work->next; | |
1130 | |
138 | 1131 list = g_list_prepend(list, file_data_ref(fd)); |
9 | 1132 } |
1133 | |
1134 return g_list_reverse(list); | |
1135 } | |
1136 | |
1137 /* | |
1138 *----------------------------------------------------------------------------- | |
1139 * selections | |
1140 *----------------------------------------------------------------------------- | |
1141 */ | |
1142 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1143 static gint vflist_row_is_selected(ViewFile *vf, FileData *fd) |
9 | 1144 { |
1145 GtkTreeModel *store; | |
1146 GtkTreeSelection *selection; | |
1147 GList *slist; | |
1148 GList *work; | |
1149 gint found = FALSE; | |
1150 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1151 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1152 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1153 work = slist; | |
1154 while (!found && work) | |
1155 { | |
1156 GtkTreePath *tpath = work->data; | |
1157 FileData *fd_n; | |
1158 GtkTreeIter iter; | |
1159 | |
1160 gtk_tree_model_get_iter(store, &iter, tpath); | |
1161 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd_n, -1); | |
1162 if (fd_n == fd) found = TRUE; | |
1163 work = work->next; | |
1164 } | |
1165 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1166 g_list_free(slist); | |
1167 | |
1168 return found; | |
1169 } | |
1170 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1171 gint vflist_index_is_selected(ViewFile *vf, gint row) |
9 | 1172 { |
1173 FileData *fd; | |
1174 | |
633 | 1175 fd = vf_index_get_data(vf, row); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1176 return vflist_row_is_selected(vf, fd); |
9 | 1177 } |
1178 | |
736 | 1179 guint vflist_selection_count(ViewFile *vf, gint64 *bytes) |
9 | 1180 { |
1181 GtkTreeModel *store; | |
1182 GtkTreeSelection *selection; | |
1183 GList *slist; | |
736 | 1184 guint count; |
9 | 1185 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1186 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1187 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1188 | |
1189 if (bytes) | |
1190 { | |
1191 gint64 b = 0; | |
1192 GList *work; | |
1193 | |
1194 work = slist; | |
1195 while (work) | |
1196 { | |
1197 GtkTreePath *tpath = work->data; | |
1198 GtkTreeIter iter; | |
1199 FileData *fd; | |
1200 | |
1201 gtk_tree_model_get_iter(store, &iter, tpath); | |
1202 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
1203 b += fd->size; | |
1204 | |
1205 work = work->next; | |
1206 } | |
1207 | |
1208 *bytes = b; | |
1209 } | |
1210 | |
1211 count = g_list_length(slist); | |
1212 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1213 g_list_free(slist); | |
1214 | |
1215 return count; | |
1216 } | |
1217 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1218 GList *vflist_selection_get_list(ViewFile *vf) |
9 | 1219 { |
1220 GtkTreeModel *store; | |
1221 GtkTreeSelection *selection; | |
1222 GList *slist; | |
1223 GList *list = NULL; | |
1224 GList *work; | |
1225 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1226 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1227 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1228 work = slist; | |
1229 while (work) | |
1230 { | |
1231 GtkTreePath *tpath = work->data; | |
1232 FileData *fd; | |
1233 GtkTreeIter iter; | |
1234 | |
1235 gtk_tree_model_get_iter(store, &iter, tpath); | |
1236 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
1237 | |
138 | 1238 list = g_list_prepend(list, file_data_ref(fd)); |
9 | 1239 |
1240 work = work->next; | |
1241 } | |
1242 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1243 g_list_free(slist); | |
1244 | |
1245 return g_list_reverse(list); | |
1246 } | |
1247 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1248 GList *vflist_selection_get_list_by_index(ViewFile *vf) |
9 | 1249 { |
1250 GtkTreeModel *store; | |
1251 GtkTreeSelection *selection; | |
1252 GList *slist; | |
1253 GList *list = NULL; | |
1254 GList *work; | |
1255 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1256 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1257 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1258 work = slist; | |
1259 while (work) | |
1260 { | |
1261 GtkTreePath *tpath = work->data; | |
1262 FileData *fd; | |
1263 GtkTreeIter iter; | |
1264 | |
1265 gtk_tree_model_get_iter(store, &iter, tpath); | |
1266 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
1267 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1268 list = g_list_prepend(list, GINT_TO_POINTER(g_list_index(vf->list, fd))); |
9 | 1269 |
1270 work = work->next; | |
1271 } | |
1272 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1273 g_list_free(slist); | |
1274 | |
1275 return g_list_reverse(list); | |
1276 } | |
1277 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1278 void vflist_select_all(ViewFile *vf) |
9 | 1279 { |
1280 GtkTreeSelection *selection; | |
1281 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1282 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1283 gtk_tree_selection_select_all(selection); |
1284 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1285 VFLIST_INFO(vf, select_fd) = NULL; |
9 | 1286 } |
1287 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1288 void vflist_select_none(ViewFile *vf) |
9 | 1289 { |
1290 GtkTreeSelection *selection; | |
1291 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1292 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1293 gtk_tree_selection_unselect_all(selection); |
1294 } | |
1295 | |
601 | 1296 static gboolean tree_model_iter_prev(GtkTreeModel *store, GtkTreeIter *iter) |
1297 { | |
1298 GtkTreePath *tpath; | |
1299 gboolean result; | |
1300 | |
1301 tpath = gtk_tree_model_get_path(store, iter); | |
1302 result = gtk_tree_path_prev(tpath); | |
1303 if (result) | |
1304 gtk_tree_model_get_iter(store, iter, tpath); | |
1305 | |
1306 gtk_tree_path_free(tpath); | |
1307 | |
1308 return result; | |
1309 } | |
1310 | |
1311 static gboolean tree_model_get_iter_last(GtkTreeModel *store, GtkTreeIter *iter) | |
1312 { | |
1313 if (!gtk_tree_model_get_iter_first(store, iter)) | |
1314 return FALSE; | |
1315 | |
1316 while (TRUE) | |
1317 { | |
1318 GtkTreeIter next = *iter; | |
1319 | |
1320 if (gtk_tree_model_iter_next(store, &next)) | |
1321 *iter = next; | |
1322 else | |
1323 break; | |
1324 } | |
1325 | |
1326 return TRUE; | |
1327 } | |
1328 | |
1329 void vflist_select_invert(ViewFile *vf) | |
1330 { | |
1331 GtkTreeIter iter; | |
1332 GtkTreeSelection *selection; | |
1333 GtkTreeModel *store; | |
1334 gboolean valid; | |
1335 | |
1336 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); | |
1337 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); | |
1338 | |
1339 /* Backward iteration prevents scrolling to the end of the list, | |
1340 * it scrolls to the first selected row instead. */ | |
1341 valid = tree_model_get_iter_last(store, &iter); | |
1342 | |
1343 while (valid) | |
1344 { | |
1345 gint selected = gtk_tree_selection_iter_is_selected(selection, &iter); | |
1346 | |
1347 if (selected) | |
1348 gtk_tree_selection_unselect_iter(selection, &iter); | |
1349 else | |
1350 gtk_tree_selection_select_iter(selection, &iter); | |
1351 | |
1352 valid = tree_model_iter_prev(store, &iter); | |
1353 } | |
1354 } | |
1355 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1356 void vflist_select_by_fd(ViewFile *vf, FileData *fd) |
138 | 1357 { |
9 | 1358 GtkTreeIter iter; |
1359 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1360 if (vflist_find_row(vf, fd, &iter) < 0) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1361 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1362 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
|
1363 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1364 if (!vflist_row_is_selected(vf, fd)) |
9 | 1365 { |
1366 GtkTreeSelection *selection; | |
1367 GtkTreeModel *store; | |
1368 GtkTreePath *tpath; | |
1369 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1370 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1371 gtk_tree_selection_unselect_all(selection); |
1372 gtk_tree_selection_select_iter(selection, &iter); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1373 vflist_move_cursor(vf, &iter); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1374 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1375 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
9 | 1376 tpath = gtk_tree_model_get_path(store, &iter); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1377 gtk_tree_view_set_cursor(GTK_TREE_VIEW(vf->listview), tpath, NULL, FALSE); |
9 | 1378 gtk_tree_path_free(tpath); |
1379 } | |
1380 } | |
1381 | |
771
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1382 static void vflist_select_closest(ViewFile *vf, FileData *sel_fd) |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1383 { |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1384 GList *work; |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1385 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1386 if (sel_fd->parent) sel_fd = sel_fd->parent; |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1387 work = vf->list; |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1388 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1389 while (work) |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1390 { |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1391 gint match; |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1392 FileData *fd = work->data; |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1393 work = work->next; |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1394 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1395 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1396 match = filelist_sort_compare_filedata_full(fd, sel_fd, vf->sort_method, vf->sort_ascend); |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1397 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1398 if (match >= 0) |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1399 { |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1400 vflist_select_by_fd(vf, fd); |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1401 break; |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1402 } |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1403 } |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1404 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1405 } |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1406 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1407 void vflist_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode) |
150 | 1408 { |
1409 GtkTreeModel *store; | |
1410 GtkTreeIter iter; | |
1411 GtkTreeSelection *selection; | |
1412 gint valid; | |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1413 gint n = mark - 1; |
442 | 1414 |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1415 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
150 | 1416 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1417 store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview)); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1418 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
442 | 1419 |
150 | 1420 valid = gtk_tree_model_get_iter_first(store, &iter); |
1421 while (valid) | |
1422 { | |
1423 FileData *fd; | |
161 | 1424 gboolean mark_val, selected; |
150 | 1425 gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, FILE_COLUMN_POINTER, &fd, -1); |
442 | 1426 |
800 | 1427 mark_val = file_data_get_mark(fd, n); |
161 | 1428 selected = gtk_tree_selection_iter_is_selected(selection, &iter); |
442 | 1429 |
1430 switch (mode) | |
161 | 1431 { |
1432 case MTS_MODE_SET: selected = mark_val; | |
1433 break; | |
1434 case MTS_MODE_OR: selected = mark_val | selected; | |
1435 break; | |
1436 case MTS_MODE_AND: selected = mark_val & selected; | |
1437 break; | |
1438 case MTS_MODE_MINUS: selected = !mark_val & selected; | |
1439 break; | |
1440 } | |
442 | 1441 |
161 | 1442 if (selected) |
150 | 1443 gtk_tree_selection_select_iter(selection, &iter); |
161 | 1444 else |
1445 gtk_tree_selection_unselect_iter(selection, &iter); | |
150 | 1446 |
1447 valid = gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &iter); | |
1448 } | |
1449 } | |
1450 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1451 void vflist_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode) |
150 | 1452 { |
1453 GtkTreeModel *store; | |
1454 GtkTreeSelection *selection; | |
1455 GList *slist; | |
1456 GList *work; | |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1457 gint n = mark - 1; |
150 | 1458 |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
637
diff
changeset
|
1459 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
150 | 1460 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1461 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
150 | 1462 slist = gtk_tree_selection_get_selected_rows(selection, &store); |
1463 work = slist; | |
1464 while (work) | |
1465 { | |
1466 GtkTreePath *tpath = work->data; | |
1467 FileData *fd; | |
1468 GtkTreeIter iter; | |
1469 | |
1470 gtk_tree_model_get_iter(store, &iter, tpath); | |
1471 gtk_tree_model_get(store, &iter, FILE_COLUMN_POINTER, &fd, -1); | |
442 | 1472 |
814 | 1473 file_data_unregister_notify_func(vf_notify_cb, vf); /* we don't need the notification */ |
800 | 1474 |
161 | 1475 switch (mode) |
1476 { | |
800 | 1477 case STM_MODE_SET: file_data_set_mark(fd, n, 1); |
161 | 1478 break; |
800 | 1479 case STM_MODE_RESET: file_data_set_mark(fd, n, 0); |
161 | 1480 break; |
800 | 1481 case STM_MODE_TOGGLE: file_data_set_mark(fd, n, !file_data_get_mark(fd, n)); |
161 | 1482 break; |
1483 } | |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
762
diff
changeset
|
1484 |
814 | 1485 file_data_register_notify_func(vf_notify_cb, vf, NOTIFY_PRIORITY_MEDIUM); |
442 | 1486 |
800 | 1487 gtk_tree_store_set(GTK_TREE_STORE(store), &iter, FILE_COLUMN_MARKS + n, file_data_get_mark(fd, n), -1); |
150 | 1488 |
1489 work = work->next; | |
1490 } | |
1491 g_list_foreach(slist, (GFunc)gtk_tree_path_free, NULL); | |
1492 g_list_free(slist); | |
1493 } | |
1494 | |
9 | 1495 /* |
1496 *----------------------------------------------------------------------------- | |
1497 * core (population) | |
1498 *----------------------------------------------------------------------------- | |
1499 */ | |
1500 | |
1501 static void vflist_listview_set_height(GtkWidget *listview, gint thumb) | |
1502 { | |
1503 GtkTreeViewColumn *column; | |
1504 GtkCellRenderer *cell; | |
1505 GList *list; | |
1506 | |
770 | 1507 column = gtk_tree_view_get_column(GTK_TREE_VIEW(listview), 0); /* first column is thumbnail */ |
9 | 1508 if (!column) return; |
1509 | |
802
3cfc54c77b30
fixed switching thumbnails in listview on and off - bug 1984825
nadvornik
parents:
801
diff
changeset
|
1510 gtk_tree_view_column_set_visible(column, thumb); |
3cfc54c77b30
fixed switching thumbnails in listview on and off - bug 1984825
nadvornik
parents:
801
diff
changeset
|
1511 |
3cfc54c77b30
fixed switching thumbnails in listview on and off - bug 1984825
nadvornik
parents:
801
diff
changeset
|
1512 gtk_tree_view_column_set_fixed_width(column, options->thumbnails.max_width + 40); |
9 | 1513 |
1514 list = gtk_tree_view_column_get_cell_renderers(column); | |
1515 if (!list) return; | |
1516 cell = list->data; | |
1517 g_list_free(list); | |
1518 | |
802
3cfc54c77b30
fixed switching thumbnails in listview on and off - bug 1984825
nadvornik
parents:
801
diff
changeset
|
1519 g_object_set(G_OBJECT(cell), "height", options->thumbnails.max_height, NULL); |
9 | 1520 gtk_tree_view_columns_autosize(GTK_TREE_VIEW(listview)); |
1521 } | |
1522 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1523 static void vflist_populate_view(ViewFile *vf) |
9 | 1524 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1525 GtkTreeStore *store; |
9 | 1526 gint thumbs; |
1527 GtkTreeRowReference *visible_row = NULL; | |
1528 GtkTreePath *tpath; | |
771
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1529 GList *selected; |
9 | 1530 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1531 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
|
1532 thumbs = VFLIST_INFO(vf, thumbs_enabled); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1533 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1534 vflist_thumb_stop(vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1535 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1536 if (!vf->list) |
9 | 1537 { |
801 | 1538 vflist_store_clear(vf); |
633 | 1539 vf_send_update(vf); |
9 | 1540 return; |
1541 } | |
1542 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1543 if (GTK_WIDGET_REALIZED(vf->listview) && |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1544 gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(vf->listview), 0, 0, &tpath, NULL, NULL, NULL)) |
9 | 1545 { |
1546 visible_row = gtk_tree_row_reference_new(GTK_TREE_MODEL(store), tpath); | |
1547 gtk_tree_path_free(tpath); | |
1548 } | |
1549 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1550 vflist_listview_set_height(vf->listview, thumbs); |
9 | 1551 |
771
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1552 selected = vflist_selection_get_list(vf); |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1553 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1554 vflist_setup_iter_recursive(vf, store, NULL, vf->list, selected); |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1555 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1556 if (selected && vflist_selection_count(vf, NULL) == 0) |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1557 { |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1558 /* all selected files disappeared */ |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1559 vflist_select_closest(vf, selected->data); |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1560 } |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1561 |
24726eddb252
vflist_populate_view: better handle selected files that are renamed or deleted
nadvornik
parents:
770
diff
changeset
|
1562 filelist_free(selected); |
769 | 1563 |
9 | 1564 if (visible_row) |
1565 { | |
1566 if (gtk_tree_row_reference_valid(visible_row)) | |
1567 { | |
1568 tpath = gtk_tree_row_reference_get_path(visible_row); | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1569 gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(vf->listview), tpath, NULL, TRUE, 0.0, 0.0); |
9 | 1570 gtk_tree_path_free(tpath); |
1571 } | |
1572 gtk_tree_row_reference_free(visible_row); | |
1573 } | |
1574 | |
633 | 1575 vf_send_update(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1576 vflist_thumb_update(vf); |
9 | 1577 } |
1578 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1579 gint vflist_refresh(ViewFile *vf) |
9 | 1580 { |
1581 GList *old_list; | |
1582 gint ret = TRUE; | |
1583 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1584 old_list = vf->list; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1585 vf->list = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1586 |
762 | 1587 DEBUG_1("%s vflist_refresh: read dir", get_exec_time()); |
783 | 1588 if (vf->dir_fd) |
9 | 1589 { |
814 | 1590 file_data_unregister_notify_func(vf_notify_cb, vf); /* we don't need the notification of changes detected by filelist_read */ |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1591 |
783 | 1592 ret = filelist_read(vf->dir_fd, &vf->list, NULL); |
780
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
775
diff
changeset
|
1593 |
814 | 1594 file_data_register_notify_func(vf_notify_cb, vf, NOTIFY_PRIORITY_MEDIUM); |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1595 |
780
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
775
diff
changeset
|
1596 DEBUG_1("%s vflist_refresh: sort", get_exec_time()); |
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
775
diff
changeset
|
1597 vf->list = filelist_sort(vf->list, vf->sort_method, vf->sort_ascend); |
9 | 1598 } |
762 | 1599 |
1600 DEBUG_1("%s vflist_refresh: populate view", get_exec_time()); | |
1601 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1602 vflist_populate_view(vf); |
9 | 1603 |
1604 filelist_free(old_list); | |
762 | 1605 DEBUG_1("%s vflist_refresh: done", get_exec_time()); |
9 | 1606 |
1607 return ret; | |
1608 } | |
1609 | |
772
f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
nadvornik
parents:
771
diff
changeset
|
1610 |
f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
nadvornik
parents:
771
diff
changeset
|
1611 |
9 | 1612 /* this overrides the low default of a GtkCellRenderer from 100 to CELL_HEIGHT_OVERRIDE, something sane for our purposes */ |
1613 | |
1614 #define CELL_HEIGHT_OVERRIDE 512 | |
1615 | |
1616 static void cell_renderer_height_override(GtkCellRenderer *renderer) | |
1617 { | |
1618 GParamSpec *spec; | |
1619 | |
1620 spec = g_object_class_find_property(G_OBJECT_GET_CLASS(G_OBJECT(renderer)), "height"); | |
1621 if (spec && G_IS_PARAM_SPEC_INT(spec)) | |
1622 { | |
1623 GParamSpecInt *spec_int; | |
1624 | |
1625 spec_int = G_PARAM_SPEC_INT(spec); | |
1626 if (spec_int->maximum < CELL_HEIGHT_OVERRIDE) spec_int->maximum = CELL_HEIGHT_OVERRIDE; | |
1627 } | |
1628 } | |
1629 | |
1630 static GdkColor *vflist_listview_color_shifted(GtkWidget *widget) | |
1631 { | |
1632 static GdkColor color; | |
1633 static GtkWidget *done = NULL; | |
1634 | |
1635 if (done != widget) | |
1636 { | |
1637 GtkStyle *style; | |
1638 | |
1639 style = gtk_widget_get_style(widget); | |
1640 memcpy(&color, &style->base[GTK_STATE_NORMAL], sizeof(color)); | |
1641 shift_color(&color, -1, 0); | |
1642 done = widget; | |
1643 } | |
1644 | |
1645 return &color; | |
1646 } | |
1647 | |
1648 static void vflist_listview_color_cb(GtkTreeViewColumn *tree_column, GtkCellRenderer *cell, | |
1649 GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data) | |
1650 { | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1651 ViewFile *vf = data; |
9 | 1652 gboolean set; |
1653 | |
1654 gtk_tree_model_get(tree_model, iter, FILE_COLUMN_COLOR, &set, -1); | |
1655 g_object_set(G_OBJECT(cell), | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1656 "cell-background-gdk", vflist_listview_color_shifted(vf->listview), |
9 | 1657 "cell-background-set", set, NULL); |
1658 } | |
1659 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1660 static void vflist_listview_add_column(ViewFile *vf, gint n, const gchar *title, gint image, gint right_justify, gint expand) |
9 | 1661 { |
1662 GtkTreeViewColumn *column; | |
1663 GtkCellRenderer *renderer; | |
1664 | |
1665 column = gtk_tree_view_column_new(); | |
1666 gtk_tree_view_column_set_title(column, title); | |
1667 gtk_tree_view_column_set_min_width(column, 4); | |
1668 | |
1669 if (!image) | |
1670 { | |
149 | 1671 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY); |
9 | 1672 renderer = gtk_cell_renderer_text_new(); |
1673 if (right_justify) | |
1674 { | |
1675 g_object_set(G_OBJECT(renderer), "xalign", 1.0, NULL); | |
1676 } | |
1677 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
1678 gtk_tree_view_column_add_attribute(column, renderer, "text", n); | |
149 | 1679 if (expand) |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1680 gtk_tree_view_column_set_expand(column, TRUE); |
149 | 1681 } |
9 | 1682 else |
1683 { | |
1684 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); | |
1685 renderer = gtk_cell_renderer_pixbuf_new(); | |
1686 cell_renderer_height_override(renderer); | |
1687 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
1688 gtk_tree_view_column_add_attribute(column, renderer, "pixbuf", n); | |
1689 } | |
1690 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1691 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
|
1692 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
|
1693 g_object_set_data(G_OBJECT(renderer), "column_store_idx", GUINT_TO_POINTER(n)); |
9 | 1694 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1695 gtk_tree_view_append_column(GTK_TREE_VIEW(vf->listview), column); |
9 | 1696 } |
1697 | |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1698 static void vflist_listview_mark_toggled_cb(GtkCellRendererToggle *cell, gchar *path_str, gpointer data) |
132 | 1699 { |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1700 ViewFile *vf = data; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1701 GtkTreeStore *store; |
149 | 1702 GtkTreePath *path = gtk_tree_path_new_from_string(path_str); |
1703 GtkTreeIter iter; | |
1704 FileData *fd; | |
1705 gboolean mark; | |
1706 guint col_idx; | |
442 | 1707 |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1708 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
149 | 1709 if (!path || !gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, path)) |
1710 return; | |
132 | 1711 |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1712 col_idx = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(cell), "column_store_idx")); |
442 | 1713 |
149 | 1714 g_assert(col_idx >= FILE_COLUMN_MARKS && col_idx <= FILE_COLUMN_MARKS_LAST); |
442 | 1715 |
149 | 1716 gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, FILE_COLUMN_POINTER, &fd, col_idx, &mark, -1); |
150 | 1717 mark = !mark; |
814 | 1718 file_data_unregister_notify_func(vf_notify_cb, vf); /* we don't need the notification */ |
800 | 1719 file_data_set_mark(fd, col_idx - FILE_COLUMN_MARKS, mark); |
814 | 1720 file_data_register_notify_func(vf_notify_cb, vf, NOTIFY_PRIORITY_MEDIUM); |
442 | 1721 |
149 | 1722 gtk_tree_store_set(store, &iter, col_idx, mark, -1); |
1723 gtk_tree_path_free(path); | |
132 | 1724 } |
1725 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1726 static void vflist_listview_add_column_toggle(ViewFile *vf, gint n, const gchar *title) |
132 | 1727 { |
149 | 1728 GtkTreeViewColumn *column; |
1729 GtkCellRenderer *renderer; | |
1730 GtkTreeStore *store; | |
1731 gint index; | |
442 | 1732 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1733 store = GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview))); |
132 | 1734 |
149 | 1735 renderer = gtk_cell_renderer_toggle_new(); |
1736 column = gtk_tree_view_column_new_with_attributes(title, renderer, "active", n, NULL); | |
132 | 1737 |
149 | 1738 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
|
1739 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
|
1740 g_object_set_data(G_OBJECT(renderer), "column_store_idx", GUINT_TO_POINTER(n)); |
442 | 1741 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1742 index = gtk_tree_view_append_column(GTK_TREE_VIEW(vf->listview), column); |
149 | 1743 gtk_tree_view_column_set_fixed_width(column, 16); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1744 gtk_tree_view_column_set_visible(column, vf->marks_enabled); |
132 | 1745 |
442 | 1746 |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1747 g_signal_connect(G_OBJECT(renderer), "toggled", G_CALLBACK(vflist_listview_mark_toggled_cb), vf); |
132 | 1748 } |
1749 | |
9 | 1750 /* |
1751 *----------------------------------------------------------------------------- | |
1752 * base | |
1753 *----------------------------------------------------------------------------- | |
1754 */ | |
1755 | |
783 | 1756 gint vflist_set_fd(ViewFile *vf, FileData *dir_fd) |
9 | 1757 { |
783 | 1758 if (!dir_fd) return FALSE; |
1759 if (vf->dir_fd == dir_fd) return TRUE; | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1760 |
783 | 1761 file_data_unref(vf->dir_fd); |
1762 vf->dir_fd = file_data_ref(dir_fd); | |
9 | 1763 |
1764 /* force complete reload */ | |
801 | 1765 vflist_store_clear(vf); |
9 | 1766 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1767 filelist_free(vf->list); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1768 vf->list = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1769 |
633 | 1770 return vf_refresh(vf); |
9 | 1771 } |
1772 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1773 void vflist_destroy_cb(GtkWidget *widget, gpointer data) |
9 | 1774 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1775 ViewFile *vf = data; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1776 |
814 | 1777 file_data_unregister_notify_func(vf_notify_cb, vf); |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1778 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1779 vflist_select_idle_cancel(vf); |
814 | 1780 vf_refresh_idle_cancel(vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1781 vflist_thumb_stop(vf); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1782 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1783 filelist_free(vf->list); |
9 | 1784 } |
1785 | |
783 | 1786 ViewFile *vflist_new(ViewFile *vf, FileData *dir_fd) |
9 | 1787 { |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1788 GtkTreeStore *store; |
9 | 1789 GtkTreeSelection *selection; |
1790 | |
149 | 1791 GType flist_types[FILE_COLUMN_COUNT]; |
1792 int i; | |
442 | 1793 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1794 vf->info = g_new0(ViewFileInfoList, 1); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1795 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1796 VFLIST_INFO(vf, click_fd) = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1797 VFLIST_INFO(vf, select_fd) = NULL; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1798 VFLIST_INFO(vf, thumbs_enabled) = FALSE; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1799 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1800 VFLIST_INFO(vf, select_idle_id) = -1; |
9 | 1801 |
139 | 1802 flist_types[FILE_COLUMN_POINTER] = G_TYPE_POINTER; |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
762
diff
changeset
|
1803 flist_types[FILE_COLUMN_VERSION] = G_TYPE_INT; |
139 | 1804 flist_types[FILE_COLUMN_THUMB] = GDK_TYPE_PIXBUF; |
1805 flist_types[FILE_COLUMN_NAME] = G_TYPE_STRING; | |
1806 flist_types[FILE_COLUMN_SIDECARS] = G_TYPE_STRING; | |
1807 flist_types[FILE_COLUMN_SIZE] = G_TYPE_STRING; | |
1808 flist_types[FILE_COLUMN_DATE] = G_TYPE_STRING; | |
1809 flist_types[FILE_COLUMN_COLOR] = G_TYPE_BOOLEAN; | |
1810 for (i = FILE_COLUMN_MARKS; i < FILE_COLUMN_MARKS + FILEDATA_MARKS_SIZE; i++) | |
1811 flist_types[i] = G_TYPE_BOOLEAN; | |
132 | 1812 |
142
b5aa95241859
display sidecar files (jpeg + raw) using gtk_tree_store
nadvornik
parents:
139
diff
changeset
|
1813 store = gtk_tree_store_newv(FILE_COLUMN_COUNT, flist_types); |
442 | 1814 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1815 vf->listview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store)); |
9 | 1816 g_object_unref(store); |
1817 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1818 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview)); |
9 | 1819 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
|
1820 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
|
1821 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1822 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
|
1823 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
|
1824 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1825 vflist_listview_add_column(vf, FILE_COLUMN_THUMB, "", TRUE, FALSE, FALSE); |
9 | 1826 |
518 | 1827 for (i = 0; i < FILEDATA_MARKS_SIZE; i++) |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1828 vflist_listview_add_column_toggle(vf, i + FILE_COLUMN_MARKS, ""); |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1829 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1830 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
|
1831 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
|
1832 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1833 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
|
1834 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
|
1835 |
814 | 1836 file_data_register_notify_func(vf_notify_cb, vf, NOTIFY_PRIORITY_MEDIUM); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1837 return vf; |
9 | 1838 } |
1839 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1840 void vflist_thumb_set(ViewFile *vf, gint enable) |
9 | 1841 { |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1842 if (VFLIST_INFO(vf, thumbs_enabled) == enable) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1843 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1844 VFLIST_INFO(vf, thumbs_enabled) = enable; |
633 | 1845 if (vf->layout) vf_refresh(vf); |
9 | 1846 } |
1847 | |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1848 void vflist_marks_set(ViewFile *vf, gint enable) |
132 | 1849 { |
149 | 1850 GList *columns, *work; |
442 | 1851 |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1852 if (vf->marks_enabled == enable) return; |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1853 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
559
diff
changeset
|
1854 vf->marks_enabled = enable; |
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 columns = gtk_tree_view_get_columns(GTK_TREE_VIEW(vf->listview)); |
442 | 1857 |
149 | 1858 work = columns; |
1859 while (work) | |
1860 { | |
1861 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
|
1862 gint col_idx = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(column), "column_store_idx")); |
149 | 1863 work = work->next; |
442 | 1864 |
1865 if (col_idx <= FILE_COLUMN_MARKS_LAST && col_idx >= FILE_COLUMN_MARKS) | |
149 | 1866 gtk_tree_view_column_set_visible(column, enable); |
1867 } | |
442 | 1868 |
149 | 1869 g_list_free(columns); |
633 | 1870 //vf_refresh(vf); |
132 | 1871 } |
1872 |