]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: button.h | |
3 | // Purpose: wxButton class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
edccf428 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_BUTTON_H_ |
13 | #define _WX_BUTTON_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
16 | #pragma interface "button.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
2bda0e17 | 20 | |
32c1cda2 | 21 | WXDLLEXPORT_DATA(extern const wxChar*) wxButtonNameStr; |
2bda0e17 | 22 | |
edccf428 | 23 | // ---------------------------------------------------------------------------- |
2bda0e17 | 24 | // Pushbutton |
edccf428 VZ |
25 | // ---------------------------------------------------------------------------- |
26 | ||
bfc6fde4 | 27 | class WXDLLEXPORT wxButton : public wxControl |
2bda0e17 | 28 | { |
bfc6fde4 VZ |
29 | DECLARE_DYNAMIC_CLASS(wxButton) |
30 | ||
31 | public: | |
32 | wxButton() { } | |
33 | wxButton(wxWindow *parent, wxWindowID id, const wxString& label, | |
34 | const wxPoint& pos = wxDefaultPosition, | |
35 | const wxSize& size = wxDefaultSize, long style = 0, | |
36 | const wxValidator& validator = wxDefaultValidator, | |
37 | const wxString& name = wxButtonNameStr) | |
38 | { | |
39 | Create(parent, id, label, pos, size, style, validator, name); | |
40 | } | |
41 | ||
42 | bool Create(wxWindow *parent, wxWindowID id, const wxString& label, | |
43 | const wxPoint& pos = wxDefaultPosition, | |
44 | const wxSize& size = wxDefaultSize, long style = 0, | |
45 | const wxValidator& validator = wxDefaultValidator, | |
46 | const wxString& name = wxButtonNameStr); | |
47 | ||
edccf428 VZ |
48 | virtual ~wxButton(); |
49 | ||
bfc6fde4 | 50 | virtual void SetDefault(); |
edccf428 | 51 | |
e1f36ff8 VZ |
52 | static wxSize GetDefaultSize(); |
53 | ||
edccf428 | 54 | // implementation from now on |
bfc6fde4 | 55 | virtual void Command(wxCommandEvent& event); |
678cd6de | 56 | virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 | 57 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
edccf428 VZ |
58 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, |
59 | WXHWND pWnd, | |
60 | WXUINT nCtlColor, | |
61 | WXUINT message, | |
62 | WXWPARAM wParam, | |
63 | WXLPARAM lParam); | |
bfc6fde4 VZ |
64 | |
65 | protected: | |
edccf428 VZ |
66 | // send a notification event, return TRUE if processed |
67 | bool SendClickEvent(); | |
68 | ||
4438caf4 | 69 | virtual wxSize DoGetBestSize(); |
2bda0e17 KB |
70 | }; |
71 | ||
72 | #endif | |
bbcdf8bc | 73 | // _WX_BUTTON_H_ |