cvs20080628 - trunk
[gitenigma.git] / include / lib / gui / statusbar.h
blobf7f74940cff6e006b58069ddc29dd9815923e63b
1 #ifndef __CORE_GUI_STATUSBAR__
2 #define __CORE_GUI_STATUSBAR__
4 #include <lib/gui/ewidget.h>
5 #include <lib/gui/elabel.h>
7 class eStatusBar : public eLabel
9 void update( const eWidget *);
10 const eWidget* current;
12 int setProperty(const eString &, const eString &);
13 void initialize();
14 Connection conn;
15 public:
16 enum
18 flagOwnerDraw = 128,
20 eStatusBar( eWidget*, const char* deco="eStatusBar" );
21 void setFlags( int );
24 #endif // __CORE_GUI_STATUSBAR__