X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/371a5b4e62eb415107e045588f614fa49e866e78..e143fb636d50d5802dcc8c7c2e9e8e2944afa467:/include/wx/univ/stattext.h diff --git a/include/wx/univ/stattext.h b/include/wx/univ/stattext.h index fc17b58df8..8f3fc62edd 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_ -#ifdef __GNUG__ - #pragma interface "univstattext.h" -#endif +#include "wx/generic/stattextg.h" -class WXDLLEXPORT wxStaticText : public wxStaticTextBase +class WXDLLIMPEXP_CORE wxStaticText : public wxGenericStaticText { public: wxStaticText() { } @@ -27,7 +25,7 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize) { - Create(parent, -1, label, pos, size, 0, wxStaticTextNameStr); + Create(parent, wxID_ANY, label, pos, size, 0, wxStaticTextNameStr); } // full form @@ -55,17 +53,15 @@ public: virtual void SetLabel(const wxString& label); - virtual bool HasTransparentBackground() { return TRUE; } - - virtual bool IsFocused() const { return FALSE; } + 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); + virtual void DoSetLabel(const wxString& str); + virtual wxString DoGetLabel() const; + DECLARE_ABSTRACT_CLASS(wxStaticText) };