Converted README to markdown
[rox-filer.git] / ROX-Filer / src / toolbar.h
blob8c6b63e48d9a2301c1bbb85cb95213afc5acceb4
1 /*
2 * ROX-Filer, filer for the ROX desktop project
3 * By Thomas Leonard, <tal197@users.sourceforge.net>.
4 */
6 #ifndef _TOOLBAR_H
7 #define _TOOLBAR_H
9 #include <gtk/gtk.h>
11 /* The values correspond to the menu indexes in the option widget */
12 typedef enum {
13 TOOLBAR_NONE = 0,
14 TOOLBAR_NORMAL = 1,
15 TOOLBAR_LARGE = 2,
16 TOOLBAR_HORIZONTAL = 3,
17 } ToolbarType;
19 extern Option o_toolbar, o_toolbar_info;
21 /* Prototypes */
22 void toolbar_init(void);
23 void toolbar_update_info(FilerWindow *filer_window);
24 void toolbar_update_toolbar(FilerWindow *filer_window);
26 #endif /* _TOOLBAR_H */