]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: button.h | |
3 | // Purpose: wxButton class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_BUTTON_H_ | |
13 | #define _WX_BUTTON_H_ | |
14 | ||
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
83df96d6 | 16 | #pragma interface "button.h" |
9b6dbb09 JS |
17 | #endif |
18 | ||
9b6dbb09 | 19 | // Pushbutton |
a63b0098 | 20 | class WXDLLEXPORT wxButton: public wxButtonBase |
9b6dbb09 | 21 | { |
31528cd3 | 22 | DECLARE_DYNAMIC_CLASS(wxButton) |
83df96d6 | 23 | |
31528cd3 VZ |
24 | public: |
25 | wxButton() { } | |
26 | wxButton(wxWindow *parent, | |
83df96d6 | 27 | wxWindowID id, |
5f7bcb48 | 28 | const wxString& label = wxEmptyString, |
83df96d6 JS |
29 | const wxPoint& pos = wxDefaultPosition, |
30 | const wxSize& size = wxDefaultSize, long style = 0, | |
31 | const wxValidator& validator = wxDefaultValidator, | |
32 | const wxString& name = wxButtonNameStr) | |
31528cd3 VZ |
33 | { |
34 | Create(parent, id, label, pos, size, style, validator, name); | |
35 | } | |
83df96d6 | 36 | |
5f7bcb48 VS |
37 | bool Create(wxWindow *parent, wxWindowID id, |
38 | const wxString& label = wxEmptyString, | |
83df96d6 JS |
39 | const wxPoint& pos = wxDefaultPosition, |
40 | const wxSize& size = wxDefaultSize, long style = 0, | |
41 | const wxValidator& validator = wxDefaultValidator, | |
42 | const wxString& name = wxButtonNameStr); | |
43 | ||
31528cd3 VZ |
44 | virtual void SetDefault(); |
45 | virtual void Command(wxCommandEvent& event); | |
83df96d6 | 46 | |
4d194d63 MB |
47 | static wxSize GetDefaultSize(); |
48 | ||
31528cd3 | 49 | // Implementation |
458ca8c1 MB |
50 | private: |
51 | virtual wxSize DoGetBestSize() const; | |
e04b7e8e | 52 | wxSize OldGetBestSize() const; |
458ca8c1 | 53 | void SetDefaultShadowThicknessAndResize(); |
9b6dbb09 JS |
54 | }; |
55 | ||
56 | #endif | |
83df96d6 | 57 | // _WX_BUTTON_H_ |