X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7f85af8223ebd7ef47b441237b22588916d4eb96..ca77701441e39245dcbfce903049e76f166979e5:/include/wx/gtk/stattext.h diff --git a/include/wx/gtk/stattext.h b/include/wx/gtk/stattext.h index f2f58204e1..f043e1ecfc 100644 --- a/include/wx/gtk/stattext.h +++ b/include/wx/gtk/stattext.h @@ -48,14 +48,20 @@ protected: virtual bool GTKWidgetNeedsMnemonic() const; virtual void GTKWidgetDoSetMnemonic(GtkWidget* w); - virtual void DoSetSize(int x, int y, - int width, int height, - int sizeFlags = wxSIZE_AUTO); - 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) };