]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: choice.cpp | |
3 | // Purpose: wxChoice | |
4 | // Author: Julian Smart | |
8d99be5f | 5 | // Modified by: Vadim Zeitlin to derive from wxChoiceBase |
2bda0e17 KB |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
c085e333 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
8d99be5f VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
8d99be5f | 21 | #pragma implementation "choice.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
8d99be5f | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
1e6feb95 VZ |
31 | #if wxUSE_CHOICE |
32 | ||
2bda0e17 | 33 | #ifndef WX_PRECOMP |
8d99be5f VZ |
34 | #include "wx/choice.h" |
35 | #include "wx/utils.h" | |
36 | #include "wx/log.h" | |
f6bcfd97 | 37 | #include "wx/brush.h" |
c7401637 | 38 | #include "wx/settings.h" |
2bda0e17 KB |
39 | #endif |
40 | ||
41 | #include "wx/msw/private.h" | |
42 | ||
18c50997 | 43 | IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl) |
2bda0e17 | 44 | |
8d99be5f VZ |
45 | // ============================================================================ |
46 | // implementation | |
47 | // ============================================================================ | |
48 | ||
49 | // ---------------------------------------------------------------------------- | |
50 | // creation | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | bool wxChoice::Create(wxWindow *parent, | |
54 | wxWindowID id, | |
55 | const wxPoint& pos, | |
56 | const wxSize& size, | |
57 | int n, const wxString choices[], | |
58 | long style, | |
59 | const wxValidator& validator, | |
60 | const wxString& name) | |
2bda0e17 | 61 | { |
8d99be5f VZ |
62 | if ( !CreateControl(parent, id, pos, size, style, validator, name) ) |
63 | return FALSE; | |
29006414 | 64 | |
f6bcfd97 | 65 | long msStyle = WS_CHILD | CBS_DROPDOWNLIST | WS_TABSTOP | WS_VISIBLE | WS_HSCROLL | WS_VSCROLL /* | WS_CLIPSIBLINGS */; |
8d99be5f VZ |
66 | if ( style & wxCB_SORT ) |
67 | msStyle |= CBS_SORT; | |
2bda0e17 | 68 | |
b0766406 JS |
69 | if ( style & wxCLIP_SIBLINGS ) |
70 | msStyle |= WS_CLIPSIBLINGS; | |
71 | ||
72 | ||
f6bcfd97 | 73 | // Experience shows that wxChoice vs. wxComboBox distinction confuses |
8d99be5f VZ |
74 | // quite a few people - try to help them |
75 | wxASSERT_MSG( !(style & wxCB_DROPDOWN) && | |
76 | !(style & wxCB_READONLY) && | |
77 | !(style & wxCB_SIMPLE), | |
f6bcfd97 BP |
78 | _T("this style flag is ignored by wxChoice, you ") |
79 | _T("probably want to use a wxComboBox") ); | |
2bda0e17 | 80 | |
223d09f6 | 81 | if ( !MSWCreateControl(wxT("COMBOBOX"), msStyle) ) |
8d99be5f | 82 | return FALSE; |
2bda0e17 | 83 | |
c92d798f JS |
84 | // A choice/combobox normally has a white background (or other, depending |
85 | // on global settings) rather than inheriting the parent's background colour. | |
a756f210 | 86 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); |
c92d798f | 87 | |
8d99be5f VZ |
88 | for ( int i = 0; i < n; i++ ) |
89 | { | |
90 | Append(choices[i]); | |
91 | } | |
2bda0e17 | 92 | |
8d99be5f | 93 | SetSize(pos.x, pos.y, size.x, size.y); |
2bda0e17 | 94 | |
8d99be5f | 95 | return TRUE; |
2bda0e17 KB |
96 | } |
97 | ||
8ee9d618 VZ |
98 | wxChoice::~wxChoice() |
99 | { | |
100 | Free(); | |
101 | } | |
102 | ||
8d99be5f VZ |
103 | // ---------------------------------------------------------------------------- |
104 | // adding/deleting items to/from the list | |
105 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 106 | |
def6fb9b | 107 | int wxChoice::DoAppend(const wxString& item) |
8d99be5f | 108 | { |
def6fb9b VZ |
109 | int n = (int)SendMessage(GetHwnd(), CB_ADDSTRING, 0, (LONG)item.c_str()); |
110 | if ( n == CB_ERR ) | |
111 | { | |
f6bcfd97 | 112 | wxLogLastError(wxT("SendMessage(CB_ADDSTRING)")); |
def6fb9b VZ |
113 | } |
114 | ||
115 | return n; | |
2bda0e17 KB |
116 | } |
117 | ||
debe6624 | 118 | void wxChoice::Delete(int n) |
2bda0e17 | 119 | { |
223d09f6 | 120 | wxCHECK_RET( n < GetCount(), wxT("invalid item index in wxChoice::Delete") ); |
8d99be5f | 121 | |
6c8a980f VZ |
122 | if ( HasClientObjectData() ) |
123 | { | |
124 | delete GetClientObject(n); | |
125 | } | |
126 | ||
8d99be5f | 127 | SendMessage(GetHwnd(), CB_DELETESTRING, n, 0); |
2bda0e17 KB |
128 | } |
129 | ||
8d99be5f | 130 | void wxChoice::Clear() |
8ee9d618 | 131 | { |
92d2389e | 132 | Free(); |
8ee9d618 VZ |
133 | |
134 | SendMessage(GetHwnd(), CB_RESETCONTENT, 0, 0); | |
135 | } | |
136 | ||
137 | void wxChoice::Free() | |
2bda0e17 | 138 | { |
6c8a980f VZ |
139 | if ( HasClientObjectData() ) |
140 | { | |
141 | size_t count = GetCount(); | |
142 | for ( size_t n = 0; n < count; n++ ) | |
143 | { | |
144 | delete GetClientObject(n); | |
145 | } | |
146 | } | |
2bda0e17 KB |
147 | } |
148 | ||
8d99be5f VZ |
149 | // ---------------------------------------------------------------------------- |
150 | // selection | |
151 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 152 | |
8d99be5f | 153 | int wxChoice::GetSelection() const |
2bda0e17 | 154 | { |
8d99be5f | 155 | return (int)SendMessage(GetHwnd(), CB_GETCURSEL, 0, 0); |
2bda0e17 KB |
156 | } |
157 | ||
debe6624 | 158 | void wxChoice::SetSelection(int n) |
2bda0e17 | 159 | { |
8d99be5f VZ |
160 | SendMessage(GetHwnd(), CB_SETCURSEL, n, 0); |
161 | } | |
162 | ||
163 | // ---------------------------------------------------------------------------- | |
164 | // string list functions | |
165 | // ---------------------------------------------------------------------------- | |
166 | ||
167 | int wxChoice::GetCount() const | |
168 | { | |
169 | return (int)SendMessage(GetHwnd(), CB_GETCOUNT, 0, 0); | |
2bda0e17 KB |
170 | } |
171 | ||
172 | int wxChoice::FindString(const wxString& s) const | |
173 | { | |
174 | #if defined(__WATCOMC__) && defined(__WIN386__) | |
8d99be5f VZ |
175 | // For some reason, Watcom in WIN386 mode crashes in the CB_FINDSTRINGEXACT message. |
176 | // wxChoice::Do it the long way instead. | |
177 | int count = GetCount(); | |
178 | for ( int i = 0; i < count; i++ ) | |
179 | { | |
180 | // as CB_FINDSTRINGEXACT is case insensitive, be case insensitive too | |
181 | if ( GetString(i).IsSameAs(s, FALSE) ) | |
182 | return i; | |
183 | } | |
184 | ||
185 | return wxNOT_FOUND; | |
186 | #else // !Watcom | |
187 | int pos = (int)SendMessage(GetHwnd(), CB_FINDSTRINGEXACT, | |
188 | (WPARAM)-1, (LPARAM)s.c_str()); | |
189 | ||
190 | return pos == LB_ERR ? wxNOT_FOUND : pos; | |
191 | #endif // Watcom/!Watcom | |
2bda0e17 KB |
192 | } |
193 | ||
b4bfa452 | 194 | void wxChoice::SetString(int n, const wxString& s) |
6c8a980f | 195 | { |
2b5f62a0 VZ |
196 | wxCHECK_RET( n >= 0 && n < GetCount(), |
197 | wxT("invalid item index in wxChoice::SetString") ); | |
198 | ||
199 | // we have to delete and add back the string as there is no way to change a | |
200 | // string in place | |
201 | ||
202 | // we need to preserve the client data | |
203 | void *data; | |
204 | if ( m_clientDataItemsType != wxClientData_None ) | |
205 | { | |
206 | data = DoGetItemClientData(n); | |
207 | } | |
208 | else // no client data | |
209 | { | |
210 | data = NULL; | |
211 | } | |
212 | ||
213 | ::SendMessage(GetHwnd(), CB_DELETESTRING, n, 0); | |
214 | ::SendMessage(GetHwnd(), CB_INSERTSTRING, n, (LPARAM)s.c_str() ); | |
215 | ||
216 | if ( data ) | |
217 | { | |
218 | DoSetItemClientData(n, data); | |
219 | } | |
220 | //else: it's already NULL by default | |
6c8a980f VZ |
221 | } |
222 | ||
debe6624 | 223 | wxString wxChoice::GetString(int n) const |
2bda0e17 | 224 | { |
478cabab VZ |
225 | int len = (int)::SendMessage(GetHwnd(), CB_GETLBTEXTLEN, n, 0); |
226 | ||
6c8a980f | 227 | wxString str; |
478cabab VZ |
228 | if ( len != CB_ERR && len > 0 ) |
229 | { | |
230 | if ( ::SendMessage | |
231 | ( | |
232 | GetHwnd(), | |
233 | CB_GETLBTEXT, | |
234 | n, | |
235 | (LPARAM)(wxChar *)wxStringBuffer(str, len) | |
236 | ) == CB_ERR ) | |
237 | { | |
f6bcfd97 | 238 | wxLogLastError(wxT("SendMessage(CB_GETLBTEXT)")); |
21d72d17 | 239 | } |
478cabab | 240 | |
21d72d17 | 241 | str.UngetWriteBuf(); |
4438caf4 | 242 | } |
2bda0e17 | 243 | |
4438caf4 VZ |
244 | return str; |
245 | } | |
2bda0e17 | 246 | |
8d99be5f VZ |
247 | // ---------------------------------------------------------------------------- |
248 | // client data | |
249 | // ---------------------------------------------------------------------------- | |
250 | ||
6c8a980f | 251 | void wxChoice::DoSetItemClientData( int n, void* clientData ) |
8d99be5f | 252 | { |
2b5f62a0 VZ |
253 | if ( ::SendMessage(GetHwnd(), CB_SETITEMDATA, |
254 | n, (LPARAM)clientData) == CB_ERR ) | |
8d99be5f | 255 | { |
223d09f6 | 256 | wxLogLastError(wxT("CB_SETITEMDATA")); |
8d99be5f VZ |
257 | } |
258 | } | |
259 | ||
6c8a980f | 260 | void* wxChoice::DoGetItemClientData( int n ) const |
8d99be5f VZ |
261 | { |
262 | LPARAM rc = SendMessage(GetHwnd(), CB_GETITEMDATA, n, 0); | |
263 | if ( rc == CB_ERR ) | |
264 | { | |
223d09f6 | 265 | wxLogLastError(wxT("CB_GETITEMDATA")); |
8d99be5f VZ |
266 | |
267 | // unfortunately, there is no way to return an error code to the user | |
8ee9d618 | 268 | rc = (LPARAM) NULL; |
8d99be5f VZ |
269 | } |
270 | ||
271 | return (void *)rc; | |
272 | } | |
273 | ||
6c8a980f | 274 | void wxChoice::DoSetItemClientObject( int n, wxClientData* clientData ) |
8d99be5f | 275 | { |
6c8a980f | 276 | DoSetItemClientData(n, clientData); |
8d99be5f VZ |
277 | } |
278 | ||
6c8a980f | 279 | wxClientData* wxChoice::DoGetItemClientObject( int n ) const |
8d99be5f | 280 | { |
6c8a980f | 281 | return (wxClientData *)DoGetItemClientData(n); |
8d99be5f VZ |
282 | } |
283 | ||
284 | // ---------------------------------------------------------------------------- | |
285 | // wxMSW specific helpers | |
286 | // ---------------------------------------------------------------------------- | |
287 | ||
18c50997 VZ |
288 | void wxChoice::DoMoveWindow(int x, int y, int width, int height) |
289 | { | |
290 | // here is why this is necessary: if the width is negative, the combobox | |
291 | // window proc makes the window of the size width*height instead of | |
292 | // interpreting height in the usual manner (meaning the height of the drop | |
293 | // down list - usually the height specified in the call to MoveWindow() | |
294 | // will not change the height of combo box per se) | |
295 | // | |
296 | // this behaviour is not documented anywhere, but this is just how it is | |
297 | // here (NT 4.4) and, anyhow, the check shouldn't hurt - however without | |
298 | // the check, constraints/sizers using combos may break the height | |
299 | // constraint will have not at all the same value as expected | |
300 | if ( width < 0 ) | |
301 | return; | |
302 | ||
303 | wxControl::DoMoveWindow(x, y, width, height); | |
304 | } | |
305 | ||
4438caf4 | 306 | void wxChoice::DoSetSize(int x, int y, |
33ac7e6f | 307 | int width, int WXUNUSED(height), |
4438caf4 VZ |
308 | int sizeFlags) |
309 | { | |
310 | // Ignore height parameter because height doesn't mean 'initially | |
311 | // displayed' height, it refers to the drop-down menu as well. The | |
312 | // wxWindows interpretation is different; also, getting the size returns | |
313 | // the _displayed_ size (NOT the drop down menu size) so | |
314 | // setting-getting-setting size would not work. | |
a8e65eee | 315 | |
5a224901 | 316 | wxControl::DoSetSize(x, y, width, -1, sizeFlags); |
4438caf4 | 317 | } |
2bda0e17 | 318 | |
882a8f40 | 319 | wxSize wxChoice::DoGetBestSize() const |
4438caf4 VZ |
320 | { |
321 | // find the widest string | |
322 | int wLine; | |
323 | int wChoice = 0; | |
8d99be5f VZ |
324 | int nItems = GetCount(); |
325 | for ( int i = 0; i < nItems; i++ ) | |
2bda0e17 | 326 | { |
2bda0e17 | 327 | wxString str(GetString(i)); |
4438caf4 VZ |
328 | GetTextExtent(str, &wLine, NULL); |
329 | if ( wLine > wChoice ) | |
330 | wChoice = wLine; | |
2bda0e17 | 331 | } |
fd3f686c | 332 | |
4438caf4 VZ |
333 | // give it some reasonable default value if there are no strings in the |
334 | // list | |
335 | if ( wChoice == 0 ) | |
336 | wChoice = 100; | |
2bda0e17 | 337 | |
4438caf4 VZ |
338 | // the combobox should be larger than the widest string |
339 | int cx, cy; | |
340 | wxGetCharSize(GetHWND(), &cx, &cy, &GetFont()); | |
2bda0e17 | 341 | |
4438caf4 | 342 | wChoice += 5*cx; |
2bda0e17 | 343 | |
4438caf4 | 344 | // Choice drop-down list depends on number of items (limited to 10) |
8d99be5f | 345 | size_t nStrings = nItems == 0 ? 10 : wxMin(10, nItems) + 1; |
4438caf4 | 346 | int hChoice = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)*nStrings; |
2bda0e17 | 347 | |
4438caf4 | 348 | return wxSize(wChoice, hChoice); |
2bda0e17 KB |
349 | } |
350 | ||
2bda0e17 KB |
351 | long wxChoice::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
352 | { | |
8d99be5f | 353 | if ( nMsg == WM_LBUTTONUP ) |
2bda0e17 | 354 | { |
2bda0e17 KB |
355 | int x = (int)LOWORD(lParam); |
356 | int y = (int)HIWORD(lParam); | |
357 | ||
8d99be5f VZ |
358 | // Ok, this is truly weird, but if a panel with a wxChoice loses the |
359 | // focus, then you get a *fake* WM_LBUTTONUP message with x = 65535 and | |
360 | // y = 65535. Filter out this nonsense. | |
361 | // | |
362 | // VZ: I'd like to know how to reproduce this please... | |
363 | if ( x == 65535 && y == 65535 ) | |
364 | return 0; | |
2bda0e17 KB |
365 | } |
366 | ||
8d99be5f | 367 | return wxWindow::MSWWindowProc(nMsg, wParam, lParam); |
2bda0e17 KB |
368 | } |
369 | ||
8d99be5f | 370 | bool wxChoice::MSWCommand(WXUINT param, WXWORD WXUNUSED(id)) |
2bda0e17 | 371 | { |
8d99be5f | 372 | if ( param != CBN_SELCHANGE) |
2bda0e17 | 373 | { |
8d99be5f VZ |
374 | // "selection changed" is the only event we're after |
375 | return FALSE; | |
2bda0e17 | 376 | } |
2bda0e17 | 377 | |
2b273975 | 378 | int n = GetSelection(); |
8c1c5302 JS |
379 | if (n > -1) |
380 | { | |
381 | wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, m_windowId); | |
382 | event.SetInt(n); | |
383 | event.SetEventObject(this); | |
384 | event.SetString(GetStringSelection()); | |
385 | if ( HasClientObjectData() ) | |
386 | event.SetClientObject( GetClientObject(n) ); | |
387 | else if ( HasClientUntypedData() ) | |
388 | event.SetClientData( GetClientData(n) ); | |
389 | ProcessCommand(event); | |
390 | } | |
2bda0e17 | 391 | |
8d99be5f VZ |
392 | return TRUE; |
393 | } | |
2bda0e17 | 394 | |
33ac7e6f | 395 | WXHBRUSH wxChoice::OnCtlColor(WXHDC pDC, WXHWND WXUNUSED(pWnd), WXUINT WXUNUSED(nCtlColor), |
788722ac JS |
396 | #if wxUSE_CTL3D |
397 | WXUINT message, | |
398 | WXWPARAM wParam, | |
399 | WXLPARAM lParam | |
400 | #else | |
33ac7e6f KB |
401 | WXUINT WXUNUSED(message), |
402 | WXWPARAM WXUNUSED(wParam), | |
788722ac JS |
403 | WXLPARAM WXUNUSED(lParam) |
404 | #endif | |
405 | ) | |
f6bcfd97 BP |
406 | { |
407 | #if wxUSE_CTL3D | |
408 | if ( m_useCtl3D ) | |
409 | { | |
410 | HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam); | |
411 | return (WXHBRUSH) hbrush; | |
412 | } | |
413 | #endif // wxUSE_CTL3D | |
414 | ||
415 | HDC hdc = (HDC)pDC; | |
416 | if (GetParent()->GetTransparentBackground()) | |
417 | SetBkMode(hdc, TRANSPARENT); | |
418 | else | |
419 | SetBkMode(hdc, OPAQUE); | |
420 | ||
421 | wxColour colBack = GetBackgroundColour(); | |
422 | ||
423 | if (!IsEnabled()) | |
a756f210 | 424 | colBack = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE); |
f6bcfd97 BP |
425 | |
426 | ::SetBkColor(hdc, wxColourToRGB(colBack)); | |
427 | ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour())); | |
428 | ||
429 | wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBack, wxSOLID); | |
430 | ||
431 | return (WXHBRUSH)brush->GetResourceHandle(); | |
432 | } | |
433 | ||
1e6feb95 | 434 | #endif // wxUSE_CHOICE |