Mercurial > geeqie.yaz
annotate src/utilops.h @ 531:1149a7b0a3d7
cleanup: use image_get_image_size
author | nadvornik |
---|---|
date | Tue, 29 Apr 2008 18:12:49 +0000 |
parents | a33badd85f16 |
children | 5da092a6a92a |
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 |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 | |
14 #ifndef UTILOPS_H | |
15 #define UTILOPS_H | |
16 | |
17 | |
18 #include "ui_utildlg.h" | |
19 | |
20 | |
138 | 21 void file_maint_renamed(FileData *fd); |
22 void file_maint_removed(FileData *fd, GList *ignore_list); | |
23 void file_maint_moved(FileData *fd, GList *ignore_list); | |
24 void file_maint_copied(FileData *fd); | |
9 | 25 |
26 GenericDialog *file_util_gen_dlg(const gchar *title, | |
27 const gchar *wmclass, const gchar *wmsubclass, | |
28 GtkWidget *parent, gint auto_close, | |
29 void (*cancel_cb)(GenericDialog *, gpointer), gpointer data); | |
30 FileDialog *file_util_file_dlg(const gchar *title, | |
31 const gchar *wmclass, const gchar *wmsubclass, | |
32 GtkWidget *parent, | |
33 void (*cancel_cb)(FileDialog *, gpointer), gpointer data); | |
34 GenericDialog *file_util_warning_dialog(const gchar *heading, const gchar *message, | |
35 const gchar *icon_stock_id, GtkWidget *parent); | |
36 | |
37 void file_util_trash_clear(void); | |
38 | |
138 | 39 void file_util_delete(FileData *source_fd, GList *source_list, GtkWidget *parent); |
40 void file_util_move(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent); | |
41 void file_util_copy(FileData *source_fd, GList *source_list, const gchar *dest_path, GtkWidget *parent); | |
42 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
|
43 |
9 | 44 void file_util_create_dir(const gchar *path, GtkWidget *parent); |
138 | 45 gint file_util_rename_dir(FileData *source_fd, const gchar *new_path, GtkWidget *parent); |
9 | 46 |
47 /* these avoid the location entry dialog, list must be files only and | |
48 * dest_path must be a valid directory path | |
49 */ | |
50 void file_util_move_simple(GList *list, const gchar *dest_path); | |
51 void file_util_copy_simple(GList *list, const gchar *dest_path); | |
52 | |
53 | |
138 | 54 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
|
55 |
251 | 56 gint copy_file_ext(FileData *fd); |
57 gint move_file_ext(FileData *fd); | |
58 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
|
59 |
497 | 60 void file_util_copy_path_to_clipboard(FileData *fd); |
61 void file_util_copy_path_list_to_clipboard(GList *list); | |
62 | |
9 | 63 #endif |