r947: Added new SOAP methods Copy, Move, Link, Mount and FileType (Stephen Watson).
[rox-filer.git] / ROX-Filer / src / action.h
blob86d32663f1a3bb1e761fad195ce1b40434d9cf64
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(FilerWindow *filer_window);
16 void action_mount(GList *paths, gboolean open_dir, int quiet);
17 void action_delete(FilerWindow *filer_window);
18 void action_chmod(FilerWindow *filer_window);
19 void action_find(FilerWindow *filer_window);
20 void action_move(GList *paths, char *dest, char *leaf, int quiet);
21 void action_copy(GList *paths, char *dest, char *leaf, int quiet);
22 void action_link(GList *paths, char *dest, char *leaf);
23 void show_condition_help(gpointer data);
24 void set_find_string_colour(GtkWidget *widget, guchar *string);
26 #endif /* _ACTION_H */