X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c2919ab326e60322b63ae9b5d50e83bb5156efce..498ace9e1f08b1e177b1a883ac69d12385e805b0:/include/wx/statusbr.h diff --git a/include/wx/statusbr.h b/include/wx/statusbr.h index 8b514ca5c1..8d7594ac78 100644 --- a/include/wx/statusbr.h +++ b/include/wx/statusbr.h @@ -5,24 +5,23 @@ // Modified by: // Created: 05.02.00 // RCS-ID: $Id$ -// Copyright: (c) wxWidgets team +// Copyright: (c) Vadim Zeitlin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #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); // ---------------------------------------------------------------------------- @@ -76,8 +75,8 @@ public: // field styles // ------------ - // Set the field style. Use either wxSB_NORMAL (default) for a standard 3D - // border around a field, wxSB_FLAT for no border around a field, so that it + // Set the field style. Use either wxSB_NORMAL (default) for a standard 3D + // border around a field, wxSB_FLAT for no border around a field, so that it // appears flat or wxSB_POPOUT to make the field appear raised. // Setting field styles only works on wxMSW virtual void SetStatusStyles(int n, const int styles[]); @@ -96,7 +95,9 @@ public: virtual int GetBorderY() const = 0; // don't want status bars to accept the focus at all - virtual bool AcceptsFocus() const { return FALSE; } + virtual bool AcceptsFocus() const { return false; } + + virtual bool CanBeOutsideClientArea() const { return true; } protected: // set the widths array to NULL @@ -132,7 +133,7 @@ protected: // width otherwise int *m_statusWidths; - // the styles of the fields + // the styles of the fields int *m_statusStyles; // stacks of previous values for PushStatusText/PopStatusText @@ -150,6 +151,10 @@ protected: #define wxStatusBarUniv wxStatusBar #include "wx/univ/statusbr.h" +#elif defined(__WXPALMOS__) + #define wxStatusBarPalm wxStatusBar + + #include "wx/palmos/statusbr.h" #elif defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR #define wxStatusBar95 wxStatusBar