Mercurial > geeqie
annotate src/trash.c @ 684:9f00d0d874fa
Save order of Properties dialog tabs to rc file.
Users of GTK+ <2.10 can set tabs order directly in the rc file,
others can move tabs using drag'n drop.
The option is named properties.tabs_order, its default value
is "123" which is General, Keywords, Exif tabs (left to right).
author | zas_ |
---|---|
date | Sun, 18 May 2008 21:14:01 +0000 |
parents | 8268cbe682f1 |
children | d897ff542ad9 |
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" |
597 | 15 #include "trash.h" |
9 | 16 #include "utilops.h" |
17 | |
18 | |
586 | 19 #include "filedata.h" |
9 | 20 #include "ui_fileops.h" |
21 #include "ui_misc.h" | |
22 | |
23 | |
24 /* | |
25 *-------------------------------------------------------------------------- | |
26 * Safe Delete | |
27 *-------------------------------------------------------------------------- | |
28 */ | |
29 | |
30 static gint file_util_safe_number(gint64 free_space) | |
31 { | |
32 gint n = 0; | |
33 gint64 total = 0; | |
34 GList *list; | |
35 GList *work; | |
36 gint sorted = FALSE; | |
37 gint warned = FALSE; | |
38 | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
39 if (!filelist_read(options->file_ops.safe_delete_path, &list, NULL)) return 0; |
9 | 40 |
41 work = list; | |
42 while (work) | |
1 | 43 { |
9 | 44 FileData *fd; |
45 gint v; | |
442 | 46 |
9 | 47 fd = work->data; |
48 work = work->next; | |
49 | |
50 v = (gint)strtol(fd->name, NULL, 10); | |
51 if (v >= n) n = v + 1; | |
52 | |
53 total += fd->size; | |
1 | 54 } |
9 | 55 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
56 while (options->file_ops.safe_delete_folder_maxsize > 0 && list && |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
57 (free_space < 0 || total + free_space > (gint64)options->file_ops.safe_delete_folder_maxsize * 1048576) ) |
9 | 58 { |
59 FileData *fd; | |
60 | |
61 if (!sorted) | |
62 { | |
63 list = filelist_sort(list, SORT_NAME, TRUE); | |
64 sorted = TRUE; | |
65 } | |
66 | |
67 fd = list->data; | |
68 list = g_list_remove(list, fd); | |
69 | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
497
diff
changeset
|
70 DEBUG_1("expunging from trash for space: %s", fd->name); |
9 | 71 if (!unlink_file(fd->path) && !warned) |
72 { | |
73 file_util_warning_dialog(_("Delete failed"), | |
74 _("Unable to remove old file from trash folder"), | |
75 GTK_STOCK_DIALOG_WARNING, NULL); | |
76 warned = TRUE; | |
77 } | |
78 total -= fd->size; | |
138 | 79 file_data_unref(fd); |
9 | 80 } |
81 | |
82 filelist_free(list); | |
83 | |
84 return n; | |
85 } | |
86 | |
87 void file_util_trash_clear(void) | |
88 { | |
89 file_util_safe_number(-1); | |
90 } | |
91 | |
92 static gchar *file_util_safe_dest(const gchar *path) | |
93 { | |
94 gint n; | |
95 | |
96 n = file_util_safe_number(filesize(path)); | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
97 return g_strdup_printf("%s/%06d_%s", options->file_ops.safe_delete_path, n, filename_from_path(path)); |
9 | 98 } |
99 | |
100 static void file_util_safe_del_toggle_cb(GtkWidget *button, gpointer data) | |
101 { | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
102 options->file_ops.safe_delete_enable = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button)); |
9 | 103 } |
104 | |
105 static void file_util_safe_del_close_cb(GtkWidget *dialog, gpointer data) | |
106 { | |
107 GenericDialog **gd = data; | |
108 | |
109 *gd = NULL; | |
1 | 110 } |
111 | |
600 | 112 gint file_util_safe_unlink(const gchar *path) |
1 | 113 { |
9 | 114 static GenericDialog *gd = NULL; |
115 gchar *result = NULL; | |
116 gint success = TRUE; | |
117 | |
597 | 118 if (!isfile(path)) return FALSE; |
9 | 119 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
120 if (!isdir(options->file_ops.safe_delete_path)) |
9 | 121 { |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
497
diff
changeset
|
122 DEBUG_1("creating trash: %s", options->file_ops.safe_delete_path); |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
123 if (!options->file_ops.safe_delete_path || !mkdir_utf8(options->file_ops.safe_delete_path, 0755)) |
9 | 124 { |
125 result = _("Could not create folder"); | |
126 success = FALSE; | |
127 } | |
128 } | |
129 | |
130 if (success) | |
131 { | |
132 gchar *dest; | |
133 | |
597 | 134 dest = file_util_safe_dest(path); |
9 | 135 if (dest) |
136 { | |
597 | 137 DEBUG_1("safe deleting %s to %s", path, dest); |
138 success = move_file(path, dest); | |
9 | 139 } |
140 else | |
141 { | |
142 success = FALSE; | |
143 } | |
144 | |
597 | 145 if (!success && !access_file(path, W_OK)) |
9 | 146 { |
147 result = _("Permission denied"); | |
148 } | |
149 g_free(dest); | |
150 } | |
151 | |
152 if (result && !gd) | |
153 { | |
154 GtkWidget *button; | |
155 gchar *buf; | |
156 | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
157 buf = g_strdup_printf(_("Unable to access or create the trash folder.\n\"%s\""), options->file_ops.safe_delete_path); |
9 | 158 gd = file_util_warning_dialog(result, buf, GTK_STOCK_DIALOG_WARNING, NULL); |
159 g_free(buf); | |
160 | |
161 button = gtk_check_button_new_with_label(_("Turn off safe delete")); | |
162 g_signal_connect(G_OBJECT(button), "toggled", | |
163 G_CALLBACK(file_util_safe_del_toggle_cb), NULL); | |
164 gtk_box_pack_start(GTK_BOX(gd->vbox), button, FALSE, FALSE, 0); | |
165 gtk_widget_show(button); | |
166 | |
167 g_signal_connect(G_OBJECT(gd->dialog), "destroy", | |
168 G_CALLBACK(file_util_safe_del_close_cb), &gd); | |
169 } | |
170 | |
171 return success; | |
1 | 172 } |
173 | |
600 | 174 gchar *file_util_safe_delete_status(void) |
1 | 175 { |
9 | 176 gchar *buf; |
177 | |
318 | 178 if (options->editor_command[CMD_DELETE]) |
223
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
179 { |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
180 buf = g_strdup(_("Deletion by external command")); |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
181 } |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
182 else |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
183 { |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
184 if (options->file_ops.safe_delete_enable) |
223
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
185 { |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
186 gchar *buf2; |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
187 if (options->file_ops.safe_delete_folder_maxsize > 0) |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
188 buf2 = g_strdup_printf(_(" (max. %d MB)"), options->file_ops.safe_delete_folder_maxsize); |
223
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
189 else |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
190 buf2 = g_strdup(""); |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
191 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
318
diff
changeset
|
192 buf = g_strdup_printf(_("Safe delete: %s%s\nTrash: %s"), _("on"), buf2, options->file_ops.safe_delete_path); |
223
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
193 g_free(buf2); |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
194 } |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
195 else |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
196 { |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
197 buf = g_strdup_printf(_("Safe delete: %s"), _("off")); |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
198 } |
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
196
diff
changeset
|
199 } |
597 | 200 |
201 return buf; | |
9 | 202 } |