#ifndef _WX_UNIV_STATTEXT_H_
#define _WX_UNIV_STATTEXT_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "univstattext.h"
-#endif
-
class WXDLLEXPORT wxStaticText : public wxStaticTextBase
{
public:
virtual void SetLabel(const wxString& label);
- virtual bool HasTransparentBackground() { return true; }
-
virtual bool IsFocused() const { return false; }
protected:
// draw the control
virtual void DoDraw(wxControlRenderer *renderer);
+ virtual void DoSetLabel(const wxString& str);
+ virtual wxString DoGetLabel() const;
+
DECLARE_ABSTRACT_CLASS(wxStaticText)
};