r585: AppInfo file may contain a <Summary> element - the text inside will be
[rox-filer.git] / ROX-Filer / src / toolbar.h
blob68bb0c379770f84117eb6dcc9818b58b8f0be08e
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;
22 /* Prototypes */
23 void toolbar_init(void);
24 GtkWidget *toolbar_new(FilerWindow *filer_window);
25 GtkWidget *toolbar_tool_option(int i);
27 #endif /* _TOOLBAR_H */