X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c7a653bec7c85eccce74ee1dcb060011f5b51cf..853b6cd0e4699dbec2c600d9d0390bdb53150a5f:/include/wx/univ/stattext.h diff --git a/include/wx/univ/stattext.h b/include/wx/univ/stattext.h index 95de78f9ef..7ee5cac3ff 100644 --- a/include/wx/univ/stattext.h +++ b/include/wx/univ/stattext.h @@ -12,11 +12,9 @@ #ifndef _WX_UNIV_STATTEXT_H_ #define _WX_UNIV_STATTEXT_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "univstattext.h" -#endif +#include "wx/generic/stattextg.h" -class WXDLLEXPORT wxStaticText : public wxStaticTextBase +class WXDLLIMPEXP_CORE wxStaticText : public wxGenericStaticText { public: wxStaticText() { } @@ -58,13 +56,13 @@ public: virtual bool IsFocused() const { return false; } protected: - // calculate the optimal size for the label - virtual wxSize DoGetBestClientSize() const; - // draw the control virtual void DoDraw(wxControlRenderer *renderer); - DECLARE_ABSTRACT_CLASS(wxStaticText) + virtual void DoSetLabel(const wxString& str); + virtual wxString DoGetLabel() const; + + DECLARE_DYNAMIC_CLASS(wxStaticText) }; #endif // _WX_UNIV_STATTEXT_H_