1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/listbox.cpp
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin (owner drawn stuff)
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
22 #include "wx/listbox.h"
23 #include "wx/settings.h"
30 #include "wx/window.h"
31 #include "wx/msw/private.h"
35 #include "wx/dynarray.h"
39 #include "wx/ownerdrw.h"
42 #if wxUSE_EXTENDED_RTTI
43 WX_DEFINE_FLAGS( wxListBoxStyle
)
45 wxBEGIN_FLAGS( wxListBoxStyle
)
46 // new style border flags, we put them first to
47 // use them for streaming out
48 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
49 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
50 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
51 wxFLAGS_MEMBER(wxBORDER_RAISED
)
52 wxFLAGS_MEMBER(wxBORDER_STATIC
)
53 wxFLAGS_MEMBER(wxBORDER_NONE
)
55 // old style border flags
56 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
57 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
58 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
59 wxFLAGS_MEMBER(wxRAISED_BORDER
)
60 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
61 wxFLAGS_MEMBER(wxBORDER
)
63 // standard window styles
64 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
65 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
66 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
67 wxFLAGS_MEMBER(wxWANTS_CHARS
)
68 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
69 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
70 wxFLAGS_MEMBER(wxVSCROLL
)
71 wxFLAGS_MEMBER(wxHSCROLL
)
73 wxFLAGS_MEMBER(wxLB_SINGLE
)
74 wxFLAGS_MEMBER(wxLB_MULTIPLE
)
75 wxFLAGS_MEMBER(wxLB_EXTENDED
)
76 wxFLAGS_MEMBER(wxLB_HSCROLL
)
77 wxFLAGS_MEMBER(wxLB_ALWAYS_SB
)
78 wxFLAGS_MEMBER(wxLB_NEEDED_SB
)
79 wxFLAGS_MEMBER(wxLB_SORT
)
81 wxEND_FLAGS( wxListBoxStyle
)
83 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListBox
, wxControl
,"wx/listbox.h")
85 wxBEGIN_PROPERTIES_TABLE(wxListBox
)
86 wxEVENT_PROPERTY( Select
, wxEVT_COMMAND_LISTBOX_SELECTED
, wxCommandEvent
)
87 wxEVENT_PROPERTY( DoubleClick
, wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
, wxCommandEvent
)
89 wxPROPERTY( Font
, wxFont
, SetFont
, GetFont
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
90 wxPROPERTY_COLLECTION( Choices
, wxArrayString
, wxString
, AppendString
, GetStrings
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
91 wxPROPERTY( Selection
,int, SetSelection
, GetSelection
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
92 wxPROPERTY_FLAGS( WindowStyle
, wxListBoxStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
93 wxEND_PROPERTIES_TABLE()
95 wxBEGIN_HANDLERS_TABLE(wxListBox
)
96 wxEND_HANDLERS_TABLE()
98 wxCONSTRUCTOR_4( wxListBox
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
)
100 IMPLEMENT_DYNAMIC_CLASS(wxListBox
, wxControl
)
110 // ============================================================================
111 // list box item declaration and implementation
112 // ============================================================================
114 #if wxUSE_OWNER_DRAWN
116 class wxListBoxItem
: public wxOwnerDrawn
119 wxListBoxItem(const wxString
& str
= wxEmptyString
);
122 wxListBoxItem::wxListBoxItem(const wxString
& str
) : wxOwnerDrawn(str
, false)
124 // no bitmaps/checkmarks
128 wxOwnerDrawn
*wxListBox::CreateLboxItem(size_t WXUNUSED(n
))
130 return new wxListBoxItem();
133 #endif //USE_OWNER_DRAWN
135 // ============================================================================
136 // list box control implementation
137 // ============================================================================
139 // ----------------------------------------------------------------------------
141 // ----------------------------------------------------------------------------
144 wxListBox::wxListBox()
150 bool wxListBox::Create(wxWindow
*parent
,
154 int n
, const wxString choices
[],
156 const wxValidator
& validator
,
157 const wxString
& name
)
162 // initialize base class fields
163 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
166 // create the native control
167 if ( !MSWCreateControl(_T("LISTBOX"), wxEmptyString
, pos
, size
) )
169 // control creation failed
173 // initialize the contents
174 for ( int i
= 0; i
< n
; i
++ )
179 // now we can compute our best size correctly, so do it if necessary
185 bool wxListBox::Create(wxWindow
*parent
,
189 const wxArrayString
& choices
,
191 const wxValidator
& validator
,
192 const wxString
& name
)
194 wxCArrayString
chs(choices
);
195 return Create(parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
196 style
, validator
, name
);
199 wxListBox::~wxListBox()
204 WXDWORD
wxListBox::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
206 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
208 // always show the vertical scrollbar if necessary -- otherwise it is
209 // impossible to use the control with the mouse
210 msStyle
|= WS_VSCROLL
;
212 // we always want to get the notifications
213 msStyle
|= LBS_NOTIFY
;
215 // without this style, you get unexpected heights, so e.g. constraint
216 // layout doesn't work properly
217 msStyle
|= LBS_NOINTEGRALHEIGHT
;
219 wxASSERT_MSG( !(style
& wxLB_MULTIPLE
) || !(style
& wxLB_EXTENDED
),
220 _T("only one of listbox selection modes can be specified") );
222 if ( style
& wxLB_MULTIPLE
)
223 msStyle
|= LBS_MULTIPLESEL
;
224 else if ( style
& wxLB_EXTENDED
)
225 msStyle
|= LBS_EXTENDEDSEL
;
227 if ( m_windowStyle
& wxLB_ALWAYS_SB
)
228 msStyle
|= LBS_DISABLENOSCROLL
;
229 if ( m_windowStyle
& wxLB_HSCROLL
)
230 msStyle
|= WS_HSCROLL
;
231 if ( m_windowStyle
& wxLB_SORT
)
234 #if wxUSE_OWNER_DRAWN && !defined(__WXWINCE__)
235 if ( m_windowStyle
& wxLB_OWNERDRAW
)
237 // we don't support LBS_OWNERDRAWVARIABLE yet and we also always put
238 // the strings in the listbox for simplicity even though we could have
239 // avoided it in this case
240 msStyle
|= LBS_OWNERDRAWFIXED
| LBS_HASSTRINGS
;
242 #endif // wxUSE_OWNER_DRAWN
247 // ----------------------------------------------------------------------------
248 // implementation of wxListBoxBase methods
249 // ----------------------------------------------------------------------------
251 void wxListBox::DoSetFirstItem(int N
)
253 wxCHECK_RET( N
>= 0 && N
< m_noItems
,
254 wxT("invalid index in wxListBox::SetFirstItem") );
256 SendMessage(GetHwnd(), LB_SETTOPINDEX
, (WPARAM
)N
, (LPARAM
)0);
259 void wxListBox::Delete(int N
)
261 wxCHECK_RET( N
>= 0 && N
< m_noItems
,
262 wxT("invalid index in wxListBox::Delete") );
264 // for owner drawn objects, the data is used for storing wxOwnerDrawn
265 // pointers and we shouldn't touch it
266 #if !wxUSE_OWNER_DRAWN
267 if ( !(m_windowStyle
& wxLB_OWNERDRAW
) )
268 #endif // !wxUSE_OWNER_DRAWN
269 if ( HasClientObjectData() )
271 delete GetClientObject(N
);
274 SendMessage(GetHwnd(), LB_DELETESTRING
, N
, 0);
277 SetHorizontalExtent(wxEmptyString
);
279 InvalidateBestSize();
282 int wxListBox::DoAppend(const wxString
& item
)
284 int index
= ListBox_AddString(GetHwnd(), item
);
287 #if wxUSE_OWNER_DRAWN
288 if ( m_windowStyle
& wxLB_OWNERDRAW
) {
289 wxOwnerDrawn
*pNewItem
= CreateLboxItem(index
); // dummy argument
290 pNewItem
->SetName(item
);
291 m_aItems
.Insert(pNewItem
, index
);
292 ListBox_SetItemData(GetHwnd(), index
, pNewItem
);
293 pNewItem
->SetFont(GetFont());
295 #endif // wxUSE_OWNER_DRAWN
297 SetHorizontalExtent(item
);
299 InvalidateBestSize();
303 void wxListBox::DoSetItems(const wxArrayString
& choices
, void** clientData
)
305 // avoid flicker - but don't need to do this for a hidden listbox
306 bool hideAndShow
= IsShown();
309 ShowWindow(GetHwnd(), SW_HIDE
);
312 ListBox_ResetContent(GetHwnd());
314 m_noItems
= choices
.GetCount();
316 for (i
= 0; i
< m_noItems
; i
++)
318 ListBox_AddString(GetHwnd(), choices
[i
]);
321 SetClientData(i
, clientData
[i
]);
325 #if wxUSE_OWNER_DRAWN
326 if ( m_windowStyle
& wxLB_OWNERDRAW
) {
327 // first delete old items
328 WX_CLEAR_ARRAY(m_aItems
);
330 // then create new ones
331 for ( size_t ui
= 0; ui
< (size_t)m_noItems
; ui
++ ) {
332 wxOwnerDrawn
*pNewItem
= CreateLboxItem(ui
);
333 pNewItem
->SetName(choices
[ui
]);
334 m_aItems
.Add(pNewItem
);
335 ListBox_SetItemData(GetHwnd(), ui
, pNewItem
);
338 #endif // wxUSE_OWNER_DRAWN
340 SetHorizontalExtent();
344 // show the listbox back if we hid it
345 ShowWindow(GetHwnd(), SW_SHOW
);
348 InvalidateBestSize();
351 int wxListBox::FindString(const wxString
& s
) const
353 int pos
= ListBox_FindStringExact(GetHwnd(), (WPARAM
)-1, s
);
360 void wxListBox::Clear()
364 ListBox_ResetContent(GetHwnd());
367 SetHorizontalExtent();
369 InvalidateBestSize();
372 void wxListBox::Free()
374 #if wxUSE_OWNER_DRAWN
375 if ( m_windowStyle
& wxLB_OWNERDRAW
)
377 WX_CLEAR_ARRAY(m_aItems
);
380 #endif // wxUSE_OWNER_DRAWN
381 if ( HasClientObjectData() )
383 for ( size_t n
= 0; n
< (size_t)m_noItems
; n
++ )
385 delete GetClientObject(n
);
390 void wxListBox::DoSetSelection(int N
, bool select
)
392 wxCHECK_RET( N
== wxNOT_FOUND
||
393 (N
>= 0 && N
< m_noItems
),
394 wxT("invalid index in wxListBox::SetSelection") );
396 if ( HasMultipleSelection() )
398 SendMessage(GetHwnd(), LB_SETSEL
, select
, N
);
402 SendMessage(GetHwnd(), LB_SETCURSEL
, select
? N
: -1, 0);
406 bool wxListBox::IsSelected(int N
) const
408 wxCHECK_MSG( N
>= 0 && N
< m_noItems
, false,
409 wxT("invalid index in wxListBox::Selected") );
411 return SendMessage(GetHwnd(), LB_GETSEL
, N
, 0) == 0 ? false : true;
414 wxClientData
* wxListBox::DoGetItemClientObject(int n
) const
416 return (wxClientData
*)DoGetItemClientData(n
);
419 void *wxListBox::DoGetItemClientData(int n
) const
421 wxCHECK_MSG( n
>= 0 && n
< m_noItems
, NULL
,
422 wxT("invalid index in wxListBox::GetClientData") );
424 return (void *)SendMessage(GetHwnd(), LB_GETITEMDATA
, n
, 0);
427 void wxListBox::DoSetItemClientObject(int n
, wxClientData
* clientData
)
429 DoSetItemClientData(n
, clientData
);
432 void wxListBox::DoSetItemClientData(int n
, void *clientData
)
434 wxCHECK_RET( n
>= 0 && n
< m_noItems
,
435 wxT("invalid index in wxListBox::SetClientData") );
437 #if wxUSE_OWNER_DRAWN
438 if ( m_windowStyle
& wxLB_OWNERDRAW
)
440 // client data must be pointer to wxOwnerDrawn, otherwise we would crash
441 // in OnMeasure/OnDraw.
442 wxFAIL_MSG(wxT("Can't use client data with owner-drawn listboxes"));
444 #endif // wxUSE_OWNER_DRAWN
446 if ( ListBox_SetItemData(GetHwnd(), n
, clientData
) == LB_ERR
)
447 wxLogDebug(wxT("LB_SETITEMDATA failed"));
450 // Return number of selections and an array of selected integers
451 int wxListBox::GetSelections(wxArrayInt
& aSelections
) const
455 if ( HasMultipleSelection() )
457 int countSel
= ListBox_GetSelCount(GetHwnd());
458 if ( countSel
== LB_ERR
)
460 wxLogDebug(_T("ListBox_GetSelCount failed"));
462 else if ( countSel
!= 0 )
464 int *selections
= new int[countSel
];
466 if ( ListBox_GetSelItems(GetHwnd(),
467 countSel
, selections
) == LB_ERR
)
469 wxLogDebug(wxT("ListBox_GetSelItems failed"));
474 aSelections
.Alloc(countSel
);
475 for ( int n
= 0; n
< countSel
; n
++ )
476 aSelections
.Add(selections
[n
]);
479 delete [] selections
;
484 else // single-selection listbox
486 if (ListBox_GetCurSel(GetHwnd()) > -1)
487 aSelections
.Add(ListBox_GetCurSel(GetHwnd()));
489 return aSelections
.Count();
493 // Get single selection, for single choice list items
494 int wxListBox::GetSelection() const
496 wxCHECK_MSG( !HasMultipleSelection(),
498 wxT("GetSelection() can't be used with multiple-selection listboxes, use GetSelections() instead.") );
500 return ListBox_GetCurSel(GetHwnd());
503 // Find string for position
504 wxString
wxListBox::GetString(int N
) const
506 wxCHECK_MSG( N
>= 0 && N
< m_noItems
, wxEmptyString
,
507 wxT("invalid index in wxListBox::GetString") );
509 int len
= ListBox_GetTextLen(GetHwnd(), N
);
511 // +1 for terminating NUL
513 ListBox_GetText(GetHwnd(), N
, (wxChar
*)wxStringBuffer(result
, len
+ 1));
519 wxListBox::DoInsertItems(const wxArrayString
& items
, int pos
)
521 wxCHECK_RET( pos
>= 0 && pos
<= m_noItems
,
522 wxT("invalid index in wxListBox::InsertItems") );
524 int nItems
= items
.GetCount();
525 for ( int i
= 0; i
< nItems
; i
++ )
527 int idx
= ListBox_InsertString(GetHwnd(), i
+ pos
, items
[i
]);
529 #if wxUSE_OWNER_DRAWN
530 if ( m_windowStyle
& wxLB_OWNERDRAW
)
532 wxOwnerDrawn
*pNewItem
= CreateLboxItem(idx
);
533 pNewItem
->SetName(items
[i
]);
534 pNewItem
->SetFont(GetFont());
535 m_aItems
.Insert(pNewItem
, idx
);
537 ListBox_SetItemData(GetHwnd(), idx
, pNewItem
);
541 #endif // wxUSE_OWNER_DRAWN
546 SetHorizontalExtent();
548 InvalidateBestSize();
551 void wxListBox::SetString(int N
, const wxString
& s
)
553 wxCHECK_RET( N
>= 0 && N
< m_noItems
,
554 wxT("invalid index in wxListBox::SetString") );
556 // remember the state of the item
557 bool wasSelected
= IsSelected(N
);
559 void *oldData
= NULL
;
560 wxClientData
*oldObjData
= NULL
;
561 if ( m_clientDataItemsType
== wxClientData_Void
)
562 oldData
= GetClientData(N
);
563 else if ( m_clientDataItemsType
== wxClientData_Object
)
564 oldObjData
= GetClientObject(N
);
566 // delete and recreate it
567 SendMessage(GetHwnd(), LB_DELETESTRING
, N
, 0);
570 if ( N
== m_noItems
- 1 )
573 ListBox_InsertString(GetHwnd(), newN
, s
);
575 // restore the client data
577 SetClientData(N
, oldData
);
578 else if ( oldObjData
)
579 SetClientObject(N
, oldObjData
);
581 #if wxUSE_OWNER_DRAWN
582 if ( m_windowStyle
& wxLB_OWNERDRAW
)
584 // update item's text
585 m_aItems
[N
]->SetName(s
);
587 // reassign the item's data
588 ListBox_SetItemData(GetHwnd(), N
, m_aItems
[N
]);
590 #endif //USE_OWNER_DRAWN
592 // we may have lost the selection
596 InvalidateBestSize();
599 int wxListBox::GetCount() const
604 // ----------------------------------------------------------------------------
606 // ----------------------------------------------------------------------------
608 // Windows-specific code to set the horizontal extent of the listbox, if
609 // necessary. If s is non-NULL, it's used to calculate the horizontal extent.
610 // Otherwise, all strings are used.
611 void wxListBox::SetHorizontalExtent(const wxString
& s
)
613 // Only necessary if we want a horizontal scrollbar
614 if (!(m_windowStyle
& wxHSCROLL
))
616 TEXTMETRIC lpTextMetric
;
620 int existingExtent
= (int)SendMessage(GetHwnd(), LB_GETHORIZONTALEXTENT
, 0, 0L);
621 HDC dc
= GetWindowDC(GetHwnd());
623 if (GetFont().Ok() && GetFont().GetResourceHandle() != 0)
624 oldFont
= (HFONT
) ::SelectObject(dc
, (HFONT
) GetFont().GetResourceHandle());
626 GetTextMetrics(dc
, &lpTextMetric
);
628 ::GetTextExtentPoint32(dc
, (LPTSTR
) (const wxChar
*)s
, s
.Length(), &extentXY
);
629 int extentX
= (int)(extentXY
.cx
+ lpTextMetric
.tmAveCharWidth
);
632 ::SelectObject(dc
, oldFont
);
634 ReleaseDC(GetHwnd(), dc
);
635 if (extentX
> existingExtent
)
636 SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT
, LOWORD(extentX
), 0L);
640 int largestExtent
= 0;
641 HDC dc
= GetWindowDC(GetHwnd());
643 if (GetFont().Ok() && GetFont().GetResourceHandle() != 0)
644 oldFont
= (HFONT
) ::SelectObject(dc
, (HFONT
) GetFont().GetResourceHandle());
646 GetTextMetrics(dc
, &lpTextMetric
);
648 for (int i
= 0; i
< m_noItems
; i
++)
650 wxString str
= GetString(i
);
652 ::GetTextExtentPoint32(dc
, str
.c_str(), str
.length(), &extentXY
);
653 int extentX
= (int)(extentXY
.cx
+ lpTextMetric
.tmAveCharWidth
);
654 if (extentX
> largestExtent
)
655 largestExtent
= extentX
;
658 ::SelectObject(dc
, oldFont
);
660 ReleaseDC(GetHwnd(), dc
);
661 SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT
, LOWORD(largestExtent
), 0L);
665 wxSize
wxListBox::DoGetBestSize() const
667 // find the widest string
670 for ( int i
= 0; i
< m_noItems
; i
++ )
672 wxString
str(GetString(i
));
673 GetTextExtent(str
, &wLine
, NULL
);
674 if ( wLine
> wListbox
)
678 // give it some reasonable default value if there are no strings in the
683 // the listbox should be slightly larger than the widest string
685 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
689 // Add room for the scrollbar
690 wListbox
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
692 // don't make the listbox too tall (limit height to 10 items) but don't
693 // make it too small neither
694 int hListbox
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
)*
695 wxMin(wxMax(m_noItems
, 3), 10);
697 wxSize
best(wListbox
, hListbox
);
702 // ----------------------------------------------------------------------------
704 // ----------------------------------------------------------------------------
706 bool wxListBox::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
709 if ( param
== LBN_SELCHANGE
)
711 evtType
= wxEVT_COMMAND_LISTBOX_SELECTED
;
713 else if ( param
== LBN_DBLCLK
)
715 evtType
= wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
;
719 // some event we're not interested in
723 wxCommandEvent
event(evtType
, m_windowId
);
724 event
.SetEventObject( this );
726 // retrieve the affected item
727 int n
= SendMessage(GetHwnd(), LB_GETCARETINDEX
, 0, 0);
730 if ( HasClientObjectData() )
731 event
.SetClientObject( GetClientObject(n
) );
732 else if ( HasClientUntypedData() )
733 event
.SetClientData( GetClientData(n
) );
735 event
.SetString( GetString(n
) );
736 event
.SetExtraLong( HasMultipleSelection() ? IsSelected(n
) : true );
741 return GetEventHandler()->ProcessEvent(event
);
744 // ----------------------------------------------------------------------------
745 // wxCheckListBox support
746 // ----------------------------------------------------------------------------
748 #if wxUSE_OWNER_DRAWN
753 // space beneath/above each row in pixels
754 // "standard" checklistbox use 1 here, some might prefer 2. 0 is ugly.
755 #define OWNER_DRAWN_LISTBOX_EXTRA_SPACE (1)
757 // the height is the same for all items
758 // TODO should be changed for LBS_OWNERDRAWVARIABLE style listboxes
760 // NB: can't forward this to wxListBoxItem because LB_SETITEMDATA
761 // message is not yet sent when we get here!
762 bool wxListBox::MSWOnMeasure(WXMEASUREITEMSTRUCT
*item
)
764 // only owner-drawn control should receive this message
765 wxCHECK( ((m_windowStyle
& wxLB_OWNERDRAW
) == wxLB_OWNERDRAW
), false );
767 MEASUREITEMSTRUCT
*pStruct
= (MEASUREITEMSTRUCT
*)item
;
770 HDC hdc
= GetDC(NULL
);
772 HDC hdc
= CreateIC(wxT("DISPLAY"), NULL
, NULL
, 0);
776 dc
.SetHDC((WXHDC
)hdc
);
777 dc
.SetFont(GetFont());
779 pStruct
->itemHeight
= dc
.GetCharHeight() + 2*OWNER_DRAWN_LISTBOX_EXTRA_SPACE
;
780 pStruct
->itemWidth
= dc
.GetCharWidth();
789 // forward the message to the appropriate item
790 bool wxListBox::MSWOnDraw(WXDRAWITEMSTRUCT
*item
)
792 // only owner-drawn control should receive this message
793 wxCHECK( ((m_windowStyle
& wxLB_OWNERDRAW
) == wxLB_OWNERDRAW
), false );
795 DRAWITEMSTRUCT
*pStruct
= (DRAWITEMSTRUCT
*)item
;
796 UINT itemID
= pStruct
->itemID
;
798 // the item may be -1 for an empty listbox
799 if ( itemID
== (UINT
)-1 )
802 long data
= ListBox_GetItemData(GetHwnd(), pStruct
->itemID
);
804 wxCHECK( data
&& (data
!= LB_ERR
), false );
806 wxListBoxItem
*pItem
= (wxListBoxItem
*)data
;
808 wxDCTemp
dc((WXHDC
)pStruct
->hDC
);
809 wxPoint
pt1(pStruct
->rcItem
.left
, pStruct
->rcItem
.top
);
810 wxPoint
pt2(pStruct
->rcItem
.right
, pStruct
->rcItem
.bottom
);
811 wxRect
rect(pt1
, pt2
);
813 return pItem
->OnDrawItem(dc
, rect
,
814 (wxOwnerDrawn::wxODAction
)pStruct
->itemAction
,
815 (wxOwnerDrawn::wxODStatus
)pStruct
->itemState
);
818 #endif // wxUSE_OWNER_DRAWN
820 #endif // wxUSE_LISTBOX