r289: Setting a run action by dragging to a symlink now dereferences the link.
[rox-filer/ma.git] / ROX-Filer / src / minibuffer.h
blob1f7d55457a67222e95303a9420526e96e4573dd3
1 /*
2 * $Id*
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@ecs.soton.ac.uk>.
6 */
8 #ifndef _MINIBUFFER_H
9 #define _MINIBUFFER_H
11 typedef enum {
12 MINI_NONE,
13 MINI_PATH,
14 MINI_SHELL,
15 MINI_RUN_ACTION,
16 MINI_SELECT_IF,
17 } MiniType;
19 #include <gtk/gtk.h>
20 #include "filer.h"
22 void create_minibuffer(FilerWindow *filer_window);
23 void minibuffer_show(FilerWindow *filer_window, MiniType mini_type);
24 void minibuffer_hide(FilerWindow *filer_window);
25 void minibuffer_add(FilerWindow *filer_window, guchar *leafname);
27 #endif /* _MINIBUFFER_H */