]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/button.h
bfabb1d0be2348c4743e7c38f643cb4dacea0313
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKBUTTONH__
12 #define __GTKBUTTONH__
19 #include "wx/object.h"
21 #include "wx/control.h"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern const char *wxButtonNameStr
;
35 //-----------------------------------------------------------------------------
37 //-----------------------------------------------------------------------------
39 class wxButton
: public wxControl
41 DECLARE_DYNAMIC_CLASS(wxButton
)
46 inline wxButton(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
47 const wxPoint
& pos
= wxDefaultPosition
,
48 const wxSize
& size
= wxDefaultSize
, long style
= 0,
49 const wxValidator
& validator
= wxDefaultValidator
,
50 const wxString
& name
= wxButtonNameStr
)
52 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
54 bool Create(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
55 const wxPoint
& pos
= wxDefaultPosition
,
56 const wxSize
& size
= wxDefaultSize
, long style
= 0,
57 const wxValidator
& validator
= wxDefaultValidator
,
58 const wxString
& name
= wxButtonNameStr
);
59 void SetDefault(void);
60 void SetLabel( const wxString
&label
);
61 void Enable( bool enable
);
62 void SetFont( const wxFont
&font
);
65 #endif // __GTKBUTTONH__