r4009: Copied xdgmime library into the filer, so we don't need gnomevfs just
[rox-filer/translations.git] / ROX-Filer / src / action.h
blob1c9a035d74b476b5bd2f30daf8b595394c2001cd
1 /*
2 * ROX-Filer, filer for the ROX desktop project
3 * By Thomas Leonard, <tal197@users.sourceforge.net>.
4 */
6 #ifndef _ACTION_H
7 #define _ACTION_H
9 #include <gtk/gtk.h>
11 void action_init(void);
13 void action_usage(GList *paths);
14 void action_mount(GList *paths, gboolean open_dir, int quiet);
15 void action_delete(GList *paths);
16 void action_chmod(GList *paths, gboolean force_recurse, const char *action);
17 void action_find(GList *paths);
18 void action_move(GList *paths, const char *dest, const char *leaf, int quiet);
19 void action_copy(GList *paths, const char *dest, const char *leaf, int quiet);
20 void action_link(GList *paths, const char *dest, const char *leaf,
21 gboolean relative);
22 void action_eject(GList *paths);
23 void show_condition_help(gpointer data);
24 void set_find_string_colour(GtkWidget *widget, const guchar *string);
25 void action_settype(GList *paths, gboolean force_recurse, const char *oldtype);
27 #endif /* _ACTION_H */