Mercurial > geeqie.yaz
annotate src/utilops.h @ 251:4190882d1a82
Add few missing prototypes to header file.
author | zas_ |
---|---|
date | Thu, 03 Apr 2008 22:29:20 +0000 |
parents | f6e307c7bad6 |
children | ddabc4873a3f |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
3 * (C) 2006 John Ellis |
9 | 4 * |
5 * Author: John Ellis | |
6 * | |
7 * This software is released under the GNU General Public License (GNU GPL). | |
8 * Please read the included file COPYING for more information. | |
9 * This software comes with no warranty of any kind, use at your own risk! | |
10 */ | |
11 | |
12 | |
13 #ifndef UTILOPS_H | |
14 #define UTILOPS_H | |
15 | |
16 | |
17 #include "ui_utildlg.h" | |
18 | |
19 | |
138 | 20 void file_maint_renamed(FileData *fd); |
21 void file_maint_removed(FileData *fd, GList *ignore_list); | |
22 void file_maint_moved(FileData *fd, GList *ignore_list); | |
23 void file_maint_copied(FileData *fd); | |
9 | 24 |
25 GenericDialog *file_util_gen_dlg(const gchar *title, | |
26 const gchar *wmclass, const gchar *wmsubclass, | |
27 GtkWidget *parent, gint auto_close, | |
28 void (*cancel_cb)(GenericDialog *, gpointer), gpointer data); | |
29 FileDialog *file_util_file_dlg(const gchar *title, | |
30 const gchar *wmclass, const gchar *wmsubclass, | |
31 GtkWidget *parent, | |
32 void (*cancel_cb)(FileDialog *, gpointer), gpointer data); | |
33 GenericDialog *file_util_warning_dialog(const gchar *heading, const gchar *message, | |
34 const gchar *icon_stock_id, GtkWidget *parent); | |
35 | |
36 void file_util_trash_clear(void); | |
37 | |
138 | 38 void file_util_delete(FileData *source_fd, GList *source_list, GtkWidget *parent); |
39 void file_util_move(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent); | |
40 void file_util_copy(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent); | |
41 void file_util_rename(FileData *source_fd, GList *source_list, GtkWidget *parent); | |
44
458e396d3f35
Wed May 18 19:36:49 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
42 |
9 | 43 void file_util_create_dir(const gchar *path, GtkWidget *parent); |
138 | 44 gint file_util_rename_dir(FileData *source_fd, const gchar *new_path, GtkWidget *parent); |
9 | 45 |
46 /* these avoid the location entry dialog, list must be files only and | |
47 * dest_path must be a valid directory path | |
48 */ | |
49 void file_util_move_simple(GList *list, const gchar *dest_path); | |
50 void file_util_copy_simple(GList *list, const gchar *dest_path); | |
51 | |
52 | |
138 | 53 void file_util_delete_dir(FileData *source_fd, GtkWidget *parent); |
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
54 |
251 | 55 gint copy_file_ext(FileData *fd); |
56 gint move_file_ext(FileData *fd); | |
57 gint rename_file_ext(FileData *fd); | |
112
b15d4c18168f
Fri Nov 17 19:06:19 2006 John Ellis <johne@verizon.net>
gqview
parents:
44
diff
changeset
|
58 |
9 | 59 #endif |
60 |