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"
21 #include "wx/listbox.h"
24 #include "wx/dynarray.h"
25 #include "wx/settings.h"
31 #include "wx/window.h"
34 #include "wx/msw/private.h"
35 #include "wx/msw/dc.h"
40 #include "wx/ownerdrw.h"
43 #if wxUSE_EXTENDED_RTTI
44 WX_DEFINE_FLAGS( wxListBoxStyle
)
46 wxBEGIN_FLAGS( wxListBoxStyle
)
47 // new style border flags, we put them first to
48 // use them for streaming out
49 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
50 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
51 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
52 wxFLAGS_MEMBER(wxBORDER_RAISED
)
53 wxFLAGS_MEMBER(wxBORDER_STATIC
)
54 wxFLAGS_MEMBER(wxBORDER_NONE
)
56 // old style border flags
57 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
58 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
59 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
60 wxFLAGS_MEMBER(wxRAISED_BORDER
)
61 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
62 wxFLAGS_MEMBER(wxBORDER
)
64 // standard window styles
65 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
66 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
67 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
68 wxFLAGS_MEMBER(wxWANTS_CHARS
)
69 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
70 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
71 wxFLAGS_MEMBER(wxVSCROLL
)
72 wxFLAGS_MEMBER(wxHSCROLL
)
74 wxFLAGS_MEMBER(wxLB_SINGLE
)
75 wxFLAGS_MEMBER(wxLB_MULTIPLE
)
76 wxFLAGS_MEMBER(wxLB_EXTENDED
)
77 wxFLAGS_MEMBER(wxLB_HSCROLL
)
78 wxFLAGS_MEMBER(wxLB_ALWAYS_SB
)
79 wxFLAGS_MEMBER(wxLB_NEEDED_SB
)
80 wxFLAGS_MEMBER(wxLB_NO_SB
)
81 wxFLAGS_MEMBER(wxLB_SORT
)
83 wxEND_FLAGS( wxListBoxStyle
)
85 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListBox
, wxControlWithItems
,"wx/listbox.h")
87 wxBEGIN_PROPERTIES_TABLE(wxListBox
)
88 wxEVENT_PROPERTY( Select
, wxEVT_COMMAND_LISTBOX_SELECTED
, wxCommandEvent
)
89 wxEVENT_PROPERTY( DoubleClick
, wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
, wxCommandEvent
)
91 wxPROPERTY( Font
, wxFont
, SetFont
, GetFont
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
92 wxPROPERTY_COLLECTION( Choices
, wxArrayString
, wxString
, AppendString
, GetStrings
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
93 wxPROPERTY( Selection
,int, SetSelection
, GetSelection
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
94 wxPROPERTY_FLAGS( WindowStyle
, wxListBoxStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
95 wxEND_PROPERTIES_TABLE()
97 wxBEGIN_HANDLERS_TABLE(wxListBox
)
98 wxEND_HANDLERS_TABLE()
100 wxCONSTRUCTOR_4( wxListBox
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
)
102 IMPLEMENT_DYNAMIC_CLASS(wxListBox
, wxControlWithItems
)
112 // ============================================================================
113 // list box item declaration and implementation
114 // ============================================================================
116 #if wxUSE_OWNER_DRAWN
118 class wxListBoxItem
: public wxOwnerDrawn
121 wxListBoxItem(wxListBox
*parent
)
122 { m_parent
= parent
; }
124 wxListBox
*GetParent() const
128 { return m_parent
->GetItemIndex(const_cast<wxListBoxItem
*>(this)); }
130 wxString
GetName() const
131 { return m_parent
->GetString(GetIndex()); }
137 wxOwnerDrawn
*wxListBox::CreateLboxItem(size_t WXUNUSED(n
))
139 return new wxListBoxItem(this);
142 #endif //USE_OWNER_DRAWN
144 // ============================================================================
145 // list box control implementation
146 // ============================================================================
148 // ----------------------------------------------------------------------------
150 // ----------------------------------------------------------------------------
152 void wxListBox::Init()
155 m_updateHorizontalExtent
= false;
156 m_selectedByKeyboard
= false;
159 bool wxListBox::Create(wxWindow
*parent
,
163 int n
, const wxString choices
[],
165 const wxValidator
& validator
,
166 const wxString
& name
)
168 // initialize base class fields
169 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
172 // create the native control
173 if ( !MSWCreateControl(wxT("LISTBOX"), wxEmptyString
, pos
, size
) )
175 // control creation failed
179 // initialize the contents
180 for ( int i
= 0; i
< n
; i
++ )
185 // now we can compute our best size correctly, so do it again
186 SetInitialSize(size
);
191 bool wxListBox::Create(wxWindow
*parent
,
195 const wxArrayString
& choices
,
197 const wxValidator
& validator
,
198 const wxString
& name
)
200 wxCArrayString
chs(choices
);
201 return Create(parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
202 style
, validator
, name
);
205 wxListBox::~wxListBox()
210 WXDWORD
wxListBox::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
212 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
214 // we always want to get the notifications
215 msStyle
|= LBS_NOTIFY
;
217 // without this style, you get unexpected heights, so e.g. constraint
218 // layout doesn't work properly
219 msStyle
|= LBS_NOINTEGRALHEIGHT
;
221 wxASSERT_MSG( !(style
& wxLB_MULTIPLE
) || !(style
& wxLB_EXTENDED
),
222 wxT("only one of listbox selection modes can be specified") );
224 if ( style
& wxLB_MULTIPLE
)
225 msStyle
|= LBS_MULTIPLESEL
;
226 else if ( style
& wxLB_EXTENDED
)
227 msStyle
|= LBS_EXTENDEDSEL
;
229 wxASSERT_MSG( !(style
& wxLB_ALWAYS_SB
) || !(style
& wxLB_NO_SB
),
230 wxT( "Conflicting styles wxLB_ALWAYS_SB and wxLB_NO_SB." ) );
232 if ( !(style
& wxLB_NO_SB
) )
234 msStyle
|= WS_VSCROLL
;
235 if ( style
& wxLB_ALWAYS_SB
)
236 msStyle
|= LBS_DISABLENOSCROLL
;
239 if ( m_windowStyle
& wxLB_HSCROLL
)
240 msStyle
|= WS_HSCROLL
;
241 if ( m_windowStyle
& wxLB_SORT
)
244 #if wxUSE_OWNER_DRAWN && !defined(__WXWINCE__)
245 if ( m_windowStyle
& wxLB_OWNERDRAW
)
247 // we don't support LBS_OWNERDRAWVARIABLE yet and we also always put
248 // the strings in the listbox for simplicity even though we could have
249 // avoided it in this case
250 msStyle
|= LBS_OWNERDRAWFIXED
| LBS_HASSTRINGS
;
252 #endif // wxUSE_OWNER_DRAWN
257 void wxListBox::OnInternalIdle()
259 wxWindow::OnInternalIdle();
261 if (m_updateHorizontalExtent
)
263 SetHorizontalExtent(wxEmptyString
);
264 m_updateHorizontalExtent
= false;
268 void wxListBox::MSWOnItemsChanged()
270 // we need to do two things when items change: update their max horizontal
271 // extent so that horizontal scrollbar could be shown or hidden as
272 // appropriate and also invlaidate the best size
274 // updating the max extent is slow (it's an O(N) operation) and so we defer
275 // it until the idle time but the best size should be invalidated
276 // immediately doing it in idle time is too late -- layout using incorrect
277 // old best size will have been already done by then
279 m_updateHorizontalExtent
= true;
281 InvalidateBestSize();
284 // ----------------------------------------------------------------------------
285 // implementation of wxListBoxBase methods
286 // ----------------------------------------------------------------------------
288 void wxListBox::DoSetFirstItem(int N
)
290 wxCHECK_RET( IsValid(N
),
291 wxT("invalid index in wxListBox::SetFirstItem") );
293 SendMessage(GetHwnd(), LB_SETTOPINDEX
, (WPARAM
)N
, (LPARAM
)0);
296 void wxListBox::DoDeleteOneItem(unsigned int n
)
298 wxCHECK_RET( IsValid(n
),
299 wxT("invalid index in wxListBox::Delete") );
301 #if wxUSE_OWNER_DRAWN
302 if ( HasFlag(wxLB_OWNERDRAW
) )
305 m_aItems
.RemoveAt(n
);
307 #endif // wxUSE_OWNER_DRAWN
309 SendMessage(GetHwnd(), LB_DELETESTRING
, n
, 0);
314 UpdateOldSelections();
317 int wxListBox::FindString(const wxString
& s
, bool bCase
) const
319 // back to base class search for not native search type
321 return wxItemContainerImmutable::FindString( s
, bCase
);
323 int pos
= ListBox_FindStringExact(GetHwnd(), -1, s
.wx_str());
330 void wxListBox::DoClear()
332 #if wxUSE_OWNER_DRAWN
333 if ( HasFlag(wxLB_OWNERDRAW
) )
335 WX_CLEAR_ARRAY(m_aItems
);
337 #endif // wxUSE_OWNER_DRAWN
339 ListBox_ResetContent(GetHwnd());
344 UpdateOldSelections();
347 void wxListBox::DoSetSelection(int N
, bool select
)
349 wxCHECK_RET( N
== wxNOT_FOUND
|| IsValid(N
),
350 wxT("invalid index in wxListBox::SetSelection") );
352 if ( HasMultipleSelection() )
354 // Setting selection to -1 should deselect everything.
355 const bool deselectAll
= N
== wxNOT_FOUND
;
356 SendMessage(GetHwnd(), LB_SETSEL
,
357 deselectAll
? FALSE
: select
,
358 deselectAll
? -1 : N
);
362 SendMessage(GetHwnd(), LB_SETCURSEL
, select
? N
: -1, 0);
365 UpdateOldSelections();
368 bool wxListBox::IsSelected(int N
) const
370 wxCHECK_MSG( IsValid(N
), false,
371 wxT("invalid index in wxListBox::Selected") );
373 return SendMessage(GetHwnd(), LB_GETSEL
, N
, 0) == 0 ? false : true;
376 void *wxListBox::DoGetItemClientData(unsigned int n
) const
378 wxCHECK_MSG( IsValid(n
), NULL
,
379 wxT("invalid index in wxListBox::GetClientData") );
381 return (void *)SendMessage(GetHwnd(), LB_GETITEMDATA
, n
, 0);
384 void wxListBox::DoSetItemClientData(unsigned int n
, void *clientData
)
386 wxCHECK_RET( IsValid(n
),
387 wxT("invalid index in wxListBox::SetClientData") );
389 if ( ListBox_SetItemData(GetHwnd(), n
, clientData
) == LB_ERR
)
391 wxLogDebug(wxT("LB_SETITEMDATA failed"));
395 // Return number of selections and an array of selected integers
396 int wxListBox::GetSelections(wxArrayInt
& aSelections
) const
400 if ( HasMultipleSelection() )
402 int countSel
= ListBox_GetSelCount(GetHwnd());
403 if ( countSel
== LB_ERR
)
405 wxLogDebug(wxT("ListBox_GetSelCount failed"));
407 else if ( countSel
!= 0 )
409 int *selections
= new int[countSel
];
411 if ( ListBox_GetSelItems(GetHwnd(),
412 countSel
, selections
) == LB_ERR
)
414 wxLogDebug(wxT("ListBox_GetSelItems failed"));
419 aSelections
.Alloc(countSel
);
420 for ( int n
= 0; n
< countSel
; n
++ )
421 aSelections
.Add(selections
[n
]);
424 delete [] selections
;
429 else // single-selection listbox
431 if (ListBox_GetCurSel(GetHwnd()) > -1)
432 aSelections
.Add(ListBox_GetCurSel(GetHwnd()));
434 return aSelections
.Count();
438 // Get single selection, for single choice list items
439 int wxListBox::GetSelection() const
441 wxCHECK_MSG( !HasMultipleSelection(),
443 wxT("GetSelection() can't be used with multiple-selection listboxes, use GetSelections() instead.") );
445 return ListBox_GetCurSel(GetHwnd());
448 // Find string for position
449 wxString
wxListBox::GetString(unsigned int n
) const
451 wxCHECK_MSG( IsValid(n
), wxEmptyString
,
452 wxT("invalid index in wxListBox::GetString") );
454 int len
= ListBox_GetTextLen(GetHwnd(), n
);
456 // +1 for terminating NUL
458 ListBox_GetText(GetHwnd(), n
, (wxChar
*)wxStringBuffer(result
, len
+ 1));
463 int wxListBox::DoInsertItems(const wxArrayStringsAdapter
& items
,
466 wxClientDataType type
)
468 MSWAllocStorage(items
, LB_INITSTORAGE
);
470 const bool append
= pos
== GetCount();
472 // we must use CB_ADDSTRING when appending as only it works correctly for
473 // the sorted controls
474 const unsigned msg
= append
? LB_ADDSTRING
: LB_INSERTSTRING
;
481 const unsigned int numItems
= items
.GetCount();
482 for ( unsigned int i
= 0; i
< numItems
; i
++ )
484 n
= MSWInsertOrAppendItem(pos
, items
[i
], msg
);
485 if ( n
== wxNOT_FOUND
)
493 #if wxUSE_OWNER_DRAWN
494 if ( HasFlag(wxLB_OWNERDRAW
) )
496 wxOwnerDrawn
*pNewItem
= CreateLboxItem(n
);
497 pNewItem
->SetFont(GetFont());
498 m_aItems
.Insert(pNewItem
, n
);
500 #endif // wxUSE_OWNER_DRAWN
501 AssignNewItemClientData(n
, clientData
, i
, type
);
506 UpdateOldSelections();
511 int wxListBox::DoHitTestList(const wxPoint
& point
) const
513 LRESULT lRes
= ::SendMessage(GetHwnd(), LB_ITEMFROMPOINT
,
514 0, MAKELPARAM(point
.x
, point
.y
));
516 // non zero high-order word means that this item is outside of the client
517 // area, IOW the point is outside of the listbox
518 return HIWORD(lRes
) ? wxNOT_FOUND
: LOWORD(lRes
);
521 void wxListBox::SetString(unsigned int n
, const wxString
& s
)
523 wxCHECK_RET( IsValid(n
),
524 wxT("invalid index in wxListBox::SetString") );
526 // remember the state of the item
527 bool wasSelected
= IsSelected(n
);
529 void *oldData
= NULL
;
530 wxClientData
*oldObjData
= NULL
;
531 if ( HasClientUntypedData() )
532 oldData
= GetClientData(n
);
533 else if ( HasClientObjectData() )
534 oldObjData
= GetClientObject(n
);
536 // delete and recreate it
537 SendMessage(GetHwnd(), LB_DELETESTRING
, n
, 0);
540 if ( n
== (m_noItems
- 1) )
543 ListBox_InsertString(GetHwnd(), newN
, s
.wx_str());
545 // restore the client data
547 SetClientData(n
, oldData
);
548 else if ( oldObjData
)
549 SetClientObject(n
, oldObjData
);
551 // we may have lost the selection
558 unsigned int wxListBox::GetCount() const
563 // ----------------------------------------------------------------------------
564 // size-related stuff
565 // ----------------------------------------------------------------------------
567 void wxListBox::SetHorizontalExtent(const wxString
& s
)
569 // the rest is only necessary if we want a horizontal scrollbar
570 if ( !HasFlag(wxHSCROLL
) )
574 WindowHDC
dc(GetHwnd());
575 SelectInHDC
selFont(dc
, GetHfontOf(GetFont()));
577 TEXTMETRIC lpTextMetric
;
578 ::GetTextMetrics(dc
, &lpTextMetric
);
580 int largestExtent
= 0;
585 // set extent to the max length of all strings
586 for ( unsigned int i
= 0; i
< m_noItems
; i
++ )
588 const wxString str
= GetString(i
);
589 ::GetTextExtentPoint32(dc
, str
.c_str(), str
.length(), &extentXY
);
591 int extentX
= (int)(extentXY
.cx
+ lpTextMetric
.tmAveCharWidth
);
592 if ( extentX
> largestExtent
)
593 largestExtent
= extentX
;
596 else // just increase the extent to the length of this string
598 int existingExtent
= (int)SendMessage(GetHwnd(),
599 LB_GETHORIZONTALEXTENT
, 0, 0L);
601 ::GetTextExtentPoint32(dc
, s
.c_str(), s
.length(), &extentXY
);
603 int extentX
= (int)(extentXY
.cx
+ lpTextMetric
.tmAveCharWidth
);
604 if ( extentX
> existingExtent
)
605 largestExtent
= extentX
;
609 SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT
, LOWORD(largestExtent
), 0L);
610 //else: it shouldn't change
613 wxSize
wxListBox::DoGetBestClientSize() const
615 // find the widest string
618 for (unsigned int i
= 0; i
< m_noItems
; i
++)
620 wxString
str(GetString(i
));
621 GetTextExtent(str
, &wLine
, NULL
);
622 if ( wLine
> wListbox
)
626 // give it some reasonable default value if there are no strings in the
631 // the listbox should be slightly larger than the widest string
632 wListbox
+= 3*GetCharWidth();
634 // add room for the scrollbar
635 wListbox
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
637 // don't make the listbox too tall (limit height to 10 items) but don't
638 // make it too small neither
639 int hListbox
= SendMessage(GetHwnd(), LB_GETITEMHEIGHT
, 0, 0)*
640 wxMin(wxMax(m_noItems
, 3), 10);
642 return wxSize(wListbox
, hListbox
);
645 // ----------------------------------------------------------------------------
647 // ----------------------------------------------------------------------------
649 bool wxListBox::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
653 if ( param
== LBN_SELCHANGE
)
655 if ( HasMultipleSelection() )
656 return CalcAndSendEvent();
658 evtType
= wxEVT_COMMAND_LISTBOX_SELECTED
;
660 if ( m_selectedByKeyboard
)
662 // We shouldn't use the mouse position to find the item as mouse
663 // can be anywhere, ask the listbox itself. Notice that this can't
664 // be used when the item is selected using the mouse however as
665 // LB_GETCARETINDEX will always return a valid item, even if the
666 // mouse is clicked below all the items, which is why we find the
667 // item ourselves below in this case.
668 n
= SendMessage(GetHwnd(), LB_GETCARETINDEX
, 0, 0);
670 //else: n will be determined below from the mouse position
672 else if ( param
== LBN_DBLCLK
)
674 evtType
= wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
;
678 // some event we're not interested in
682 // Find the item position if it was a mouse-generated selection event or a
683 // double click event (which is always generated using the mouse)
684 if ( n
== wxNOT_FOUND
)
686 const DWORD pos
= ::GetMessagePos();
687 const wxPoint
pt(GET_X_LPARAM(pos
), GET_Y_LPARAM(pos
));
688 n
= HitTest(ScreenToClient(wxPoint(pt
)));
691 // We get events even when mouse is clicked outside of any valid item from
692 // Windows, just ignore them.
693 if ( n
== wxNOT_FOUND
)
696 if ( param
== LBN_SELCHANGE
)
698 if ( !DoChangeSingleSelection(n
) )
702 // Do generate an event otherwise.
703 return SendEvent(evtType
, n
, true /* selection */);
707 wxListBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
709 // Remember whether there was a keyboard or mouse event before
710 // LBN_SELCHANGE: this allows us to correctly determine the item affected
711 // by it in MSWCommand() above in any case.
712 if ( WM_KEYFIRST
<= nMsg
&& nMsg
<= WM_KEYLAST
)
713 m_selectedByKeyboard
= true;
714 else if ( WM_MOUSEFIRST
<= nMsg
&& nMsg
<= WM_MOUSELAST
)
715 m_selectedByKeyboard
= false;
717 return wxListBoxBase::MSWWindowProc(nMsg
, wParam
, lParam
);
720 // ----------------------------------------------------------------------------
721 // owner-drawn list boxes support
722 // ----------------------------------------------------------------------------
724 #if wxUSE_OWNER_DRAWN
726 // misc overloaded methods
727 // -----------------------
729 bool wxListBox::SetFont(const wxFont
&font
)
731 if ( HasFlag(wxLB_OWNERDRAW
) )
733 const unsigned count
= m_aItems
.GetCount();
734 for ( unsigned i
= 0; i
< count
; i
++ )
735 m_aItems
[i
]->SetFont(font
);
738 wxListBoxBase::SetFont(font
);
743 bool wxListBox::GetItemRect(size_t n
, wxRect
& rect
) const
745 wxCHECK_MSG( IsValid(n
), false,
746 wxT("invalid index in wxListBox::GetItemRect") );
750 if ( ListBox_GetItemRect(GetHwnd(), n
, &rc
) != LB_ERR
)
752 rect
= wxRectFromRECT(rc
);
757 // couldn't retrieve rect: for example, item isn't visible
762 bool wxListBox::RefreshItem(size_t n
)
765 if ( !GetItemRect(n
, rect
) )
769 wxCopyRectToRECT(rect
, rc
);
771 return ::InvalidateRect((HWND
)GetHWND(), &rc
, FALSE
) == TRUE
;
780 // space beneath/above each row in pixels
781 static const int LISTBOX_EXTRA_SPACE
= 1;
783 } // anonymous namespace
785 // the height is the same for all items
786 // TODO should be changed for LBS_OWNERDRAWVARIABLE style listboxes
788 // NB: can't forward this to wxListBoxItem because LB_SETITEMDATA
789 // message is not yet sent when we get here!
790 bool wxListBox::MSWOnMeasure(WXMEASUREITEMSTRUCT
*item
)
792 // only owner-drawn control should receive this message
793 wxCHECK( HasFlag(wxLB_OWNERDRAW
), false );
795 MEASUREITEMSTRUCT
*pStruct
= (MEASUREITEMSTRUCT
*)item
;
798 HDC hdc
= GetDC(NULL
);
800 HDC hdc
= CreateIC(wxT("DISPLAY"), NULL
, NULL
, 0);
804 wxDCTemp
dc((WXHDC
)hdc
);
805 dc
.SetFont(GetFont());
807 pStruct
->itemHeight
= dc
.GetCharHeight() + 2 * LISTBOX_EXTRA_SPACE
;
808 pStruct
->itemWidth
= dc
.GetCharWidth();
812 ReleaseDC(NULL
, hdc
);
820 // forward the message to the appropriate item
821 bool wxListBox::MSWOnDraw(WXDRAWITEMSTRUCT
*item
)
823 // only owner-drawn control should receive this message
824 wxCHECK( HasFlag(wxLB_OWNERDRAW
), false );
826 DRAWITEMSTRUCT
*pStruct
= (DRAWITEMSTRUCT
*)item
;
828 // the item may be -1 for an empty listbox
829 if ( pStruct
->itemID
== (UINT
)-1 )
832 wxListBoxItem
*pItem
= (wxListBoxItem
*)m_aItems
[pStruct
->itemID
];
834 wxDCTemp
dc((WXHDC
)pStruct
->hDC
);
836 return pItem
->OnDrawItem(dc
, wxRectFromRECT(pStruct
->rcItem
),
837 (wxOwnerDrawn::wxODAction
)pStruct
->itemAction
,
838 (wxOwnerDrawn::wxODStatus
)(pStruct
->itemState
| wxOwnerDrawn::wxODHidePrefix
));
841 #endif // wxUSE_OWNER_DRAWN
843 #endif // wxUSE_LISTBOX