r3768: Updated years.
[rox-filer.git] / ROX-Filer / src / action.h
blob50201e6559f19814ec67386e91506a2a43ccde48
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 void action_eject(GList *paths);
22 void show_condition_help(gpointer data);
23 void set_find_string_colour(GtkWidget *widget, const guchar *string);
24 void action_settype(GList *paths, gboolean force_recurse, const char *oldtype);
26 #endif /* _ACTION_H */