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