#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:
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
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
// draw the control
virtual void DoDraw(wxControlRenderer *renderer);
+ virtual void DoSetLabel(const wxString& str);
+ virtual wxString DoGetLabel() const;
+
DECLARE_ABSTRACT_CLASS(wxStaticText)
};