]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/button.h
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
);
55 bool Create(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
56 const wxPoint
& pos
= wxDefaultPosition
,
57 const wxSize
& size
= wxDefaultSize
, long style
= 0,
58 const wxValidator
& validator
= wxDefaultValidator
,
59 const wxString
& name
= wxButtonNameStr
);
61 void SetLabel( const wxString
&label
);
62 bool Enable( bool enable
);
64 static wxSize
GetDefaultSize();
68 void ApplyWidgetStyle();
71 #endif // __GTKBUTTONH__