X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/99d800190a04a2deaf769017a5fae04a4ae50378..75b6c4ce9236da28f349c3393b8436903d92815f:/include/wx/statusbr.h diff --git a/include/wx/statusbr.h b/include/wx/statusbr.h index 04cca259d8..bccef6f403 100644 --- a/include/wx/statusbr.h +++ b/include/wx/statusbr.h @@ -12,17 +12,16 @@ #ifndef _WX_STATUSBR_H_BASE_ #define _WX_STATUSBR_H_BASE_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "statbar.h" -#endif - -#include "wx/window.h" +#include "wx/defs.h" #if wxUSE_STATUSBAR +#include "wx/window.h" #include "wx/list.h" #include "wx/dynarray.h" +extern WXDLLIMPEXP_DATA_CORE(const wxChar) wxStatusBarNameStr[]; + WX_DECLARE_LIST(wxString, wxListString); // ---------------------------------------------------------------------------- @@ -38,7 +37,7 @@ WX_DECLARE_LIST(wxString, wxListString); // wxStatusBar: a window near the bottom of the frame used for status info // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxStatusBarBase : public wxWindow +class WXDLLIMPEXP_CORE wxStatusBarBase : public wxWindow { public: wxStatusBarBase(); @@ -98,7 +97,11 @@ public: // don't want status bars to accept the focus at all virtual bool AcceptsFocus() const { return false; } + virtual bool CanBeOutsideClientArea() const { return true; } + protected: + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } + // set the widths array to NULL void InitWidths(); @@ -155,14 +158,12 @@ protected: #include "wx/palmos/statusbr.h" #elif defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR - #define wxStatusBar95 wxStatusBar - - #include "wx/msw/statbr95.h" + #include "wx/msw/statusbar.h" #elif defined(__WXMAC__) #define wxStatusBarMac wxStatusBar #include "wx/generic/statusbr.h" - #include "wx/mac/statusbr.h" + #include "wx/osx/statusbr.h" #else #define wxStatusBarGeneric wxStatusBar