r585: AppInfo file may contain a <Summary> element - the text inside will be
[rox-filer.git] / ROX-Filer / src / panel.h
blob4a10a06f4179e45ae694dedf1220cd4264c618b3
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@users.sourceforge.net>.
6 */
8 #ifndef _PANEL_H
9 #define _PANEL_H
11 typedef enum {
12 PANEL_TOP,
13 PANEL_BOTTOM,
14 PANEL_LEFT,
15 PANEL_RIGHT,
17 PANEL_NUMBER_OF_SIDES /* This goes last! */
18 } PanelSide;
20 void panel_init(void);
21 Panel *panel_new(guchar *name, PanelSide side);
22 void panel_icon_may_update(Icon *icon);
24 #endif /* _PANEL_H */