]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/msw/listbox.cpp | |
3 | // Purpose: wxListBox | |
4 | // Author: Julian Smart | |
5 | // Modified by: Vadim Zeitlin (owner drawn stuff) | |
6 | // Created: | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // For compilers that support precompilation, includes "wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
19 | #if wxUSE_LISTBOX | |
20 | ||
21 | #include "wx/listbox.h" | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include "wx/dynarray.h" | |
25 | #include "wx/settings.h" | |
26 | #include "wx/brush.h" | |
27 | #include "wx/font.h" | |
28 | #include "wx/dc.h" | |
29 | #include "wx/utils.h" | |
30 | #include "wx/log.h" | |
31 | #include "wx/window.h" | |
32 | #endif | |
33 | ||
34 | #include "wx/msw/private.h" | |
35 | #include "wx/msw/dc.h" | |
36 | ||
37 | #include <windowsx.h> | |
38 | ||
39 | #if wxUSE_OWNER_DRAWN | |
40 | #include "wx/ownerdrw.h" | |
41 | #endif | |
42 | ||
43 | // ============================================================================ | |
44 | // list box item declaration and implementation | |
45 | // ============================================================================ | |
46 | ||
47 | #if wxUSE_OWNER_DRAWN | |
48 | ||
49 | class wxListBoxItem : public wxOwnerDrawn | |
50 | { | |
51 | public: | |
52 | wxListBoxItem(wxListBox *parent) | |
53 | { m_parent = parent; } | |
54 | ||
55 | wxListBox *GetParent() const | |
56 | { return m_parent; } | |
57 | ||
58 | int GetIndex() const | |
59 | { return m_parent->GetItemIndex(const_cast<wxListBoxItem*>(this)); } | |
60 | ||
61 | wxString GetName() const | |
62 | { return m_parent->GetString(GetIndex()); } | |
63 | ||
64 | private: | |
65 | wxListBox *m_parent; | |
66 | }; | |
67 | ||
68 | wxOwnerDrawn *wxListBox::CreateLboxItem(size_t WXUNUSED(n)) | |
69 | { | |
70 | return new wxListBoxItem(this); | |
71 | } | |
72 | ||
73 | #endif //USE_OWNER_DRAWN | |
74 | ||
75 | // ============================================================================ | |
76 | // list box control implementation | |
77 | // ============================================================================ | |
78 | ||
79 | // ---------------------------------------------------------------------------- | |
80 | // creation | |
81 | // ---------------------------------------------------------------------------- | |
82 | ||
83 | void wxListBox::Init() | |
84 | { | |
85 | m_noItems = 0; | |
86 | m_updateHorizontalExtent = false; | |
87 | m_selectedByKeyboard = false; | |
88 | } | |
89 | ||
90 | bool wxListBox::Create(wxWindow *parent, | |
91 | wxWindowID id, | |
92 | const wxPoint& pos, | |
93 | const wxSize& size, | |
94 | int n, const wxString choices[], | |
95 | long style, | |
96 | const wxValidator& validator, | |
97 | const wxString& name) | |
98 | { | |
99 | // initialize base class fields | |
100 | if ( !CreateControl(parent, id, pos, size, style, validator, name) ) | |
101 | return false; | |
102 | ||
103 | // create the native control | |
104 | if ( !MSWCreateControl(wxT("LISTBOX"), wxEmptyString, pos, size) ) | |
105 | { | |
106 | // control creation failed | |
107 | return false; | |
108 | } | |
109 | ||
110 | // initialize the contents | |
111 | for ( int i = 0; i < n; i++ ) | |
112 | { | |
113 | Append(choices[i]); | |
114 | } | |
115 | ||
116 | // now we can compute our best size correctly, so do it again | |
117 | SetInitialSize(size); | |
118 | ||
119 | return true; | |
120 | } | |
121 | ||
122 | bool wxListBox::Create(wxWindow *parent, | |
123 | wxWindowID id, | |
124 | const wxPoint& pos, | |
125 | const wxSize& size, | |
126 | const wxArrayString& choices, | |
127 | long style, | |
128 | const wxValidator& validator, | |
129 | const wxString& name) | |
130 | { | |
131 | wxCArrayString chs(choices); | |
132 | return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(), | |
133 | style, validator, name); | |
134 | } | |
135 | ||
136 | wxListBox::~wxListBox() | |
137 | { | |
138 | Clear(); | |
139 | } | |
140 | ||
141 | WXDWORD wxListBox::MSWGetStyle(long style, WXDWORD *exstyle) const | |
142 | { | |
143 | WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle); | |
144 | ||
145 | // we always want to get the notifications | |
146 | msStyle |= LBS_NOTIFY; | |
147 | ||
148 | // without this style, you get unexpected heights, so e.g. constraint | |
149 | // layout doesn't work properly | |
150 | msStyle |= LBS_NOINTEGRALHEIGHT; | |
151 | ||
152 | wxASSERT_MSG( !(style & wxLB_MULTIPLE) || !(style & wxLB_EXTENDED), | |
153 | wxT("only one of listbox selection modes can be specified") ); | |
154 | ||
155 | if ( style & wxLB_MULTIPLE ) | |
156 | msStyle |= LBS_MULTIPLESEL; | |
157 | else if ( style & wxLB_EXTENDED ) | |
158 | msStyle |= LBS_EXTENDEDSEL; | |
159 | ||
160 | wxASSERT_MSG( !(style & wxLB_ALWAYS_SB) || !(style & wxLB_NO_SB), | |
161 | wxT( "Conflicting styles wxLB_ALWAYS_SB and wxLB_NO_SB." ) ); | |
162 | ||
163 | if ( !(style & wxLB_NO_SB) ) | |
164 | { | |
165 | msStyle |= WS_VSCROLL; | |
166 | if ( style & wxLB_ALWAYS_SB ) | |
167 | msStyle |= LBS_DISABLENOSCROLL; | |
168 | } | |
169 | ||
170 | if ( m_windowStyle & wxLB_HSCROLL ) | |
171 | msStyle |= WS_HSCROLL; | |
172 | if ( m_windowStyle & wxLB_SORT ) | |
173 | msStyle |= LBS_SORT; | |
174 | ||
175 | #if wxUSE_OWNER_DRAWN && !defined(__WXWINCE__) | |
176 | if ( m_windowStyle & wxLB_OWNERDRAW ) | |
177 | { | |
178 | // we don't support LBS_OWNERDRAWVARIABLE yet and we also always put | |
179 | // the strings in the listbox for simplicity even though we could have | |
180 | // avoided it in this case | |
181 | msStyle |= LBS_OWNERDRAWFIXED | LBS_HASSTRINGS; | |
182 | } | |
183 | #endif // wxUSE_OWNER_DRAWN | |
184 | ||
185 | return msStyle; | |
186 | } | |
187 | ||
188 | void wxListBox::OnInternalIdle() | |
189 | { | |
190 | wxWindow::OnInternalIdle(); | |
191 | ||
192 | if (m_updateHorizontalExtent) | |
193 | { | |
194 | SetHorizontalExtent(wxEmptyString); | |
195 | m_updateHorizontalExtent = false; | |
196 | } | |
197 | } | |
198 | ||
199 | void wxListBox::MSWOnItemsChanged() | |
200 | { | |
201 | // we need to do two things when items change: update their max horizontal | |
202 | // extent so that horizontal scrollbar could be shown or hidden as | |
203 | // appropriate and also invlaidate the best size | |
204 | // | |
205 | // updating the max extent is slow (it's an O(N) operation) and so we defer | |
206 | // it until the idle time but the best size should be invalidated | |
207 | // immediately doing it in idle time is too late -- layout using incorrect | |
208 | // old best size will have been already done by then | |
209 | ||
210 | m_updateHorizontalExtent = true; | |
211 | ||
212 | InvalidateBestSize(); | |
213 | } | |
214 | ||
215 | // ---------------------------------------------------------------------------- | |
216 | // implementation of wxListBoxBase methods | |
217 | // ---------------------------------------------------------------------------- | |
218 | ||
219 | void wxListBox::DoSetFirstItem(int N) | |
220 | { | |
221 | wxCHECK_RET( IsValid(N), | |
222 | wxT("invalid index in wxListBox::SetFirstItem") ); | |
223 | ||
224 | SendMessage(GetHwnd(), LB_SETTOPINDEX, (WPARAM)N, (LPARAM)0); | |
225 | } | |
226 | ||
227 | void wxListBox::DoDeleteOneItem(unsigned int n) | |
228 | { | |
229 | wxCHECK_RET( IsValid(n), | |
230 | wxT("invalid index in wxListBox::Delete") ); | |
231 | ||
232 | #if wxUSE_OWNER_DRAWN | |
233 | if ( HasFlag(wxLB_OWNERDRAW) ) | |
234 | { | |
235 | delete m_aItems[n]; | |
236 | m_aItems.RemoveAt(n); | |
237 | } | |
238 | #endif // wxUSE_OWNER_DRAWN | |
239 | ||
240 | SendMessage(GetHwnd(), LB_DELETESTRING, n, 0); | |
241 | m_noItems--; | |
242 | ||
243 | MSWOnItemsChanged(); | |
244 | ||
245 | UpdateOldSelections(); | |
246 | } | |
247 | ||
248 | int wxListBox::FindString(const wxString& s, bool bCase) const | |
249 | { | |
250 | // back to base class search for not native search type | |
251 | if (bCase) | |
252 | return wxItemContainerImmutable::FindString( s, bCase ); | |
253 | ||
254 | int pos = ListBox_FindStringExact(GetHwnd(), -1, s.wx_str()); | |
255 | if (pos == LB_ERR) | |
256 | return wxNOT_FOUND; | |
257 | else | |
258 | return pos; | |
259 | } | |
260 | ||
261 | void wxListBox::DoClear() | |
262 | { | |
263 | #if wxUSE_OWNER_DRAWN | |
264 | if ( HasFlag(wxLB_OWNERDRAW) ) | |
265 | { | |
266 | WX_CLEAR_ARRAY(m_aItems); | |
267 | } | |
268 | #endif // wxUSE_OWNER_DRAWN | |
269 | ||
270 | ListBox_ResetContent(GetHwnd()); | |
271 | ||
272 | m_noItems = 0; | |
273 | MSWOnItemsChanged(); | |
274 | ||
275 | UpdateOldSelections(); | |
276 | } | |
277 | ||
278 | void wxListBox::DoSetSelection(int N, bool select) | |
279 | { | |
280 | wxCHECK_RET( N == wxNOT_FOUND || IsValid(N), | |
281 | wxT("invalid index in wxListBox::SetSelection") ); | |
282 | ||
283 | if ( HasMultipleSelection() ) | |
284 | { | |
285 | // Setting selection to -1 should deselect everything. | |
286 | const bool deselectAll = N == wxNOT_FOUND; | |
287 | SendMessage(GetHwnd(), LB_SETSEL, | |
288 | deselectAll ? FALSE : select, | |
289 | deselectAll ? -1 : N); | |
290 | } | |
291 | else | |
292 | { | |
293 | SendMessage(GetHwnd(), LB_SETCURSEL, select ? N : -1, 0); | |
294 | } | |
295 | ||
296 | UpdateOldSelections(); | |
297 | } | |
298 | ||
299 | bool wxListBox::IsSelected(int N) const | |
300 | { | |
301 | wxCHECK_MSG( IsValid(N), false, | |
302 | wxT("invalid index in wxListBox::Selected") ); | |
303 | ||
304 | return SendMessage(GetHwnd(), LB_GETSEL, N, 0) == 0 ? false : true; | |
305 | } | |
306 | ||
307 | void *wxListBox::DoGetItemClientData(unsigned int n) const | |
308 | { | |
309 | wxCHECK_MSG( IsValid(n), NULL, | |
310 | wxT("invalid index in wxListBox::GetClientData") ); | |
311 | ||
312 | return (void *)SendMessage(GetHwnd(), LB_GETITEMDATA, n, 0); | |
313 | } | |
314 | ||
315 | void wxListBox::DoSetItemClientData(unsigned int n, void *clientData) | |
316 | { | |
317 | wxCHECK_RET( IsValid(n), | |
318 | wxT("invalid index in wxListBox::SetClientData") ); | |
319 | ||
320 | if ( ListBox_SetItemData(GetHwnd(), n, clientData) == LB_ERR ) | |
321 | { | |
322 | wxLogDebug(wxT("LB_SETITEMDATA failed")); | |
323 | } | |
324 | } | |
325 | ||
326 | // Return number of selections and an array of selected integers | |
327 | int wxListBox::GetSelections(wxArrayInt& aSelections) const | |
328 | { | |
329 | aSelections.Empty(); | |
330 | ||
331 | if ( HasMultipleSelection() ) | |
332 | { | |
333 | int countSel = ListBox_GetSelCount(GetHwnd()); | |
334 | if ( countSel == LB_ERR ) | |
335 | { | |
336 | wxLogDebug(wxT("ListBox_GetSelCount failed")); | |
337 | } | |
338 | else if ( countSel != 0 ) | |
339 | { | |
340 | int *selections = new int[countSel]; | |
341 | ||
342 | if ( ListBox_GetSelItems(GetHwnd(), | |
343 | countSel, selections) == LB_ERR ) | |
344 | { | |
345 | wxLogDebug(wxT("ListBox_GetSelItems failed")); | |
346 | countSel = -1; | |
347 | } | |
348 | else | |
349 | { | |
350 | aSelections.Alloc(countSel); | |
351 | for ( int n = 0; n < countSel; n++ ) | |
352 | aSelections.Add(selections[n]); | |
353 | } | |
354 | ||
355 | delete [] selections; | |
356 | } | |
357 | ||
358 | return countSel; | |
359 | } | |
360 | else // single-selection listbox | |
361 | { | |
362 | if (ListBox_GetCurSel(GetHwnd()) > -1) | |
363 | aSelections.Add(ListBox_GetCurSel(GetHwnd())); | |
364 | ||
365 | return aSelections.Count(); | |
366 | } | |
367 | } | |
368 | ||
369 | // Get single selection, for single choice list items | |
370 | int wxListBox::GetSelection() const | |
371 | { | |
372 | wxCHECK_MSG( !HasMultipleSelection(), | |
373 | -1, | |
374 | wxT("GetSelection() can't be used with multiple-selection listboxes, use GetSelections() instead.") ); | |
375 | ||
376 | return ListBox_GetCurSel(GetHwnd()); | |
377 | } | |
378 | ||
379 | // Find string for position | |
380 | wxString wxListBox::GetString(unsigned int n) const | |
381 | { | |
382 | wxCHECK_MSG( IsValid(n), wxEmptyString, | |
383 | wxT("invalid index in wxListBox::GetString") ); | |
384 | ||
385 | int len = ListBox_GetTextLen(GetHwnd(), n); | |
386 | ||
387 | // +1 for terminating NUL | |
388 | wxString result; | |
389 | ListBox_GetText(GetHwnd(), n, (wxChar*)wxStringBuffer(result, len + 1)); | |
390 | ||
391 | return result; | |
392 | } | |
393 | ||
394 | int wxListBox::DoInsertItems(const wxArrayStringsAdapter & items, | |
395 | unsigned int pos, | |
396 | void **clientData, | |
397 | wxClientDataType type) | |
398 | { | |
399 | MSWAllocStorage(items, LB_INITSTORAGE); | |
400 | ||
401 | const bool append = pos == GetCount(); | |
402 | ||
403 | // we must use CB_ADDSTRING when appending as only it works correctly for | |
404 | // the sorted controls | |
405 | const unsigned msg = append ? LB_ADDSTRING : LB_INSERTSTRING; | |
406 | ||
407 | if ( append ) | |
408 | pos = 0; | |
409 | ||
410 | int n = wxNOT_FOUND; | |
411 | ||
412 | const unsigned int numItems = items.GetCount(); | |
413 | for ( unsigned int i = 0; i < numItems; i++ ) | |
414 | { | |
415 | n = MSWInsertOrAppendItem(pos, items[i], msg); | |
416 | if ( n == wxNOT_FOUND ) | |
417 | return n; | |
418 | ||
419 | if ( !append ) | |
420 | pos++; | |
421 | ||
422 | ++m_noItems; | |
423 | ||
424 | #if wxUSE_OWNER_DRAWN | |
425 | if ( HasFlag(wxLB_OWNERDRAW) ) | |
426 | { | |
427 | wxOwnerDrawn *pNewItem = CreateLboxItem(n); | |
428 | pNewItem->SetFont(GetFont()); | |
429 | m_aItems.Insert(pNewItem, n); | |
430 | } | |
431 | #endif // wxUSE_OWNER_DRAWN | |
432 | AssignNewItemClientData(n, clientData, i, type); | |
433 | } | |
434 | ||
435 | MSWOnItemsChanged(); | |
436 | ||
437 | UpdateOldSelections(); | |
438 | ||
439 | return n; | |
440 | } | |
441 | ||
442 | int wxListBox::DoHitTestList(const wxPoint& point) const | |
443 | { | |
444 | LRESULT lRes = ::SendMessage(GetHwnd(), LB_ITEMFROMPOINT, | |
445 | 0, MAKELPARAM(point.x, point.y)); | |
446 | ||
447 | // non zero high-order word means that this item is outside of the client | |
448 | // area, IOW the point is outside of the listbox | |
449 | return HIWORD(lRes) ? wxNOT_FOUND : LOWORD(lRes); | |
450 | } | |
451 | ||
452 | void wxListBox::SetString(unsigned int n, const wxString& s) | |
453 | { | |
454 | wxCHECK_RET( IsValid(n), | |
455 | wxT("invalid index in wxListBox::SetString") ); | |
456 | ||
457 | // remember the state of the item | |
458 | bool wasSelected = IsSelected(n); | |
459 | ||
460 | void *oldData = NULL; | |
461 | wxClientData *oldObjData = NULL; | |
462 | if ( HasClientUntypedData() ) | |
463 | oldData = GetClientData(n); | |
464 | else if ( HasClientObjectData() ) | |
465 | oldObjData = GetClientObject(n); | |
466 | ||
467 | // delete and recreate it | |
468 | SendMessage(GetHwnd(), LB_DELETESTRING, n, 0); | |
469 | ||
470 | int newN = n; | |
471 | if ( n == (m_noItems - 1) ) | |
472 | newN = -1; | |
473 | ||
474 | ListBox_InsertString(GetHwnd(), newN, s.wx_str()); | |
475 | ||
476 | // restore the client data | |
477 | if ( oldData ) | |
478 | SetClientData(n, oldData); | |
479 | else if ( oldObjData ) | |
480 | SetClientObject(n, oldObjData); | |
481 | ||
482 | // we may have lost the selection | |
483 | if ( wasSelected ) | |
484 | Select(n); | |
485 | ||
486 | MSWOnItemsChanged(); | |
487 | } | |
488 | ||
489 | unsigned int wxListBox::GetCount() const | |
490 | { | |
491 | return m_noItems; | |
492 | } | |
493 | ||
494 | // ---------------------------------------------------------------------------- | |
495 | // size-related stuff | |
496 | // ---------------------------------------------------------------------------- | |
497 | ||
498 | void wxListBox::SetHorizontalExtent(const wxString& s) | |
499 | { | |
500 | // the rest is only necessary if we want a horizontal scrollbar | |
501 | if ( !HasFlag(wxHSCROLL) ) | |
502 | return; | |
503 | ||
504 | ||
505 | WindowHDC dc(GetHwnd()); | |
506 | SelectInHDC selFont(dc, GetHfontOf(GetFont())); | |
507 | ||
508 | TEXTMETRIC lpTextMetric; | |
509 | ::GetTextMetrics(dc, &lpTextMetric); | |
510 | ||
511 | int largestExtent = 0; | |
512 | SIZE extentXY; | |
513 | ||
514 | if ( s.empty() ) | |
515 | { | |
516 | // set extent to the max length of all strings | |
517 | for ( unsigned int i = 0; i < m_noItems; i++ ) | |
518 | { | |
519 | const wxString str = GetString(i); | |
520 | ::GetTextExtentPoint32(dc, str.c_str(), str.length(), &extentXY); | |
521 | ||
522 | int extentX = (int)(extentXY.cx + lpTextMetric.tmAveCharWidth); | |
523 | if ( extentX > largestExtent ) | |
524 | largestExtent = extentX; | |
525 | } | |
526 | } | |
527 | else // just increase the extent to the length of this string | |
528 | { | |
529 | int existingExtent = (int)SendMessage(GetHwnd(), | |
530 | LB_GETHORIZONTALEXTENT, 0, 0L); | |
531 | ||
532 | ::GetTextExtentPoint32(dc, s.c_str(), s.length(), &extentXY); | |
533 | ||
534 | int extentX = (int)(extentXY.cx + lpTextMetric.tmAveCharWidth); | |
535 | if ( extentX > existingExtent ) | |
536 | largestExtent = extentX; | |
537 | } | |
538 | ||
539 | if ( largestExtent ) | |
540 | SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT, LOWORD(largestExtent), 0L); | |
541 | //else: it shouldn't change | |
542 | } | |
543 | ||
544 | wxSize wxListBox::DoGetBestClientSize() const | |
545 | { | |
546 | // find the widest string | |
547 | int wLine; | |
548 | int wListbox = 0; | |
549 | for (unsigned int i = 0; i < m_noItems; i++) | |
550 | { | |
551 | wxString str(GetString(i)); | |
552 | GetTextExtent(str, &wLine, NULL); | |
553 | if ( wLine > wListbox ) | |
554 | wListbox = wLine; | |
555 | } | |
556 | ||
557 | // give it some reasonable default value if there are no strings in the | |
558 | // list | |
559 | if ( wListbox == 0 ) | |
560 | wListbox = 100; | |
561 | ||
562 | // the listbox should be slightly larger than the widest string | |
563 | wListbox += 3*GetCharWidth(); | |
564 | ||
565 | // add room for the scrollbar | |
566 | wListbox += wxSystemSettings::GetMetric(wxSYS_VSCROLL_X); | |
567 | ||
568 | // don't make the listbox too tall (limit height to 10 items) but don't | |
569 | // make it too small neither | |
570 | int hListbox = SendMessage(GetHwnd(), LB_GETITEMHEIGHT, 0, 0)* | |
571 | wxMin(wxMax(m_noItems, 3), 10); | |
572 | ||
573 | return wxSize(wListbox, hListbox); | |
574 | } | |
575 | ||
576 | // ---------------------------------------------------------------------------- | |
577 | // callbacks | |
578 | // ---------------------------------------------------------------------------- | |
579 | ||
580 | bool wxListBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id)) | |
581 | { | |
582 | wxEventType evtType; | |
583 | int n = wxNOT_FOUND; | |
584 | if ( param == LBN_SELCHANGE ) | |
585 | { | |
586 | if ( HasMultipleSelection() ) | |
587 | return CalcAndSendEvent(); | |
588 | ||
589 | evtType = wxEVT_COMMAND_LISTBOX_SELECTED; | |
590 | ||
591 | if ( m_selectedByKeyboard ) | |
592 | { | |
593 | // We shouldn't use the mouse position to find the item as mouse | |
594 | // can be anywhere, ask the listbox itself. Notice that this can't | |
595 | // be used when the item is selected using the mouse however as | |
596 | // LB_GETCARETINDEX will always return a valid item, even if the | |
597 | // mouse is clicked below all the items, which is why we find the | |
598 | // item ourselves below in this case. | |
599 | n = SendMessage(GetHwnd(), LB_GETCARETINDEX, 0, 0); | |
600 | } | |
601 | //else: n will be determined below from the mouse position | |
602 | } | |
603 | else if ( param == LBN_DBLCLK ) | |
604 | { | |
605 | evtType = wxEVT_COMMAND_LISTBOX_DOUBLECLICKED; | |
606 | } | |
607 | else | |
608 | { | |
609 | // some event we're not interested in | |
610 | return false; | |
611 | } | |
612 | ||
613 | // Find the item position if it was a mouse-generated selection event or a | |
614 | // double click event (which is always generated using the mouse) | |
615 | if ( n == wxNOT_FOUND ) | |
616 | { | |
617 | const DWORD pos = ::GetMessagePos(); | |
618 | const wxPoint pt(GET_X_LPARAM(pos), GET_Y_LPARAM(pos)); | |
619 | n = HitTest(ScreenToClient(wxPoint(pt))); | |
620 | } | |
621 | ||
622 | // We get events even when mouse is clicked outside of any valid item from | |
623 | // Windows, just ignore them. | |
624 | if ( n == wxNOT_FOUND ) | |
625 | return false; | |
626 | ||
627 | if ( param == LBN_SELCHANGE ) | |
628 | { | |
629 | if ( !DoChangeSingleSelection(n) ) | |
630 | return false; | |
631 | } | |
632 | ||
633 | // Do generate an event otherwise. | |
634 | return SendEvent(evtType, n, true /* selection */); | |
635 | } | |
636 | ||
637 | WXLRESULT | |
638 | wxListBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) | |
639 | { | |
640 | // Remember whether there was a keyboard or mouse event before | |
641 | // LBN_SELCHANGE: this allows us to correctly determine the item affected | |
642 | // by it in MSWCommand() above in any case. | |
643 | if ( WM_KEYFIRST <= nMsg && nMsg <= WM_KEYLAST ) | |
644 | m_selectedByKeyboard = true; | |
645 | else if ( WM_MOUSEFIRST <= nMsg && nMsg <= WM_MOUSELAST ) | |
646 | m_selectedByKeyboard = false; | |
647 | ||
648 | return wxListBoxBase::MSWWindowProc(nMsg, wParam, lParam); | |
649 | } | |
650 | ||
651 | // ---------------------------------------------------------------------------- | |
652 | // owner-drawn list boxes support | |
653 | // ---------------------------------------------------------------------------- | |
654 | ||
655 | #if wxUSE_OWNER_DRAWN | |
656 | ||
657 | // misc overloaded methods | |
658 | // ----------------------- | |
659 | ||
660 | bool wxListBox::SetFont(const wxFont &font) | |
661 | { | |
662 | if ( HasFlag(wxLB_OWNERDRAW) ) | |
663 | { | |
664 | const unsigned count = m_aItems.GetCount(); | |
665 | for ( unsigned i = 0; i < count; i++ ) | |
666 | m_aItems[i]->SetFont(font); | |
667 | } | |
668 | ||
669 | wxListBoxBase::SetFont(font); | |
670 | ||
671 | return true; | |
672 | } | |
673 | ||
674 | bool wxListBox::GetItemRect(size_t n, wxRect& rect) const | |
675 | { | |
676 | wxCHECK_MSG( IsValid(n), false, | |
677 | wxT("invalid index in wxListBox::GetItemRect") ); | |
678 | ||
679 | RECT rc; | |
680 | ||
681 | if ( ListBox_GetItemRect(GetHwnd(), n, &rc) != LB_ERR ) | |
682 | { | |
683 | rect = wxRectFromRECT(rc); | |
684 | return true; | |
685 | } | |
686 | else | |
687 | { | |
688 | // couldn't retrieve rect: for example, item isn't visible | |
689 | return false; | |
690 | } | |
691 | } | |
692 | ||
693 | bool wxListBox::RefreshItem(size_t n) | |
694 | { | |
695 | wxRect rect; | |
696 | if ( !GetItemRect(n, rect) ) | |
697 | return false; | |
698 | ||
699 | RECT rc; | |
700 | wxCopyRectToRECT(rect, rc); | |
701 | ||
702 | return ::InvalidateRect((HWND)GetHWND(), &rc, FALSE) == TRUE; | |
703 | } | |
704 | ||
705 | ||
706 | // drawing | |
707 | // ------- | |
708 | ||
709 | namespace | |
710 | { | |
711 | // space beneath/above each row in pixels | |
712 | static const int LISTBOX_EXTRA_SPACE = 1; | |
713 | ||
714 | } // anonymous namespace | |
715 | ||
716 | // the height is the same for all items | |
717 | // TODO should be changed for LBS_OWNERDRAWVARIABLE style listboxes | |
718 | ||
719 | // NB: can't forward this to wxListBoxItem because LB_SETITEMDATA | |
720 | // message is not yet sent when we get here! | |
721 | bool wxListBox::MSWOnMeasure(WXMEASUREITEMSTRUCT *item) | |
722 | { | |
723 | // only owner-drawn control should receive this message | |
724 | wxCHECK( HasFlag(wxLB_OWNERDRAW), false ); | |
725 | ||
726 | MEASUREITEMSTRUCT *pStruct = (MEASUREITEMSTRUCT *)item; | |
727 | ||
728 | #ifdef __WXWINCE__ | |
729 | HDC hdc = GetDC(NULL); | |
730 | #else | |
731 | HDC hdc = CreateIC(wxT("DISPLAY"), NULL, NULL, 0); | |
732 | #endif | |
733 | ||
734 | { | |
735 | wxDCTemp dc((WXHDC)hdc); | |
736 | dc.SetFont(GetFont()); | |
737 | ||
738 | pStruct->itemHeight = dc.GetCharHeight() + 2 * LISTBOX_EXTRA_SPACE; | |
739 | pStruct->itemWidth = dc.GetCharWidth(); | |
740 | } | |
741 | ||
742 | #ifdef __WXWINCE__ | |
743 | ReleaseDC(NULL, hdc); | |
744 | #else | |
745 | DeleteDC(hdc); | |
746 | #endif | |
747 | ||
748 | return true; | |
749 | } | |
750 | ||
751 | // forward the message to the appropriate item | |
752 | bool wxListBox::MSWOnDraw(WXDRAWITEMSTRUCT *item) | |
753 | { | |
754 | // only owner-drawn control should receive this message | |
755 | wxCHECK( HasFlag(wxLB_OWNERDRAW), false ); | |
756 | ||
757 | DRAWITEMSTRUCT *pStruct = (DRAWITEMSTRUCT *)item; | |
758 | ||
759 | // the item may be -1 for an empty listbox | |
760 | if ( pStruct->itemID == (UINT)-1 ) | |
761 | return false; | |
762 | ||
763 | wxListBoxItem *pItem = (wxListBoxItem *)m_aItems[pStruct->itemID]; | |
764 | ||
765 | wxDCTemp dc((WXHDC)pStruct->hDC); | |
766 | ||
767 | return pItem->OnDrawItem(dc, wxRectFromRECT(pStruct->rcItem), | |
768 | (wxOwnerDrawn::wxODAction)pStruct->itemAction, | |
769 | (wxOwnerDrawn::wxODStatus)(pStruct->itemState | wxOwnerDrawn::wxODHidePrefix)); | |
770 | } | |
771 | ||
772 | #endif // wxUSE_OWNER_DRAWN | |
773 | ||
774 | #endif // wxUSE_LISTBOX |