]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: radiobut.cpp | |
3 | // Purpose: wxRadioButton | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "radiobut.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include <stdio.h> | |
25 | #include "wx/setup.h" | |
26 | #include "wx/radiobut.h" | |
27 | #include "wx/settings.h" | |
28 | #include "wx/brush.h" | |
29 | #endif | |
30 | ||
31 | #include "wx/msw/private.h" | |
32 | ||
33 | IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl) | |
34 | // IMPLEMENT_DYNAMIC_CLASS(wxBitmapRadioButton, wxRadioButton) | |
35 | ||
36 | bool wxRadioButton::MSWCommand(WXUINT param, WXWORD id) | |
37 | { | |
38 | if (param == BN_CLICKED) | |
39 | { | |
40 | wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, m_windowId); | |
41 | event.SetEventObject( this ); | |
42 | event.SetInt( GetValue() ); | |
43 | ProcessCommand(event); | |
44 | return TRUE; | |
45 | } | |
46 | else return FALSE; | |
47 | } | |
48 | ||
49 | bool wxRadioButton::Create(wxWindow *parent, wxWindowID id, | |
50 | const wxString& label, | |
51 | const wxPoint& pos, | |
52 | const wxSize& size, long style, | |
53 | const wxValidator& validator, | |
54 | const wxString& name) | |
55 | { | |
56 | SetName(name); | |
57 | #if wxUSE_VALIDATORS | |
58 | SetValidator(validator); | |
59 | #endif // wxUSE_VALIDATORS | |
60 | ||
61 | if (parent) parent->AddChild(this); | |
62 | ||
63 | SetBackgroundColour(parent->GetBackgroundColour()); | |
64 | SetForegroundColour(parent->GetForegroundColour()); | |
65 | ||
66 | if ( id == -1 ) | |
67 | m_windowId = (int)NewControlId(); | |
68 | else | |
69 | m_windowId = id; | |
70 | ||
71 | int x = pos.x; | |
72 | int y = pos.y; | |
73 | int width = size.x; | |
74 | int height = size.y; | |
75 | ||
76 | m_windowStyle = style ; | |
77 | ||
78 | long groupStyle = 0; | |
79 | if (m_windowStyle & wxRB_GROUP) | |
80 | groupStyle = WS_GROUP; | |
81 | ||
82 | // long msStyle = groupStyle | RADIO_FLAGS; | |
83 | long msStyle = groupStyle | BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE /* | WS_CLIPSIBLINGS */; | |
84 | ||
85 | bool want3D; | |
86 | WXDWORD exStyle = Determine3DEffects(0, &want3D) ; | |
87 | ||
88 | // Even with extended styles, need to combine with WS_BORDER | |
89 | // for them to look right. | |
90 | /* | |
91 | if ( want3D || wxStyleHasBorder(m_windowStyle) ) | |
92 | msStyle |= WS_BORDER; | |
93 | */ | |
94 | ||
95 | m_hWnd = (WXHWND) CreateWindowEx(exStyle, RADIO_CLASS, (const wxChar *)label, | |
96 | msStyle,0,0,0,0, | |
97 | (HWND) parent->GetHWND(), (HMENU)m_windowId, wxGetInstance(), NULL); | |
98 | ||
99 | wxCHECK_MSG( m_hWnd, FALSE, wxT("Failed to create radiobutton") ); | |
100 | ||
101 | #if wxUSE_CTL3D | |
102 | if (want3D) | |
103 | { | |
104 | Ctl3dSubclassCtl((HWND) m_hWnd); | |
105 | m_useCtl3D = TRUE; | |
106 | } | |
107 | #endif | |
108 | ||
109 | SetFont(parent->GetFont()); | |
110 | ||
111 | // Subclass again for purposes of dialog editing mode | |
112 | SubclassWin((WXHWND)m_hWnd); | |
113 | ||
114 | // SetValue(value); | |
115 | ||
116 | // start GRW fix | |
117 | if (label != wxT("")) | |
118 | { | |
119 | int label_width, label_height; | |
120 | GetTextExtent(label, &label_width, &label_height, NULL, NULL, & this->GetFont()); | |
121 | if (width < 0) | |
122 | width = (int)(label_width + RADIO_SIZE); | |
123 | if (height<0) | |
124 | { | |
125 | height = (int)(label_height); | |
126 | if (height < RADIO_SIZE) | |
127 | height = RADIO_SIZE; | |
128 | } | |
129 | } | |
130 | else | |
131 | { | |
132 | if (width < 0) | |
133 | width = RADIO_SIZE; | |
134 | if (height < 0) | |
135 | height = RADIO_SIZE; | |
136 | } | |
137 | // end GRW fix | |
138 | ||
139 | SetSize(x, y, width, height); | |
140 | ||
141 | return TRUE; | |
142 | } | |
143 | ||
144 | ||
145 | void wxRadioButton::SetLabel(const wxString& label) | |
146 | { | |
147 | SetWindowText((HWND) GetHWND(), (const wxChar *)label); | |
148 | } | |
149 | ||
150 | void wxRadioButton::SetValue(bool value) | |
151 | { | |
152 | // Following necessary for Win32s, because Win32s translate BM_SETCHECK | |
153 | SendMessage((HWND) GetHWND(), BM_SETCHECK, (WPARAM)value, 0L); | |
154 | } | |
155 | ||
156 | // Get single selection | |
157 | bool wxRadioButton::GetValue(void) const | |
158 | { | |
159 | return (SendMessage((HWND) GetHWND(), BM_GETCHECK, 0, 0L) != 0); | |
160 | } | |
161 | ||
162 | void wxRadioButton::Command (wxCommandEvent & event) | |
163 | { | |
164 | SetValue ( (event.m_commandInt != 0) ); | |
165 | ProcessCommand (event); | |
166 | } | |
167 | ||
168 | WXHBRUSH wxRadioButton::OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, | |
169 | WXUINT message, | |
170 | WXWPARAM wParam, | |
171 | WXLPARAM lParam) | |
172 | { | |
173 | #if wxUSE_CTL3D | |
174 | if ( m_useCtl3D ) | |
175 | { | |
176 | HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam); | |
177 | return (WXHBRUSH) hbrush; | |
178 | } | |
179 | #endif // wxUSE_CTL3D | |
180 | ||
181 | HDC hdc = (HDC)pDC; | |
182 | if (GetParent()->GetTransparentBackground()) | |
183 | SetBkMode(hdc, TRANSPARENT); | |
184 | else | |
185 | SetBkMode(hdc, OPAQUE); | |
186 | ||
187 | wxColour colBack = GetBackgroundColour(); | |
188 | ||
189 | if (!IsEnabled()) | |
190 | colBack = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE); | |
191 | ||
192 | ::SetBkColor(hdc, wxColourToRGB(colBack)); | |
193 | ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour())); | |
194 | ||
195 | wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBack, wxSOLID); | |
196 | ||
197 | return (WXHBRUSH)brush->GetResourceHandle(); | |
198 | } | |
199 | ||
200 | // Not implemented | |
201 | #if 0 | |
202 | bool wxBitmapRadioButton::Create(wxWindow *parent, wxWindowID id, | |
203 | const wxBitmap *bitmap, | |
204 | const wxPoint& pos, | |
205 | const wxSize& size, long style, | |
206 | const wxValidator& validator, | |
207 | const wxString& name) | |
208 | { | |
209 | SetName(name); | |
210 | SetValidator(validator); | |
211 | ||
212 | if (parent) parent->AddChild(this); | |
213 | SetBackgroundColour(parent->GetBackgroundColour()); | |
214 | SetForegroundColour(parent->GetForegroundColour()); | |
215 | ||
216 | if ( id == -1 ) | |
217 | m_windowId = (int)NewControlId(); | |
218 | else | |
219 | m_windowId = id; | |
220 | ||
221 | int x = pos.x; | |
222 | int y = pos.y; | |
223 | int width = size.x; | |
224 | int height = size.y; | |
225 | m_windowStyle = style ; | |
226 | ||
227 | long groupStyle = 0; | |
228 | if (m_windowStyle & wxRB_GROUP) | |
229 | groupStyle = WS_GROUP; | |
230 | ||
231 | // long msStyle = groupStyle | RADIO_FLAGS; | |
232 | long msStyle = groupStyle | BS_RADIOBUTTON | WS_CHILD | WS_VISIBLE ; | |
233 | ||
234 | m_hWnd = (WXHWND) CreateWindowEx(MakeExtendedStyle(m_windowStyle), RADIO_CLASS, "toggle", | |
235 | msStyle,0,0,0,0, | |
236 | (HWND) parent->GetHWND(), (HMENU)m_windowId, wxGetInstance(), NULL); | |
237 | ||
238 | wxCHECK_MSG( m_hWnd, "Failed to create radio button", FALSE ); | |
239 | ||
240 | #if wxUSE_CTL3D | |
241 | if (!(GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS)) | |
242 | { | |
243 | Ctl3dSubclassCtl((HWND) GetHWND()); | |
244 | m_useCtl3D = TRUE; | |
245 | } | |
246 | #endif | |
247 | ||
248 | // Subclass again for purposes of dialog editing mode | |
249 | SubclassWin(GetHWND()); | |
250 | ||
251 | SetSize(x, y, width, height); | |
252 | ||
253 | return TRUE; | |
254 | } | |
255 | ||
256 | void wxBitmapRadioButton::SetLabel(const wxBitmap *bitmap) | |
257 | { | |
258 | } | |
259 | ||
260 | void wxBitmapRadioButton::SetValue(bool value) | |
261 | { | |
262 | // Following necessary for Win32s, because Win32s translate BM_SETCHECK | |
263 | SendMessage((HWND) GetHWND(), BM_SETCHECK, (WPARAM)value, 0L); | |
264 | } | |
265 | ||
266 | // Get single selection, for single choice list items | |
267 | bool wxBitmapRadioButton::GetValue(void) const | |
268 | { | |
269 | return (bool)SendMessage((HWND) GetHWND(), BM_GETCHECK, 0, 0L); | |
270 | } | |
271 | ||
272 | #endif |