]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/button.h
make wxFrame a wxControlContainer too, so that it behaves in the same way as wxDialog
[wxWidgets.git] / include / wx / mac / carbon / button.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: button.h
3 // Purpose: wxButton class
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_BUTTON_H_
13 #define _WX_BUTTON_H_
14
15 #include "wx/control.h"
16 #include "wx/gdicmn.h"
17
18 WXDLLEXPORT_DATA(extern const wxChar) wxButtonNameStr[];
19
20 // Pushbutton
21 class WXDLLEXPORT wxButton: public wxButtonBase
22 {
23 public:
24 wxButton() {}
25 wxButton(wxWindow *parent,
26 wxWindowID id,
27 const wxString& label = wxEmptyString,
28 const wxPoint& pos = wxDefaultPosition,
29 const wxSize& size = wxDefaultSize,
30 long style = 0,
31 const wxValidator& validator = wxDefaultValidator,
32 const wxString& name = wxButtonNameStr)
33 {
34 Create(parent, id, label, pos, size, style, validator, name);
35 }
36
37 bool Create(wxWindow *parent,
38 wxWindowID id,
39 const wxString& label = wxEmptyString,
40 const wxPoint& pos = wxDefaultPosition,
41 const wxSize& size = wxDefaultSize,
42 long style = 0,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxButtonNameStr);
45
46 virtual wxInt32 MacControlHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ;
47 static wxSize GetDefaultSize();
48
49 virtual wxWindow *SetDefault();
50 virtual void Command(wxCommandEvent& event);
51
52 protected:
53 virtual wxSize DoGetBestSize() const ;
54
55 DECLARE_DYNAMIC_CLASS(wxButton)
56 };
57
58 #endif
59 // _WX_BUTTON_H_