X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2b5f62a0b2db198609b45dec622a018dae37008e..9f8845289521c7f53e95b6dfd8275daab8b05639:/include/wx/motif/statbox.h diff --git a/include/wx/motif/statbox.h b/include/wx/motif/statbox.h index 38a5e89ebd..59549a5327 100644 --- a/include/wx/motif/statbox.h +++ b/include/wx/motif/statbox.h @@ -12,16 +12,12 @@ #ifndef _WX_STATBOX_H_ #define _WX_STATBOX_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "statbox.h" #endif -#include "wx/control.h" - -WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr; - // Group box -class WXDLLEXPORT wxStaticBox: public wxControl +class WXDLLEXPORT wxStaticBox: public wxStaticBoxBase { DECLARE_DYNAMIC_CLASS(wxStaticBox) @@ -36,6 +32,7 @@ public: { Create(parent, id, label, pos, size, style, name); } + ~wxStaticBox(); bool Create(wxWindow *parent, wxWindowID id, @@ -49,15 +46,12 @@ public: { return FALSE; } - - void SetLabel(const wxString& label); - wxString GetLabel() const; - - // Implementation - virtual void ChangeFont(bool keepOriginalSize = TRUE); - -protected: - // Motif-specific + + virtual WXWidget GetLabelWidget() const { return m_labelWidget; } + + virtual void SetLabel(const wxString& label); + +private: WXWidget m_labelWidget; private: