#ifndef _STATBR95_H
#define _STATBR95_H
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "statbr95.h"
-#endif
-
#if wxUSE_NATIVE_STATUSBAR
class WXDLLEXPORT wxStatusBar95 : public wxStatusBarBase
// ctors and such
wxStatusBar95();
wxStatusBar95(wxWindow *parent,
- wxWindowID id = -1,
+ wxWindowID id = wxID_ANY,
long style = wxST_SIZEGRIP,
- const wxString& name = wxEmptyString)
+ const wxString& name = wxStatusBarNameStr)
{
(void)Create(parent, id, style, name);
}
bool Create(wxWindow *parent,
- wxWindowID id = -1,
+ wxWindowID id = wxID_ANY,
long style = wxST_SIZEGRIP,
- const wxString& name = wxEmptyString);
+ const wxString& name = wxStatusBarNameStr);
virtual ~wxStatusBar95();
virtual int GetBorderX() const;
virtual int GetBorderY() const;
+ virtual WXLRESULT MSWWindowProc(WXUINT nMsg,
+ WXWPARAM wParam,
+ WXLPARAM lParam);
protected:
void CopyFieldsWidth(const int widths[]);
void SetFieldsWidth();
- // override base class virtual
- void DoMoveWindow(int x, int y, int width, int height);
+ // override some base class virtuals
+ virtual wxSize DoGetBestSize() const;
+ virtual void DoMoveWindow(int x, int y, int width, int height);
private:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxStatusBar95)