r898: Applied Bernard Jungen's latest patch:
[rox-filer.git] / ROX-Filer / src / minibuffer.h
blob5a3675ad19ce8689892870ca063845e97e596802
1 /*
2 * $Id*
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@users.sourceforge.net>.
6 */
8 #ifndef _MINIBUFFER_H
9 #define _MINIBUFFER_H
11 typedef enum {
12 MINI_NONE,
13 MINI_PATH,
14 MINI_SHELL,
15 MINI_SELECT_IF,
16 } MiniType;
18 #include <gtk/gtk.h>
20 void minibuffer_init(void);
21 void create_minibuffer(FilerWindow *filer_window);
22 void minibuffer_show(FilerWindow *filer_window, MiniType mini_type);
23 void minibuffer_hide(FilerWindow *filer_window);
24 void minibuffer_add(FilerWindow *filer_window, guchar *leafname);
26 #endif /* _MINIBUFFER_H */