]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/statusbr.h
added newline at end of file (avoids gcc warning when building with Xcode 2.2)
[wxWidgets.git] / include / wx / statusbr.h
index 8b514ca5c1eb04052d53f7be7bcc3004cd42f499..8fb907d6253dff46338ed2c50e1d583afdf4a80a 100644 (file)
@@ -5,17 +5,13 @@
 // 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"
 
 #if wxUSE_STATUSBAR
@@ -76,8 +72,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 +92,7 @@ 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; }
 
 protected:
     // set the widths array to NULL
@@ -132,7 +128,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 +146,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