X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1b88201ff5f0f9ed18db555b70eb7123c8a7c9c6..a516284f67e1910fc6dc5364b289340332d0d35f:/include/wx/gtk/stattext.h?ds=sidebyside diff --git a/include/wx/gtk/stattext.h b/include/wx/gtk/stattext.h index 42193ac8d1..78241efe29 100644 --- a/include/wx/gtk/stattext.h +++ b/include/wx/gtk/stattext.h @@ -14,7 +14,7 @@ // wxStaticText //----------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxStaticText : public wxControl +class WXDLLIMPEXP_CORE wxStaticText : public wxStaticTextBase { public: wxStaticText(); @@ -34,18 +34,13 @@ public: long style = 0, const wxString &name = wxStaticTextNameStr ); - wxString GetLabel() const; void SetLabel( const wxString &label ); bool SetFont( const wxFont &font ); - bool SetForegroundColour( const wxColour& colour ); static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); - // see wx/stattext.h - void Wrap(int width); - // implementation // -------------- @@ -59,6 +54,19 @@ protected: virtual wxSize DoGetBestSize() const; + virtual wxString DoGetLabel() const; + virtual void DoSetLabel(const wxString& str); +#if wxUSE_MARKUP + virtual bool DoSetLabelMarkup(const wxString& markup); +#endif // wxUSE_MARKUP + +private: + // Common part of SetLabel() and DoSetLabelMarkup(). + typedef void (wxStaticText::*GTKLabelSetter)(GtkLabel *, const wxString&); + + void GTKDoSetLabel(GTKLabelSetter setter, const wxString& label); + + DECLARE_DYNAMIC_CLASS(wxStaticText) };