r235: Added the Shell Command feature to the minibuffer.
[rox-filer/ma.git] / ROX-Filer / src / minibuffer.h
blob0fa258f34da688533c707a98cce4a1565f8bc1ef
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 {MINI_NONE, MINI_PATH, MINI_SHELL} MiniType;
13 #include <gtk/gtk.h>
14 #include "filer.h"
16 GtkWidget *create_minibuffer(FilerWindow *filer_window);
17 void minibuffer_show(FilerWindow *filer_window, MiniType mini_type);
18 void minibuffer_hide(FilerWindow *filer_window);
20 #endif /* _MINIBUFFER_H */