#ifndef _WX_BUTTON_H_
#define _WX_BUTTON_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "button.h"
-#endif
-
// Pushbutton
class WXDLLEXPORT wxButton: public wxButtonBase
{
wxButton() { }
wxButton(wxWindow *parent,
wxWindowID id,
- const wxString& label,
+ 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);
}
- 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,
// Implementation
private:
virtual wxSize DoGetBestSize() const;
+ virtual wxSize GetMinSize() const;
+ wxSize OldGetBestSize() const;
+ wxSize OldGetMinSize() const;
void SetDefaultShadowThicknessAndResize();
};