// Author: David Elliott
// Modified by:
// Created: 2002/12/29
-// RCS-ID: $Id:
+// RCS-ID: $Id$
// Copyright: (c) 2002 David Elliott
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef __WX_COCOA_BUTTON_H__
public:
wxButton() { }
wxButton(wxWindow *parent, wxWindowID winid,
- const wxString& label,
+ const wxString& label = wxEmptyString,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
const wxValidator& validator = wxDefaultValidator,
Create(parent, winid, label, pos, size, style, validator, name);
}
+
bool Create(wxWindow *parent, wxWindowID winid,
- const wxString& label,
+ const wxString& label = wxEmptyString,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxButtonNameStr);
+
virtual ~wxButton();
// ------------------------------------------------------------------------
public:
wxString GetLabel() const;
void SetLabel(const wxString& label);
+ wxSize DoGetBestSize() const;
};
-#endif // __WX_COCOA_BUTTON_H__
+#endif
+ // __WX_COCOA_BUTTON_H__