]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/msw/listbox.cpp
Applied patch [ 774837 ] OGL wxLineShape::HitTest: smaller region
[wxWidgets.git] / src / msw / listbox.cpp
... / ...
CommitLineData
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#ifdef __GNUG__
13 #pragma implementation "listbox.h"
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20 #pragma hdrstop
21#endif
22
23#if wxUSE_LISTBOX
24
25#ifndef WX_PRECOMP
26#include "wx/listbox.h"
27#include "wx/settings.h"
28#include "wx/brush.h"
29#include "wx/font.h"
30#include "wx/dc.h"
31#include "wx/utils.h"
32#endif
33
34#include "wx/window.h"
35#include "wx/msw/private.h"
36
37#include <windowsx.h>
38
39#include "wx/dynarray.h"
40#include "wx/log.h"
41
42#if wxUSE_OWNER_DRAWN
43 #include "wx/ownerdrw.h"
44#endif
45
46#ifdef __GNUWIN32_OLD__
47 #include "wx/msw/gnuwin32/extra.h"
48#endif
49
50IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl)
51
52// ============================================================================
53// list box item declaration and implementation
54// ============================================================================
55
56#if wxUSE_OWNER_DRAWN
57
58class wxListBoxItem : public wxOwnerDrawn
59{
60public:
61 wxListBoxItem(const wxString& str = wxEmptyString);
62};
63
64wxListBoxItem::wxListBoxItem(const wxString& str) : wxOwnerDrawn(str, FALSE)
65{
66 // no bitmaps/checkmarks
67 SetMarginWidth(0);
68}
69
70wxOwnerDrawn *wxListBox::CreateLboxItem(size_t WXUNUSED(n))
71{
72 return new wxListBoxItem();
73}
74
75#endif //USE_OWNER_DRAWN
76
77// ============================================================================
78// list box control implementation
79// ============================================================================
80
81// ----------------------------------------------------------------------------
82// creation
83// ----------------------------------------------------------------------------
84
85// Listbox item
86wxListBox::wxListBox()
87{
88 m_noItems = 0;
89 m_selected = 0;
90}
91
92bool wxListBox::Create(wxWindow *parent,
93 wxWindowID id,
94 const wxPoint& pos,
95 const wxSize& size,
96 int n, const wxString choices[],
97 long style,
98 const wxValidator& validator,
99 const wxString& name)
100{
101 m_noItems = 0;
102 m_hWnd = 0;
103 m_selected = 0;
104
105 SetName(name);
106#if wxUSE_VALIDATORS
107 SetValidator(validator);
108#endif // wxUSE_VALIDATORS
109
110 if (parent)
111 parent->AddChild(this);
112
113 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
114 SetForegroundColour(parent->GetForegroundColour());
115
116 m_windowId = ( id == -1 ) ? (int)NewControlId() : id;
117
118 int x = pos.x;
119 int y = pos.y;
120 int width = size.x;
121 int height = size.y;
122 m_windowStyle = style;
123
124 DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_VSCROLL | WS_TABSTOP |
125 LBS_NOTIFY | LBS_HASSTRINGS ;
126
127 wxASSERT_MSG( !(style & wxLB_MULTIPLE) || !(style & wxLB_EXTENDED),
128 _T("only one of listbox selection modes can be specified") );
129
130 if ( (m_windowStyle & wxBORDER_MASK) == wxBORDER_DEFAULT )
131 m_windowStyle |= wxBORDER_SUNKEN;
132
133 if ( m_windowStyle & wxCLIP_SIBLINGS )
134 wstyle |= WS_CLIPSIBLINGS;
135
136 if (m_windowStyle & wxLB_MULTIPLE)
137 wstyle |= LBS_MULTIPLESEL;
138 else if (m_windowStyle & wxLB_EXTENDED)
139 wstyle |= LBS_EXTENDEDSEL;
140
141 if (m_windowStyle & wxLB_ALWAYS_SB)
142 wstyle |= LBS_DISABLENOSCROLL;
143 if (m_windowStyle & wxLB_HSCROLL)
144 wstyle |= WS_HSCROLL;
145 if (m_windowStyle & wxLB_SORT)
146 wstyle |= LBS_SORT;
147
148#if wxUSE_OWNER_DRAWN && !defined(__WXWINCE__)
149 if ( m_windowStyle & wxLB_OWNERDRAW ) {
150 // we don't support LBS_OWNERDRAWVARIABLE yet
151 wstyle |= LBS_OWNERDRAWFIXED;
152 }
153#endif
154
155 // Without this style, you get unexpected heights, so e.g. constraint layout
156 // doesn't work properly
157 wstyle |= LBS_NOINTEGRALHEIGHT;
158
159 WXDWORD exStyle = 0;
160 (void) MSWGetStyle(m_windowStyle, & exStyle) ;
161
162 m_hWnd = (WXHWND)::CreateWindowEx(exStyle, wxT("LISTBOX"), NULL,
163 wstyle ,
164 0, 0, 0, 0,
165 (HWND)parent->GetHWND(), (HMENU)m_windowId,
166 wxGetInstance(), NULL);
167
168 wxCHECK_MSG( m_hWnd, FALSE, wxT("Failed to create listbox") );
169
170 // Subclass again to catch messages
171 SubclassWin(m_hWnd);
172
173 size_t ui;
174 for (ui = 0; ui < (size_t)n; ui++) {
175 Append(choices[ui]);
176 }
177
178 if ( (m_windowStyle & wxLB_MULTIPLE) == 0 )
179 SendMessage(GetHwnd(), LB_SETCURSEL, 0, 0);
180
181 SetFont(parent->GetFont());
182
183 SetSize(x, y, width, height);
184
185 return TRUE;
186}
187
188wxListBox::~wxListBox()
189{
190 Free();
191}
192
193void wxListBox::SetupColours()
194{
195 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
196 SetForegroundColour(GetParent()->GetForegroundColour());
197}
198
199// ----------------------------------------------------------------------------
200// implementation of wxListBoxBase methods
201// ----------------------------------------------------------------------------
202
203void wxListBox::DoSetFirstItem(int N)
204{
205 wxCHECK_RET( N >= 0 && N < m_noItems,
206 wxT("invalid index in wxListBox::SetFirstItem") );
207
208 SendMessage(GetHwnd(), LB_SETTOPINDEX, (WPARAM)N, (LPARAM)0);
209}
210
211void wxListBox::Delete(int N)
212{
213 wxCHECK_RET( N >= 0 && N < m_noItems,
214 wxT("invalid index in wxListBox::Delete") );
215
216 // for owner drawn objects, the data is used for storing wxOwnerDrawn
217 // pointers and we shouldn't touch it
218#if !wxUSE_OWNER_DRAWN
219 if ( !(m_windowStyle & wxLB_OWNERDRAW) )
220#endif // !wxUSE_OWNER_DRAWN
221 if ( HasClientObjectData() )
222 {
223 delete GetClientObject(N);
224 }
225
226 SendMessage(GetHwnd(), LB_DELETESTRING, N, 0);
227 m_noItems--;
228
229 SetHorizontalExtent(wxEmptyString);
230}
231
232int wxListBox::DoAppend(const wxString& item)
233{
234 int index = ListBox_AddString(GetHwnd(), item);
235 m_noItems++;
236
237#if wxUSE_OWNER_DRAWN
238 if ( m_windowStyle & wxLB_OWNERDRAW ) {
239 wxOwnerDrawn *pNewItem = CreateLboxItem(index); // dummy argument
240 pNewItem->SetName(item);
241 m_aItems.Insert(pNewItem, index);
242 ListBox_SetItemData(GetHwnd(), index, pNewItem);
243 pNewItem->SetFont(GetFont());
244 }
245#endif // wxUSE_OWNER_DRAWN
246
247 SetHorizontalExtent(item);
248
249 return index;
250}
251
252void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
253{
254 // avoid flicker - but don't need to do this for a hidden listbox
255 bool hideAndShow = IsShown();
256 if ( hideAndShow )
257 {
258 ShowWindow(GetHwnd(), SW_HIDE);
259 }
260
261 ListBox_ResetContent(GetHwnd());
262
263 m_noItems = choices.GetCount();
264 int i;
265 for (i = 0; i < m_noItems; i++)
266 {
267 ListBox_AddString(GetHwnd(), choices[i]);
268 if ( clientData )
269 {
270 SetClientData(i, clientData[i]);
271 }
272 }
273
274#if wxUSE_OWNER_DRAWN
275 if ( m_windowStyle & wxLB_OWNERDRAW ) {
276 // first delete old items
277 WX_CLEAR_ARRAY(m_aItems);
278
279 // then create new ones
280 for ( size_t ui = 0; ui < (size_t)m_noItems; ui++ ) {
281 wxOwnerDrawn *pNewItem = CreateLboxItem(ui);
282 pNewItem->SetName(choices[ui]);
283 m_aItems.Add(pNewItem);
284 ListBox_SetItemData(GetHwnd(), ui, pNewItem);
285 }
286 }
287#endif // wxUSE_OWNER_DRAWN
288
289 SetHorizontalExtent();
290
291 if ( hideAndShow )
292 {
293 // show the listbox back if we hid it
294 ShowWindow(GetHwnd(), SW_SHOW);
295 }
296}
297
298int wxListBox::FindString(const wxString& s) const
299{
300 int pos = ListBox_FindStringExact(GetHwnd(), (WPARAM)-1, s);
301 if (pos == LB_ERR)
302 return wxNOT_FOUND;
303 else
304 return pos;
305}
306
307void wxListBox::Clear()
308{
309 Free();
310
311 ListBox_ResetContent(GetHwnd());
312
313 m_noItems = 0;
314 SetHorizontalExtent();
315}
316
317void wxListBox::Free()
318{
319#if wxUSE_OWNER_DRAWN
320 if ( m_windowStyle & wxLB_OWNERDRAW )
321 {
322 WX_CLEAR_ARRAY(m_aItems);
323 }
324 else
325#endif // wxUSE_OWNER_DRAWN
326 if ( HasClientObjectData() )
327 {
328 for ( size_t n = 0; n < (size_t)m_noItems; n++ )
329 {
330 delete GetClientObject(n);
331 }
332 }
333}
334
335void wxListBox::SetSelection(int N, bool select)
336{
337 wxCHECK_RET( N >= 0 && N < m_noItems,
338 wxT("invalid index in wxListBox::SetSelection") );
339
340 if ( HasMultipleSelection() )
341 {
342 SendMessage(GetHwnd(), LB_SETSEL, select, N);
343 }
344 else
345 {
346 SendMessage(GetHwnd(), LB_SETCURSEL, select ? N : -1, 0);
347 }
348}
349
350bool wxListBox::IsSelected(int N) const
351{
352 wxCHECK_MSG( N >= 0 && N < m_noItems, FALSE,
353 wxT("invalid index in wxListBox::Selected") );
354
355 return SendMessage(GetHwnd(), LB_GETSEL, N, 0) == 0 ? FALSE : TRUE;
356}
357
358wxClientData* wxListBox::DoGetItemClientObject(int n) const
359{
360 return (wxClientData *)DoGetItemClientData(n);
361}
362
363void *wxListBox::DoGetItemClientData(int n) const
364{
365 wxCHECK_MSG( n >= 0 && n < m_noItems, NULL,
366 wxT("invalid index in wxListBox::GetClientData") );
367
368 return (void *)SendMessage(GetHwnd(), LB_GETITEMDATA, n, 0);
369}
370
371void wxListBox::DoSetItemClientObject(int n, wxClientData* clientData)
372{
373 DoSetItemClientData(n, clientData);
374}
375
376void wxListBox::DoSetItemClientData(int n, void *clientData)
377{
378 wxCHECK_RET( n >= 0 && n < m_noItems,
379 wxT("invalid index in wxListBox::SetClientData") );
380
381#if wxUSE_OWNER_DRAWN
382 if ( m_windowStyle & wxLB_OWNERDRAW )
383 {
384 // client data must be pointer to wxOwnerDrawn, otherwise we would crash
385 // in OnMeasure/OnDraw.
386 wxFAIL_MSG(wxT("Can't use client data with owner-drawn listboxes"));
387 }
388#endif // wxUSE_OWNER_DRAWN
389
390 if ( ListBox_SetItemData(GetHwnd(), n, clientData) == LB_ERR )
391 wxLogDebug(wxT("LB_SETITEMDATA failed"));
392}
393
394// Return number of selections and an array of selected integers
395int wxListBox::GetSelections(wxArrayInt& aSelections) const
396{
397 aSelections.Empty();
398
399 if ( HasMultipleSelection() )
400 {
401 int countSel = ListBox_GetSelCount(GetHwnd());
402 if ( countSel == LB_ERR )
403 {
404 wxLogDebug(_T("ListBox_GetSelCount failed"));
405 }
406 else if ( countSel != 0 )
407 {
408 int *selections = new int[countSel];
409
410 if ( ListBox_GetSelItems(GetHwnd(),
411 countSel, selections) == LB_ERR )
412 {
413 wxLogDebug(wxT("ListBox_GetSelItems failed"));
414 countSel = -1;
415 }
416 else
417 {
418 aSelections.Alloc(countSel);
419 for ( int n = 0; n < countSel; n++ )
420 aSelections.Add(selections[n]);
421 }
422
423 delete [] selections;
424 }
425
426 return countSel;
427 }
428 else // single-selection listbox
429 {
430 if (ListBox_GetCurSel(GetHwnd()) > -1)
431 aSelections.Add(ListBox_GetCurSel(GetHwnd()));
432
433 return aSelections.Count();
434 }
435}
436
437// Get single selection, for single choice list items
438int wxListBox::GetSelection() const
439{
440 wxCHECK_MSG( !HasMultipleSelection(),
441 -1,
442 wxT("GetSelection() can't be used with multiple-selection listboxes, use GetSelections() instead.") );
443
444 return ListBox_GetCurSel(GetHwnd());
445}
446
447// Find string for position
448wxString wxListBox::GetString(int N) const
449{
450 wxCHECK_MSG( N >= 0 && N < m_noItems, wxEmptyString,
451 wxT("invalid index in wxListBox::GetClientData") );
452
453 int len = ListBox_GetTextLen(GetHwnd(), N);
454
455 // +1 for terminating NUL
456 wxString result;
457 ListBox_GetText(GetHwnd(), N, wxStringBuffer(result, len + 1));
458
459 return result;
460}
461
462void
463wxListBox::DoInsertItems(const wxArrayString& items, int pos)
464{
465 wxCHECK_RET( pos >= 0 && pos <= m_noItems,
466 wxT("invalid index in wxListBox::InsertItems") );
467
468 int nItems = items.GetCount();
469 for ( int i = 0; i < nItems; i++ )
470 {
471 int idx = ListBox_InsertString(GetHwnd(), i + pos, items[i]);
472
473#if wxUSE_OWNER_DRAWN
474 if ( m_windowStyle & wxLB_OWNERDRAW )
475 {
476 wxOwnerDrawn *pNewItem = CreateLboxItem(idx);
477 pNewItem->SetName(items[i]);
478 pNewItem->SetFont(GetFont());
479 m_aItems.Insert(pNewItem, idx);
480
481 ListBox_SetItemData(GetHwnd(), idx, pNewItem);
482 }
483#endif // wxUSE_OWNER_DRAWN
484 }
485
486 m_noItems += nItems;
487
488 SetHorizontalExtent();
489}
490
491void wxListBox::SetString(int N, const wxString& s)
492{
493 wxCHECK_RET( N >= 0 && N < m_noItems,
494 wxT("invalid index in wxListBox::SetString") );
495
496 // remember the state of the item
497 bool wasSelected = IsSelected(N);
498
499 void *oldData = NULL;
500 wxClientData *oldObjData = NULL;
501 if ( m_clientDataItemsType == wxClientData_Void )
502 oldData = GetClientData(N);
503 else if ( m_clientDataItemsType == wxClientData_Object )
504 oldObjData = GetClientObject(N);
505
506 // delete and recreate it
507 SendMessage(GetHwnd(), LB_DELETESTRING, N, 0);
508
509 int newN = N;
510 if ( N == m_noItems - 1 )
511 newN = -1;
512
513 ListBox_InsertString(GetHwnd(), newN, s);
514
515 // restore the client data
516 if ( oldData )
517 SetClientData(N, oldData);
518 else if ( oldObjData )
519 SetClientObject(N, oldObjData);
520
521 // we may have lost the selection
522 if ( wasSelected )
523 Select(N);
524
525#if wxUSE_OWNER_DRAWN
526 if ( m_windowStyle & wxLB_OWNERDRAW )
527 {
528 // update item's text
529 m_aItems[N]->SetName(s);
530
531 // reassign the item's data
532 ListBox_SetItemData(GetHwnd(), N, m_aItems[N]);
533 }
534#endif //USE_OWNER_DRAWN
535}
536
537int wxListBox::GetCount() const
538{
539 return m_noItems;
540}
541
542// ----------------------------------------------------------------------------
543// helpers
544// ----------------------------------------------------------------------------
545
546// Windows-specific code to set the horizontal extent of the listbox, if
547// necessary. If s is non-NULL, it's used to calculate the horizontal extent.
548// Otherwise, all strings are used.
549void wxListBox::SetHorizontalExtent(const wxString& s)
550{
551 // Only necessary if we want a horizontal scrollbar
552 if (!(m_windowStyle & wxHSCROLL))
553 return;
554 TEXTMETRIC lpTextMetric;
555
556 if ( !s.IsEmpty() )
557 {
558 int existingExtent = (int)SendMessage(GetHwnd(), LB_GETHORIZONTALEXTENT, 0, 0L);
559 HDC dc = GetWindowDC(GetHwnd());
560 HFONT oldFont = 0;
561 if (GetFont().Ok() && GetFont().GetResourceHandle())
562 oldFont = (HFONT) ::SelectObject(dc, (HFONT) GetFont().GetResourceHandle());
563
564 GetTextMetrics(dc, &lpTextMetric);
565 SIZE extentXY;
566 ::GetTextExtentPoint(dc, (LPTSTR) (const wxChar *)s, s.Length(), &extentXY);
567 int extentX = (int)(extentXY.cx + lpTextMetric.tmAveCharWidth);
568
569 if (oldFont)
570 ::SelectObject(dc, oldFont);
571
572 ReleaseDC(GetHwnd(), dc);
573 if (extentX > existingExtent)
574 SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT, LOWORD(extentX), 0L);
575 }
576 else
577 {
578 int largestExtent = 0;
579 HDC dc = GetWindowDC(GetHwnd());
580 HFONT oldFont = 0;
581 if (GetFont().Ok() && GetFont().GetResourceHandle())
582 oldFont = (HFONT) ::SelectObject(dc, (HFONT) GetFont().GetResourceHandle());
583
584 GetTextMetrics(dc, &lpTextMetric);
585
586 // FIXME: buffer overflow!!
587 wxChar buf[1024];
588 for (int i = 0; i < m_noItems; i++)
589 {
590 int len = (int)SendMessage(GetHwnd(), LB_GETTEXT, i, (LPARAM)buf);
591 buf[len] = 0;
592 SIZE extentXY;
593 ::GetTextExtentPoint(dc, buf, len, &extentXY);
594 int extentX = (int)(extentXY.cx + lpTextMetric.tmAveCharWidth);
595 if (extentX > largestExtent)
596 largestExtent = extentX;
597 }
598 if (oldFont)
599 ::SelectObject(dc, oldFont);
600
601 ReleaseDC(GetHwnd(), dc);
602 SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT, LOWORD(largestExtent), 0L);
603 }
604}
605
606wxSize wxListBox::DoGetBestSize() const
607{
608 // find the widest string
609 int wLine;
610 int wListbox = 0;
611 for ( int i = 0; i < m_noItems; i++ )
612 {
613 wxString str(GetString(i));
614 GetTextExtent(str, &wLine, NULL);
615 if ( wLine > wListbox )
616 wListbox = wLine;
617 }
618
619 // give it some reasonable default value if there are no strings in the
620 // list
621 if ( wListbox == 0 )
622 wListbox = 100;
623
624 // the listbox should be slightly larger than the widest string
625 int cx, cy;
626 wxGetCharSize(GetHWND(), &cx, &cy, &GetFont());
627
628 wListbox += 3*cx;
629
630 // don't make the listbox too tall (limit height to 10 items) but don't
631 // make it too small neither
632 int hListbox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)*
633 wxMin(wxMax(m_noItems, 3), 10);
634
635 return wxSize(wListbox, hListbox);
636}
637
638// ----------------------------------------------------------------------------
639// callbacks
640// ----------------------------------------------------------------------------
641
642bool wxListBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
643{
644 wxEventType evtType;
645 if ( param == LBN_SELCHANGE )
646 {
647 evtType = wxEVT_COMMAND_LISTBOX_SELECTED;
648 }
649 else if ( param == LBN_DBLCLK )
650 {
651 evtType = wxEVT_COMMAND_LISTBOX_DOUBLECLICKED;
652 }
653 else
654 {
655 // some event we're not interested in
656 return FALSE;
657 }
658
659 wxCommandEvent event(evtType, m_windowId);
660 event.SetEventObject( this );
661
662 // retrieve the affected item
663 int n = SendMessage(GetHwnd(), LB_GETCARETINDEX, 0, 0);
664 if ( n != LB_ERR )
665 {
666 if ( HasClientObjectData() )
667 event.SetClientObject( GetClientObject(n) );
668 else if ( HasClientUntypedData() )
669 event.SetClientData( GetClientData(n) );
670
671 event.SetString( GetString(n) );
672 event.SetExtraLong( HasMultipleSelection() ? IsSelected(n) : TRUE );
673 }
674
675 event.m_commandInt = n;
676
677 return GetEventHandler()->ProcessEvent(event);
678}
679
680// ----------------------------------------------------------------------------
681// wxCheckListBox support
682// ----------------------------------------------------------------------------
683
684#if wxUSE_OWNER_DRAWN
685
686// drawing
687// -------
688
689// space beneath/above each row in pixels
690// "standard" checklistbox use 1 here, some might prefer 2. 0 is ugly.
691#define OWNER_DRAWN_LISTBOX_EXTRA_SPACE (1)
692
693// the height is the same for all items
694// TODO should be changed for LBS_OWNERDRAWVARIABLE style listboxes
695
696// NB: can't forward this to wxListBoxItem because LB_SETITEMDATA
697// message is not yet sent when we get here!
698bool wxListBox::MSWOnMeasure(WXMEASUREITEMSTRUCT *item)
699{
700 // only owner-drawn control should receive this message
701 wxCHECK( ((m_windowStyle & wxLB_OWNERDRAW) == wxLB_OWNERDRAW), FALSE );
702
703 MEASUREITEMSTRUCT *pStruct = (MEASUREITEMSTRUCT *)item;
704
705#ifdef __WXWINCE__
706 HDC hdc = GetDC(NULL);
707#else
708 HDC hdc = CreateIC(wxT("DISPLAY"), NULL, NULL, 0);
709#endif
710
711 wxDC dc;
712 dc.SetHDC((WXHDC)hdc);
713 dc.SetFont(wxSystemSettings::GetFont(wxSYS_ANSI_VAR_FONT));
714
715 pStruct->itemHeight = dc.GetCharHeight() + 2*OWNER_DRAWN_LISTBOX_EXTRA_SPACE;
716 pStruct->itemWidth = dc.GetCharWidth();
717
718 dc.SetHDC(0);
719
720 DeleteDC(hdc);
721
722 return TRUE;
723}
724
725// forward the message to the appropriate item
726bool wxListBox::MSWOnDraw(WXDRAWITEMSTRUCT *item)
727{
728 // only owner-drawn control should receive this message
729 wxCHECK( ((m_windowStyle & wxLB_OWNERDRAW) == wxLB_OWNERDRAW), FALSE );
730
731 DRAWITEMSTRUCT *pStruct = (DRAWITEMSTRUCT *)item;
732 UINT itemID = pStruct->itemID;
733
734 // the item may be -1 for an empty listbox
735 if ( itemID == (UINT)-1 )
736 return FALSE;
737
738 long data = ListBox_GetItemData(GetHwnd(), pStruct->itemID);
739
740 wxCHECK( data && (data != LB_ERR), FALSE );
741
742 wxListBoxItem *pItem = (wxListBoxItem *)data;
743
744 wxDCTemp dc((WXHDC)pStruct->hDC);
745 wxRect rect(wxPoint(pStruct->rcItem.left, pStruct->rcItem.top),
746 wxPoint(pStruct->rcItem.right, pStruct->rcItem.bottom));
747
748 return pItem->OnDrawItem(dc, rect,
749 (wxOwnerDrawn::wxODAction)pStruct->itemAction,
750 (wxOwnerDrawn::wxODStatus)pStruct->itemState);
751}
752
753#endif // wxUSE_OWNER_DRAWN
754
755#endif // wxUSE_LISTBOX