]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/statusbr.h
Don't pop explicitly changed status messages.
[wxWidgets.git] / include / wx / univ / statusbr.h
index f9ee1261b1781d39c8e6f7703c63bc2cce8b69a7..52dc440acf564057085ecc3acea3efddb7b7f2fc 100644 (file)
@@ -40,20 +40,13 @@ public:
                 long style = wxSTB_DEFAULT_STYLE,
                 const wxString& name = wxPanelNameStr);
 
-    // set field count/widths
+    // implement base class methods
     virtual void SetFieldsCount(int number = 1, const int *widths = NULL);
     virtual void SetStatusWidths(int n, const int widths[]);
 
-    // get/set the text of the given field
-    virtual void SetStatusText(const wxString& text, int number = 0);
-
-    // Get the position and size of the field's internal bounding rectangle
     virtual bool GetFieldRect(int i, wxRect& rect) const;
-
-    // sets the minimal vertical size of the status bar
     virtual void SetMinHeight(int height);
 
-    // get the dimensions of the horizontal and vertical borders
     virtual int GetBorderX() const;
     virtual int GetBorderY() const;
 
@@ -62,6 +55,8 @@ public:
         { return const_cast<wxStatusBar*>(this); }
 
 protected:
+    virtual void DoUpdateStatusText(int i);
+
     // recalculate the field widths
     void OnSize(wxSizeEvent& event);
 
@@ -87,9 +82,6 @@ protected:
     // get the rect for this field without ani side effects (see code)
     wxRect DoGetFieldRect(int n) const;
 
-    // refresh the given field
-    void RefreshField(int i);
-
     // common part of all ctors
     void Init();