Converted README to markdown
[rox-filer.git] / ROX-Filer / src / action.h
blob5cf2fc9819c507ae22ed298ff84413a6c9e9a6e2
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, gboolean mount, 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 */