// Name: button.h
// Purpose:
// Author: Robert Roebling
-// Id: $id$
+// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
#ifndef __GTKBUTTONH__
#define __GTKBUTTONH__
// global data
//-----------------------------------------------------------------------------
-extern const char *wxButtonNameStr;
+extern const wxChar *wxButtonNameStr;
//-----------------------------------------------------------------------------
// wxButton
class wxButton: public wxControl
{
- DECLARE_DYNAMIC_CLASS(wxButton)
-
- public:
-
- wxButton(void);
+public:
+ wxButton();
inline wxButton(wxWindow *parent, wxWindowID id, const wxString& label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
{
Create(parent, id, label, pos, size, style, validator, name);
}
+ ~wxButton();
bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxButtonNameStr);
- void SetDefault(void);
+ virtual void SetDefault();
void SetLabel( const wxString &label );
- void Enable( bool enable );
- void SetFont( const wxFont &font );
- void SetBackgroundColour( const wxColour &colour );
+ bool Enable( bool enable );
+
+ static wxSize GetDefaultSize();
+
+ // implementation
+ // --------------
+
+ void ApplyWidgetStyle();
+
+protected:
+ virtual wxSize DoGetBestSize() const;
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxButton)
};
#endif // __GTKBUTTONH__