r2313: 2002 -> 2003
[rox-filer.git] / ROX-Filer / src / toolbar.h
blob1461f8ed4642cc7ab7ce8e55e31723020e62e7f4
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 TOOLBAR_HORIZONTAL = 3,
19 } ToolbarType;
21 extern Option o_toolbar, o_toolbar_info;
23 /* Prototypes */
24 void toolbar_init(void);
25 void toolbar_update_info(FilerWindow *filer_window);
26 void toolbar_update_toolbar(FilerWindow *filer_window);
28 #endif /* _TOOLBAR_H */