#include "wx/control.h"
-WXDLLEXPORT_DATA(extern const char*) wxButtonNameStr;
-
// Pushbutton
class WXDLLEXPORT wxButton: public wxButtonBase
{
,const wxPoint& rPos = wxDefaultPosition
,const wxSize& rSize = wxDefaultSize
,long lStyle = 0
-#if wxUSE_VALIDATORS
,const wxValidator& rValidator = wxDefaultValidator
-#endif
,const wxString& rsName = wxButtonNameStr
)
{
,rPos
,rSize
,lStyle
-#if wxUSE_VALIDATORS
,rValidator
-#endif
,rsName
);
}
,const wxPoint& rPos = wxDefaultPosition
,const wxSize& rSize = wxDefaultSize
,long lStyle = 0
-#if wxUSE_VALIDATORS
,const wxValidator& rValidator = wxDefaultValidator
-#endif
,const wxString& rsName = wxButtonNameStr
);
protected:
- bool SendClickEvent(void);
- virtual wxSize DoGetBestSize(void) const;
+ bool SendClickEvent(void);
+ void SetTmpDefault(void);
+ void UnsetTmpDefault(void);
+
+ static void SetDefaultStyle( wxButton* pButton
+ ,bool bOn
+ );
+
+ virtual wxSize DoGetBestSize(void) const;
+ virtual WXDWORD OS2GetStyle( long style
+ ,WXDWORD* exstyle
+ ) const;
private:
DECLARE_DYNAMIC_CLASS(wxButton)
}; // end of CLASS wxButton