]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
3 | // Purpose: wxRadioBox class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
c49245f8 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_RADIOBOX_H_ |
13 | #define _WX_RADIOBOX_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
c49245f8 | 16 | #pragma interface "radiobox.h" |
2bda0e17 KB |
17 | #endif |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
32c1cda2 | 21 | WXDLLEXPORT_DATA(extern const wxChar*) wxRadioBoxNameStr; |
2bda0e17 | 22 | |
e373f51b | 23 | class WXDLLEXPORT wxBitmap; |
2bda0e17 | 24 | |
bfc6fde4 | 25 | class WXDLLEXPORT wxRadioBox : public wxControl |
2bda0e17 | 26 | { |
bfc6fde4 VZ |
27 | DECLARE_DYNAMIC_CLASS(wxRadioBox) |
28 | ||
2bda0e17 | 29 | public: |
bfc6fde4 | 30 | wxRadioBox(); |
2bda0e17 | 31 | |
bfc6fde4 VZ |
32 | wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, |
33 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
34 | int n = 0, const wxString choices[] = NULL, | |
35 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
36 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) | |
37 | { | |
38 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); | |
39 | } | |
40 | ||
bfc6fde4 VZ |
41 | ~wxRadioBox(); |
42 | ||
43 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, | |
44 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
45 | int n = 0, const wxString choices[] = NULL, | |
46 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
47 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); | |
48 | ||
bfc6fde4 | 49 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
bfc6fde4 VZ |
50 | |
51 | int FindString(const wxString& s) const; | |
52 | void SetSelection(int N); | |
53 | int GetSelection() const; | |
54 | wxString GetString(int N) const; | |
55 | ||
56 | void GetSize(int *x, int *y) const; | |
57 | void GetPosition(int *x, int *y) const; | |
58 | ||
e373f51b VZ |
59 | void SetLabel(int item, const wxString& label); |
60 | void SetLabel(int item, wxBitmap *bitmap); | |
bfc6fde4 VZ |
61 | wxString GetLabel(int item) const; |
62 | bool Show(bool show); | |
63 | void SetFocus(); | |
cc2b7472 | 64 | bool Enable(bool enable); |
bfc6fde4 | 65 | void Enable(int item, bool enable); |
e373f51b | 66 | void Show(int item, bool show); |
bfc6fde4 VZ |
67 | void SetLabelFont(const wxFont& WXUNUSED(font)) {}; |
68 | void SetButtonFont(const wxFont& font) { SetFont(font); } | |
69 | ||
70 | virtual wxString GetStringSelection() const; | |
71 | virtual bool SetStringSelection(const wxString& s); | |
e373f51b | 72 | virtual int Number() const { return m_noItems; }; |
bfc6fde4 VZ |
73 | void Command(wxCommandEvent& event); |
74 | ||
75 | int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } | |
76 | void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
77 | ||
c49245f8 VZ |
78 | // implementation only from now on |
79 | // ------------------------------- | |
80 | ||
4afd7529 VZ |
81 | virtual bool SetFont(const wxFont& font); |
82 | ||
c92d798f | 83 | long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
f6bcfd97 BP |
84 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
85 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
bfc6fde4 | 86 | WXHWND *GetRadioButtons() const { return m_radioButtons; } |
e373f51b | 87 | bool ContainsHWND(WXHWND hWnd) const; |
9a5ccab4 | 88 | void SendNotificationEvent(); |
bfc6fde4 | 89 | |
e373f51b | 90 | // get the number of buttons per column/row |
c49245f8 VZ |
91 | int GetNumVer() const; |
92 | int GetNumHor() const; | |
93 | ||
8614c467 | 94 | // compatibility ctor |
c49245f8 VZ |
95 | #if WXWIN_COMPATIBILITY |
96 | wxRadioBox(wxWindow *parent, wxFunction func, const char *title, | |
97 | int x = -1, int y = -1, int width = -1, int height = -1, | |
98 | int n = 0, char **choices = NULL, | |
99 | int majorDim = 0, long style = wxRA_HORIZONTAL, const char *name = wxRadioBoxNameStr); | |
100 | #endif // WXWIN_COMPATIBILITY | |
e373f51b | 101 | |
2bda0e17 | 102 | protected: |
3ca6a5f0 | 103 | // subclass one radio button |
e373f51b VZ |
104 | void SubclassRadioButton(WXHWND hWndBtn); |
105 | ||
3ca6a5f0 BP |
106 | // get the max size of radio buttons |
107 | wxSize GetMaxButtonSize() const; | |
108 | ||
109 | // get the total size occupied by the radio box buttons | |
110 | wxSize GetTotalButtonSize(const wxSize& sizeBtn) const; | |
111 | ||
bfc6fde4 | 112 | WXHWND * m_radioButtons; |
e373f51b VZ |
113 | int m_majorDim; |
114 | int * m_radioWidth; // for bitmaps | |
115 | int * m_radioHeight; | |
bfc6fde4 VZ |
116 | |
117 | int m_noItems; | |
118 | int m_noRowsOrCols; | |
119 | int m_selectedButton; | |
120 | ||
121 | virtual void DoSetSize(int x, int y, | |
122 | int width, int height, | |
123 | int sizeFlags = wxSIZE_AUTO); | |
3ca6a5f0 | 124 | virtual wxSize DoGetBestSize() const; |
2bda0e17 KB |
125 | }; |
126 | ||
127 | #endif | |
bbcdf8bc | 128 | // _WX_RADIOBOX_H_ |