]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e1d63b79 | 2 | // Name: wx/palmos/radiobut.h |
ffecfa5a | 3 | // Purpose: wxRadioButton class |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
808e3bce | 5 | // Modified by: Wlodzimierz ABX Skiba - native wxRadioButton implementation |
ffecfa5a | 6 | // Created: 10/13/04 |
e1d63b79 | 7 | // RCS-ID: $Id$ |
808e3bce | 8 | // Copyright: (c) William Osborne, Wlodzimierz Skiba |
ffecfa5a JS |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_RADIOBUT_H_ | |
13 | #define _WX_RADIOBUT_H_ | |
14 | ||
ffecfa5a JS |
15 | class WXDLLEXPORT wxRadioButton: public wxControl |
16 | { | |
17 | public: | |
18 | // ctors and creation functions | |
19 | wxRadioButton() { Init(); } | |
20 | ||
21 | wxRadioButton(wxWindow *parent, | |
22 | wxWindowID id, | |
23 | const wxString& label, | |
24 | const wxPoint& pos = wxDefaultPosition, | |
25 | const wxSize& size = wxDefaultSize, | |
26 | long style = 0, | |
27 | const wxValidator& validator = wxDefaultValidator, | |
28 | const wxString& name = wxRadioButtonNameStr) | |
29 | { | |
30 | Init(); | |
31 | ||
32 | Create(parent, id, label, pos, size, style, validator, name); | |
33 | } | |
34 | ||
35 | bool Create(wxWindow *parent, | |
36 | wxWindowID id, | |
37 | const wxString& label, | |
38 | const wxPoint& pos = wxDefaultPosition, | |
39 | const wxSize& size = wxDefaultSize, | |
40 | long style = 0, | |
41 | const wxValidator& validator = wxDefaultValidator, | |
42 | const wxString& name = wxRadioButtonNameStr); | |
43 | ||
44 | // implement the radio button interface | |
45 | virtual void SetValue(bool value); | |
46 | virtual bool GetValue() const; | |
47 | ||
48 | // implementation only from now on | |
ffecfa5a | 49 | virtual void Command(wxCommandEvent& event); |
8be10866 | 50 | void SetGroup(uint8_t group); |
a152561c WS |
51 | |
52 | // send a notification event, return true if processed | |
53 | bool SendClickEvent(); | |
54 | ||
ffecfa5a JS |
55 | protected: |
56 | virtual wxSize DoGetBestSize() const; | |
57 | ||
58 | private: | |
59 | // common part of all ctors | |
60 | void Init(); | |
61 | ||
8be10866 WS |
62 | uint8_t m_groupID; |
63 | ||
a152561c | 64 | // pushButtonCtl or checkboxCtl |
20bc5ad8 | 65 | int m_radioStyle; |
ffecfa5a JS |
66 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton) |
67 | }; | |
68 | ||
69 | #endif | |
70 | // _WX_RADIOBUT_H_ |