#ifndef _WX_GENERIC_STATUSBR_H_
#define _WX_GENERIC_STATUSBR_H_
+#include "wx/defs.h"
+
+#if wxUSE_STATUSBAR
+
#include "wx/pen.h"
#include "wx/arrstr.h"
// Responds to colour changes
void OnSysColourChanged(wxSysColourChangedEvent& event);
+ // true if the status bar shows the size grip: for this it must have
+ // wxST_SIZEGRIP style and the window it is attached to must be resizeable
+ // and not maximized
+ bool ShowsSizeGrip() const;
+
protected:
// common part of all ctors
void Init();
DECLARE_DYNAMIC_CLASS_NO_COPY(wxStatusBarGeneric)
};
+#endif // wxUSE_STATUSBAR
+
#endif
// _WX_GENERIC_STATUSBR_H_