r898: Applied Bernard Jungen's latest patch:
[rox-filer.git] / ROX-Filer / src / toolbar.h
blob23c82eaf6ff063a279c94b5c2ab0a59f5aa55c93
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@users.sourceforge.net>.
6 */
8 #ifndef _TOOLBAR_H
9 #define _TOOLBAR_H
11 #include <gtk/gtk.h>
13 /* The values correspond to the menu indexes in the option widget */
14 typedef enum {
15 TOOLBAR_NONE = 0,
16 TOOLBAR_NORMAL = 1,
17 TOOLBAR_LARGE = 2,
18 } ToolbarType;
20 extern ToolbarType o_toolbar;
21 extern gint o_toolbar_info;
23 /* Prototypes */
24 void toolbar_init(void);
25 GtkWidget *toolbar_new(FilerWindow *filer_window);
26 GtkWidget *toolbar_tool_option(int i);
27 void toolbar_update_info(FilerWindow *filer_window);
30 #endif /* _TOOLBAR_H */