// classes
//-----------------------------------------------------------------------------
-class wxButton;
+class WXDLLIMPEXP_CORE wxButton;
//-----------------------------------------------------------------------------
// global data
//-----------------------------------------------------------------------------
-extern const wxChar *wxButtonNameStr;
+extern WXDLLIMPEXP_CORE const wxChar *wxButtonNameStr;
//-----------------------------------------------------------------------------
// wxButton
//-----------------------------------------------------------------------------
-class wxButton: public wxButtonBase
+class WXDLLIMPEXP_CORE wxButton: public wxButtonBase
{
public:
wxButton();
- wxButton(wxWindow *parent, wxWindowID id, const wxString& label,
+ wxButton(wxWindow *parent, wxWindowID id,
+ const wxString& label = wxEmptyString,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
const wxValidator& validator = wxDefaultValidator,
{
Create(parent, id, label, pos, size, style, validator, name);
}
-
- wxButton(wxWindow *parent, wxWindowID id, wxStockItemID stock,
- const wxString& descriptiveLabel = wxEmptyString,
- const wxPoint& pos = wxDefaultPosition,
- long style = 0,
- const wxValidator& validator = wxDefaultValidator,
- const wxString& name = wxButtonNameStr)
- {
- Create(parent, id, stock, descriptiveLabel, pos, style, validator, name);
- }
virtual ~wxButton();
- bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
+ bool Create(wxWindow *parent, wxWindowID id,
+ const wxString& label = wxEmptyString,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxButtonNameStr);
-
- bool Create(wxWindow *parent, wxWindowID id, wxStockItemID stock,
- const wxString& descriptiveLabel = wxEmptyString,
- const wxPoint& pos = wxDefaultPosition,
- long style = 0,
- const wxValidator& validator = wxDefaultValidator,
- const wxString& name = wxButtonNameStr);
virtual void SetDefault();
virtual void SetLabel( const wxString &label );