Refactor: move wxComboBox::MSWDoPopupOrDismiss() down to wxChoice.
[wxWidgets.git] / src / msw / choice.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/choice.cpp
3 // Purpose: wxChoice
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin to derive from wxChoiceBase
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #if wxUSE_CHOICE && !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
28
29 #include "wx/choice.h"
30
31 #ifndef WX_PRECOMP
32 #include "wx/utils.h"
33 #include "wx/app.h"
34 #include "wx/log.h"
35 #include "wx/brush.h"
36 #include "wx/settings.h"
37 #endif
38
39 #include "wx/msw/private.h"
40
41 // ============================================================================
42 // implementation
43 // ============================================================================
44
45 // ----------------------------------------------------------------------------
46 // creation
47 // ----------------------------------------------------------------------------
48
49 bool wxChoice::Create(wxWindow *parent,
50 wxWindowID id,
51 const wxPoint& pos,
52 const wxSize& size,
53 int n, const wxString choices[],
54 long style,
55 const wxValidator& validator,
56 const wxString& name)
57 {
58 // Experience shows that wxChoice vs. wxComboBox distinction confuses
59 // quite a few people - try to help them
60 wxASSERT_MSG( !(style & wxCB_DROPDOWN) &&
61 !(style & wxCB_READONLY) &&
62 !(style & wxCB_SIMPLE),
63 wxT("this style flag is ignored by wxChoice, you ")
64 wxT("probably want to use a wxComboBox") );
65
66 return CreateAndInit(parent, id, pos, size, n, choices, style,
67 validator, name);
68 }
69
70 bool wxChoice::CreateAndInit(wxWindow *parent,
71 wxWindowID id,
72 const wxPoint& pos,
73 const wxSize& size,
74 int n, const wxString choices[],
75 long style,
76 const wxValidator& validator,
77 const wxString& name)
78 {
79 // initialize wxControl
80 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
81 return false;
82
83 // now create the real HWND
84 if ( !MSWCreateControl(wxT("COMBOBOX"), wxEmptyString, pos, size) )
85 return false;
86
87
88 // initialize the controls contents
89 Append(n, choices);
90
91 // and now we may finally size the control properly (if needed)
92 SetInitialSize(size);
93
94 return true;
95 }
96
97 void wxChoice::SetLabel(const wxString& label)
98 {
99 if ( FindString(label) == wxNOT_FOUND )
100 {
101 // unless we explicitly do this here, CB_GETCURSEL will continue to
102 // return the index of the previously selected item which will result
103 // in wrongly replacing the value being set now with the previously
104 // value if the user simply opens and closes (without selecting
105 // anything) the combobox popup
106 SetSelection(-1);
107 }
108
109 wxChoiceBase::SetLabel(label);
110 }
111
112 bool wxChoice::Create(wxWindow *parent,
113 wxWindowID id,
114 const wxPoint& pos,
115 const wxSize& size,
116 const wxArrayString& choices,
117 long style,
118 const wxValidator& validator,
119 const wxString& name)
120 {
121 wxCArrayString chs(choices);
122 return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
123 style, validator, name);
124 }
125
126 bool wxChoice::MSWShouldPreProcessMessage(WXMSG *pMsg)
127 {
128 MSG *msg = (MSG *) pMsg;
129
130 // if the dropdown list is visible, don't preprocess certain keys
131 if ( msg->message == WM_KEYDOWN
132 && (msg->wParam == VK_ESCAPE || msg->wParam == VK_RETURN) )
133 {
134 if (::SendMessage(GetHwndOf(this), CB_GETDROPPEDSTATE, 0, 0))
135 {
136 return false;
137 }
138 }
139
140 return wxControl::MSWShouldPreProcessMessage(pMsg);
141 }
142
143 WXDWORD wxChoice::MSWGetStyle(long style, WXDWORD *exstyle) const
144 {
145 // we never have an external border
146 WXDWORD msStyle = wxControl::MSWGetStyle
147 (
148 (style & ~wxBORDER_MASK) | wxBORDER_NONE, exstyle
149 );
150
151 // WS_CLIPSIBLINGS is useful with wxChoice and doesn't seem to result in
152 // any problems
153 msStyle |= WS_CLIPSIBLINGS;
154
155 // wxChoice-specific styles
156 msStyle |= CBS_DROPDOWNLIST | WS_HSCROLL | WS_VSCROLL;
157 if ( style & wxCB_SORT )
158 msStyle |= CBS_SORT;
159
160 return msStyle;
161 }
162
163 #ifndef EP_EDITTEXT
164 #define EP_EDITTEXT 1
165 #define ETS_NORMAL 1
166 #endif
167
168 wxVisualAttributes
169 wxChoice::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
170 {
171 // it is important to return valid values for all attributes from here,
172 // GetXXX() below rely on this
173 wxVisualAttributes attrs;
174
175 // FIXME: Use better dummy window?
176 wxWindow* wnd = wxTheApp->GetTopWindow();
177 if (!wnd)
178 return attrs;
179
180 attrs.font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
181
182 // there doesn't seem to be any way to get the text colour using themes
183 // API: TMT_TEXTCOLOR doesn't work neither for EDIT nor COMBOBOX
184 attrs.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT);
185
186 // NB: use EDIT, not COMBOBOX (the latter works in XP but not Vista)
187 attrs.colBg = wnd->MSWGetThemeColour(L"EDIT",
188 EP_EDITTEXT,
189 ETS_NORMAL,
190 ThemeColourBackground,
191 wxSYS_COLOUR_WINDOW);
192
193 return attrs;
194 }
195
196 wxChoice::~wxChoice()
197 {
198 Clear();
199 }
200
201 // ----------------------------------------------------------------------------
202 // adding/deleting items to/from the list
203 // ----------------------------------------------------------------------------
204
205 int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items,
206 unsigned int pos,
207 void **clientData, wxClientDataType type)
208 {
209 MSWAllocStorage(items, CB_INITSTORAGE);
210
211 const bool append = pos == GetCount();
212
213 // use CB_ADDSTRING when appending at the end to make sure the control is
214 // resorted if it has wxCB_SORT style
215 const unsigned msg = append ? CB_ADDSTRING : CB_INSERTSTRING;
216
217 if ( append )
218 pos = 0;
219
220 int n = wxNOT_FOUND;
221 const unsigned numItems = items.GetCount();
222 for ( unsigned i = 0; i < numItems; ++i )
223 {
224 n = MSWInsertOrAppendItem(pos, items[i], msg);
225 if ( n == wxNOT_FOUND )
226 return n;
227
228 if ( !append )
229 pos++;
230
231 AssignNewItemClientData(n, clientData, i, type);
232 }
233
234 // we need to refresh our size in order to have enough space for the
235 // newly added items
236 if ( !IsFrozen() )
237 MSWUpdateDropDownHeight();
238
239 InvalidateBestSize();
240
241 return n;
242 }
243
244 void wxChoice::DoDeleteOneItem(unsigned int n)
245 {
246 wxCHECK_RET( IsValid(n), wxT("invalid item index in wxChoice::Delete") );
247
248 SendMessage(GetHwnd(), CB_DELETESTRING, n, 0);
249
250 if ( !IsFrozen() )
251 MSWUpdateDropDownHeight();
252
253 InvalidateBestSize();
254 }
255
256 void wxChoice::DoClear()
257 {
258 SendMessage(GetHwnd(), CB_RESETCONTENT, 0, 0);
259
260 if ( !IsFrozen() )
261 MSWUpdateDropDownHeight();
262
263 InvalidateBestSize();
264 }
265
266 // ----------------------------------------------------------------------------
267 // selection
268 // ----------------------------------------------------------------------------
269
270 int wxChoice::GetSelection() const
271 {
272 // if m_lastAcceptedSelection is set, it means that the dropdown is
273 // currently shown and that we want to use the last "permanent" selection
274 // instead of whatever is under the mouse pointer currently
275 //
276 // otherwise, get the selection from the control
277 return m_lastAcceptedSelection == wxID_NONE ? GetCurrentSelection()
278 : m_lastAcceptedSelection;
279 }
280
281 int wxChoice::GetCurrentSelection() const
282 {
283 return (int)SendMessage(GetHwnd(), CB_GETCURSEL, 0, 0);
284 }
285
286 void wxChoice::SetSelection(int n)
287 {
288 SendMessage(GetHwnd(), CB_SETCURSEL, n, 0);
289 }
290
291 // ----------------------------------------------------------------------------
292 // string list functions
293 // ----------------------------------------------------------------------------
294
295 unsigned int wxChoice::GetCount() const
296 {
297 return (unsigned int)SendMessage(GetHwnd(), CB_GETCOUNT, 0, 0);
298 }
299
300 int wxChoice::FindString(const wxString& s, bool bCase) const
301 {
302 #if defined(__WATCOMC__) && defined(__WIN386__)
303 // For some reason, Watcom in WIN386 mode crashes in the CB_FINDSTRINGEXACT message.
304 // wxChoice::Do it the long way instead.
305 unsigned int count = GetCount();
306 for ( unsigned int i = 0; i < count; i++ )
307 {
308 // as CB_FINDSTRINGEXACT is case insensitive, be case insensitive too
309 if (GetString(i).IsSameAs(s, bCase))
310 return i;
311 }
312
313 return wxNOT_FOUND;
314 #else // !Watcom
315 //TODO: Evidently some MSW versions (all?) don't like empty strings
316 //passed to SendMessage, so we have to do it ourselves in that case
317 if ( s.empty() )
318 {
319 unsigned int count = GetCount();
320 for ( unsigned int i = 0; i < count; i++ )
321 {
322 if (GetString(i).empty())
323 return i;
324 }
325
326 return wxNOT_FOUND;
327 }
328 else if (bCase)
329 {
330 // back to base class search for not native search type
331 return wxItemContainerImmutable::FindString( s, bCase );
332 }
333 else
334 {
335 int pos = (int)SendMessage(GetHwnd(), CB_FINDSTRINGEXACT,
336 (WPARAM)-1, (LPARAM)s.wx_str());
337
338 return pos == LB_ERR ? wxNOT_FOUND : pos;
339 }
340 #endif // Watcom/!Watcom
341 }
342
343 void wxChoice::SetString(unsigned int n, const wxString& s)
344 {
345 wxCHECK_RET( IsValid(n), wxT("invalid item index in wxChoice::SetString") );
346
347 // we have to delete and add back the string as there is no way to change a
348 // string in place
349
350 // we need to preserve the client data manually
351 void *oldData = NULL;
352 wxClientData *oldObjData = NULL;
353 if ( HasClientUntypedData() )
354 oldData = GetClientData(n);
355 else if ( HasClientObjectData() )
356 oldObjData = GetClientObject(n);
357
358 // and also the selection if we're going to delete the item that was
359 // selected
360 const bool wasSelected = static_cast<int>(n) == GetSelection();
361
362 ::SendMessage(GetHwnd(), CB_DELETESTRING, n, 0);
363 ::SendMessage(GetHwnd(), CB_INSERTSTRING, n, (LPARAM)s.wx_str() );
364
365 // restore the client data
366 if ( oldData )
367 SetClientData(n, oldData);
368 else if ( oldObjData )
369 SetClientObject(n, oldObjData);
370
371 // and the selection
372 if ( wasSelected )
373 SetSelection(n);
374
375 // the width could have changed so the best size needs to be recomputed
376 InvalidateBestSize();
377 }
378
379 wxString wxChoice::GetString(unsigned int n) const
380 {
381 int len = (int)::SendMessage(GetHwnd(), CB_GETLBTEXTLEN, n, 0);
382
383 wxString str;
384 if ( len != CB_ERR && len > 0 )
385 {
386 if ( ::SendMessage
387 (
388 GetHwnd(),
389 CB_GETLBTEXT,
390 n,
391 (LPARAM)(wxChar *)wxStringBuffer(str, len)
392 ) == CB_ERR )
393 {
394 wxLogLastError(wxT("SendMessage(CB_GETLBTEXT)"));
395 }
396 }
397
398 return str;
399 }
400
401 // ----------------------------------------------------------------------------
402 // client data
403 // ----------------------------------------------------------------------------
404
405 void wxChoice::DoSetItemClientData(unsigned int n, void* clientData)
406 {
407 if ( ::SendMessage(GetHwnd(), CB_SETITEMDATA,
408 n, (LPARAM)clientData) == CB_ERR )
409 {
410 wxLogLastError(wxT("CB_SETITEMDATA"));
411 }
412 }
413
414 void* wxChoice::DoGetItemClientData(unsigned int n) const
415 {
416 LPARAM rc = SendMessage(GetHwnd(), CB_GETITEMDATA, n, 0);
417 if ( rc == CB_ERR && GetLastError() != ERROR_SUCCESS )
418 {
419 wxLogLastError(wxT("CB_GETITEMDATA"));
420
421 // unfortunately, there is no way to return an error code to the user
422 rc = (LPARAM) NULL;
423 }
424
425 return (void *)rc;
426 }
427
428 // ----------------------------------------------------------------------------
429 // wxMSW-specific geometry management
430 // ----------------------------------------------------------------------------
431
432 namespace
433 {
434
435 // there is a difference between the height passed to CB_SETITEMHEIGHT and the
436 // real height of the combobox; it is probably not constant for all Windows
437 // versions/settings but right now I don't know how to find what it is so it is
438 // temporarily hardcoded to its value under XP systems with normal fonts sizes
439 const int COMBO_HEIGHT_ADJ = 6;
440
441 } // anonymous namespace
442
443 void wxChoice::MSWUpdateVisibleHeight()
444 {
445 if ( m_heightOwn != wxDefaultCoord )
446 {
447 ::SendMessage(GetHwnd(), CB_SETITEMHEIGHT,
448 (WPARAM)-1, m_heightOwn - COMBO_HEIGHT_ADJ);
449 }
450 }
451
452 #if wxUSE_DEFERRED_SIZING
453 void wxChoice::MSWEndDeferWindowPos()
454 {
455 // we can only set the height of the choice itself now as it is reset to
456 // default every time the control is resized
457 MSWUpdateVisibleHeight();
458
459 wxChoiceBase::MSWEndDeferWindowPos();
460 }
461 #endif // wxUSE_DEFERRED_SIZING
462
463 void wxChoice::MSWUpdateDropDownHeight()
464 {
465 // be careful to not change the width here
466 DoSetSize(wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, GetSize().y,
467 wxSIZE_USE_EXISTING);
468 }
469
470 void wxChoice::DoMoveWindow(int x, int y, int width, int height)
471 {
472 // here is why this is necessary: if the width is negative, the combobox
473 // window proc makes the window of the size width*height instead of
474 // interpreting height in the usual manner (meaning the height of the drop
475 // down list - usually the height specified in the call to MoveWindow()
476 // will not change the height of combo box per se)
477 //
478 // this behaviour is not documented anywhere, but this is just how it is
479 // here (NT 4.4) and, anyhow, the check shouldn't hurt - however without
480 // the check, constraints/sizers using combos may break the height
481 // constraint will have not at all the same value as expected
482 if ( width < 0 )
483 return;
484
485 wxControl::DoMoveWindow(x, y, width, height);
486 }
487
488 void wxChoice::DoGetSize(int *w, int *h) const
489 {
490 wxControl::DoGetSize(w, h);
491
492 // this is weird: sometimes, the height returned by Windows is clearly the
493 // total height of the control including the drop down list -- but only
494 // sometimes, and sometimes it isn't so work around this here by using our
495 // own stored value if we have it
496 if ( h && m_heightOwn != wxDefaultCoord )
497 *h = m_heightOwn;
498 }
499
500 void wxChoice::DoSetSize(int x, int y,
501 int width, int height,
502 int sizeFlags)
503 {
504 const int heightBest = GetBestSize().y;
505
506 // we need the real height below so get the current one if it's not given
507 if ( height == wxDefaultCoord )
508 {
509 // height not specified, use the same as before
510 DoGetSize(NULL, &height);
511 }
512 else if ( height == heightBest )
513 {
514 // we don't need to manually manage our height, let the system use the
515 // default one
516 m_heightOwn = wxDefaultCoord;
517 }
518 else // non-default height specified
519 {
520 // set our new own height but be careful not to make it too big: the
521 // native control apparently stores it as a single byte and so setting
522 // own height to 256 pixels results in default height being used (255
523 // is still ok)
524 m_heightOwn = height;
525
526 if ( m_heightOwn > UCHAR_MAX )
527 m_heightOwn = UCHAR_MAX;
528 // nor too small: see MSWUpdateVisibleHeight()
529 else if ( m_heightOwn < COMBO_HEIGHT_ADJ )
530 m_heightOwn = COMBO_HEIGHT_ADJ;
531 }
532
533
534 // the height which we must pass to Windows should be the total height of
535 // the control including the drop down list while the height given to us
536 // is, of course, just the height of the permanently visible part of it so
537 // add the drop down height to it
538
539 // don't make the drop down list too tall, arbitrarily limit it to 30
540 // items max and also don't make it too small if it's currently empty
541 size_t nItems = GetCount();
542 if (!HasFlag(wxCB_SIMPLE))
543 {
544 if ( !nItems )
545 nItems = 9;
546 else if ( nItems > 30 )
547 nItems = 30;
548 }
549
550 const int hItem = SendMessage(GetHwnd(), CB_GETITEMHEIGHT, 0, 0);
551 int heightWithItems = 0;
552 if (!HasFlag(wxCB_SIMPLE))
553 // The extra item (" + 1") is required to prevent a vertical
554 // scrollbar from appearing with comctl32.dll versions earlier
555 // than 6.0 (such as found in Win2k).
556 heightWithItems = height + hItem*(nItems + 1);
557 else
558 heightWithItems = SetHeightSimpleComboBox(nItems);
559
560
561 // do resize the native control
562 wxControl::DoSetSize(x, y, width, heightWithItems, sizeFlags);
563
564
565 // make the control itself of the requested height: notice that this
566 // must be done after changing its size or it has no effect (apparently
567 // the height is reset to default during the control layout) and that it's
568 // useless to do it when using the deferred sizing -- in this case it
569 // will be done from MSWEndDeferWindowPos()
570 #if wxUSE_DEFERRED_SIZING
571 if ( m_pendingSize == wxDefaultSize )
572 {
573 // not using deferred sizing, update it immediately
574 MSWUpdateVisibleHeight();
575 }
576 else // in the middle of deferred sizing
577 {
578 // we need to report the size of the visible part of the control back
579 // in GetSize() and not height stored by DoSetSize() in m_pendingSize
580 m_pendingSize = wxSize(width, height);
581 }
582 #else // !wxUSE_DEFERRED_SIZING
583 // always update the visible height immediately
584 MSWUpdateVisibleHeight();
585 #endif // wxUSE_DEFERRED_SIZING
586 }
587
588 wxSize wxChoice::DoGetBestSize() const
589 {
590 // find the widest string
591 int wChoice = 0;
592 int hChoice;
593 const unsigned int nItems = GetCount();
594 for ( unsigned int i = 0; i < nItems; i++ )
595 {
596 int wLine;
597 GetTextExtent(GetString(i), &wLine, NULL);
598 if ( wLine > wChoice )
599 wChoice = wLine;
600 }
601
602 // give it some reasonable default value if there are no strings in the
603 // list
604 if ( wChoice == 0 )
605 wChoice = 100;
606
607 // the combobox should be slightly larger than the widest string
608 wChoice += 5*GetCharWidth();
609 if( HasFlag( wxCB_SIMPLE ) )
610 {
611 hChoice = SetHeightSimpleComboBox( nItems );
612 }
613 else
614 hChoice = EDIT_HEIGHT_FROM_CHAR_HEIGHT(GetCharHeight());
615
616 wxSize best(wChoice, hChoice);
617 CacheBestSize(best);
618 return best;
619 }
620
621 int wxChoice::SetHeightSimpleComboBox(int nItems) const
622 {
623 int cx, cy;
624 wxGetCharSize( GetHWND(), &cx, &cy, GetFont() );
625 int hItem = SendMessage(GetHwnd(), CB_GETITEMHEIGHT, (WPARAM)-1, 0);
626 return EDIT_HEIGHT_FROM_CHAR_HEIGHT( cy ) * wxMin( wxMax( nItems, 3 ), 6 ) + hItem - 1;
627 }
628
629 // ----------------------------------------------------------------------------
630 // Popup operations
631 // ----------------------------------------------------------------------------
632
633 void wxChoice::MSWDoPopupOrDismiss(bool show)
634 {
635 wxASSERT_MSG( !HasFlag(wxCB_SIMPLE),
636 wxT("can't popup/dismiss the list for simple combo box") );
637
638 // we *must* set focus to the combobox before showing or hiding the drop
639 // down as without this we get WM_LBUTTONDOWN messages with invalid HWND
640 // when hiding it (whether programmatically or manually) resulting in a
641 // crash when we pass them to IsDialogMessage()
642 //
643 // this can be seen in the combo page of the widgets sample under Windows 7
644 SetFocus();
645
646 ::SendMessage(GetHwnd(), CB_SHOWDROPDOWN, show, 0);
647 }
648
649 // ----------------------------------------------------------------------------
650 // MSW message handlers
651 // ----------------------------------------------------------------------------
652
653 WXLRESULT wxChoice::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
654 {
655 switch ( nMsg )
656 {
657 case WM_LBUTTONUP:
658 {
659 int x = (int)LOWORD(lParam);
660 int y = (int)HIWORD(lParam);
661
662 // Ok, this is truly weird, but if a panel with a wxChoice
663 // loses the focus, then you get a *fake* WM_LBUTTONUP message
664 // with x = 65535 and y = 65535. Filter out this nonsense.
665 //
666 // VZ: I'd like to know how to reproduce this please...
667 if ( x == 65535 && y == 65535 )
668 return 0;
669 }
670 break;
671
672 // we have to handle both: one for the normal case and the other
673 // for readonly
674 case WM_CTLCOLOREDIT:
675 case WM_CTLCOLORLISTBOX:
676 case WM_CTLCOLORSTATIC:
677 {
678 WXHDC hdc;
679 WXHWND hwnd;
680 UnpackCtlColor(wParam, lParam, &hdc, &hwnd);
681
682 WXHBRUSH hbr = MSWControlColor((WXHDC)hdc, hwnd);
683 if ( hbr )
684 return (WXLRESULT)hbr;
685 //else: fall through to default window proc
686 }
687 }
688
689 return wxWindow::MSWWindowProc(nMsg, wParam, lParam);
690 }
691
692 bool wxChoice::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
693 {
694 /*
695 The native control provides a great variety in the events it sends in
696 the different selection scenarios (undoubtedly for greater amusement of
697 the programmers using it). For the reference, here are the cases when
698 the final selection is accepted (things are quite interesting when it
699 is cancelled too):
700
701 A. Selecting with just the arrows without opening the dropdown:
702 1. CBN_SELENDOK
703 2. CBN_SELCHANGE
704
705 B. Opening dropdown with F4 and selecting with arrows:
706 1. CBN_DROPDOWN
707 2. many CBN_SELCHANGE while changing selection in the list
708 3. CBN_SELENDOK
709 4. CBN_CLOSEUP
710
711 C. Selecting with the mouse:
712 1. CBN_DROPDOWN
713 -- no intermediate CBN_SELCHANGEs --
714 2. CBN_SELENDOK
715 3. CBN_CLOSEUP
716 4. CBN_SELCHANGE
717
718 Admire the different order of messages in all of those cases, it must
719 surely have taken a lot of effort to Microsoft developers to achieve
720 such originality.
721 */
722 switch ( param )
723 {
724 case CBN_DROPDOWN:
725 // we use this value both because we don't want to track selection
726 // using CB_GETCURSEL while the dropdown is opened and because we
727 // need to reset the selection back to it if it's eventually
728 // cancelled by user
729 m_lastAcceptedSelection = GetCurrentSelection();
730 break;
731
732 case CBN_CLOSEUP:
733 // if the selection was accepted by the user, it should have been
734 // reset to wxID_NONE by CBN_SELENDOK, otherwise the selection was
735 // cancelled and we must restore the old one
736 if ( m_lastAcceptedSelection != wxID_NONE )
737 {
738 SetSelection(m_lastAcceptedSelection);
739 m_lastAcceptedSelection = wxID_NONE;
740 }
741 break;
742
743 case CBN_SELENDOK:
744 // reset it to prevent CBN_CLOSEUP from undoing the selection (it's
745 // ok to reset it now as GetCurrentSelection() will now return the
746 // same thing anyhow)
747 m_lastAcceptedSelection = wxID_NONE;
748
749 {
750 const int n = GetSelection();
751
752 wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, m_windowId);
753 event.SetInt(n);
754 event.SetEventObject(this);
755
756 if ( n > -1 )
757 {
758 event.SetString(GetStringSelection());
759 InitCommandEventWithItems(event, n);
760 }
761
762 ProcessCommand(event);
763 }
764 break;
765
766 // don't handle CBN_SELENDCANCEL: just leave m_lastAcceptedSelection
767 // valid and the selection will be undone in CBN_CLOSEUP above
768
769 // don't handle CBN_SELCHANGE neither, we don't want to generate events
770 // while the dropdown is opened -- but do add it if we ever need this
771
772 default:
773 return false;
774 }
775
776 return true;
777 }
778
779 WXHBRUSH wxChoice::MSWControlColor(WXHDC hDC, WXHWND hWnd)
780 {
781 if ( !IsThisEnabled() )
782 return MSWControlColorDisabled(hDC);
783
784 return wxChoiceBase::MSWControlColor(hDC, hWnd);
785 }
786
787 #endif // wxUSE_CHOICE && !(__SMARTPHONE__ && __WXWINCE__)