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