#ifndef __GTKSTATICTEXTH__
#define __GTKSTATICTEXTH__
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface
#endif
// global data
//-----------------------------------------------------------------------------
-extern const wxChar *wxStaticTextNameStr;
-
//-----------------------------------------------------------------------------
// wxStaticText
//-----------------------------------------------------------------------------
class wxStaticText : public wxControl
{
public:
-
wxStaticText();
wxStaticText(wxWindow *parent,
wxWindowID id,
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);
+
// implementation
- void ApplyWidgetStyle();
+ // --------------
protected:
+ virtual wxSize DoGetBestSize() const;
+
DECLARE_DYNAMIC_CLASS(wxStaticText)
};