]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
8e25c198 | 2 | // Name: src/msw/combobox.cpp |
2bda0e17 KB |
3 | // Purpose: wxComboBox class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
f6bcfd97 BP |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
fddfd9e1 | 24 | #pragma hdrstop |
2bda0e17 KB |
25 | #endif |
26 | ||
af79c52d VZ |
27 | #if wxUSE_COMBOBOX |
28 | ||
670f9935 WS |
29 | #include "wx/combobox.h" |
30 | ||
2bda0e17 | 31 | #ifndef WX_PRECOMP |
57bd4c60 | 32 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" |
fddfd9e1 VZ |
33 | #include "wx/settings.h" |
34 | #include "wx/log.h" | |
2b5f62a0 VZ |
35 | // for wxEVT_COMMAND_TEXT_ENTER |
36 | #include "wx/textctrl.h" | |
670f9935 | 37 | #include "wx/app.h" |
c64755ed | 38 | #include "wx/brush.h" |
2bda0e17 KB |
39 | #endif |
40 | ||
2bda0e17 | 41 | #include "wx/clipbrd.h" |
428f8b06 | 42 | #include "wx/wupdlock.h" |
2bda0e17 KB |
43 | #include "wx/msw/private.h" |
44 | ||
63f7d502 VZ |
45 | #if wxUSE_UXTHEME |
46 | #include "wx/msw/uxtheme.h" | |
47 | #endif | |
48 | ||
f6bcfd97 | 49 | #if wxUSE_TOOLTIPS |
f6bcfd97 BP |
50 | #include "wx/tooltip.h" |
51 | #endif // wxUSE_TOOLTIPS | |
52 | ||
53 | // ---------------------------------------------------------------------------- | |
54 | // wxWin macros | |
55 | // ---------------------------------------------------------------------------- | |
56 | ||
6a89f9ee | 57 | #if wxUSE_EXTENDED_RTTI |
bc9fb572 JS |
58 | WX_DEFINE_FLAGS( wxComboBoxStyle ) |
59 | ||
3ff066a4 | 60 | wxBEGIN_FLAGS( wxComboBoxStyle ) |
bc9fb572 JS |
61 | // new style border flags, we put them first to |
62 | // use them for streaming out | |
3ff066a4 SC |
63 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
64 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
65 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
66 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
67 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
68 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
02b7b6b0 | 69 | |
bc9fb572 | 70 | // old style border flags |
3ff066a4 SC |
71 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
72 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
73 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
74 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
75 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 76 | wxFLAGS_MEMBER(wxBORDER) |
bc9fb572 JS |
77 | |
78 | // standard window styles | |
3ff066a4 SC |
79 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
80 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
81 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
82 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 83 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
3ff066a4 SC |
84 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
85 | wxFLAGS_MEMBER(wxVSCROLL) | |
86 | wxFLAGS_MEMBER(wxHSCROLL) | |
87 | ||
88 | wxFLAGS_MEMBER(wxCB_SIMPLE) | |
89 | wxFLAGS_MEMBER(wxCB_SORT) | |
90 | wxFLAGS_MEMBER(wxCB_READONLY) | |
91 | wxFLAGS_MEMBER(wxCB_DROPDOWN) | |
92 | ||
93 | wxEND_FLAGS( wxComboBoxStyle ) | |
bc9fb572 | 94 | |
0ad2a19e | 95 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxComboBox, wxChoice,"wx/combobox.h") |
6a89f9ee | 96 | |
3ff066a4 | 97 | wxBEGIN_PROPERTIES_TABLE(wxComboBox) |
02b7b6b0 | 98 | wxEVENT_PROPERTY( Select , wxEVT_COMMAND_COMBOBOX_SELECTED , wxCommandEvent ) |
3ff066a4 | 99 | wxEVENT_PROPERTY( TextEnter , wxEVT_COMMAND_TEXT_ENTER , wxCommandEvent ) |
c5ca409b | 100 | |
6a89f9ee | 101 | // TODO DELEGATES |
02b7b6b0 | 102 | wxPROPERTY( Font , wxFont , SetFont , GetFont , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
3ff066a4 | 103 | wxPROPERTY_COLLECTION( Choices , wxArrayString , wxString , AppendString , GetStrings , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
02b7b6b0 WS |
104 | wxPROPERTY( Value ,wxString, SetValue, GetValue, EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
105 | wxPROPERTY( Selection ,int, SetSelection, GetSelection, EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
af498247 | 106 | wxPROPERTY_FLAGS( WindowStyle , wxComboBoxStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
3ff066a4 | 107 | wxEND_PROPERTIES_TABLE() |
6a89f9ee | 108 | |
3ff066a4 SC |
109 | wxBEGIN_HANDLERS_TABLE(wxComboBox) |
110 | wxEND_HANDLERS_TABLE() | |
2bda0e17 | 111 | |
3ff066a4 | 112 | wxCONSTRUCTOR_5( wxComboBox , wxWindow* , Parent , wxWindowID , Id , wxString , Value , wxPoint , Position , wxSize , Size ) |
bb8d428f | 113 | |
6a89f9ee | 114 | #else |
bb8d428f | 115 | |
0ad2a19e | 116 | IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxChoice) |
150e31d2 | 117 | |
bb8d428f WS |
118 | #endif |
119 | ||
150e31d2 JS |
120 | BEGIN_EVENT_TABLE(wxComboBox, wxControl) |
121 | EVT_MENU(wxID_CUT, wxComboBox::OnCut) | |
122 | EVT_MENU(wxID_COPY, wxComboBox::OnCopy) | |
123 | EVT_MENU(wxID_PASTE, wxComboBox::OnPaste) | |
124 | EVT_MENU(wxID_UNDO, wxComboBox::OnUndo) | |
125 | EVT_MENU(wxID_REDO, wxComboBox::OnRedo) | |
126 | EVT_MENU(wxID_CLEAR, wxComboBox::OnDelete) | |
127 | EVT_MENU(wxID_SELECTALL, wxComboBox::OnSelectAll) | |
128 | ||
129 | EVT_UPDATE_UI(wxID_CUT, wxComboBox::OnUpdateCut) | |
130 | EVT_UPDATE_UI(wxID_COPY, wxComboBox::OnUpdateCopy) | |
131 | EVT_UPDATE_UI(wxID_PASTE, wxComboBox::OnUpdatePaste) | |
132 | EVT_UPDATE_UI(wxID_UNDO, wxComboBox::OnUpdateUndo) | |
133 | EVT_UPDATE_UI(wxID_REDO, wxComboBox::OnUpdateRedo) | |
134 | EVT_UPDATE_UI(wxID_CLEAR, wxComboBox::OnUpdateDelete) | |
135 | EVT_UPDATE_UI(wxID_SELECTALL, wxComboBox::OnUpdateSelectAll) | |
136 | END_EVENT_TABLE() | |
137 | ||
f6bcfd97 BP |
138 | // ---------------------------------------------------------------------------- |
139 | // function prototypes | |
140 | // ---------------------------------------------------------------------------- | |
141 | ||
142 | LRESULT APIENTRY _EXPORT wxComboEditWndProc(HWND hWnd, | |
143 | UINT message, | |
144 | WPARAM wParam, | |
145 | LPARAM lParam); | |
146 | ||
147 | // --------------------------------------------------------------------------- | |
148 | // global vars | |
149 | // --------------------------------------------------------------------------- | |
150 | ||
151 | // the pointer to standard radio button wnd proc | |
975b6bcf | 152 | static WNDPROC gs_wndprocEdit = (WNDPROC)NULL; |
f6bcfd97 BP |
153 | |
154 | // ============================================================================ | |
155 | // implementation | |
156 | // ============================================================================ | |
157 | ||
158 | // ---------------------------------------------------------------------------- | |
159 | // wnd proc for subclassed edit control | |
160 | // ---------------------------------------------------------------------------- | |
161 | ||
162 | LRESULT APIENTRY _EXPORT wxComboEditWndProc(HWND hWnd, | |
163 | UINT message, | |
164 | WPARAM wParam, | |
165 | LPARAM lParam) | |
166 | { | |
167 | HWND hwndCombo = ::GetParent(hWnd); | |
168 | wxWindow *win = wxFindWinFromHandle((WXHWND)hwndCombo); | |
169 | ||
170 | switch ( message ) | |
171 | { | |
53c3a78b VZ |
172 | // forward some messages to the combobox to generate the appropriate |
173 | // wxEvents from them | |
f6bcfd97 BP |
174 | case WM_KEYUP: |
175 | case WM_KEYDOWN: | |
176 | case WM_CHAR: | |
a1254663 VZ |
177 | case WM_SYSCHAR: |
178 | case WM_SYSKEYDOWN: | |
179 | case WM_SYSKEYUP: | |
53c3a78b VZ |
180 | case WM_SETFOCUS: |
181 | case WM_KILLFOCUS: | |
f6bcfd97 BP |
182 | { |
183 | wxComboBox *combo = wxDynamicCast(win, wxComboBox); | |
64b39766 VZ |
184 | if ( !combo ) |
185 | { | |
186 | // we can get WM_KILLFOCUS while our parent is already half | |
187 | // destroyed and hence doesn't look like a combobx any | |
188 | // longer, check for it to avoid bogus assert failures | |
189 | if ( !win->IsBeingDeleted() ) | |
190 | { | |
9a83f860 | 191 | wxFAIL_MSG( wxT("should have combo as parent") ); |
64b39766 VZ |
192 | } |
193 | } | |
194 | else if ( combo->MSWProcessEditMsg(message, wParam, lParam) ) | |
195 | { | |
196 | // handled by parent | |
f6bcfd97 | 197 | return 0; |
64b39766 | 198 | } |
f6bcfd97 BP |
199 | } |
200 | break; | |
201 | ||
f6bcfd97 BP |
202 | case WM_GETDLGCODE: |
203 | { | |
9a83f860 | 204 | wxCHECK_MSG( win, 0, wxT("should have a parent") ); |
f6bcfd97 | 205 | |
8e13c1ec | 206 | if ( win->GetWindowStyle() & wxTE_PROCESS_ENTER ) |
f6bcfd97 BP |
207 | { |
208 | // need to return a custom dlg code or we'll never get it | |
209 | return DLGC_WANTMESSAGE; | |
210 | } | |
211 | } | |
212 | break; | |
f6bcfd97 BP |
213 | } |
214 | ||
215 | return ::CallWindowProc(CASTWNDPROC gs_wndprocEdit, hWnd, message, wParam, lParam); | |
216 | } | |
217 | ||
f6bcfd97 | 218 | // ---------------------------------------------------------------------------- |
3a7d5f7c | 219 | // wxComboBox callbacks |
f6bcfd97 BP |
220 | // ---------------------------------------------------------------------------- |
221 | ||
c140b7e7 | 222 | WXLRESULT wxComboBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
3a7d5f7c | 223 | { |
5301d1f7 VZ |
224 | // TODO: handle WM_CTLCOLOR messages from our EDIT control to be able to |
225 | // set its colour correctly (to be the same as our own one) | |
682214d5 | 226 | |
3a7d5f7c VZ |
227 | switch ( nMsg ) |
228 | { | |
682214d5 | 229 | case WM_SIZE: |
3bce55ac JS |
230 | // wxStaticBox can generate this message, when modifying the control's style. |
231 | // This causes the content of the combobox to be selected, for some reason. | |
232 | case WM_STYLECHANGED: | |
5301d1f7 VZ |
233 | { |
234 | // combobox selection sometimes spontaneously changes when its | |
235 | // size changes, restore it to the old value if necessary | |
e9717bd5 VZ |
236 | if ( !GetEditHWNDIfAvailable() ) |
237 | break; | |
238 | ||
5301d1f7 VZ |
239 | long fromOld, toOld; |
240 | GetSelection(&fromOld, &toOld); | |
428f8b06 VZ |
241 | |
242 | // if an editable combobox has a not empty text not from the | |
243 | // list, it tries to autocomplete it from the list when it is | |
244 | // resized, but we don't want this to happen as it doesn't seem | |
245 | // to make any sense, so we forcefully restore the old text | |
246 | wxString textOld; | |
247 | if ( !HasFlag(wxCB_READONLY) && GetCurrentSelection() == -1 ) | |
248 | textOld = GetValue(); | |
249 | ||
250 | // eliminate flickering during following hacks | |
251 | wxWindowUpdateLocker lock(this); | |
252 | ||
5301d1f7 | 253 | WXLRESULT result = wxChoice::MSWWindowProc(nMsg, wParam, lParam); |
682214d5 | 254 | |
428f8b06 VZ |
255 | if ( !textOld.empty() && GetValue() != textOld ) |
256 | SetLabel(textOld); | |
257 | ||
5301d1f7 VZ |
258 | long fromNew, toNew; |
259 | GetSelection(&fromNew, &toNew); | |
682214d5 | 260 | |
5301d1f7 VZ |
261 | if ( fromOld != fromNew || toOld != toNew ) |
262 | { | |
263 | SetSelection(fromOld, toOld); | |
264 | } | |
682214d5 | 265 | |
5301d1f7 VZ |
266 | return result; |
267 | } | |
3a7d5f7c VZ |
268 | } |
269 | ||
5301d1f7 | 270 | return wxChoice::MSWWindowProc(nMsg, wParam, lParam); |
3a7d5f7c VZ |
271 | } |
272 | ||
f6bcfd97 BP |
273 | bool wxComboBox::MSWProcessEditMsg(WXUINT msg, WXWPARAM wParam, WXLPARAM lParam) |
274 | { | |
275 | switch ( msg ) | |
276 | { | |
277 | case WM_CHAR: | |
2b5f62a0 VZ |
278 | // for compatibility with wxTextCtrl, generate a special message |
279 | // when Enter is pressed | |
280 | if ( wParam == VK_RETURN ) | |
281 | { | |
a2634d81 RR |
282 | if (SendMessage(GetHwnd(), CB_GETDROPPEDSTATE, 0, 0)) |
283 | return false; | |
f4322df6 | 284 | |
2b5f62a0 | 285 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); |
593ac33e VZ |
286 | |
287 | const int sel = GetSelection(); | |
288 | event.SetInt(sel); | |
2b5f62a0 | 289 | event.SetString(GetValue()); |
593ac33e VZ |
290 | InitCommandEventWithItems(event, sel); |
291 | ||
ffb1629f VZ |
292 | if ( ProcessCommand(event) ) |
293 | { | |
294 | // don't let the event through to the native control | |
295 | // because it doesn't need it and may generate an annoying | |
296 | // beep if it gets it | |
297 | return true; | |
298 | } | |
2b5f62a0 | 299 | } |
a1254663 | 300 | // fall through |
2b5f62a0 | 301 | |
a1254663 | 302 | case WM_SYSCHAR: |
02b7b6b0 | 303 | return HandleChar(wParam, lParam, true /* isASCII */); |
889f0b7c | 304 | |
a1254663 | 305 | case WM_SYSKEYDOWN: |
f6bcfd97 BP |
306 | case WM_KEYDOWN: |
307 | return HandleKeyDown(wParam, lParam); | |
308 | ||
a1254663 | 309 | case WM_SYSKEYUP: |
f6bcfd97 BP |
310 | case WM_KEYUP: |
311 | return HandleKeyUp(wParam, lParam); | |
53c3a78b VZ |
312 | |
313 | case WM_SETFOCUS: | |
314 | return HandleSetFocus((WXHWND)wParam); | |
315 | ||
316 | case WM_KILLFOCUS: | |
317 | return HandleKillFocus((WXHWND)wParam); | |
b65f16da VS |
318 | |
319 | case WM_CUT: | |
320 | case WM_COPY: | |
321 | case WM_PASTE: | |
322 | return HandleClipboardEvent(msg); | |
f6bcfd97 BP |
323 | } |
324 | ||
02b7b6b0 | 325 | return false; |
f6bcfd97 BP |
326 | } |
327 | ||
6ba93d23 | 328 | bool wxComboBox::MSWCommand(WXUINT param, WXWORD id) |
2bda0e17 | 329 | { |
fddfd9e1 | 330 | int sel = -1; |
7d90194c VZ |
331 | wxString value; |
332 | ||
cd0b1709 | 333 | switch ( param ) |
8c1c5302 | 334 | { |
ae3b1487 VZ |
335 | case CBN_DROPDOWN: |
336 | // remember the last selection, just as wxChoice does | |
337 | m_lastAcceptedSelection = GetCurrentSelection(); | |
338 | if ( m_lastAcceptedSelection == -1 ) | |
339 | { | |
340 | // but unlike with wxChoice we may have no selection but still | |
341 | // have some text and we should avoid erasing it if the drop | |
342 | // down is cancelled (see #8474) | |
343 | m_lastAcceptedSelection = wxID_NONE; | |
344 | } | |
8933fbc6 VZ |
345 | { |
346 | wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_DROPDOWN, GetId()); | |
347 | event.SetEventObject(this); | |
348 | ProcessCommand(event); | |
349 | } | |
350 | break; | |
351 | case CBN_CLOSEUP: | |
352 | { | |
353 | wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_CLOSEUP, GetId()); | |
354 | event.SetEventObject(this); | |
355 | ProcessCommand(event); | |
356 | } | |
ae3b1487 | 357 | break; |
78a87a5d | 358 | case CBN_SELENDOK: |
8e25c198 | 359 | #ifndef __SMARTPHONE__ |
7d90194c VZ |
360 | // we need to reset this to prevent the selection from being undone |
361 | // by wxChoice, see wxChoice::MSWCommand() and comments there | |
362 | m_lastAcceptedSelection = wxID_NONE; | |
8e25c198 | 363 | #endif |
13bcc348 | 364 | |
7d90194c VZ |
365 | // set these variables so that they could be also fixed in |
366 | // CBN_EDITCHANGE below | |
367 | sel = GetSelection(); | |
f5a45ee2 | 368 | value = GetStringSelection(); |
d0b6344d VZ |
369 | |
370 | // this string is going to become the new combobox value soon but | |
371 | // we need it to be done right now, otherwise the event handler | |
372 | // could get a wrong value when it calls our GetValue() | |
e0a050e3 | 373 | ::SetWindowText(GetHwnd(), value.wx_str()); |
d0b6344d | 374 | |
cd0b1709 VZ |
375 | { |
376 | wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_SELECTED, GetId()); | |
7d90194c VZ |
377 | event.SetInt(sel); |
378 | event.SetString(value); | |
593ac33e VZ |
379 | InitCommandEventWithItems(event, sel); |
380 | ||
cd0b1709 VZ |
381 | ProcessCommand(event); |
382 | } | |
fddfd9e1 VZ |
383 | |
384 | // fall through: for compability with wxGTK, also send the text | |
385 | // update event when the selection changes (this also seems more | |
386 | // logical as the text does change) | |
29006414 | 387 | |
cd0b1709 | 388 | case CBN_EDITCHANGE: |
b7bfef38 | 389 | if ( m_allowTextEvents ) |
cd0b1709 | 390 | { |
7ba166dd | 391 | wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, GetId()); |
3adc70bf | 392 | |
7d90194c | 393 | // if sel != -1, value was already initialized above |
7ba166dd | 394 | if ( sel == -1 ) |
3adc70bf | 395 | { |
7d90194c | 396 | value = wxGetWindowText(GetHwnd()); |
3adc70bf VZ |
397 | } |
398 | ||
7d90194c | 399 | event.SetString(value); |
593ac33e VZ |
400 | InitCommandEventWithItems(event, sel); |
401 | ||
0ef2ebba | 402 | ProcessCommand(event); |
cd0b1709 VZ |
403 | } |
404 | break; | |
6ba93d23 VZ |
405 | |
406 | default: | |
407 | return wxChoice::MSWCommand(param, id); | |
cd0b1709 | 408 | } |
29006414 | 409 | |
7d90194c | 410 | // skip wxChoice version as it would generate its own events for |
ae3b1487 | 411 | // CBN_SELENDOK and also interfere with our handling of CBN_DROPDOWN |
8cc5e8cf | 412 | return true; |
2bda0e17 KB |
413 | } |
414 | ||
90ac8b50 RR |
415 | bool wxComboBox::MSWShouldPreProcessMessage(WXMSG *pMsg) |
416 | { | |
417 | // prevent command accelerators from stealing editing | |
418 | // hotkeys when we have the focus | |
419 | if (wxIsCtrlDown()) | |
420 | { | |
421 | WPARAM vkey = pMsg->wParam; | |
6b54668b | 422 | |
90ac8b50 RR |
423 | switch (vkey) |
424 | { | |
425 | case 'C': | |
426 | case 'V': | |
427 | case 'X': | |
428 | case VK_INSERT: | |
429 | case VK_DELETE: | |
430 | case VK_HOME: | |
431 | case VK_END: | |
432 | return false; | |
433 | } | |
434 | } | |
6b54668b | 435 | |
90ac8b50 RR |
436 | return wxChoice::MSWShouldPreProcessMessage(pMsg); |
437 | } | |
438 | ||
e9717bd5 VZ |
439 | WXHWND wxComboBox::GetEditHWNDIfAvailable() const |
440 | { | |
1690c2ce | 441 | #if defined(WINVER) && WINVER >= 0x0500 |
e558f953 JS |
442 | typedef BOOL (WINAPI *GetComboBoxInfo_t)(HWND, COMBOBOXINFO*); |
443 | static GetComboBoxInfo_t s_pfnGetComboBoxInfo = NULL; | |
444 | static bool s_triedToLoad = false; | |
445 | if ( !s_triedToLoad ) | |
446 | { | |
447 | s_triedToLoad = true; | |
448 | wxLoadedDLL dllUser32("user32.dll"); | |
449 | wxDL_INIT_FUNC(s_pfn, GetComboBoxInfo, dllUser32); | |
450 | } | |
451 | ||
452 | if ( s_pfnGetComboBoxInfo ) | |
453 | { | |
454 | WinStruct<COMBOBOXINFO> info; | |
455 | (*s_pfnGetComboBoxInfo)(GetHwnd(), &info); | |
456 | return info.hwndItem; | |
457 | } | |
1690c2ce | 458 | #endif |
e558f953 JS |
459 | |
460 | if (HasFlag(wxCB_SIMPLE)) | |
461 | { | |
462 | POINT pt; | |
463 | pt.x = pt.y = 4; | |
464 | return (WXHWND) ::ChildWindowFromPoint(GetHwnd(), pt); | |
465 | } | |
fe56156f | 466 | |
1690c2ce JS |
467 | // notice that a slightly safer alternative could be to use FindWindowEx() |
468 | // but it's not available under WinCE so just take the first child for now | |
469 | // to keep one version of the code for all platforms and fix it later if | |
470 | // problems are discovered | |
471 | ||
74052fe8 VZ |
472 | // we assume that the only child of the combobox is the edit window |
473 | return (WXHWND)::GetWindow(GetHwnd(), GW_CHILD); | |
e9717bd5 VZ |
474 | } |
475 | ||
f6bcfd97 BP |
476 | WXHWND wxComboBox::GetEditHWND() const |
477 | { | |
478 | // this function should not be called for wxCB_READONLY controls, it is | |
e9717bd5 | 479 | // the callers responsibility to check this |
fa2f57be | 480 | wxASSERT_MSG( !HasFlag(wxCB_READONLY), |
9a83f860 | 481 | wxT("read-only combobox doesn't have any edit control") ); |
f6bcfd97 | 482 | |
e9717bd5 | 483 | WXHWND hWndEdit = GetEditHWNDIfAvailable(); |
9a83f860 | 484 | wxASSERT_MSG( hWndEdit, wxT("combobox without edit control?") ); |
f6bcfd97 | 485 | |
e9717bd5 | 486 | return hWndEdit; |
f6bcfd97 BP |
487 | } |
488 | ||
63f7d502 VZ |
489 | wxWindow *wxComboBox::GetEditableWindow() |
490 | { | |
491 | wxASSERT_MSG( !HasFlag(wxCB_READONLY), | |
9a83f860 | 492 | wxT("read-only combobox doesn't have any edit control") ); |
63f7d502 VZ |
493 | |
494 | return this; | |
495 | } | |
496 | ||
71e57cd6 VZ |
497 | // ---------------------------------------------------------------------------- |
498 | // wxComboBox creation | |
499 | // ---------------------------------------------------------------------------- | |
500 | ||
debe6624 | 501 | bool wxComboBox::Create(wxWindow *parent, wxWindowID id, |
c085e333 VZ |
502 | const wxString& value, |
503 | const wxPoint& pos, | |
504 | const wxSize& size, | |
505 | int n, const wxString choices[], | |
506 | long style, | |
507 | const wxValidator& validator, | |
508 | const wxString& name) | |
2bda0e17 | 509 | { |
bdf5c30d VZ |
510 | // pretend that wxComboBox is hidden while it is positioned and resized and |
511 | // show it only right before leaving this method because otherwise there is | |
512 | // some noticeable flicker while the control rearranges itself | |
02b7b6b0 | 513 | m_isShown = false; |
bdf5c30d | 514 | |
71e57cd6 VZ |
515 | if ( !CreateAndInit(parent, id, pos, size, n, choices, style, |
516 | validator, name) ) | |
02b7b6b0 | 517 | return false; |
f6bcfd97 | 518 | |
6341d824 VZ |
519 | // we shouldn't call SetValue() for an empty string because this would |
520 | // (correctly) result in an assert with a read only combobox and is useless | |
521 | // for the other ones anyhow | |
522 | if ( !value.empty() ) | |
b9b8a2b5 | 523 | SetValue(value); |
db34b147 | 524 | |
f6bcfd97 BP |
525 | // a (not read only) combobox is, in fact, 2 controls: the combobox itself |
526 | // and an edit control inside it and if we want to catch events from this | |
527 | // edit control, we must subclass it as well | |
528 | if ( !(style & wxCB_READONLY) ) | |
529 | { | |
94972183 | 530 | gs_wndprocEdit = wxSetWindowProc((HWND)GetEditHWND(), wxComboEditWndProc); |
f6bcfd97 | 531 | } |
2bda0e17 | 532 | |
bdf5c30d | 533 | // and finally, show the control |
02b7b6b0 | 534 | Show(true); |
bdf5c30d | 535 | |
02b7b6b0 | 536 | return true; |
2bda0e17 KB |
537 | } |
538 | ||
584ad2a3 MB |
539 | bool wxComboBox::Create(wxWindow *parent, wxWindowID id, |
540 | const wxString& value, | |
541 | const wxPoint& pos, | |
542 | const wxSize& size, | |
543 | const wxArrayString& choices, | |
544 | long style, | |
545 | const wxValidator& validator, | |
546 | const wxString& name) | |
547 | { | |
548 | wxCArrayString chs(choices); | |
549 | return Create(parent, id, value, pos, size, chs.GetCount(), | |
550 | chs.GetStrings(), style, validator, name); | |
551 | } | |
552 | ||
71e57cd6 VZ |
553 | WXDWORD wxComboBox::MSWGetStyle(long style, WXDWORD *exstyle) const |
554 | { | |
555 | // we never have an external border | |
556 | WXDWORD msStyle = wxChoice::MSWGetStyle | |
557 | ( | |
558 | (style & ~wxBORDER_MASK) | wxBORDER_NONE, exstyle | |
559 | ); | |
560 | ||
1dfd425a VZ |
561 | // usually WS_TABSTOP is added by wxControl::MSWGetStyle() but as we're |
562 | // created hidden (see Create() above), it is not done for us but we still | |
563 | // want to have this style | |
564 | msStyle |= WS_TABSTOP; | |
565 | ||
71e57cd6 VZ |
566 | // remove the style always added by wxChoice |
567 | msStyle &= ~CBS_DROPDOWNLIST; | |
568 | ||
569 | if ( style & wxCB_READONLY ) | |
570 | msStyle |= CBS_DROPDOWNLIST; | |
571 | #ifndef __WXWINCE__ | |
572 | else if ( style & wxCB_SIMPLE ) | |
573 | msStyle |= CBS_SIMPLE; // A list (shown always) and edit control | |
574 | #endif | |
575 | else | |
576 | msStyle |= CBS_DROPDOWN; | |
577 | ||
578 | // there is no reason to not always use CBS_AUTOHSCROLL, so do use it | |
579 | msStyle |= CBS_AUTOHSCROLL; | |
580 | ||
581 | // NB: we used to also add CBS_NOINTEGRALHEIGHT here but why? | |
582 | ||
583 | return msStyle; | |
584 | } | |
585 | ||
586 | // ---------------------------------------------------------------------------- | |
587 | // wxComboBox text control-like methods | |
588 | // ---------------------------------------------------------------------------- | |
589 | ||
e9717bd5 VZ |
590 | wxString wxComboBox::GetValue() const |
591 | { | |
592 | return HasFlag(wxCB_READONLY) ? GetStringSelection() | |
593 | : wxTextEntry::GetValue(); | |
594 | } | |
595 | ||
2bda0e17 KB |
596 | void wxComboBox::SetValue(const wxString& value) |
597 | { | |
2b5f62a0 VZ |
598 | if ( HasFlag(wxCB_READONLY) ) |
599 | SetStringSelection(value); | |
b38f3ff3 | 600 | else |
fa2f57be | 601 | wxTextEntry::SetValue(value); |
150e31d2 JS |
602 | } |
603 | ||
e6a84162 VZ |
604 | void wxComboBox::Clear() |
605 | { | |
606 | wxChoice::Clear(); | |
607 | if ( !HasFlag(wxCB_READONLY) ) | |
608 | wxTextEntry::Clear(); | |
609 | } | |
610 | ||
e9717bd5 VZ |
611 | void wxComboBox::GetSelection(long *from, long *to) const |
612 | { | |
613 | if ( !HasFlag(wxCB_READONLY) ) | |
614 | { | |
615 | wxTextEntry::GetSelection(from, to); | |
616 | } | |
617 | else // text selection doesn't make sense for read only comboboxes | |
618 | { | |
619 | if ( from ) | |
620 | *from = -1; | |
621 | if ( to ) | |
622 | *to = -1; | |
623 | } | |
624 | } | |
625 | ||
150e31d2 JS |
626 | bool wxComboBox::IsEditable() const |
627 | { | |
fa2f57be | 628 | return !HasFlag(wxCB_READONLY) && wxTextEntry::IsEditable(); |
3f5ca6b1 RN |
629 | } |
630 | ||
150e31d2 JS |
631 | // ---------------------------------------------------------------------------- |
632 | // standard event handling | |
633 | // ---------------------------------------------------------------------------- | |
634 | ||
635 | void wxComboBox::OnCut(wxCommandEvent& WXUNUSED(event)) | |
636 | { | |
637 | Cut(); | |
638 | } | |
639 | ||
640 | void wxComboBox::OnCopy(wxCommandEvent& WXUNUSED(event)) | |
641 | { | |
642 | Copy(); | |
643 | } | |
644 | ||
645 | void wxComboBox::OnPaste(wxCommandEvent& WXUNUSED(event)) | |
646 | { | |
647 | Paste(); | |
648 | } | |
649 | ||
650 | void wxComboBox::OnUndo(wxCommandEvent& WXUNUSED(event)) | |
651 | { | |
652 | Undo(); | |
653 | } | |
654 | ||
655 | void wxComboBox::OnRedo(wxCommandEvent& WXUNUSED(event)) | |
656 | { | |
657 | Redo(); | |
658 | } | |
659 | ||
660 | void wxComboBox::OnDelete(wxCommandEvent& WXUNUSED(event)) | |
661 | { | |
5a25f858 | 662 | RemoveSelection(); |
150e31d2 JS |
663 | } |
664 | ||
665 | void wxComboBox::OnSelectAll(wxCommandEvent& WXUNUSED(event)) | |
666 | { | |
e976429d | 667 | SelectAll(); |
150e31d2 JS |
668 | } |
669 | ||
670 | void wxComboBox::OnUpdateCut(wxUpdateUIEvent& event) | |
671 | { | |
672 | event.Enable( CanCut() ); | |
673 | } | |
674 | ||
675 | void wxComboBox::OnUpdateCopy(wxUpdateUIEvent& event) | |
676 | { | |
677 | event.Enable( CanCopy() ); | |
678 | } | |
679 | ||
680 | void wxComboBox::OnUpdatePaste(wxUpdateUIEvent& event) | |
681 | { | |
682 | event.Enable( CanPaste() ); | |
683 | } | |
684 | ||
685 | void wxComboBox::OnUpdateUndo(wxUpdateUIEvent& event) | |
686 | { | |
c0e15042 | 687 | event.Enable( IsEditable() && CanUndo() ); |
150e31d2 JS |
688 | } |
689 | ||
690 | void wxComboBox::OnUpdateRedo(wxUpdateUIEvent& event) | |
691 | { | |
c0e15042 | 692 | event.Enable( IsEditable() && CanRedo() ); |
150e31d2 JS |
693 | } |
694 | ||
695 | void wxComboBox::OnUpdateDelete(wxUpdateUIEvent& event) | |
696 | { | |
6b54668b | 697 | event.Enable(IsEditable() && HasSelection()); |
150e31d2 JS |
698 | } |
699 | ||
700 | void wxComboBox::OnUpdateSelectAll(wxUpdateUIEvent& event) | |
701 | { | |
e976429d | 702 | event.Enable(IsEditable() && !wxTextEntry::IsEmpty()); |
150e31d2 JS |
703 | } |
704 | ||
d6b9cc87 VZ |
705 | #if wxUSE_TOOLTIPS |
706 | ||
707 | void wxComboBox::DoSetToolTip(wxToolTip *tip) | |
708 | { | |
709 | wxChoice::DoSetToolTip(tip); | |
710 | ||
711 | if ( tip && !HasFlag(wxCB_READONLY) ) | |
712 | tip->Add(GetEditHWND()); | |
713 | } | |
714 | ||
715 | #endif // wxUSE_TOOLTIPS | |
716 | ||
63f7d502 VZ |
717 | #if wxUSE_UXTHEME |
718 | ||
719 | bool wxComboBox::SetHint(const wxString& hintOrig) | |
720 | { | |
721 | wxString hint(hintOrig); | |
722 | if ( wxUxThemeEngine::GetIfActive() ) | |
723 | { | |
724 | // under XP (but not Vista) there is a bug in cue banners | |
725 | // implementation for combobox edit control: the first character is | |
726 | // partially chopped off, so prepend a space to make it fully visible | |
727 | hint.insert(0, " "); | |
728 | } | |
729 | ||
730 | return wxTextEntry::SetHint(hint); | |
731 | } | |
732 | ||
733 | #endif // wxUSE_UXTHEME | |
734 | ||
71e57cd6 | 735 | #endif // wxUSE_COMBOBOX |