r3674: Minimum width of toolbar now an option
[rox-filer/dt.git] / ROX-Filer / src / run.h
blob78475a53783d5bb2f16b23bd0003fc991e3c7f9e
1 /*
2 * ROX-Filer, filer for the ROX desktop project
3 * By Thomas Leonard, <tal197@users.sourceforge.net>.
4 */
6 #ifndef _RUN_H
7 #define _RUN_H
9 #include <gtk/gtk.h>
11 void run_app(const char *path);
12 void run_app_with_arg(const char *path, const char *arg);
13 void run_with_files(const char *path, GList *uri_list);
14 void run_with_data(const char *path, gpointer data, gulong length);
15 gboolean run_by_path(const guchar *full_path);
16 gboolean run_diritem(const guchar *full_path,
17 DirItem *item,
18 FilerWindow *filer_window,
19 FilerWindow *src_window,
20 gboolean edit);
21 gboolean run_diritem_with_arg(const guchar *full_path,
22 DirItem *item,
23 const gchar *arg,
24 FilerWindow *filer_window,
25 FilerWindow *src_window,
26 gboolean edit);
27 void open_to_show(const guchar *path);
28 void examine(const guchar *path);
29 void show_help_files(const char *dir);
31 #endif /* _RUN_H */