///////////////////////////////////////////////////////////////////////////// // Name: wx/osx/stattext.h // Purpose: wxStaticText class // Author: Stefan Csomor // Created: 1998-01-01 // Copyright: (c) Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_STATTEXT_H_ #define _WX_STATTEXT_H_ class WXDLLIMPEXP_CORE wxStaticText: public wxStaticTextBase { public: wxStaticText() = default; wxStaticText(wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = wxASCII_STR(wxStaticTextNameStr)) { Create(parent, id, label, pos, size, style, name); } bool Create(wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = wxASCII_STR(wxStaticTextNameStr)); // accessors void SetLabel( const wxString &str ) override; bool SetFont( const wxFont &font ) override; virtual bool AcceptsFocus() const override { return false; } protected : virtual wxString WXGetVisibleLabel() const override; virtual void WXSetVisibleLabel(const wxString& str) override; virtual wxSize DoGetBestSize() const override; #if wxUSE_MARKUP && wxOSX_USE_COCOA virtual bool DoSetLabelMarkup(const wxString& markup) override; #endif // wxUSE_MARKUP && wxOSX_USE_COCOA wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticText); }; #endif // _WX_STATTEXT_H_