#pragma interface "stattext.h"
#endif
-#include "wx/control.h"
-
-class WXDLLEXPORT wxStaticText : public wxControl
+class WXDLLEXPORT wxStaticText : public wxStaticTextBase
{
-DECLARE_DYNAMIC_CLASS(wxStaticText)
-
public:
wxStaticText() { }
long style = 0,
const wxString& name = wxStaticTextNameStr);
- // accessors
- void SetLabel(const wxString& label);
- bool SetFont( const wxFont &font );
-
- // overriden base class virtuals
- virtual bool AcceptsFocus() const { return FALSE; }
-
- // callbacks
- virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
+ // override some methods to resize the window properly
+ virtual void SetLabel(const wxString& label);
+ virtual bool SetFont( const wxFont &font );
protected:
+ virtual void DoSetSize(int x, int y, int w, int h,
+ int sizeFlags = wxSIZE_AUTO);
virtual wxSize DoGetBestSize() const;
+ virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
+
+ DECLARE_DYNAMIC_CLASS(wxStaticText)
};
#endif