r1996: Cope slightly better with invalid filenames in various places (reported by
[rox-filer.git] / ROX-Filer / src / action.h
blobcbb611d0d4e5dd6f2b38260f348315e2b00965f3
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@users.sourceforge.net>.
6 */
8 #ifndef _ACTION_H
9 #define _ACTION_H
11 #include <gtk/gtk.h>
13 void action_init(void);
15 void action_usage(GList *paths);
16 void action_mount(GList *paths, gboolean open_dir, int quiet);
17 void action_delete(GList *paths);
18 void action_chmod(GList *paths, gboolean force_recurse, const char *action);
19 void action_find(GList *paths);
20 void action_move(GList *paths, const char *dest, const char *leaf, int quiet);
21 void action_copy(GList *paths, const char *dest, const char *leaf, int quiet);
22 void action_link(GList *paths, const char *dest, const char *leaf);
23 void show_condition_help(gpointer data);
24 void set_find_string_colour(GtkWidget *widget, const guchar *string);
26 #endif /* _ACTION_H */