Mercurial > geeqie
annotate src/utilops.c @ 1211:e2bbe90b0dcd
most of the metadata options now works
| author | nadvornik |
|---|---|
| date | Sun, 21 Dec 2008 21:20:36 +0000 |
| parents | 3ff2aa99108b |
| children | 584eae03d747 |
| rev | line source |
|---|---|
| 1 | 1 /* |
| 196 | 2 * Geeqie |
|
67
f63ecca6c087
Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents:
66
diff
changeset
|
3 * (C) 2006 John Ellis |
| 475 | 4 * Copyright (C) 2008 The Geeqie Team |
| 1 | 5 * |
| 6 * Author: John Ellis | |
| 7 * | |
| 9 | 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! | |
| 1 | 11 */ |
| 12 | |
| 9 | 13 |
| 281 | 14 #include "main.h" |
| 9 | 15 #include "utilops.h" |
| 16 | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
17 #include "cache.h" |
| 9 | 18 #include "cache_maint.h" |
| 19 #include "collect.h" | |
| 20 #include "dupe.h" | |
| 586 | 21 #include "filedata.h" |
| 22 #include "filefilter.h" | |
| 9 | 23 #include "image.h" |
| 24 #include "img-view.h" | |
| 25 #include "layout.h" | |
| 26 #include "search.h" | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
27 #include "thumb_standard.h" |
| 597 | 28 #include "trash.h" |
| 9 | 29 #include "ui_bookmark.h" |
| 30 #include "ui_fileops.h" | |
| 31 #include "ui_misc.h" | |
| 32 #include "ui_tabcomp.h" | |
| 140 | 33 #include "editors.h" |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
34 #include "metadata.h" |
| 9 | 35 |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
36 static GdkPixbuf *file_util_get_error_icon(FileData *fd, GtkWidget *widget); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
37 |
| 9 | 38 /* |
| 39 *-------------------------------------------------------------------------- | |
| 40 * Adds 1 or 2 images (if 2, side by side) to a GenericDialog | |
| 41 *-------------------------------------------------------------------------- | |
| 42 */ | |
| 43 | |
| 44 #define DIALOG_DEF_IMAGE_DIM_X 200 | |
| 45 #define DIALOG_DEF_IMAGE_DIM_Y 150 | |
| 46 | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
47 static void generic_dialog_add_image(GenericDialog *gd, GtkWidget *box, |
| 138 | 48 FileData *fd1, const gchar *header1, |
| 49 FileData *fd2, const gchar *header2, | |
| 9 | 50 gint show_filename) |
| 51 { | |
| 52 ImageWindow *imd; | |
| 53 GtkWidget *hbox = NULL; | |
| 54 GtkWidget *vbox; | |
| 55 GtkWidget *label = NULL; | |
| 56 | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
57 if (!box) box = gd->vbox; |
|
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
58 |
| 138 | 59 if (fd2) |
| 9 | 60 { |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
61 hbox = pref_box_new(box, TRUE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); |
| 9 | 62 } |
| 63 | |
| 64 /* image 1 */ | |
| 65 | |
| 66 vbox = gtk_vbox_new(FALSE, PREF_PAD_GAP); | |
| 67 if (hbox) | |
| 68 { | |
| 69 GtkWidget *sep; | |
| 70 | |
| 71 gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 0); | |
| 72 | |
| 73 sep = gtk_vseparator_new(); | |
| 74 gtk_box_pack_start(GTK_BOX(hbox), sep, FALSE, FALSE, 0); | |
| 75 gtk_widget_show(sep); | |
| 76 } | |
| 77 else | |
| 78 { | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
79 gtk_box_pack_start(GTK_BOX(box), vbox, TRUE, TRUE, PREF_PAD_GAP); |
| 9 | 80 } |
| 81 gtk_widget_show(vbox); | |
| 82 | |
| 83 if (header1) | |
| 84 { | |
| 85 GtkWidget *head; | |
| 86 | |
| 87 head = pref_label_new(vbox, header1); | |
| 88 pref_label_bold(head, TRUE, FALSE); | |
| 89 gtk_misc_set_alignment(GTK_MISC(head), 0.0, 0.5); | |
| 90 } | |
| 91 | |
| 92 imd = image_new(FALSE); | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
93 g_object_set(G_OBJECT(imd->pr), "zoom_expand", FALSE, NULL); |
| 9 | 94 gtk_widget_set_size_request(imd->widget, DIALOG_DEF_IMAGE_DIM_X, DIALOG_DEF_IMAGE_DIM_Y); |
| 95 gtk_box_pack_start(GTK_BOX(vbox), imd->widget, TRUE, TRUE, 0); | |
| 138 | 96 image_change_fd(imd, fd1, 0.0); |
| 9 | 97 gtk_widget_show(imd->widget); |
| 98 | |
| 99 if (show_filename) | |
| 100 { | |
| 138 | 101 label = pref_label_new(vbox, (fd1 == NULL) ? "" : fd1->name); |
| 9 | 102 } |
| 103 | |
| 104 /* only the first image is stored (for use in gd_image_set) */ | |
| 105 g_object_set_data(G_OBJECT(gd->dialog), "img_image", imd); | |
| 106 g_object_set_data(G_OBJECT(gd->dialog), "img_label", label); | |
| 442 | 107 |
| 9 | 108 |
| 109 /* image 2 */ | |
| 110 | |
| 138 | 111 if (hbox && fd2) |
| 9 | 112 { |
| 113 vbox = pref_box_new(hbox, TRUE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
| 114 | |
| 115 if (header2) | |
| 116 { | |
| 117 GtkWidget *head; | |
| 118 | |
| 119 head = pref_label_new(vbox, header2); | |
| 120 pref_label_bold(head, TRUE, FALSE); | |
| 121 gtk_misc_set_alignment(GTK_MISC(head), 0.0, 0.5); | |
| 122 } | |
| 123 | |
| 124 imd = image_new(FALSE); | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
125 g_object_set(G_OBJECT(imd->pr), "zoom_expand", FALSE, NULL); |
| 9 | 126 gtk_widget_set_size_request(imd->widget, DIALOG_DEF_IMAGE_DIM_X, DIALOG_DEF_IMAGE_DIM_Y); |
| 127 gtk_box_pack_start(GTK_BOX(vbox), imd->widget, TRUE, TRUE, 0); | |
| 138 | 128 image_change_fd(imd, fd2, 0.0); |
| 9 | 129 gtk_widget_show(imd->widget); |
| 130 | |
| 138 | 131 pref_label_new(vbox, fd2->name); |
| 9 | 132 } |
| 133 } | |
| 134 | |
| 138 | 135 static void generic_dialog_image_set(GenericDialog *gd, FileData *fd) |
| 9 | 136 { |
| 137 ImageWindow *imd; | |
| 138 GtkWidget *label; | |
| 442 | 139 |
| 9 | 140 imd = g_object_get_data(G_OBJECT(gd->dialog), "img_image"); |
| 141 label = g_object_get_data(G_OBJECT(gd->dialog), "img_label"); | |
| 142 | |
| 143 if (!imd) return; | |
| 144 | |
| 138 | 145 image_change_fd(imd, fd, 0.0); |
| 146 if (label) gtk_label_set_text(GTK_LABEL(label), fd->name); | |
| 9 | 147 } |
| 148 | |
| 149 /* | |
| 150 *-------------------------------------------------------------------------- | |
| 151 * Wrappers to aid in setting additional dialog properties (unde mouse, etc.) | |
| 152 *-------------------------------------------------------------------------- | |
| 153 */ | |
| 154 | |
| 155 GenericDialog *file_util_gen_dlg(const gchar *title, | |
|
1175
2518a4a73d89
Rename wmsubclass and name to role, which corresponds better to the purpose of the parameter as it ends to be passed to gtk_window_set_role().
zas_
parents:
1174
diff
changeset
|
156 const gchar *role, |
| 9 | 157 GtkWidget *parent, gint auto_close, |
| 158 void (*cancel_cb)(GenericDialog *, gpointer), gpointer data) | |
| 159 { | |
| 160 GenericDialog *gd; | |
| 161 | |
|
1175
2518a4a73d89
Rename wmsubclass and name to role, which corresponds better to the purpose of the parameter as it ends to be passed to gtk_window_set_role().
zas_
parents:
1174
diff
changeset
|
162 gd = generic_dialog_new(title, role, parent, auto_close, cancel_cb, data); |
| 318 | 163 if (options->place_dialogs_under_mouse) |
| 9 | 164 { |
| 165 gtk_window_set_position(GTK_WINDOW(gd->dialog), GTK_WIN_POS_MOUSE); | |
| 166 } | |
| 167 | |
| 168 return gd; | |
| 169 } | |
| 170 | |
| 171 FileDialog *file_util_file_dlg(const gchar *title, | |
|
1175
2518a4a73d89
Rename wmsubclass and name to role, which corresponds better to the purpose of the parameter as it ends to be passed to gtk_window_set_role().
zas_
parents:
1174
diff
changeset
|
172 const gchar *role, |
| 9 | 173 GtkWidget *parent, |
| 174 void (*cancel_cb)(FileDialog *, gpointer), gpointer data) | |
| 175 { | |
| 138 | 176 FileDialog *fdlg; |
| 177 | |
|
1175
2518a4a73d89
Rename wmsubclass and name to role, which corresponds better to the purpose of the parameter as it ends to be passed to gtk_window_set_role().
zas_
parents:
1174
diff
changeset
|
178 fdlg = file_dialog_new(title, role, parent, cancel_cb, data); |
| 318 | 179 if (options->place_dialogs_under_mouse) |
| 9 | 180 { |
| 138 | 181 gtk_window_set_position(GTK_WINDOW(GENERIC_DIALOG(fdlg)->dialog), GTK_WIN_POS_MOUSE); |
| 9 | 182 } |
| 183 | |
| 138 | 184 return fdlg; |
| 9 | 185 } |
| 186 | |
| 187 /* this warning dialog is copied from SLIK's ui_utildg.c, | |
| 188 * because it does not have a mouse center option, | |
| 189 * and we must center it before show, implement it here. | |
| 190 */ | |
| 191 static void file_util_warning_dialog_ok_cb(GenericDialog *gd, gpointer data) | |
| 192 { | |
| 193 /* no op */ | |
| 194 } | |
| 195 | |
| 196 GenericDialog *file_util_warning_dialog(const gchar *heading, const gchar *message, | |
| 197 const gchar *icon_stock_id, GtkWidget *parent) | |
| 198 { | |
| 199 GenericDialog *gd; | |
| 200 | |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1055
diff
changeset
|
201 gd = file_util_gen_dlg(heading, "warning", parent, TRUE, NULL, NULL); |
| 9 | 202 generic_dialog_add_message(gd, icon_stock_id, heading, message); |
| 203 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, file_util_warning_dialog_ok_cb, TRUE); | |
| 318 | 204 if (options->place_dialogs_under_mouse) |
| 9 | 205 { |
| 206 gtk_window_set_position(GTK_WINDOW(gd->dialog), GTK_WIN_POS_MOUSE); | |
| 207 } | |
| 208 gtk_widget_show(gd->dialog); | |
| 209 | |
| 210 return gd; | |
| 211 } | |
| 1 | 212 |
|
42
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
213 static gint filename_base_length(const gchar *name) |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
214 { |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
215 gint n; |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
216 |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
217 if (!name) return 0; |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
218 |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
219 n = strlen(name); |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
220 |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
221 if (filter_name_exists(name)) |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
222 { |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
223 const gchar *ext; |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
224 |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
225 ext = extension_from_path(name); |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
226 if (ext) n -= strlen(ext); |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
227 } |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
228 |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
229 return n; |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
230 } |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
231 |
|
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
232 |
| 753 | 233 |
| 140 | 234 |
| 753 | 235 typedef enum { |
| 236 UTILITY_TYPE_COPY, | |
| 237 UTILITY_TYPE_MOVE, | |
| 238 UTILITY_TYPE_RENAME, | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
239 UTILITY_TYPE_RENAME_FOLDER, |
| 753 | 240 UTILITY_TYPE_EDITOR, |
| 241 UTILITY_TYPE_FILTER, | |
| 242 UTILITY_TYPE_DELETE, | |
| 243 UTILITY_TYPE_DELETE_LINK, | |
| 901 | 244 UTILITY_TYPE_DELETE_FOLDER, |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
245 UTILITY_TYPE_CREATE_FOLDER, |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
246 UTILITY_TYPE_WRITE_METADATA |
| 753 | 247 } UtilityType; |
| 248 | |
| 249 typedef enum { | |
| 250 UTILITY_PHASE_START = 0, | |
| 251 UTILITY_PHASE_ENTERING, | |
| 252 UTILITY_PHASE_CHECKED, | |
| 253 UTILITY_PHASE_DONE, | |
| 254 UTILITY_PHASE_CANCEL | |
| 255 } UtilityPhase; | |
| 256 | |
| 257 enum { | |
| 258 UTILITY_RENAME = 0, | |
| 259 UTILITY_RENAME_AUTO, | |
| 260 UTILITY_RENAME_FORMATTED | |
| 261 }; | |
| 262 | |
| 263 typedef struct _UtilityDataMessages UtilityDataMessages; | |
| 264 struct _UtilityDataMessages { | |
| 265 gchar *title; | |
| 266 gchar *question; | |
| 267 gchar *desc_flist; | |
| 268 gchar *desc_source_fd; | |
| 269 gchar *fail; | |
| 270 }; | |
| 271 | |
| 272 typedef struct _UtilityData UtilityData; | |
| 273 | |
| 274 struct _UtilityData { | |
| 275 UtilityType type; | |
| 276 UtilityPhase phase; | |
| 277 | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
278 FileData *dir_fd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
279 GList *content_list; |
| 753 | 280 GList *flist; |
| 281 | |
| 282 GtkWidget *parent; | |
| 283 GenericDialog *gd; | |
| 284 FileDialog *fdlg; | |
| 285 | |
| 286 gint update_idle_id; | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
287 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
288 gboolean with_sidecars; /* operate on grouped or single files; TRUE = use file_data_sc_, FALSE = use file_data_ functions */ |
| 753 | 289 |
| 290 /* alternative dialog parts */ | |
| 291 GtkWidget *notebook; | |
| 292 | |
| 293 UtilityDataMessages messages; | |
| 294 | |
| 295 /* helper entries for various modes */ | |
| 296 GtkWidget *rename_entry; | |
| 297 GtkWidget *rename_label; | |
| 298 GtkWidget *auto_entry_front; | |
| 299 GtkWidget *auto_entry_end; | |
| 300 GtkWidget *auto_spin_start; | |
| 301 GtkWidget *auto_spin_pad; | |
| 302 GtkWidget *format_entry; | |
| 303 GtkWidget *format_spin; | |
| 304 | |
| 305 GtkWidget *listview; | |
| 306 | |
| 307 | |
| 308 gchar *dest_path; | |
| 309 | |
| 310 /* data for the operation itself, internal or external */ | |
| 755 | 311 gboolean external; /* TRUE for external command, FALSE for internal */ |
| 753 | 312 |
| 313 gint external_command; | |
| 314 gpointer resume_data; | |
| 315 }; | |
| 316 | |
| 317 enum { | |
| 318 UTILITY_COLUMN_FD = 0, | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
319 UTILITY_COLUMN_PIXBUF, |
| 753 | 320 UTILITY_COLUMN_PATH, |
| 321 UTILITY_COLUMN_NAME, | |
| 322 UTILITY_COLUMN_SIDECARS, | |
| 323 UTILITY_COLUMN_DEST_PATH, | |
| 324 UTILITY_COLUMN_DEST_NAME, | |
| 325 UTILITY_COLUMN_COUNT | |
| 326 }; | |
| 327 | |
| 328 #define UTILITY_LIST_MIN_WIDTH 250 | |
| 329 #define UTILITY_LIST_MIN_HEIGHT 150 | |
| 330 | |
| 331 /* thumbnail spec has a max depth of 4 (.thumb??/fail/appname/??.png) */ | |
| 332 #define UTILITY_DELETE_MAX_DEPTH 5 | |
| 333 | |
| 334 static UtilityData *file_util_data_new(UtilityType type) | |
| 136 | 335 { |
| 753 | 336 UtilityData *ud; |
| 337 | |
| 338 ud = g_new0(UtilityData, 1); | |
| 339 ud->type = type; | |
| 340 ud->phase = UTILITY_PHASE_START; | |
| 341 ud->update_idle_id = -1; | |
| 342 ud->external_command = -1; | |
| 343 return ud; | |
| 344 } | |
| 345 | |
| 346 static void file_util_data_free(UtilityData *ud) | |
| 347 { | |
| 348 if (!ud) return; | |
| 349 | |
| 350 if (ud->update_idle_id != -1) g_source_remove(ud->update_idle_id); | |
| 351 | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
352 file_data_unref(ud->dir_fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
353 filelist_free(ud->content_list); |
| 753 | 354 filelist_free(ud->flist); |
| 355 | |
| 356 if (ud->gd) generic_dialog_close(ud->gd); | |
| 357 | |
| 358 g_free(ud->dest_path); | |
| 359 | |
| 360 g_free(ud); | |
| 361 } | |
| 362 | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
363 static GtkTreeViewColumn *file_util_dialog_add_list_column(GtkWidget *view, const gchar *text, gboolean image, gint n) |
| 753 | 364 { |
| 365 GtkTreeViewColumn *column; | |
| 366 GtkCellRenderer *renderer; | |
| 367 | |
| 368 column = gtk_tree_view_column_new(); | |
| 369 gtk_tree_view_column_set_title(column, text); | |
| 370 gtk_tree_view_column_set_min_width(column, 4); | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
371 if (image) |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
372 { |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
373 gtk_tree_view_column_set_min_width(column, 20); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
374 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
375 renderer = gtk_cell_renderer_pixbuf_new(); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
376 gtk_tree_view_column_pack_start(column, renderer, TRUE); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
377 gtk_tree_view_column_add_attribute(column, renderer, "pixbuf", n); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
378 } |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
379 else |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
380 { |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
381 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
382 renderer = gtk_cell_renderer_text_new(); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
383 gtk_tree_view_column_pack_start(column, renderer, TRUE); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
384 gtk_tree_view_column_add_attribute(column, renderer, "text", n); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
385 } |
| 753 | 386 gtk_tree_view_append_column(GTK_TREE_VIEW(view), column); |
| 387 | |
| 388 return column; | |
| 389 } | |
| 390 | |
| 391 static void file_util_dialog_list_select(GtkWidget *view, gint n) | |
| 392 { | |
| 393 GtkTreeModel *store; | |
| 394 GtkTreeIter iter; | |
| 395 GtkTreeSelection *selection; | |
| 396 | |
| 397 store = gtk_tree_view_get_model(GTK_TREE_VIEW(view)); | |
| 398 if (gtk_tree_model_iter_nth_child(store, &iter, NULL, n)) | |
| 140 | 399 { |
| 753 | 400 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(view)); |
| 401 gtk_tree_selection_select_iter(selection, &iter); | |
| 402 } | |
| 403 } | |
| 404 | |
| 1211 | 405 static GtkWidget *file_util_dialog_add_list(GtkWidget *box, GList *list, gint full_paths, gboolean with_sidecars) |
| 753 | 406 { |
| 407 GtkWidget *scrolled; | |
| 408 GtkWidget *view; | |
| 409 GtkListStore *store; | |
| 410 | |
| 411 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
| 412 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
| 413 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
| 414 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); | |
| 415 gtk_box_pack_start(GTK_BOX(box), scrolled, TRUE, TRUE, 0); | |
| 416 gtk_widget_show(scrolled); | |
| 417 | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
418 store = gtk_list_store_new(UTILITY_COLUMN_COUNT, G_TYPE_POINTER, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING); |
| 753 | 419 view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store)); |
| 420 g_object_unref(store); | |
| 421 | |
| 422 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(view), TRUE); | |
| 423 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(view), FALSE); | |
| 424 | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
425 file_util_dialog_add_list_column(view, "", TRUE, UTILITY_COLUMN_PIXBUF); |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
426 |
| 753 | 427 if (full_paths) |
| 428 { | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
429 file_util_dialog_add_list_column(view, _("Location"), FALSE, UTILITY_COLUMN_PATH); |
| 140 | 430 } |
| 138 | 431 else |
| 432 { | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
433 file_util_dialog_add_list_column(view, _("Name"), FALSE, UTILITY_COLUMN_NAME); |
| 138 | 434 } |
| 435 | |
| 753 | 436 gtk_widget_set_size_request(view, UTILITY_LIST_MIN_WIDTH, UTILITY_LIST_MIN_HEIGHT); |
| 437 gtk_container_add(GTK_CONTAINER(scrolled), view); | |
| 438 gtk_widget_show(view); | |
| 136 | 439 |
| 140 | 440 while (list) |
| 441 { | |
| 442 FileData *fd = list->data; | |
| 753 | 443 GtkTreeIter iter; |
| 444 gchar *sidecars; | |
| 445 | |
| 1211 | 446 sidecars = with_sidecars ? file_data_sc_list_to_string(fd) : NULL; |
| 753 | 447 |
| 448 gtk_list_store_append(store, &iter); | |
| 757 | 449 gtk_list_store_set(store, &iter, |
| 450 UTILITY_COLUMN_FD, fd, | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
451 UTILITY_COLUMN_PIXBUF, file_util_get_error_icon(fd, view), |
| 757 | 452 UTILITY_COLUMN_PATH, fd->path, |
| 453 UTILITY_COLUMN_NAME, fd->name, | |
| 454 UTILITY_COLUMN_SIDECARS, sidecars, | |
| 455 UTILITY_COLUMN_DEST_PATH, fd->change ? fd->change->dest : "error", | |
| 456 UTILITY_COLUMN_DEST_NAME, fd->change ? filename_from_path(fd->change->dest) : "error", | |
| 457 -1); | |
| 753 | 458 g_free(sidecars); |
| 459 | |
| 140 | 460 list = list->next; |
| 461 } | |
| 753 | 462 |
| 463 return view; | |
| 464 } | |
| 465 | |
| 466 | |
| 897 | 467 static void file_util_perform_ci_internal(UtilityData *ud); |
| 753 | 468 void file_util_dialog_run(UtilityData *ud); |
| 469 static gint file_util_perform_ci_cb(gpointer resume_data, gint flags, GList *list, gpointer data); | |
| 470 | |
| 471 /* call file_util_perform_ci_internal or start_editor_from_filelist_full */ | |
| 472 | |
| 473 | |
| 474 static void file_util_resume_cb(GenericDialog *gd, gpointer data) | |
| 475 { | |
| 476 UtilityData *ud = data; | |
| 477 if (ud->external) | |
| 478 editor_resume(ud->resume_data); | |
| 479 else | |
| 480 file_util_perform_ci_internal(ud); | |
| 481 } | |
| 482 | |
| 483 static void file_util_abort_cb(GenericDialog *gd, gpointer data) | |
| 484 { | |
| 485 UtilityData *ud = data; | |
| 486 if (ud->external) | |
| 487 editor_skip(ud->resume_data); | |
| 488 else | |
| 489 file_util_perform_ci_cb(NULL, EDITOR_ERROR_SKIPPED, ud->flist, ud); | |
| 140 | 490 |
| 491 } | |
| 492 | |
| 493 | |
| 753 | 494 static gint file_util_perform_ci_cb(gpointer resume_data, gint flags, GList *list, gpointer data) |
| 1 | 495 { |
| 753 | 496 UtilityData *ud = data; |
| 497 ud->resume_data = resume_data; | |
| 497 | 498 |
| 140 | 499 gint ret = EDITOR_CB_CONTINUE; |
| 500 if ((flags & EDITOR_ERROR_MASK) && !(flags & EDITOR_ERROR_SKIPPED)) | |
| 501 { | |
| 757 | 502 GString *msg = g_string_new(editor_get_error_str(flags)); |
| 503 GenericDialog *d; | |
| 504 g_string_append(msg, "\n"); | |
| 505 g_string_append(msg, ud->messages.fail); | |
| 506 g_string_append(msg, "\n"); | |
| 507 while (list) | |
| 508 { | |
| 509 FileData *fd = list->data; | |
| 442 | 510 |
| 757 | 511 g_string_append(msg, fd->path); |
| 512 g_string_append(msg, "\n"); | |
| 513 list = list->next; | |
| 514 } | |
| 515 if (resume_data) | |
| 516 { | |
| 517 g_string_append(msg, _("\n Continue multiple file operation?")); | |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1055
diff
changeset
|
518 d = file_util_gen_dlg(ud->messages.fail, "dlg_confirm", |
| 757 | 519 NULL, TRUE, |
| 520 file_util_abort_cb, ud); | |
| 140 | 521 |
| 757 | 522 generic_dialog_add_message(d, GTK_STOCK_DIALOG_WARNING, NULL, msg->str); |
| 140 | 523 |
| 757 | 524 generic_dialog_add_button(d, GTK_STOCK_GO_FORWARD, _("Co_ntinue"), |
| 525 file_util_resume_cb, TRUE); | |
| 526 gtk_widget_show(d->dialog); | |
| 527 ret = EDITOR_CB_SUSPEND; | |
| 528 } | |
| 529 else | |
| 530 { | |
| 531 file_util_warning_dialog(ud->messages.fail, msg->str, GTK_STOCK_DIALOG_ERROR, NULL); | |
| 532 } | |
| 533 g_string_free(msg, TRUE); | |
| 140 | 534 } |
| 442 | 535 |
| 536 | |
| 753 | 537 while (list) /* be careful, file_util_perform_ci_internal can pass ud->flist as list */ |
| 140 | 538 { |
| 753 | 539 FileData *fd = list->data; |
| 995 | 540 list = list->next; |
| 753 | 541 |
| 542 if (!(flags & EDITOR_ERROR_MASK)) /* files were successfully deleted, call the maint functions */ | |
| 761 | 543 { |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
544 if (ud->with_sidecars) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
545 file_data_sc_apply_ci(fd); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
546 else |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
547 file_data_apply_ci(fd); |
| 761 | 548 } |
| 753 | 549 |
| 550 ud->flist = g_list_remove(ud->flist, fd); | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
551 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
552 /* FIXME: put it here for now */ |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
553 if (ud->type == UTILITY_TYPE_WRITE_METADATA) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
554 { |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
555 metadata_write_queue_remove(fd); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
556 } |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
557 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
558 if (ud->with_sidecars) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
559 file_data_sc_free_ci(fd); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
560 else |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
561 file_data_free_ci(fd); |
| 753 | 562 file_data_unref(fd); |
| 140 | 563 } |
| 753 | 564 |
| 565 if (!resume_data) /* end of the list */ | |
| 566 { | |
| 567 ud->phase = UTILITY_PHASE_DONE; | |
| 568 file_util_dialog_run(ud); | |
| 569 } | |
| 570 | |
| 140 | 571 return ret; |
| 572 } | |
| 573 | |
|
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
140
diff
changeset
|
574 |
| 753 | 575 /* |
| 756 | 576 * Perform the operation described by FileDataChangeInfo on all files in the list |
| 753 | 577 * it is an alternative to start_editor_from_filelist_full, it should use similar interface |
| 995 | 578 */ |
|
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
140
diff
changeset
|
579 |
| 1 | 580 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
581 static void file_util_perform_ci_internal(UtilityData *ud) |
| 753 | 582 { |
| 583 | |
| 584 while (ud->flist) | |
| 1 | 585 { |
| 753 | 586 gint ret; |
| 587 | |
| 588 /* take a single entry each time, this allows better control over the operation */ | |
| 589 GList *single_entry = g_list_append(NULL, ud->flist->data); | |
| 590 gboolean last = !ud->flist->next; | |
| 757 | 591 gint status = EDITOR_ERROR_STATUS; |
| 592 | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
593 if (ud->with_sidecars ? file_data_sc_perform_ci(single_entry->data) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
594 : file_data_perform_ci(single_entry->data)) |
| 757 | 595 status = 0; /* OK */ |
| 596 | |
| 597 ret = file_util_perform_ci_cb(GINT_TO_POINTER(!last), status, single_entry, ud); | |
| 753 | 598 g_list_free(single_entry); |
| 599 | |
| 600 if (ret == EDITOR_CB_SUSPEND || last) return; | |
| 601 | |
| 602 if (ret == EDITOR_CB_SKIP) | |
| 603 { | |
| 604 file_util_perform_ci_cb(NULL, EDITOR_ERROR_SKIPPED, ud->flist, ud); | |
| 605 } | |
| 606 | |
| 607 /* FIXME: convert the loop to idle call */ | |
| 608 | |
| 1 | 609 } |
| 610 } | |
| 611 | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
612 static void file_util_perform_ci_dir(UtilityData *ud, gboolean internal, gboolean ext_result) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
613 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
614 switch (ud->type) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
615 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
616 case UTILITY_TYPE_DELETE_LINK: |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
617 { |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
618 g_assert(ud->dir_fd->sidecar_files == NULL); // directories should not have sidecars |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
619 if ((internal && file_data_perform_ci(ud->dir_fd)) || |
| 897 | 620 (!internal && ext_result)) |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
621 { |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
622 file_data_apply_ci(ud->dir_fd); |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
623 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
624 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
625 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
626 gchar *text; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
627 |
| 901 | 628 text = g_strdup_printf("%s:\n\n%s", ud->messages.fail, ud->dir_fd->path); |
| 629 file_util_warning_dialog(ud->messages.fail, text, GTK_STOCK_DIALOG_ERROR, NULL); | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
630 g_free(text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
631 } |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
632 file_data_free_ci(ud->dir_fd); |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
633 break; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
634 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
635 case UTILITY_TYPE_DELETE_FOLDER: |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
636 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
637 FileData *fail = NULL; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
638 GList *work; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
639 work = ud->content_list; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
640 while (work) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
641 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
642 FileData *fd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
643 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
644 fd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
645 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
646 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
647 if (!fail) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
648 { |
| 897 | 649 if ((internal && file_data_sc_perform_ci(fd)) || |
| 650 (!internal && ext_result)) | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
651 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
652 file_data_sc_apply_ci(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
653 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
654 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
655 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
656 if (internal) fail = file_data_ref(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
657 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
658 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
659 file_data_sc_free_ci(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
660 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
661 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
662 if (!fail) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
663 { |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
664 g_assert(ud->dir_fd->sidecar_files == NULL); // directories should not have sidecars |
| 897 | 665 if ((internal && file_data_sc_perform_ci(ud->dir_fd)) || |
| 666 (!internal && ext_result)) | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
667 { |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
668 file_data_apply_ci(ud->dir_fd); |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
669 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
670 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
671 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
672 fail = file_data_ref(ud->dir_fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
673 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
674 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
675 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
676 if (fail) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
677 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
678 gchar *text; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
679 GenericDialog *gd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
680 |
| 901 | 681 text = g_strdup_printf("%s:\n\n%s", ud->messages.fail, ud->dir_fd->path); |
| 682 gd = file_util_warning_dialog(ud->messages.fail, text, GTK_STOCK_DIALOG_ERROR, NULL); | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
683 g_free(text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
684 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
685 if (fail != ud->dir_fd) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
686 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
687 pref_spacer(gd->vbox, PREF_PAD_GROUP); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
688 text = g_strdup_printf(_("Removal of folder contents failed at this file:\n\n%s"), |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
689 fail->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
690 pref_label_new(gd->vbox, text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
691 g_free(text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
692 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
693 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
694 file_data_unref(fail); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
695 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
696 break; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
697 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
698 case UTILITY_TYPE_RENAME_FOLDER: |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
699 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
700 FileData *fail = NULL; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
701 GList *work; |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
702 g_assert(ud->dir_fd->sidecar_files == NULL); // directories should not have sidecars |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
703 |
| 897 | 704 if ((internal && file_data_sc_perform_ci(ud->dir_fd)) || |
| 705 (!internal && ext_result)) | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
706 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
707 file_data_sc_apply_ci(ud->dir_fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
708 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
709 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
710 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
711 fail = file_data_ref(ud->dir_fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
712 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
713 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
714 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
715 work = ud->content_list; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
716 while (work) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
717 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
718 FileData *fd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
719 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
720 fd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
721 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
722 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
723 if (!fail) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
724 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
725 file_data_sc_apply_ci(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
726 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
727 file_data_sc_free_ci(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
728 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
729 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
730 if (fail) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
731 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
732 gchar *text; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
733 GenericDialog *gd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
734 |
| 901 | 735 text = g_strdup_printf("%s:\n\n%s", ud->messages.fail, ud->dir_fd->path); |
| 736 gd = file_util_warning_dialog(ud->messages.fail, text, GTK_STOCK_DIALOG_ERROR, NULL); | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
737 g_free(text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
738 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
739 file_data_unref(fail); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
740 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
741 break; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
742 } |
| 901 | 743 case UTILITY_TYPE_CREATE_FOLDER: |
| 744 { | |
| 745 if ((internal && mkdir_utf8(ud->dir_fd->path, 0755)) || | |
| 746 (!internal && ext_result)) | |
| 747 { | |
|
974
c466b8fabcc3
update the FileData structure when a new folder is created
nadvornik
parents:
947
diff
changeset
|
748 file_data_check_changed_files(ud->dir_fd); /* this will update the FileData and send notification */ |
| 901 | 749 } |
| 750 else | |
| 751 { | |
| 752 gchar *text; | |
| 753 GenericDialog *gd; | |
| 754 | |
| 755 text = g_strdup_printf("%s:\n\n%s", ud->messages.fail, ud->dir_fd->path); | |
| 756 gd = file_util_warning_dialog(ud->messages.fail, text, GTK_STOCK_DIALOG_ERROR, NULL); | |
| 757 g_free(text); | |
| 758 } | |
| 759 | |
| 760 break; | |
| 761 } | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
762 default: |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
763 g_warning("unhandled operation"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
764 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
765 ud->phase = UTILITY_PHASE_DONE; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
766 file_util_dialog_run(ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
767 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
768 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
769 static gint file_util_perform_ci_dir_cb(gpointer resume_data, gint flags, GList *list, gpointer data) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
770 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
771 UtilityData *ud = data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
772 file_util_perform_ci_dir(ud, FALSE, !((flags & EDITOR_ERROR_MASK) && !(flags & EDITOR_ERROR_SKIPPED))); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
773 return EDITOR_CB_CONTINUE; /* does not matter, there was just single directory */ |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
774 } |
| 9 | 775 |
| 753 | 776 void file_util_perform_ci(UtilityData *ud) |
| 777 { | |
| 778 switch (ud->type) | |
| 779 { | |
| 780 case UTILITY_TYPE_COPY: | |
| 781 ud->external_command = CMD_COPY; | |
| 782 break; | |
| 783 case UTILITY_TYPE_MOVE: | |
| 784 ud->external_command = CMD_MOVE; | |
| 785 break; | |
| 786 case UTILITY_TYPE_RENAME: | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
787 case UTILITY_TYPE_RENAME_FOLDER: |
| 753 | 788 ud->external_command = CMD_RENAME; |
| 789 break; | |
| 790 case UTILITY_TYPE_DELETE: | |
| 791 case UTILITY_TYPE_DELETE_LINK: | |
| 792 case UTILITY_TYPE_DELETE_FOLDER: | |
| 793 ud->external_command = CMD_DELETE; | |
| 794 break; | |
| 901 | 795 case UTILITY_TYPE_CREATE_FOLDER: |
| 796 ud->external_command = CMD_FOLDER; | |
| 797 break; | |
| 753 | 798 case UTILITY_TYPE_FILTER: |
| 799 case UTILITY_TYPE_EDITOR: | |
| 800 g_assert(ud->external_command != -1); /* it should be already set */ | |
| 801 break; | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
802 case UTILITY_TYPE_WRITE_METADATA: |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
803 ud->external_command = -1; |
| 753 | 804 } |
| 9 | 805 |
|
766
7148e125bf23
Check for existing editor command using is_valid_editor_command().
zas_
parents:
761
diff
changeset
|
806 if (is_valid_editor_command(ud->external_command)) |
| 9 | 807 { |
| 753 | 808 gint flags; |
| 757 | 809 |
| 753 | 810 ud->external = TRUE; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
811 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
812 if (ud->dir_fd) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
813 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
814 flags = start_editor_from_file_full(ud->external_command, ud->dir_fd, file_util_perform_ci_dir_cb, ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
815 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
816 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
817 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
818 flags = start_editor_from_filelist_full(ud->external_command, ud->flist, file_util_perform_ci_cb, ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
819 } |
| 757 | 820 |
| 821 if (flags) | |
| 9 | 822 { |
| 753 | 823 gchar *text = g_strdup_printf(_("%s\nUnable to start external command.\n"), editor_get_error_str(flags)); |
| 824 file_util_warning_dialog(ud->messages.fail, text, GTK_STOCK_DIALOG_ERROR, NULL); | |
| 825 g_free(text); | |
| 9 | 826 } |
| 827 } | |
| 828 else | |
| 829 { | |
| 753 | 830 ud->external = FALSE; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
831 if (ud->dir_fd) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
832 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
833 file_util_perform_ci_dir(ud, TRUE, FALSE); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
834 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
835 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
836 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
837 file_util_perform_ci_internal(ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
838 } |
| 1 | 839 } |
| 840 } | |
| 841 | |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
842 static GdkPixbuf *file_util_get_error_icon(FileData *fd, GtkWidget *widget) |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
843 { |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
844 static GdkPixbuf *pb_warning; |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
845 static GdkPixbuf *pb_error; |
| 932 | 846 static GdkPixbuf *pb_apply; |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
847 gint error; |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
848 |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
849 if (!pb_warning) |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
850 { |
| 995 | 851 pb_warning = gtk_widget_render_icon(widget, GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_MENU, NULL); |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
852 } |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
853 |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
854 if (!pb_error) |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
855 { |
| 995 | 856 pb_error = gtk_widget_render_icon(widget, GTK_STOCK_DIALOG_ERROR, GTK_ICON_SIZE_MENU, NULL); |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
857 } |
| 932 | 858 |
| 859 if (!pb_apply) | |
| 860 { | |
| 995 | 861 pb_apply = gtk_widget_render_icon(widget, GTK_STOCK_APPLY, GTK_ICON_SIZE_MENU, NULL); |
| 932 | 862 } |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
863 |
| 928 | 864 error = file_data_sc_verify_ci(fd); |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
865 |
| 932 | 866 if (!error) return pb_apply; |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
867 |
| 995 | 868 if (error & CHANGE_ERROR_MASK) |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
869 { |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
870 return pb_error; |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
871 } |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
872 else |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
873 { |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
874 return pb_warning; |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
875 } |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
876 } |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
877 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
878 static void file_util_check_resume_cb(GenericDialog *gd, gpointer data) |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
879 { |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
880 UtilityData *ud = data; |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
881 ud->phase = UTILITY_PHASE_CHECKED; |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
882 file_util_dialog_run(ud); |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
883 } |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
884 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
885 static void file_util_check_abort_cb(GenericDialog *gd, gpointer data) |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
886 { |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
887 UtilityData *ud = data; |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
888 ud->phase = UTILITY_PHASE_START; |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
889 file_util_dialog_run(ud); |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
890 } |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
891 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
892 void file_util_check_ci(UtilityData *ud) |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
893 { |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
894 gint error = CHANGE_OK; |
| 928 | 895 gchar *desc = NULL; |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
896 |
| 935 | 897 if (ud->type != UTILITY_TYPE_CREATE_FOLDER) |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
898 { |
| 935 | 899 if (ud->dest_path && !isdir(ud->dest_path)) |
| 900 { | |
| 901 error = CHANGE_GENERIC_ERROR; | |
| 902 desc = g_strdup_printf(_("%s is not a directory"), ud->dest_path); | |
| 903 } | |
| 904 else if (ud->dir_fd) | |
| 905 { | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
906 g_assert(ud->dir_fd->sidecar_files == NULL); // directories should not have sidecars |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
907 error = file_data_verify_ci(ud->dir_fd); |
| 935 | 908 if (error) desc = file_data_get_error_string(error); |
| 909 } | |
| 910 else | |
| 911 { | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
912 error = file_data_verify_ci_list(ud->flist, &desc, ud->with_sidecars); |
| 935 | 913 } |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
914 } |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
915 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
916 if (!error) |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
917 { |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
918 ud->phase = UTILITY_PHASE_CHECKED; |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
919 file_util_dialog_run(ud); |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
920 return; |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
921 } |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
922 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
923 if (!(error & CHANGE_ERROR_MASK)) |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
924 { |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
925 /* just a warning */ |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
926 GenericDialog *d; |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
927 |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1055
diff
changeset
|
928 d = file_util_gen_dlg(ud->messages.title, "dlg_confirm", |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
929 ud->parent, TRUE, |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
930 file_util_check_abort_cb, ud); |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
931 |
| 928 | 932 generic_dialog_add_message(d, GTK_STOCK_DIALOG_WARNING, _("Really continue?"), desc); |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
933 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
934 generic_dialog_add_button(d, GTK_STOCK_GO_FORWARD, _("Co_ntinue"), |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
935 file_util_check_resume_cb, TRUE); |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
936 gtk_widget_show(d->dialog); |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
937 } |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
938 else |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
939 { |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
940 /* fatal error */ |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
941 GenericDialog *d; |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
942 |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1055
diff
changeset
|
943 d = file_util_gen_dlg(ud->messages.title, "dlg_confirm", |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
944 ud->parent, TRUE, |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
945 file_util_check_abort_cb, ud); |
| 937 | 946 generic_dialog_add_message(d, GTK_STOCK_DIALOG_WARNING, _("This operation can't continue:"), desc); |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
947 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
948 gtk_widget_show(d->dialog); |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
949 } |
| 928 | 950 g_free(desc); |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
951 } |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
952 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
953 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
954 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
955 |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
956 |
| 757 | 957 static void file_util_cancel_cb(GenericDialog *gd, gpointer data) |
| 753 | 958 { |
| 959 UtilityData *ud = data; | |
| 960 | |
| 961 generic_dialog_close(gd); | |
| 1 | 962 |
| 753 | 963 ud->gd = NULL; |
| 964 | |
| 965 ud->phase = UTILITY_PHASE_CANCEL; | |
| 966 file_util_dialog_run(ud); | |
| 1 | 967 } |
| 968 | |
| 757 | 969 static void file_util_ok_cb(GenericDialog *gd, gpointer data) |
| 1 | 970 { |
| 753 | 971 UtilityData *ud = data; |
| 972 | |
| 973 generic_dialog_close(gd); | |
| 974 | |
| 975 ud->gd = NULL; | |
| 138 | 976 |
| 753 | 977 file_util_dialog_run(ud); |
| 1 | 978 } |
| 979 | |
| 757 | 980 static void file_util_fdlg_cancel_cb(FileDialog *fdlg, gpointer data) |
| 1 | 981 { |
| 753 | 982 UtilityData *ud = data; |
| 675 | 983 |
| 753 | 984 file_dialog_close(fdlg); |
| 9 | 985 |
| 753 | 986 ud->fdlg = NULL; |
| 987 | |
| 988 ud->phase = UTILITY_PHASE_CANCEL; | |
| 989 file_util_dialog_run(ud); | |
| 990 } | |
| 9 | 991 |
| 900 | 992 static void file_util_dest_folder_update_path(UtilityData *ud) |
| 753 | 993 { |
| 994 g_free(ud->dest_path); | |
| 900 | 995 ud->dest_path = g_strdup(gtk_entry_get_text(GTK_ENTRY(ud->fdlg->entry))); |
| 753 | 996 |
| 997 switch (ud->type) | |
| 1 | 998 { |
| 753 | 999 case UTILITY_TYPE_COPY: |
| 1000 file_data_sc_update_ci_copy_list(ud->flist, ud->dest_path); | |
| 1001 case UTILITY_TYPE_MOVE: | |
| 1002 file_data_sc_update_ci_move_list(ud->flist, ud->dest_path); | |
| 1003 break; | |
| 1004 case UTILITY_TYPE_FILTER: | |
| 1005 case UTILITY_TYPE_EDITOR: | |
| 1006 file_data_sc_update_ci_unspecified_list(ud->flist, ud->dest_path); | |
| 1007 break; | |
| 901 | 1008 case UTILITY_TYPE_CREATE_FOLDER: |
| 1009 file_data_unref(ud->dir_fd); | |
| 1010 ud->dir_fd = file_data_new_simple(ud->dest_path); | |
| 1011 break; | |
| 753 | 1012 case UTILITY_TYPE_DELETE: |
| 1013 case UTILITY_TYPE_DELETE_LINK: | |
| 1014 case UTILITY_TYPE_DELETE_FOLDER: | |
| 1015 case UTILITY_TYPE_RENAME: | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1016 case UTILITY_TYPE_RENAME_FOLDER: |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1017 case UTILITY_TYPE_WRITE_METADATA: |
| 753 | 1018 g_warning("unhandled operation"); |
| 1 | 1019 } |
| 1020 } | |
| 1021 | |
| 900 | 1022 static void file_util_fdlg_ok_cb(FileDialog *fdlg, gpointer data) |
| 1023 { | |
| 1024 UtilityData *ud = data; | |
| 1025 | |
| 1026 file_util_dest_folder_update_path(ud); | |
| 946 | 1027 if (isdir(ud->dest_path)) file_dialog_sync_history(fdlg, TRUE); |
| 900 | 1028 file_dialog_close(fdlg); |
| 1029 | |
| 1030 ud->fdlg = NULL; | |
| 1031 | |
| 1032 file_util_dialog_run(ud); | |
| 1033 } | |
| 1034 | |
| 1035 | |
| 1036 static void file_util_dest_folder_entry_cb(GtkWidget *entry, gpointer data) | |
| 1037 { | |
| 1038 UtilityData *ud = data; | |
| 1039 file_util_dest_folder_update_path(ud); | |
| 1040 } | |
| 1 | 1041 |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1042 /* format: * = filename without extension, ## = number position, extension is kept */ |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1043 static gchar *file_util_rename_multiple_auto_format_name(const gchar *format, const gchar *name, gint n) |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1044 { |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1045 gchar *new_name; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1046 gchar *parsed; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1047 const gchar *ext; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1048 gchar *middle; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1049 gchar *tmp; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1050 gchar *pad_start; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1051 gchar *pad_end; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1052 gint padding; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1053 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1054 if (!format || !name) return NULL; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1055 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1056 tmp = g_strdup(format); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1057 pad_start = strchr(tmp, '#'); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1058 if (pad_start) |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1059 { |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1060 pad_end = pad_start; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1061 padding = 0; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1062 while (*pad_end == '#') |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1063 { |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1064 pad_end++; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1065 padding++; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1066 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1067 *pad_start = '\0'; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1068 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1069 parsed = g_strdup_printf("%s%0*d%s", tmp, padding, n, pad_end); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1070 g_free(tmp); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1071 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1072 else |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1073 { |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1074 parsed = tmp; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1075 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1076 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1077 ext = extension_from_path(name); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1078 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1079 middle = strchr(parsed, '*'); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1080 if (middle) |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1081 { |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1082 gchar *base; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1083 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1084 *middle = '\0'; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1085 middle++; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1086 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1087 base = remove_extension_from_path(name); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1088 new_name = g_strconcat(parsed, base, middle, ext, NULL); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1089 g_free(base); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1090 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1091 else |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1092 { |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1093 new_name = g_strconcat(parsed, ext, NULL); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1094 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1095 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1096 g_free(parsed); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1097 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1098 return new_name; |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1099 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1100 |
| 9 | 1101 |
| 753 | 1102 static void file_util_rename_preview_update(UtilityData *ud) |
| 1 | 1103 { |
| 9 | 1104 GtkTreeModel *store; |
| 753 | 1105 GtkTreeSelection *selection; |
| 9 | 1106 GtkTreeIter iter; |
| 1107 const gchar *front; | |
| 1108 const gchar *end; | |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1109 const gchar *format; |
| 9 | 1110 gint valid; |
| 1111 gint start_n; | |
| 1112 gint padding; | |
| 1113 gint n; | |
| 753 | 1114 gint mode; |
| 9 | 1115 |
| 753 | 1116 mode = gtk_notebook_get_current_page(GTK_NOTEBOOK(ud->notebook)); |
| 9 | 1117 |
| 753 | 1118 if (mode == UTILITY_RENAME) |
| 1119 { | |
| 1120 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ud->listview)); | |
| 1121 if (gtk_tree_selection_get_selected(selection, &store, &iter)) | |
| 1122 { | |
| 1123 FileData *fd; | |
| 1124 const gchar *dest = gtk_entry_get_text(GTK_ENTRY(ud->rename_entry)); | |
| 1125 | |
| 1126 gtk_tree_model_get(store, &iter, UTILITY_COLUMN_FD, &fd, -1); | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1127 g_assert(ud->with_sidecars); /* sidecars must be renamed too, it would break the pairing otherwise */ |
| 753 | 1128 file_data_sc_update_ci_rename(fd, dest); |
| 995 | 1129 gtk_list_store_set(GTK_LIST_STORE(store), &iter, |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
1130 UTILITY_COLUMN_PIXBUF, file_util_get_error_icon(fd, ud->listview), |
| 995 | 1131 UTILITY_COLUMN_DEST_PATH, fd->change->dest, |
| 1132 UTILITY_COLUMN_DEST_NAME, filename_from_path(fd->change->dest), | |
| 753 | 1133 -1); |
| 1134 } | |
| 1135 return; | |
| 1136 } | |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1137 |
| 753 | 1138 |
| 1139 front = gtk_entry_get_text(GTK_ENTRY(ud->auto_entry_front)); | |
| 1140 end = gtk_entry_get_text(GTK_ENTRY(ud->auto_entry_end)); | |
| 1141 padding = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(ud->auto_spin_pad)); | |
| 1142 | |
| 1143 format = gtk_entry_get_text(GTK_ENTRY(ud->format_entry)); | |
| 1144 | |
| 1145 if (mode == UTILITY_RENAME_FORMATTED) | |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1146 { |
| 753 | 1147 start_n = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(ud->format_spin)); |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1148 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1149 else |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1150 { |
| 753 | 1151 start_n = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(ud->auto_spin_start)); |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1152 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1153 |
| 753 | 1154 store = gtk_tree_view_get_model(GTK_TREE_VIEW(ud->listview)); |
| 9 | 1155 n = start_n; |
| 1156 valid = gtk_tree_model_get_iter_first(store, &iter); | |
| 1157 while (valid) | |
| 1158 { | |
| 1159 gchar *dest; | |
| 753 | 1160 FileData *fd; |
| 1161 gtk_tree_model_get(store, &iter, UTILITY_COLUMN_FD, &fd, -1); | |
| 9 | 1162 |
| 753 | 1163 if (mode == UTILITY_RENAME_FORMATTED) |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1164 { |
| 138 | 1165 dest = file_util_rename_multiple_auto_format_name(format, fd->name, n); |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1166 } |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1167 else |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1168 { |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1169 dest = g_strdup_printf("%s%0*d%s", front, padding, n, end); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1170 } |
| 753 | 1171 |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1172 g_assert(ud->with_sidecars); /* sidecars must be renamed too, it would break the pairing otherwise */ |
| 753 | 1173 file_data_sc_update_ci_rename(fd, dest); |
| 995 | 1174 gtk_list_store_set(GTK_LIST_STORE(store), &iter, |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
1175 UTILITY_COLUMN_PIXBUF, file_util_get_error_icon(fd, ud->listview), |
|
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
1176 UTILITY_COLUMN_DEST_PATH, fd->change->dest, |
| 753 | 1177 UTILITY_COLUMN_DEST_NAME, filename_from_path(fd->change->dest), |
| 1178 -1); | |
| 9 | 1179 g_free(dest); |
| 1180 | |
| 1181 n++; | |
| 1182 valid = gtk_tree_model_iter_next(store, &iter); | |
| 1183 } | |
| 1184 | |
| 1 | 1185 } |
| 1186 | |
| 753 | 1187 static void file_util_rename_preview_entry_cb(GtkWidget *entry, gpointer data) |
| 9 | 1188 { |
| 753 | 1189 UtilityData *ud = data; |
| 1190 file_util_rename_preview_update(ud); | |
| 1191 } | |
| 9 | 1192 |
| 753 | 1193 static void file_util_rename_preview_adj_cb(GtkWidget *spin, gpointer data) |
| 1194 { | |
| 1195 UtilityData *ud = data; | |
| 1196 file_util_rename_preview_update(ud); | |
| 1197 } | |
| 9 | 1198 |
| 753 | 1199 static gboolean file_util_rename_idle_cb(gpointer data) |
| 1200 { | |
| 1201 UtilityData *ud = data; | |
| 1202 | |
| 1203 file_util_rename_preview_update(ud); | |
| 1204 | |
| 1205 ud->update_idle_id = -1; | |
| 9 | 1206 return FALSE; |
| 1207 } | |
| 1208 | |
| 753 | 1209 static void file_util_rename_preview_order_cb(GtkTreeModel *treemodel, GtkTreePath *tpath, |
| 9 | 1210 GtkTreeIter *iter, gpointer data) |
| 1211 { | |
| 753 | 1212 UtilityData *ud = data; |
| 9 | 1213 |
| 757 | 1214 if (ud->update_idle_id != -1) return; |
| 1215 | |
| 1216 ud->update_idle_id = g_idle_add(file_util_rename_idle_cb, ud); | |
| 9 | 1217 } |
| 1218 | |
| 753 | 1219 |
| 1220 static gboolean file_util_preview_cb(GtkTreeSelection *selection, GtkTreeModel *store, | |
| 1221 GtkTreePath *tpath, gboolean path_currently_selected, | |
| 1222 gpointer data) | |
| 9 | 1223 { |
| 753 | 1224 UtilityData *ud = data; |
| 1225 GtkTreeIter iter; | |
| 1226 FileData *fd = NULL; | |
| 1227 | |
| 1228 if (path_currently_selected || | |
| 1229 !gtk_tree_model_get_iter(store, &iter, tpath)) return TRUE; | |
| 1230 | |
| 1231 gtk_tree_model_get(store, &iter, UTILITY_COLUMN_FD, &fd, -1); | |
| 1232 generic_dialog_image_set(ud->gd, fd); | |
| 1233 | |
| 1234 if (ud->type == UTILITY_TYPE_RENAME) | |
| 1235 { | |
| 1236 const gchar *name = filename_from_path(fd->change->dest); | |
| 757 | 1237 |
| 753 | 1238 gtk_widget_grab_focus(ud->rename_entry); |
| 1239 gtk_label_set_text(GTK_LABEL(ud->rename_label), fd->name); | |
| 1240 g_signal_handlers_block_by_func(ud->rename_entry, G_CALLBACK(file_util_rename_preview_entry_cb), ud); | |
| 1241 gtk_entry_set_text(GTK_ENTRY(ud->rename_entry), name); | |
| 1242 gtk_editable_select_region(GTK_EDITABLE(ud->rename_entry), 0, filename_base_length(name)); | |
| 1243 g_signal_handlers_unblock_by_func(ud->rename_entry, G_CALLBACK(file_util_rename_preview_entry_cb), ud); | |
| 1244 } | |
| 1245 | |
| 1246 return TRUE; | |
| 9 | 1247 } |
| 1248 | |
| 753 | 1249 |
| 1250 | |
| 1251 static void box_append_safe_delete_status(GenericDialog *gd) | |
| 9 | 1252 { |
| 753 | 1253 GtkWidget *label; |
| 1254 gchar *buf; | |
| 1255 | |
| 1256 buf = file_util_safe_delete_status(); | |
| 1257 label = pref_label_new(gd->vbox, buf); | |
| 1258 g_free(buf); | |
| 1259 | |
| 1260 gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); | |
| 1261 gtk_widget_set_sensitive(label, FALSE); | |
| 9 | 1262 } |
| 1263 | |
| 753 | 1264 |
| 1265 static void file_util_dialog_init_simple_list(UtilityData *ud) | |
| 1 | 1266 { |
| 753 | 1267 GtkWidget *box; |
| 1268 GtkTreeSelection *selection; | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1269 gchar *dir_msg; |
| 757 | 1270 |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1271 const gchar *stock_id; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1272 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1273 if (ud->type == UTILITY_TYPE_DELETE || |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1274 ud->type == UTILITY_TYPE_DELETE_LINK || |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1275 ud->type == UTILITY_TYPE_DELETE_FOLDER) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1276 { |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1277 stock_id = GTK_STOCK_DELETE; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1278 } |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1279 else |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1280 { |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1281 stock_id = GTK_STOCK_OK; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1282 } |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1283 |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1055
diff
changeset
|
1284 ud->gd = file_util_gen_dlg(ud->messages.title, "dlg_confirm", |
| 757 | 1285 ud->parent, FALSE, file_util_cancel_cb, ud); |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1286 generic_dialog_add_button(ud->gd, stock_id, NULL, file_util_ok_cb, TRUE); |
| 753 | 1287 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1288 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1289 if (ud->dir_fd) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1290 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1291 dir_msg = g_strdup_printf("%s\n\n%s\n", ud->messages.desc_source_fd, ud->dir_fd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1292 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1293 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1294 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1295 dir_msg = g_strdup(""); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1296 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1297 |
| 753 | 1298 box = generic_dialog_add_message(ud->gd, GTK_STOCK_DIALOG_QUESTION, |
| 757 | 1299 ud->messages.question, |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1300 dir_msg); |
| 753 | 1301 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1302 g_free(dir_msg); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1303 |
| 753 | 1304 box = pref_group_new(box, TRUE, ud->messages.desc_flist, GTK_ORIENTATION_HORIZONTAL); |
| 1305 | |
| 1211 | 1306 ud->listview = file_util_dialog_add_list(box, ud->flist, FALSE, ud->with_sidecars); |
| 1307 if (ud->with_sidecars) file_util_dialog_add_list_column(ud->listview, _("Sidecars"), FALSE, UTILITY_COLUMN_SIDECARS); | |
| 9 | 1308 |
| 753 | 1309 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ud->listview)); |
| 1310 gtk_tree_selection_set_mode(selection, GTK_SELECTION_SINGLE); | |
| 1311 gtk_tree_selection_set_select_function(selection, file_util_preview_cb, ud, NULL); | |
| 1312 | |
| 1313 generic_dialog_add_image(ud->gd, box, NULL, NULL, NULL, NULL, FALSE); | |
| 1314 | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1315 if (ud->type == UTILITY_TYPE_DELETE || |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1316 ud->type == UTILITY_TYPE_DELETE_LINK || |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1317 ud->type == UTILITY_TYPE_DELETE_FOLDER) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1318 box_append_safe_delete_status(ud->gd); |
| 753 | 1319 |
| 1320 gtk_widget_show(ud->gd->dialog); | |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1321 |
| 753 | 1322 file_util_dialog_list_select(ud->listview, 0); |
| 1323 } | |
| 1324 | |
| 1325 static void file_util_dialog_init_dest_folder(UtilityData *ud) | |
| 1326 { | |
| 1327 FileDialog *fdlg; | |
| 1328 GtkWidget *label; | |
| 1329 const gchar *stock_id; | |
| 1330 | |
| 995 | 1331 if (ud->type == UTILITY_TYPE_COPY) |
| 9 | 1332 { |
| 753 | 1333 stock_id = GTK_STOCK_COPY; |
| 1334 } | |
| 1335 else | |
| 1336 { | |
| 1337 stock_id = GTK_STOCK_OK; | |
| 9 | 1338 } |
| 1339 | |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1055
diff
changeset
|
1340 fdlg = file_util_file_dlg(ud->messages.title, "dlg_dest_folder", ud->parent, |
| 757 | 1341 file_util_fdlg_cancel_cb, ud); |
| 753 | 1342 |
| 1343 ud->fdlg = fdlg; | |
| 1344 | |
| 1345 generic_dialog_add_message(GENERIC_DIALOG(fdlg), NULL, ud->messages.question, NULL); | |
| 1346 | |
| 1347 label = pref_label_new(GENERIC_DIALOG(fdlg)->vbox, _("Choose the destination folder.")); | |
| 1348 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5); | |
| 1349 pref_spacer(GENERIC_DIALOG(fdlg)->vbox, 0); | |
| 1350 | |
| 1351 file_dialog_add_button(fdlg, stock_id, ud->messages.title, file_util_fdlg_ok_cb, TRUE); | |
| 1352 | |
| 1353 file_dialog_add_path_widgets(fdlg, NULL, ud->dest_path, "move_copy", NULL, NULL); | |
| 1354 | |
| 1355 g_signal_connect(G_OBJECT(fdlg->entry), "changed", | |
| 1356 G_CALLBACK(file_util_dest_folder_entry_cb), ud); | |
| 1357 | |
| 1358 gtk_widget_show(GENERIC_DIALOG(fdlg)->dialog); | |
| 9 | 1359 } |
| 1360 | |
| 753 | 1361 |
| 9 | 1362 static GtkWidget *furm_simple_vlabel(GtkWidget *box, const gchar *text, gint expand) |
| 1363 { | |
| 1364 GtkWidget *vbox; | |
| 1365 GtkWidget *label; | |
| 1366 | |
| 1367 vbox = gtk_vbox_new(FALSE, 0); | |
| 1368 gtk_box_pack_start(GTK_BOX(box), vbox, expand, expand, 0); | |
| 1369 gtk_widget_show(vbox); | |
| 1370 | |
| 1371 label = gtk_label_new(text); | |
| 1372 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); | |
| 1373 gtk_widget_show(label); | |
| 1374 | |
| 1375 return vbox; | |
| 1376 } | |
| 1377 | |
| 753 | 1378 |
| 1379 static void file_util_dialog_init_source_dest(UtilityData *ud) | |
| 9 | 1380 { |
| 753 | 1381 GtkTreeModel *store; |
| 9 | 1382 GtkTreeSelection *selection; |
| 753 | 1383 GtkWidget *box; |
| 9 | 1384 GtkWidget *hbox; |
| 1385 GtkWidget *box2; | |
| 1386 GtkWidget *table; | |
| 1387 GtkWidget *combo; | |
| 753 | 1388 GtkWidget *page; |
| 1 | 1389 |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1055
diff
changeset
|
1390 ud->gd = file_util_gen_dlg(ud->messages.title, "dlg_confirm", |
| 757 | 1391 ud->parent, FALSE, file_util_cancel_cb, ud); |
| 138 | 1392 |
| 753 | 1393 box = generic_dialog_add_message(ud->gd, NULL, ud->messages.question, NULL); |
| 1394 generic_dialog_add_button(ud->gd, GTK_STOCK_OK, ud->messages.title, file_util_ok_cb, TRUE); | |
| 9 | 1395 |
| 753 | 1396 box = pref_group_new(box, TRUE, ud->messages.desc_flist, GTK_ORIENTATION_HORIZONTAL); |
| 9 | 1397 |
| 1211 | 1398 ud->listview = file_util_dialog_add_list(box, ud->flist, FALSE, ud->with_sidecars); |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
1399 file_util_dialog_add_list_column(ud->listview, _("Sidecars"), FALSE, UTILITY_COLUMN_SIDECARS); |
| 442 | 1400 |
|
924
96a1f535ce89
indicate check warnings and errors in delete and rename dialogs
nadvornik
parents:
921
diff
changeset
|
1401 file_util_dialog_add_list_column(ud->listview, _("New name"), FALSE, UTILITY_COLUMN_DEST_NAME); |
| 1 | 1402 |
| 753 | 1403 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ud->listview)); |
| 1404 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_SINGLE); | |
| 1405 gtk_tree_selection_set_select_function(selection, file_util_preview_cb, ud, NULL); | |
| 9 | 1406 |
| 1407 | |
| 753 | 1408 // column = file_util_rename_multiple_add_column(rd, _("Preview"), RENAME_COLUMN_PREVIEW); |
| 1409 // gtk_tree_view_column_set_visible(column, FALSE); | |
| 442 | 1410 |
| 753 | 1411 gtk_tree_view_set_reorderable(GTK_TREE_VIEW(ud->listview), TRUE); |
| 1412 | |
| 1413 store = gtk_tree_view_get_model(GTK_TREE_VIEW(ud->listview)); | |
| 9 | 1414 g_signal_connect(G_OBJECT(store), "row_changed", |
| 753 | 1415 G_CALLBACK(file_util_rename_preview_order_cb), ud); |
| 1416 gtk_widget_set_size_request(ud->listview, 300, 150); | |
| 1 | 1417 |
| 753 | 1418 generic_dialog_add_image(ud->gd, box, NULL, NULL, NULL, NULL, FALSE); |
| 9 | 1419 |
| 753 | 1420 // gtk_container_add(GTK_CONTAINER(scrolled), view); |
| 1421 gtk_widget_show(ud->gd->dialog); | |
| 9 | 1422 |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1423 |
| 753 | 1424 ud->notebook = gtk_notebook_new(); |
| 1425 | |
| 1426 gtk_box_pack_start(GTK_BOX(ud->gd->vbox), ud->notebook, FALSE, FALSE, 0); | |
| 1427 gtk_widget_show(ud->notebook); | |
| 1428 | |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1429 |
| 753 | 1430 page = gtk_vbox_new(FALSE, PREF_PAD_GAP); |
| 1431 gtk_notebook_append_page(GTK_NOTEBOOK(ud->notebook), page, gtk_label_new(_("Manual rename"))); | |
| 1432 gtk_widget_show(page); | |
| 1433 | |
| 1434 table = pref_table_new(page, 2, 2, FALSE, FALSE); | |
| 9 | 1435 |
| 1436 pref_table_label(table, 0, 0, _("Original name:"), 1.0); | |
| 753 | 1437 ud->rename_label = pref_table_label(table, 1, 0, "", 0.0); |
| 9 | 1438 |
| 1439 pref_table_label(table, 0, 1, _("New name:"), 1.0); | |
| 1440 | |
| 753 | 1441 ud->rename_entry = gtk_entry_new(); |
| 1442 gtk_table_attach(GTK_TABLE(table), ud->rename_entry, 1, 2, 1, 2, GTK_EXPAND | GTK_FILL, 0, 0, 0); | |
| 1443 generic_dialog_attach_default(GENERIC_DIALOG(ud->gd), ud->rename_entry); | |
| 1444 gtk_widget_grab_focus(ud->rename_entry); | |
| 1445 | |
| 1446 g_signal_connect(G_OBJECT(ud->rename_entry), "changed", | |
| 1447 G_CALLBACK(file_util_rename_preview_entry_cb), ud); | |
|
42
606fcf461a68
Sat May 14 13:04:23 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
1448 |
| 753 | 1449 gtk_widget_show(ud->rename_entry); |
| 9 | 1450 |
| 753 | 1451 page = gtk_vbox_new(FALSE, PREF_PAD_GAP); |
| 1452 gtk_notebook_append_page(GTK_NOTEBOOK(ud->notebook), page, gtk_label_new(_("Auto rename"))); | |
| 1453 gtk_widget_show(page); | |
| 9 | 1454 |
| 753 | 1455 |
| 1456 hbox = pref_box_new(page, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_GAP); | |
| 9 | 1457 |
| 1458 box2 = furm_simple_vlabel(hbox, _("Begin text"), TRUE); | |
| 1459 | |
| 753 | 1460 combo = history_combo_new(&ud->auto_entry_front, "", "numerical_rename_prefix", -1); |
| 1461 g_signal_connect(G_OBJECT(ud->auto_entry_front), "changed", | |
| 1462 G_CALLBACK(file_util_rename_preview_entry_cb), ud); | |
| 9 | 1463 gtk_box_pack_start(GTK_BOX(box2), combo, TRUE, TRUE, 0); |
| 1464 gtk_widget_show(combo); | |
| 442 | 1465 |
| 9 | 1466 box2 = furm_simple_vlabel(hbox, _("Start #"), FALSE); |
| 1467 | |
| 753 | 1468 ud->auto_spin_start = pref_spin_new(box2, NULL, NULL, |
|
80
a10fc0308c12
Thu Oct 19 07:42:38 2006 John Ellis <johne@verizon.net>
gqview
parents:
71
diff
changeset
|
1469 0.0, 1000000.0, 1.0, 0, 1.0, |
| 753 | 1470 G_CALLBACK(file_util_rename_preview_adj_cb), ud); |
| 9 | 1471 |
| 1472 box2 = furm_simple_vlabel(hbox, _("End text"), TRUE); | |
| 1473 | |
| 753 | 1474 combo = history_combo_new(&ud->auto_entry_end, "", "numerical_rename_suffix", -1); |
| 1475 g_signal_connect(G_OBJECT(ud->auto_entry_end), "changed", | |
| 1476 G_CALLBACK(file_util_rename_preview_entry_cb), ud); | |
| 9 | 1477 gtk_box_pack_start(GTK_BOX(box2), combo, TRUE, TRUE, 0); |
| 1478 gtk_widget_show(combo); | |
| 1479 | |
| 753 | 1480 ud->auto_spin_pad = pref_spin_new(page, _("Padding:"), NULL, |
| 9 | 1481 1.0, 8.0, 1.0, 0, 1.0, |
| 753 | 1482 G_CALLBACK(file_util_rename_preview_adj_cb), ud); |
| 9 | 1483 |
| 753 | 1484 page = gtk_vbox_new(FALSE, PREF_PAD_GAP); |
| 1485 gtk_notebook_append_page(GTK_NOTEBOOK(ud->notebook), page, gtk_label_new(_("Formatted rename"))); | |
| 1486 gtk_widget_show(page); | |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1487 |
| 753 | 1488 hbox = pref_box_new(page, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_GAP); |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1489 |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1490 box2 = furm_simple_vlabel(hbox, _("Format (* = original name, ## = numbers)"), TRUE); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1491 |
| 753 | 1492 combo = history_combo_new(&ud->format_entry, "", "auto_rename_format", -1); |
| 1493 g_signal_connect(G_OBJECT(ud->format_entry), "changed", | |
| 1494 G_CALLBACK(file_util_rename_preview_entry_cb), ud); | |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1495 gtk_box_pack_start(GTK_BOX(box2), combo, TRUE, TRUE, 0); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1496 gtk_widget_show(combo); |
| 442 | 1497 |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1498 box2 = furm_simple_vlabel(hbox, _("Start #"), FALSE); |
|
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1499 |
| 753 | 1500 ud->format_spin = pref_spin_new(box2, NULL, NULL, |
|
80
a10fc0308c12
Thu Oct 19 07:42:38 2006 John Ellis <johne@verizon.net>
gqview
parents:
71
diff
changeset
|
1501 0.0, 1000000.0, 1.0, 0, 1.0, |
| 753 | 1502 G_CALLBACK(file_util_rename_preview_adj_cb), ud); |
|
66
ebbff299ad0d
Fri Sep 1 02:12:45 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
1503 |
| 753 | 1504 // gtk_combo_box_set_active(GTK_COMBO_BOX(ud->combo_type), 0); /* callback will take care of the rest */ |
| 138 | 1505 |
| 753 | 1506 file_util_dialog_list_select(ud->listview, 0); |
| 1 | 1507 } |
| 1508 | |
| 9 | 1509 |
| 753 | 1510 void file_util_dialog_run(UtilityData *ud) |
| 1 | 1511 { |
| 753 | 1512 switch (ud->phase) |
| 1513 { | |
| 1514 case UTILITY_PHASE_START: | |
| 1515 /* create the dialogs */ | |
| 1516 switch (ud->type) | |
| 1517 { | |
| 1518 case UTILITY_TYPE_DELETE: | |
| 1519 case UTILITY_TYPE_DELETE_LINK: | |
| 1520 case UTILITY_TYPE_DELETE_FOLDER: | |
| 1521 case UTILITY_TYPE_EDITOR: | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1522 case UTILITY_TYPE_WRITE_METADATA: |
| 753 | 1523 file_util_dialog_init_simple_list(ud); |
| 1524 break; | |
| 1525 case UTILITY_TYPE_RENAME: | |
| 1526 file_util_dialog_init_source_dest(ud); | |
| 1527 break; | |
| 1528 case UTILITY_TYPE_COPY: | |
| 1529 case UTILITY_TYPE_MOVE: | |
| 1530 case UTILITY_TYPE_FILTER: | |
| 901 | 1531 case UTILITY_TYPE_CREATE_FOLDER: |
| 753 | 1532 file_util_dialog_init_dest_folder(ud); |
| 1533 break; | |
| 934 | 1534 case UTILITY_TYPE_RENAME_FOLDER: |
| 1535 ud->phase = UTILITY_PHASE_CANCEL; /* FIXME - not handled for now */ | |
| 1536 file_util_dialog_run(ud); | |
| 1537 return; | |
| 753 | 1538 } |
| 1539 ud->phase = UTILITY_PHASE_ENTERING; | |
| 1540 break; | |
| 1541 case UTILITY_PHASE_ENTERING: | |
|
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
1542 file_util_check_ci(ud); |
|
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
908
diff
changeset
|
1543 break; |
| 753 | 1544 |
| 1545 ud->phase = UTILITY_PHASE_CHECKED; | |
| 1546 case UTILITY_PHASE_CHECKED: | |
| 1547 file_util_perform_ci(ud); | |
| 1548 break; | |
| 1549 case UTILITY_PHASE_CANCEL: | |
| 1550 case UTILITY_PHASE_DONE: | |
| 1211 | 1551 |
| 1552 /* FIXME: put it here for now */ | |
| 1553 if (ud->type == UTILITY_TYPE_WRITE_METADATA) | |
| 1554 { | |
| 1555 metadata_write_queue_remove_list(ud->flist); | |
| 1556 } | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1557 if (ud->with_sidecars) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1558 file_data_sc_free_ci_list(ud->flist); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1559 else |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1560 file_data_free_ci_list(ud->flist); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1561 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1562 /* directory content is always handled including sidecars */ |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1563 file_data_sc_free_ci_list(ud->content_list); |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1564 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1565 if (ud->dir_fd) file_data_free_ci(ud->dir_fd); |
| 753 | 1566 file_util_data_free(ud); |
| 1567 break; | |
| 1568 } | |
| 1 | 1569 } |
| 1570 | |
| 753 | 1571 |
| 1572 | |
| 1573 | |
| 757 | 1574 static void file_util_warn_op_in_progress(const gchar *title) |
| 1575 { | |
| 1576 file_util_warning_dialog(title, _("Another operation in progress.\n"), GTK_STOCK_DIALOG_ERROR, NULL); | |
| 1577 } | |
| 9 | 1578 |
|
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1579 static void file_util_disable_grouping_sc_list(GList *list) |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1580 { |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1581 GList *work = list; |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1582 |
| 855 | 1583 while (work) |
|
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1584 { |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1585 FileData *fd = work->data; |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1586 work = work->next; |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1587 |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1588 if (fd->parent) file_data_disable_grouping(fd, TRUE); |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1589 } |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1590 |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1591 } |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1592 |
| 753 | 1593 static void file_util_delete_full(FileData *source_fd, GList *source_list, GtkWidget *parent, UtilityPhase phase) |
| 1594 { | |
| 1595 UtilityData *ud; | |
| 1596 GList *flist = filelist_copy(source_list); | |
| 1597 | |
| 1598 if (source_fd) | |
| 1599 flist = g_list_append(flist, file_data_ref(source_fd)); | |
| 9 | 1600 |
|
947
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1601 if (!flist) return; |
|
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1602 |
|
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1603 file_util_disable_grouping_sc_list(flist); |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1604 |
| 753 | 1605 if (!file_data_sc_add_ci_delete_list(flist)) |
| 1606 { | |
| 757 | 1607 file_util_warn_op_in_progress(_("File deletion failed")); |
| 753 | 1608 filelist_free(flist); |
| 1 | 1609 return; |
| 1610 } | |
| 753 | 1611 |
| 1612 ud = file_util_data_new(UTILITY_TYPE_DELETE); | |
| 1613 | |
| 1614 ud->phase = phase; | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1615 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1616 ud->with_sidecars = TRUE; |
| 138 | 1617 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1618 ud->dir_fd = NULL; |
| 753 | 1619 ud->flist = flist; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1620 ud->content_list = NULL; |
| 753 | 1621 ud->parent = parent; |
| 1622 | |
| 1623 ud->messages.title = _("Delete"); | |
| 1624 ud->messages.question = _("Delete files?"); | |
| 1625 ud->messages.desc_flist = _("This will delete the following files"); | |
| 1626 ud->messages.desc_source_fd = ""; | |
| 1627 ud->messages.fail = _("File deletion failed"); | |
| 1628 | |
| 1629 file_util_dialog_run(ud); | |
| 1 | 1630 } |
| 1631 | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1632 static void file_util_write_metadata_full(FileData *source_fd, GList *source_list, GtkWidget *parent, UtilityPhase phase) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1633 { |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1634 UtilityData *ud; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1635 GList *flist = filelist_copy(source_list); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1636 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1637 if (source_fd) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1638 flist = g_list_append(flist, file_data_ref(source_fd)); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1639 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1640 if (!flist) return; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1641 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1642 if (!file_data_add_ci_write_metadata_list(flist)) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1643 { |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1644 file_util_warn_op_in_progress(_("Can't write metadata")); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1645 filelist_free(flist); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1646 return; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1647 } |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1648 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1649 ud = file_util_data_new(UTILITY_TYPE_WRITE_METADATA); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1650 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1651 ud->phase = phase; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1652 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1653 ud->with_sidecars = FALSE; /* operate on individual files, not groups */ |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1654 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1655 ud->dir_fd = NULL; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1656 ud->flist = flist; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1657 ud->content_list = NULL; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1658 ud->parent = parent; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1659 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1660 ud->messages.title = _("Write metadata"); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1661 ud->messages.question = _("Write metadata?"); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1662 ud->messages.desc_flist = _("This will write the changed metadata into the following files"); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1663 ud->messages.desc_source_fd = ""; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1664 ud->messages.fail = _("Metadata writting failed"); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1665 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1666 file_util_dialog_run(ud); |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1667 } |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1668 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1669 |
| 753 | 1670 static void file_util_move_full(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent, UtilityPhase phase) |
| 1 | 1671 { |
| 753 | 1672 UtilityData *ud; |
| 1673 GList *flist = filelist_copy(source_list); | |
| 1674 | |
| 1675 if (source_fd) | |
| 1676 flist = g_list_append(flist, file_data_ref(source_fd)); | |
| 1677 | |
|
947
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1678 if (!flist) return; |
|
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1679 |
|
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1680 file_util_disable_grouping_sc_list(flist); |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1681 |
| 753 | 1682 if (!file_data_sc_add_ci_move_list(flist, dest_path)) |
| 1683 { | |
| 757 | 1684 file_util_warn_op_in_progress(_("Move failed")); |
| 753 | 1685 filelist_free(flist); |
| 1686 return; | |
| 1687 } | |
| 1688 | |
| 1689 ud = file_util_data_new(UTILITY_TYPE_MOVE); | |
| 1690 | |
| 1691 ud->phase = phase; | |
| 1692 | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1693 ud->with_sidecars = TRUE; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1694 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1695 ud->dir_fd = NULL; |
| 753 | 1696 ud->flist = flist; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1697 ud->content_list = NULL; |
| 753 | 1698 ud->parent = parent; |
| 9 | 1699 |
| 900 | 1700 if (dest_path) ud->dest_path = g_strdup(dest_path); |
| 753 | 1701 |
| 1702 ud->messages.title = _("Move"); | |
| 1703 ud->messages.question = _("Move files?"); | |
| 1704 ud->messages.desc_flist = _("This will move the following files"); | |
| 1705 ud->messages.desc_source_fd = ""; | |
| 1706 ud->messages.fail = _("Move failed"); | |
| 138 | 1707 |
| 753 | 1708 file_util_dialog_run(ud); |
| 1709 } | |
| 1710 static void file_util_copy_full(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent, UtilityPhase phase) | |
| 1711 { | |
| 1712 UtilityData *ud; | |
| 1713 GList *flist = filelist_copy(source_list); | |
| 1714 | |
| 1715 if (source_fd) | |
| 1716 flist = g_list_append(flist, file_data_ref(source_fd)); | |
| 1717 | |
|
947
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1718 if (!flist) return; |
|
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1719 |
|
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1720 file_util_disable_grouping_sc_list(flist); |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1721 |
| 753 | 1722 if (!file_data_sc_add_ci_copy_list(flist, dest_path)) |
| 1 | 1723 { |
| 757 | 1724 file_util_warn_op_in_progress(_("Copy failed")); |
| 753 | 1725 filelist_free(flist); |
| 1 | 1726 return; |
| 1727 } | |
| 1728 | |
| 753 | 1729 ud = file_util_data_new(UTILITY_TYPE_COPY); |
| 1730 | |
| 1731 ud->phase = phase; | |
| 1732 | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1733 ud->with_sidecars = TRUE; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1734 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1735 ud->dir_fd = NULL; |
| 753 | 1736 ud->flist = flist; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1737 ud->content_list = NULL; |
| 753 | 1738 ud->parent = parent; |
| 9 | 1739 |
| 900 | 1740 if (dest_path) ud->dest_path = g_strdup(dest_path); |
| 753 | 1741 |
| 1742 ud->messages.title = _("Copy"); | |
| 1743 ud->messages.question = _("Copy files?"); | |
| 1744 ud->messages.desc_flist = _("This will copy the following files"); | |
| 1745 ud->messages.desc_source_fd = ""; | |
| 1746 ud->messages.fail = _("Copy failed"); | |
| 1 | 1747 |
| 753 | 1748 file_util_dialog_run(ud); |
| 9 | 1749 } |
| 1750 | |
| 753 | 1751 static void file_util_rename_full(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent, UtilityPhase phase) |
| 1 | 1752 { |
| 753 | 1753 UtilityData *ud; |
| 1754 GList *flist = filelist_copy(source_list); | |
| 1755 | |
| 1756 if (source_fd) | |
| 1757 flist = g_list_append(flist, file_data_ref(source_fd)); | |
| 138 | 1758 |
|
947
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1759 if (!flist) return; |
|
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1760 |
|
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1761 file_util_disable_grouping_sc_list(flist); |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1762 |
| 753 | 1763 if (!file_data_sc_add_ci_rename_list(flist, dest_path)) |
| 1764 { | |
| 757 | 1765 file_util_warn_op_in_progress(_("Rename failed")); |
| 753 | 1766 filelist_free(flist); |
| 1767 return; | |
| 1768 } | |
| 9 | 1769 |
| 753 | 1770 ud = file_util_data_new(UTILITY_TYPE_RENAME); |
| 138 | 1771 |
| 753 | 1772 ud->phase = phase; |
| 1 | 1773 |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1774 ud->with_sidecars = TRUE; |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1775 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1776 ud->dir_fd = NULL; |
| 753 | 1777 ud->flist = flist; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1778 ud->content_list = NULL; |
| 753 | 1779 ud->parent = parent; |
| 1780 | |
| 1781 ud->messages.title = _("Rename"); | |
| 1782 ud->messages.question = _("Rename files?"); | |
| 1783 ud->messages.desc_flist = _("This will rename the following files"); | |
| 1784 ud->messages.desc_source_fd = ""; | |
| 1785 ud->messages.fail = _("Rename failed"); | |
| 138 | 1786 |
| 753 | 1787 file_util_dialog_run(ud); |
| 1 | 1788 } |
| 1789 | |
| 753 | 1790 static void file_util_start_editor_full(gint n, FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent, UtilityPhase phase) |
| 1791 { | |
| 1792 UtilityData *ud; | |
| 1793 GList *flist = filelist_copy(source_list); | |
| 1794 | |
| 1795 if (source_fd) | |
| 1796 flist = g_list_append(flist, file_data_ref(source_fd)); | |
| 1 | 1797 |
|
947
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1798 if (!flist) return; |
|
368643594bc8
abort file operations when the file list is empty
nadvornik
parents:
946
diff
changeset
|
1799 |
|
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1800 file_util_disable_grouping_sc_list(flist); |
|
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
800
diff
changeset
|
1801 |
| 753 | 1802 if (!file_data_sc_add_ci_unspecified_list(flist, dest_path)) |
| 1 | 1803 { |
| 757 | 1804 file_util_warn_op_in_progress(_("Can't run external editor")); |
| 753 | 1805 filelist_free(flist); |
| 1806 return; | |
| 1 | 1807 } |
| 9 | 1808 |
| 753 | 1809 if (editor_is_filter(n)) |
| 1810 ud = file_util_data_new(UTILITY_TYPE_FILTER); | |
| 1811 else | |
| 1812 ud = file_util_data_new(UTILITY_TYPE_EDITOR); | |
| 1813 | |
| 1814 | |
| 1815 /* ask for destination if we don't have it */ | |
| 1816 if (ud->type == UTILITY_TYPE_FILTER && dest_path == NULL) phase = UTILITY_PHASE_START; | |
| 1817 | |
| 1818 ud->phase = phase; | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1819 |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1820 ud->with_sidecars = TRUE; |
| 753 | 1821 |
| 1822 ud->external_command = n; | |
| 1823 | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1824 ud->dir_fd = NULL; |
| 753 | 1825 ud->flist = flist; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1826 ud->content_list = NULL; |
| 753 | 1827 ud->parent = parent; |
| 1828 | |
| 900 | 1829 if (dest_path) ud->dest_path = g_strdup(dest_path); |
| 753 | 1830 |
| 1831 ud->messages.title = _("Editor"); | |
| 1832 ud->messages.question = _("Run editor?"); | |
| 1833 ud->messages.desc_flist = _("This will copy the following files"); | |
| 1834 ud->messages.desc_source_fd = ""; | |
| 1835 ud->messages.fail = _("External command failed"); | |
| 1836 | |
| 1837 file_util_dialog_run(ud); | |
| 1 | 1838 } |
| 1839 | |
| 901 | 1840 static GList *file_util_delete_dir_remaining_folders(GList *dlist) |
| 1841 { | |
| 1842 GList *rlist = NULL; | |
| 1843 | |
| 1844 while (dlist) | |
| 1845 { | |
| 1846 FileData *fd; | |
| 1847 | |
| 1848 fd = dlist->data; | |
| 1849 dlist = dlist->next; | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1850 |
| 901 | 1851 if (!fd->name || |
| 1852 (strcmp(fd->name, THUMB_FOLDER_GLOBAL) != 0 && | |
| 1853 strcmp(fd->name, THUMB_FOLDER_LOCAL) != 0 && | |
| 1854 strcmp(fd->name, GQ_CACHE_LOCAL_METADATA) != 0) ) | |
| 1855 { | |
| 1856 rlist = g_list_prepend(rlist, fd); | |
| 1857 } | |
| 1858 } | |
| 1859 | |
| 1860 return g_list_reverse(rlist); | |
| 1861 } | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1862 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1863 static gboolean file_util_delete_dir_empty_path(UtilityData *ud, FileData *fd, gint level) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1864 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1865 GList *dlist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1866 GList *flist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1867 GList *work; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1868 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1869 gboolean ok = TRUE; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1870 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1871 DEBUG_1("deltree into: %s", fd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1872 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1873 level++; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1874 if (level > UTILITY_DELETE_MAX_DEPTH) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1875 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1876 log_printf("folder recursion depth past %d, giving up\n", UTILITY_DELETE_MAX_DEPTH); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1877 // ud->fail_fd = fd |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1878 return 0; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1879 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1880 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1881 if (!filelist_read_lstat(fd, &flist, &dlist)) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1882 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1883 // ud->fail_fd = fd |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1884 return 0; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1885 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1886 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1887 if (ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1888 { |
| 921 | 1889 ok = file_data_sc_add_ci_delete(fd); |
| 1890 if (ok) | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1891 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1892 ud->content_list = g_list_prepend(ud->content_list, fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1893 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1894 // ud->fail_fd = fd |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1895 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1896 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1897 work = dlist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1898 while (work && ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1899 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1900 FileData *lfd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1901 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1902 lfd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1903 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1904 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1905 ok = file_util_delete_dir_empty_path(ud, lfd, level); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1906 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1907 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1908 work = flist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1909 while (work && ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1910 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1911 FileData *lfd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1912 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1913 lfd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1914 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1915 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1916 DEBUG_1("deltree child: %s", lfd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1917 |
| 921 | 1918 ok = file_data_sc_add_ci_delete(lfd); |
| 1919 if (ok) | |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1920 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1921 ud->content_list = g_list_prepend(ud->content_list, lfd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1922 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1923 // ud->fail_fd = fd |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1924 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1925 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1926 filelist_free(dlist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1927 filelist_free(flist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1928 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1929 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1930 DEBUG_1("deltree done: %s", fd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1931 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1932 return ok; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1933 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1934 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1935 static gboolean file_util_delete_dir_prepare(UtilityData *ud, GList *flist, GList *dlist) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1936 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1937 gboolean ok = TRUE; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1938 GList *work; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1939 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1940 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1941 work = dlist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1942 while (work && ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1943 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1944 FileData *fd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1945 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1946 fd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1947 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1948 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1949 ok = file_util_delete_dir_empty_path(ud, fd, 0); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1950 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1951 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1952 work = flist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1953 if (ok && file_data_sc_add_ci_delete_list(flist)) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1954 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1955 ud->content_list = g_list_concat(filelist_copy(flist), ud->content_list); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1956 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1957 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1958 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1959 ok = FALSE; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1960 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1961 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1962 if (ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1963 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1964 ok = file_data_sc_add_ci_delete(ud->dir_fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1965 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1966 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1967 if (!ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1968 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1969 work = ud->content_list; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1970 while (work) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1971 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1972 FileData *fd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1973 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1974 fd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1975 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1976 file_data_sc_free_ci(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1977 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1978 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1979 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1980 return ok; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1981 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1982 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1983 static void file_util_delete_dir_full(FileData *fd, GtkWidget *parent, UtilityPhase phase) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1984 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1985 GList *dlist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1986 GList *flist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1987 GList *rlist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1988 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1989 if (!isdir(fd->path)) return; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1990 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1991 if (islink(fd->path)) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1992 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1993 UtilityData *ud; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1994 ud = file_util_data_new(UTILITY_TYPE_DELETE_LINK); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1995 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1996 ud->phase = phase; |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
1997 ud->with_sidecars = TRUE; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1998 ud->dir_fd = file_data_ref(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
1999 ud->content_list = NULL; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2000 ud->flist = NULL; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2001 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2002 ud->parent = parent; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2003 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2004 ud->messages.title = _("Delete folder"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2005 ud->messages.question = _("Delete symbolic link?"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2006 ud->messages.desc_flist = ""; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2007 ud->messages.desc_source_fd = _("This will delete the symbolic link.\n" |
| 995 | 2008 "The folder this link points to will not be deleted."); |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2009 ud->messages.fail = _("Link deletion failed"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2010 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2011 file_util_dialog_run(ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2012 return; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2013 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2014 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2015 if (!access_file(fd->path, W_OK | X_OK)) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2016 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2017 gchar *text; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2018 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2019 text = g_strdup_printf(_("Unable to remove folder %s\n" |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2020 "Permissions do not allow writing to the folder."), fd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2021 file_util_warning_dialog(_("Delete failed"), text, GTK_STOCK_DIALOG_ERROR, parent); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2022 g_free(text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2023 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2024 return; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2025 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2026 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2027 if (!filelist_read_lstat(fd, &flist, &dlist)) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2028 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2029 gchar *text; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2030 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2031 text = g_strdup_printf(_("Unable to list contents of folder %s"), fd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2032 file_util_warning_dialog(_("Delete failed"), text, GTK_STOCK_DIALOG_ERROR, parent); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2033 g_free(text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2034 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2035 return; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2036 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2037 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2038 rlist = file_util_delete_dir_remaining_folders(dlist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2039 if (rlist) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2040 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2041 GenericDialog *gd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2042 GtkWidget *box; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2043 gchar *text; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2044 |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1055
diff
changeset
|
2045 gd = file_util_gen_dlg(_("Folder contains subfolders"), "dlg_warning", |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2046 parent, TRUE, NULL, NULL); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2047 generic_dialog_add_button(gd, GTK_STOCK_CLOSE, NULL, NULL, TRUE); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2048 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2049 text = g_strdup_printf(_("Unable to delete the folder:\n\n%s\n\n" |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2050 "This folder contains subfolders which must be moved before it can be deleted."), |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2051 fd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2052 box = generic_dialog_add_message(gd, GTK_STOCK_DIALOG_WARNING, |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2053 _("Folder contains subfolders"), |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2054 text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2055 g_free(text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2056 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2057 box = pref_group_new(box, TRUE, _("Subfolders:"), GTK_ORIENTATION_VERTICAL); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2058 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2059 rlist = filelist_sort_path(rlist); |
| 1211 | 2060 file_util_dialog_add_list(box, rlist, FALSE, FALSE); |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2061 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2062 gtk_widget_show(gd->dialog); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2063 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2064 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2065 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2066 UtilityData *ud; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2067 ud = file_util_data_new(UTILITY_TYPE_DELETE_FOLDER); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2068 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2069 ud->phase = phase; |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2070 ud->with_sidecars = TRUE; |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2071 ud->dir_fd = file_data_ref(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2072 ud->content_list = NULL; /* will be filled by file_util_delete_dir_prepare */ |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2073 ud->flist = flist = filelist_sort_path(flist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2074 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2075 ud->parent = parent; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2076 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2077 ud->messages.title = _("Delete folder"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2078 ud->messages.question = _("Delete folder?"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2079 ud->messages.desc_flist = _("The folder contains these files:"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2080 ud->messages.desc_source_fd = _("This will delete the folder.\n" |
| 995 | 2081 "The contents of this folder will also be deleted."); |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2082 ud->messages.fail = _("File deletion failed"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2083 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2084 if (!file_util_delete_dir_prepare(ud, flist, dlist)) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2085 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2086 gchar *text; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2087 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2088 text = g_strdup_printf(_("Unable to list contents of folder %s"), fd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2089 file_util_warning_dialog(_("Delete failed"), text, GTK_STOCK_DIALOG_ERROR, parent); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2090 g_free(text); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2091 file_data_unref(ud->dir_fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2092 file_util_data_free(ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2093 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2094 else |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2095 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2096 filelist_free(dlist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2097 file_util_dialog_run(ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2098 return; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2099 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2100 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2101 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2102 g_list_free(rlist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2103 filelist_free(dlist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2104 filelist_free(flist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2105 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2106 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2107 static gboolean file_util_rename_dir_scan(UtilityData *ud, FileData *fd) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2108 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2109 GList *dlist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2110 GList *flist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2111 GList *work; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2112 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2113 gboolean ok = TRUE; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2114 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2115 if (!filelist_read_lstat(fd, &flist, &dlist)) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2116 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2117 // ud->fail_fd = fd |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2118 return 0; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2119 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2120 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2121 ud->content_list = g_list_concat(flist, ud->content_list); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2122 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2123 work = dlist; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2124 while (work && ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2125 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2126 FileData *lfd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2127 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2128 lfd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2129 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2130 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2131 ud->content_list = g_list_prepend(ud->content_list, file_data_ref(lfd)); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2132 ok = file_util_rename_dir_scan(ud, lfd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2133 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2134 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2135 filelist_free(dlist); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2136 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2137 return ok; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2138 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2139 |
|
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
995
diff
changeset
|
2140 static gboolean file_util_rename_dir_prepare(UtilityData *ud, const gchar *new_path) |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2141 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2142 gboolean ok; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2143 GList *work; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2144 gint orig_len = strlen(ud->dir_fd->path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2145 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2146 ok = file_util_rename_dir_scan(ud, ud->dir_fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2147 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2148 work = ud->content_list; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2149 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2150 while (ok && work) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2151 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2152 gchar *np; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2153 FileData *fd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2154 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2155 fd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2156 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2157 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2158 g_assert(strncmp(fd->path, ud->dir_fd->path, orig_len) == 0); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2159 |
| 921 | 2160 np = g_strconcat(new_path, fd->path + orig_len, NULL); |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2161 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2162 ok = file_data_sc_add_ci_rename(fd, np); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2163 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2164 DEBUG_1("Dir rename: %s -> %s", fd->path, np); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2165 g_free(np); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2166 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2167 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2168 if (ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2169 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2170 ok = file_data_sc_add_ci_rename(ud->dir_fd, new_path); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2171 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2172 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2173 if (!ok) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2174 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2175 work = ud->content_list; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2176 while (work) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2177 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2178 FileData *fd; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2179 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2180 fd = work->data; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2181 work = work->next; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2182 file_data_sc_free_ci(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2183 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2184 } |
| 921 | 2185 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2186 return ok; |
| 995 | 2187 } |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2188 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2189 |
|
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
995
diff
changeset
|
2190 static void file_util_rename_dir_full(FileData *fd, const gchar *new_path, GtkWidget *parent, UtilityPhase phase) |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2191 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2192 UtilityData *ud; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2193 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2194 ud = file_util_data_new(UTILITY_TYPE_RENAME_FOLDER); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2195 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2196 ud->phase = phase; |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2197 ud->with_sidecars = TRUE; /* does not matter, the directory should not have sidecars |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2198 and the content must be handled including sidecars */ |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2199 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2200 ud->dir_fd = file_data_ref(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2201 ud->flist = NULL; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2202 ud->content_list = NULL; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2203 ud->parent = parent; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2204 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2205 ud->messages.title = _("Rename"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2206 ud->messages.question = _("Rename folder?"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2207 ud->messages.desc_flist = _("The folder contains the following files"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2208 ud->messages.desc_source_fd = ""; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2209 ud->messages.fail = _("Rename failed"); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2210 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2211 if (!file_util_rename_dir_prepare(ud, new_path)) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2212 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2213 file_util_warn_op_in_progress(ud->messages.fail); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2214 file_util_data_free(ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2215 return; |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2216 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2217 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2218 // ud->flist = filelist_recursive(fd); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2219 |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2220 file_util_dialog_run(ud); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2221 } |
| 753 | 2222 |
|
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
995
diff
changeset
|
2223 static void file_util_create_dir_full(FileData *fd, const gchar *dest_path, GtkWidget *parent, UtilityPhase phase) |
| 1 | 2224 { |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2225 UtilityData *ud; |
| 901 | 2226 |
| 2227 ud = file_util_data_new(UTILITY_TYPE_CREATE_FOLDER); | |
| 2228 | |
| 2229 ud->phase = phase; | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2230 ud->with_sidecars = TRUE; |
| 901 | 2231 |
| 2232 ud->dir_fd = NULL; | |
| 2233 ud->flist = NULL; | |
| 2234 ud->content_list = NULL; | |
| 2235 ud->parent = parent; | |
| 2236 | |
| 995 | 2237 if (dest_path) |
| 901 | 2238 { |
| 2239 ud->dest_path = g_strdup(dest_path); | |
| 2240 } | |
| 2241 else | |
| 2242 { | |
| 2243 gchar *buf = g_build_filename(fd->path, _("New folder"), NULL); | |
| 2244 ud->dest_path = unique_filename(buf, NULL, " ", FALSE); | |
| 2245 g_free(buf); | |
| 2246 } | |
| 2247 | |
| 2248 ud->dir_fd = file_data_new_simple(ud->dest_path); | |
| 2249 | |
| 2250 ud->messages.title = _("Create Folder"); | |
| 2251 ud->messages.question = _("Create folder?"); | |
| 2252 ud->messages.desc_flist = ""; | |
| 2253 ud->messages.desc_source_fd = ""; | |
| 2254 ud->messages.fail = _("Can't create folder"); | |
| 2255 | |
| 2256 file_util_dialog_run(ud); | |
| 1 | 2257 } |
| 757 | 2258 |
| 9 | 2259 |
| 757 | 2260 /* full-featured entry points |
| 753 | 2261 */ |
| 1 | 2262 |
| 753 | 2263 void file_util_delete(FileData *source_fd, GList *source_list, GtkWidget *parent) |
| 2264 { | |
| 1054 | 2265 file_util_delete_full(source_fd, source_list, parent, options->file_ops.confirm_delete ? UTILITY_PHASE_START : UTILITY_PHASE_ENTERING); |
| 753 | 2266 } |
| 9 | 2267 |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2268 void file_util_write_metadata(FileData *source_fd, GList *source_list, GtkWidget *parent) |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2269 { |
| 1211 | 2270 file_util_write_metadata_full(source_fd, source_list, parent, |
| 2271 (options->metadata.save_in_image_file && options->metadata.confirm_write) ? UTILITY_PHASE_START : UTILITY_PHASE_ENTERING); | |
|
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2272 } |
|
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1175
diff
changeset
|
2273 |
| 753 | 2274 void file_util_copy(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent) |
| 2275 { | |
| 2276 file_util_copy_full(source_fd, source_list, dest_path, parent, UTILITY_PHASE_START); | |
| 2277 } | |
| 757 | 2278 |
| 753 | 2279 void file_util_move(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent) |
| 2280 { | |
| 2281 file_util_move_full(source_fd, source_list, dest_path, parent, UTILITY_PHASE_START); | |
| 2282 } | |
| 757 | 2283 |
| 753 | 2284 void file_util_rename(FileData *source_fd, GList *source_list, GtkWidget *parent) |
| 2285 { | |
| 2286 file_util_rename_full(source_fd, source_list, NULL, parent, UTILITY_PHASE_START); | |
| 1 | 2287 } |
| 2288 | |
| 753 | 2289 /* these avoid the location entry dialog unless there is an error, list must be files only and |
| 2290 * dest_path must be a valid directory path | |
| 757 | 2291 */ |
| 753 | 2292 void file_util_move_simple(GList *list, const gchar *dest_path, GtkWidget *parent) |
|
44
458e396d3f35
Wed May 18 19:36:49 2005 John Ellis <johne@verizon.net>
gqview
parents:
42
diff
changeset
|
2293 { |
| 753 | 2294 file_util_move_full(NULL, list, dest_path, parent, UTILITY_PHASE_ENTERING); |
| 2295 } | |
| 757 | 2296 |
| 753 | 2297 void file_util_copy_simple(GList *list, const gchar *dest_path, GtkWidget *parent) |
| 2298 { | |
| 2299 file_util_copy_full(NULL, list, dest_path, parent, UTILITY_PHASE_ENTERING); | |
| 2300 } | |
| 757 | 2301 |
| 753 | 2302 void file_util_rename_simple(FileData *fd, const gchar *dest_path, GtkWidget *parent) |
| 2303 { | |
| 2304 file_util_rename_full(fd, NULL, dest_path, parent, UTILITY_PHASE_ENTERING); | |
| 2305 } | |
| 138 | 2306 |
|
44
458e396d3f35
Wed May 18 19:36:49 2005 John Ellis <johne@verizon.net>
gqview
parents:
42
diff
changeset
|
2307 |
| 753 | 2308 void file_util_start_editor_from_file(gint n, FileData *fd, GtkWidget *parent) |
| 2309 { | |
| 2310 file_util_start_editor_full(n, fd, NULL, NULL, parent, UTILITY_PHASE_ENTERING); | |
| 2311 } | |
| 2312 | |
| 2313 void file_util_start_editor_from_filelist(gint n, GList *list, GtkWidget *parent) | |
| 2314 { | |
| 2315 file_util_start_editor_full(n, NULL, list, NULL, parent, UTILITY_PHASE_ENTERING); | |
| 2316 } | |
|
44
458e396d3f35
Wed May 18 19:36:49 2005 John Ellis <johne@verizon.net>
gqview
parents:
42
diff
changeset
|
2317 |
| 753 | 2318 void file_util_start_filter_from_file(gint n, FileData *fd, const gchar *dest_path, GtkWidget *parent) |
| 2319 { | |
| 2320 file_util_start_editor_full(n, fd, NULL, dest_path, parent, UTILITY_PHASE_ENTERING); | |
| 2321 } | |
|
44
458e396d3f35
Wed May 18 19:36:49 2005 John Ellis <johne@verizon.net>
gqview
parents:
42
diff
changeset
|
2322 |
| 753 | 2323 void file_util_start_filter_from_filelist(gint n, GList *list, const gchar *dest_path, GtkWidget *parent) |
| 2324 { | |
| 2325 file_util_start_editor_full(n, NULL, list, dest_path, parent, UTILITY_PHASE_ENTERING); | |
| 2326 } | |
|
44
458e396d3f35
Wed May 18 19:36:49 2005 John Ellis <johne@verizon.net>
gqview
parents:
42
diff
changeset
|
2327 |
|
896
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2328 void file_util_delete_dir(FileData *fd, GtkWidget *parent) |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2329 { |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2330 file_util_delete_dir_full(fd, parent, UTILITY_PHASE_START); |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2331 } |
|
cf21dc928122
implemented directory rename and delete operations
nadvornik
parents:
855
diff
changeset
|
2332 |
| 901 | 2333 void file_util_create_dir(FileData *dir_fd, GtkWidget *parent) |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
2334 { |
| 901 | 2335 file_util_create_dir_full(dir_fd, NULL, parent, UTILITY_PHASE_ENTERING); |
| 2336 } | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
2337 |
| 908 | 2338 void file_util_rename_dir(FileData *source_fd, const gchar *new_path, GtkWidget *parent) |
| 901 | 2339 { |
| 2340 file_util_rename_dir_full(source_fd, new_path, parent, UTILITY_PHASE_ENTERING); | |
|
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
2341 } |
|
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
80
diff
changeset
|
2342 |
| 753 | 2343 |
| 2344 void file_util_copy_path_to_clipboard(FileData *fd) | |
| 2345 { | |
| 2346 GtkClipboard *clipboard; | |
| 2347 | |
| 2348 if (!fd || !*fd->path) return; | |
| 2349 | |
| 2350 clipboard = gtk_clipboard_get(GDK_SELECTION_PRIMARY); | |
| 2351 gtk_clipboard_set_text(clipboard, g_shell_quote(fd->path), -1); | |
| 2352 } | |
| 2353 | |
| 2354 void file_util_copy_path_list_to_clipboard(GList *list) | |
| 2355 { | |
| 2356 GtkClipboard *clipboard; | |
| 2357 GList *work; | |
| 2358 GString *new; | |
| 2359 | |
| 2360 clipboard = gtk_clipboard_get(GDK_SELECTION_PRIMARY); | |
| 2361 | |
| 2362 new = g_string_new(""); | |
| 2363 work = list; | |
| 2364 while (work) { | |
| 2365 FileData *fd = work->data; | |
| 2366 work = work->next; | |
| 2367 | |
| 2368 if (!fd || !*fd->path) continue; | |
| 2369 | |
| 2370 g_string_append(new, g_shell_quote(fd->path)); | |
| 2371 if (work) g_string_append_c(new, ' '); | |
| 2372 } | |
| 2373 | |
| 2374 gtk_clipboard_set_text(clipboard, new->str, new->len); | |
| 2375 g_string_free(new, TRUE); | |
| 2376 } | |
|
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1054
diff
changeset
|
2377 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |
