]> git.saurik.com Git - wxWidgets.git/blame - src/msw/listbox.cpp
wxUniv compilation fixes
[wxWidgets.git] / src / msw / listbox.cpp
CommitLineData
2bda0e17 1///////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: src/msw/listbox.cpp
2bda0e17
KB
3// Purpose: wxListBox
4// Author: Julian Smart
5// Modified by: Vadim Zeitlin (owner drawn stuff)
dd3c394a 6// Created:
2bda0e17
KB
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
6c9a19aa 9// Licence: wxWindows licence
2bda0e17
KB
10///////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
dd3c394a 13 #pragma implementation "listbox.h"
2bda0e17
KB
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
dd3c394a 20 #pragma hdrstop
2bda0e17
KB
21#endif
22
1e6feb95 23#if wxUSE_LISTBOX
0c589ad0 24
2bda0e17 25#ifndef WX_PRECOMP
0c589ad0
BM
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"
2662e49e 31#include "wx/utils.h"
2bda0e17
KB
32#endif
33
1e6feb95
VZ
34#include "wx/window.h"
35#include "wx/msw/private.h"
36
5ea105e0
RR
37#include <windowsx.h>
38
0c589ad0
BM
39#include "wx/dynarray.h"
40#include "wx/log.h"
2bda0e17 41
0c589ad0
BM
42#if wxUSE_OWNER_DRAWN
43 #include "wx/ownerdrw.h"
44#endif
2bda0e17 45
b39dbf34
JS
46#ifdef __GNUWIN32_OLD__
47 #include "wx/msw/gnuwin32/extra.h"
57c208c5 48#endif
2bda0e17 49
9c9c3d7a 50IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl)
2bda0e17
KB
51
52// ============================================================================
53// list box item declaration and implementation
54// ============================================================================
55
47d67540 56#if wxUSE_OWNER_DRAWN
2bda0e17
KB
57
58class wxListBoxItem : public wxOwnerDrawn
59{
60public:
2b5f62a0 61 wxListBoxItem(const wxString& str = wxEmptyString);
2bda0e17
KB
62};
63
dd3c394a 64wxListBoxItem::wxListBoxItem(const wxString& str) : wxOwnerDrawn(str, FALSE)
2bda0e17 65{
dd3c394a
VZ
66 // no bitmaps/checkmarks
67 SetMarginWidth(0);
2bda0e17
KB
68}
69
2b5f62a0 70wxOwnerDrawn *wxListBox::CreateLboxItem(size_t WXUNUSED(n))
2bda0e17 71{
dd3c394a 72 return new wxListBoxItem();
2bda0e17
KB
73}
74
75#endif //USE_OWNER_DRAWN
76
77// ============================================================================
78// list box control implementation
79// ============================================================================
80
2ee3ee1b
VZ
81// ----------------------------------------------------------------------------
82// creation
83// ----------------------------------------------------------------------------
dd3c394a 84
2ee3ee1b 85// Listbox item
bfc6fde4 86wxListBox::wxListBox()
2bda0e17 87{
dd3c394a
VZ
88 m_noItems = 0;
89 m_selected = 0;
2bda0e17
KB
90}
91
dd3c394a
VZ
92bool wxListBox::Create(wxWindow *parent,
93 wxWindowID id,
2bda0e17
KB
94 const wxPoint& pos,
95 const wxSize& size,
debe6624
JS
96 int n, const wxString choices[],
97 long style,
2bda0e17
KB
98 const wxValidator& validator,
99 const wxString& name)
100{
dd3c394a
VZ
101 m_noItems = 0;
102 m_hWnd = 0;
103 m_selected = 0;
2bda0e17 104
dd3c394a 105 SetName(name);
11b6a93b 106#if wxUSE_VALIDATORS
dd3c394a 107 SetValidator(validator);
11b6a93b 108#endif // wxUSE_VALIDATORS
2bda0e17 109
dd3c394a
VZ
110 if (parent)
111 parent->AddChild(this);
2bda0e17 112
7516ed26 113 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
dd3c394a 114 SetForegroundColour(parent->GetForegroundColour());
2bda0e17 115
dd3c394a 116 m_windowId = ( id == -1 ) ? (int)NewControlId() : id;
2bda0e17 117
dd3c394a
VZ
118 int x = pos.x;
119 int y = pos.y;
120 int width = size.x;
121 int height = size.y;
122 m_windowStyle = style;
2bda0e17 123
fe3d9123
JS
124 DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_VSCROLL | WS_TABSTOP |
125 LBS_NOTIFY | LBS_HASSTRINGS ;
54081dc5
VZ
126
127 wxASSERT_MSG( !(style & wxLB_MULTIPLE) || !(style & wxLB_EXTENDED),
128 _T("only one of listbox selection modes can be specified") );
c76b1a30
JS
129
130 if ( (m_windowStyle & wxBORDER_MASK) == wxBORDER_DEFAULT )
131 m_windowStyle |= wxBORDER_SUNKEN;
132
b0766406
JS
133 if ( m_windowStyle & wxCLIP_SIBLINGS )
134 wstyle |= WS_CLIPSIBLINGS;
54081dc5 135
dd3c394a
VZ
136 if (m_windowStyle & wxLB_MULTIPLE)
137 wstyle |= LBS_MULTIPLESEL;
138 else if (m_windowStyle & wxLB_EXTENDED)
139 wstyle |= LBS_EXTENDEDSEL;
2bda0e17 140
dd3c394a 141 if (m_windowStyle & wxLB_ALWAYS_SB)
2ee3ee1b 142 wstyle |= LBS_DISABLENOSCROLL;
dd3c394a
VZ
143 if (m_windowStyle & wxLB_HSCROLL)
144 wstyle |= WS_HSCROLL;
145 if (m_windowStyle & wxLB_SORT)
146 wstyle |= LBS_SORT;
2bda0e17 147
4676948b 148#if wxUSE_OWNER_DRAWN && !defined(__WXWINCE__)
2bda0e17 149 if ( m_windowStyle & wxLB_OWNERDRAW ) {
dd3c394a
VZ
150 // we don't support LBS_OWNERDRAWVARIABLE yet
151 wstyle |= LBS_OWNERDRAWFIXED;
2bda0e17 152 }
2bda0e17
KB
153#endif
154
dd3c394a
VZ
155 // Without this style, you get unexpected heights, so e.g. constraint layout
156 // doesn't work properly
157 wstyle |= LBS_NOINTEGRALHEIGHT;
158
fe3d9123 159 WXDWORD exStyle = 0;
22a746d7 160 (void) MSWGetStyle(m_windowStyle, & exStyle) ;
2bda0e17 161
223d09f6 162 m_hWnd = (WXHWND)::CreateWindowEx(exStyle, wxT("LISTBOX"), NULL,
fe3d9123 163 wstyle ,
dd3c394a
VZ
164 0, 0, 0, 0,
165 (HWND)parent->GetHWND(), (HMENU)m_windowId,
166 wxGetInstance(), NULL);
1c089c47 167
223d09f6 168 wxCHECK_MSG( m_hWnd, FALSE, wxT("Failed to create listbox") );
1c089c47 169
dd3c394a
VZ
170 // Subclass again to catch messages
171 SubclassWin(m_hWnd);
2bda0e17 172
dd3c394a
VZ
173 size_t ui;
174 for (ui = 0; ui < (size_t)n; ui++) {
175 Append(choices[ui]);
2bda0e17 176 }
2bda0e17 177
dd3c394a 178 if ( (m_windowStyle & wxLB_MULTIPLE) == 0 )
a23fd0e1 179 SendMessage(GetHwnd(), LB_SETCURSEL, 0, 0);
2bda0e17 180
dd3c394a 181 SetFont(parent->GetFont());
2bda0e17 182
dd3c394a 183 SetSize(x, y, width, height);
2bda0e17 184
dd3c394a 185 return TRUE;
2bda0e17
KB
186}
187
bfc6fde4 188wxListBox::~wxListBox()
2bda0e17 189{
baccb514 190 Free();
2bda0e17
KB
191}
192
bfc6fde4 193void wxListBox::SetupColours()
2bda0e17 194{
a756f210 195 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
dd3c394a 196 SetForegroundColour(GetParent()->GetForegroundColour());
2bda0e17
KB
197}
198
2ee3ee1b
VZ
199// ----------------------------------------------------------------------------
200// implementation of wxListBoxBase methods
201// ----------------------------------------------------------------------------
202
203void wxListBox::DoSetFirstItem(int N)
2bda0e17 204{
dd3c394a 205 wxCHECK_RET( N >= 0 && N < m_noItems,
223d09f6 206 wxT("invalid index in wxListBox::SetFirstItem") );
dd3c394a 207
2ee3ee1b 208 SendMessage(GetHwnd(), LB_SETTOPINDEX, (WPARAM)N, (LPARAM)0);
2bda0e17
KB
209}
210
debe6624 211void wxListBox::Delete(int N)
2bda0e17 212{
dd3c394a 213 wxCHECK_RET( N >= 0 && N < m_noItems,
223d09f6 214 wxT("invalid index in wxListBox::Delete") );
dd3c394a 215
07cf98cb
VZ
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 }
6c8a980f 225
a23fd0e1 226 SendMessage(GetHwnd(), LB_DELETESTRING, N, 0);
dd3c394a
VZ
227 m_noItems--;
228
2b5f62a0 229 SetHorizontalExtent(wxEmptyString);
2bda0e17
KB
230}
231
2ee3ee1b 232int wxListBox::DoAppend(const wxString& item)
2bda0e17 233{
a23fd0e1 234 int index = ListBox_AddString(GetHwnd(), item);
2ee3ee1b 235 m_noItems++;
2bda0e17 236
47d67540 237#if wxUSE_OWNER_DRAWN
2bda0e17 238 if ( m_windowStyle & wxLB_OWNERDRAW ) {
2b5f62a0 239 wxOwnerDrawn *pNewItem = CreateLboxItem(index); // dummy argument
dd3c394a 240 pNewItem->SetName(item);
fd7ab28c 241 m_aItems.Insert(pNewItem, index);
a23fd0e1 242 ListBox_SetItemData(GetHwnd(), index, pNewItem);
60c65519 243 pNewItem->SetFont(GetFont());
2bda0e17 244 }
fd7ab28c 245#endif // wxUSE_OWNER_DRAWN
2bda0e17 246
dd3c394a 247 SetHorizontalExtent(item);
dd3c394a 248
2ee3ee1b 249 return index;
2bda0e17
KB
250}
251
2ee3ee1b 252void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
2bda0e17 253{
f6bcfd97
BP
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 }
2ee3ee1b 260
a23fd0e1 261 ListBox_ResetContent(GetHwnd());
2ee3ee1b
VZ
262
263 m_noItems = choices.GetCount();
dd3c394a 264 int i;
2ee3ee1b 265 for (i = 0; i < m_noItems; i++)
dd3c394a 266 {
a23fd0e1 267 ListBox_AddString(GetHwnd(), choices[i]);
dd3c394a 268 if ( clientData )
2ee3ee1b 269 {
2b5f62a0 270 SetClientData(i, clientData[i]);
2ee3ee1b 271 }
dd3c394a 272 }
2bda0e17 273
47d67540 274#if wxUSE_OWNER_DRAWN
2bda0e17 275 if ( m_windowStyle & wxLB_OWNERDRAW ) {
dd3c394a 276 // first delete old items
fd7ab28c 277 WX_CLEAR_ARRAY(m_aItems);
dd3c394a
VZ
278
279 // then create new ones
fd7ab28c 280 for ( size_t ui = 0; ui < (size_t)m_noItems; ui++ ) {
2b5f62a0 281 wxOwnerDrawn *pNewItem = CreateLboxItem(ui);
dd3c394a
VZ
282 pNewItem->SetName(choices[ui]);
283 m_aItems.Add(pNewItem);
a23fd0e1 284 ListBox_SetItemData(GetHwnd(), ui, pNewItem);
dd3c394a 285 }
2bda0e17 286 }
2ee3ee1b
VZ
287#endif // wxUSE_OWNER_DRAWN
288
289 SetHorizontalExtent();
2bda0e17 290
f6bcfd97
BP
291 if ( hideAndShow )
292 {
293 // show the listbox back if we hid it
294 ShowWindow(GetHwnd(), SW_SHOW);
295 }
2bda0e17
KB
296}
297
298int wxListBox::FindString(const wxString& s) const
299{
a23fd0e1 300 int pos = ListBox_FindStringExact(GetHwnd(), (WPARAM)-1, s);
dd3c394a 301 if (pos == LB_ERR)
2ee3ee1b 302 return wxNOT_FOUND;
dd3c394a
VZ
303 else
304 return pos;
2bda0e17
KB
305}
306
bfc6fde4 307void wxListBox::Clear()
2bda0e17 308{
baccb514 309 Free();
8ee9d618
VZ
310
311 ListBox_ResetContent(GetHwnd());
312
313 m_noItems = 0;
314 SetHorizontalExtent();
315}
316
317void wxListBox::Free()
2b273975 318{
dd3c394a 319#if wxUSE_OWNER_DRAWN
185fa6bf
VZ
320 if ( m_windowStyle & wxLB_OWNERDRAW )
321 {
fd7ab28c 322 WX_CLEAR_ARRAY(m_aItems);
185fa6bf
VZ
323 }
324 else
325#endif // wxUSE_OWNER_DRAWN
6c8a980f
VZ
326 if ( HasClientObjectData() )
327 {
328 for ( size_t n = 0; n < (size_t)m_noItems; n++ )
329 {
330 delete GetClientObject(n);
331 }
332 }
2bda0e17 333}
baccb514 334
debe6624 335void wxListBox::SetSelection(int N, bool select)
2bda0e17 336{
dd3c394a 337 wxCHECK_RET( N >= 0 && N < m_noItems,
223d09f6 338 wxT("invalid index in wxListBox::SetSelection") );
dd3c394a 339
2ee3ee1b
VZ
340 if ( HasMultipleSelection() )
341 {
a23fd0e1 342 SendMessage(GetHwnd(), LB_SETSEL, select, N);
2ee3ee1b 343 }
dd3c394a
VZ
344 else
345 {
2ee3ee1b 346 SendMessage(GetHwnd(), LB_SETCURSEL, select ? N : -1, 0);
dd3c394a 347 }
2bda0e17
KB
348}
349
2ee3ee1b 350bool wxListBox::IsSelected(int N) const
2bda0e17 351{
dd3c394a 352 wxCHECK_MSG( N >= 0 && N < m_noItems, FALSE,
223d09f6 353 wxT("invalid index in wxListBox::Selected") );
dd3c394a 354
a23fd0e1 355 return SendMessage(GetHwnd(), LB_GETSEL, N, 0) == 0 ? FALSE : TRUE;
2bda0e17
KB
356}
357
6c8a980f 358wxClientData* wxListBox::DoGetItemClientObject(int n) const
2bda0e17 359{
6c8a980f 360 return (wxClientData *)DoGetItemClientData(n);
2bda0e17
KB
361}
362
6c8a980f 363void *wxListBox::DoGetItemClientData(int n) const
2bda0e17 364{
2ee3ee1b 365 wxCHECK_MSG( n >= 0 && n < m_noItems, NULL,
223d09f6 366 wxT("invalid index in wxListBox::GetClientData") );
dd3c394a 367
2ee3ee1b 368 return (void *)SendMessage(GetHwnd(), LB_GETITEMDATA, n, 0);
2bda0e17
KB
369}
370
6c8a980f 371void wxListBox::DoSetItemClientObject(int n, wxClientData* clientData)
2bda0e17 372{
6c8a980f 373 DoSetItemClientData(n, clientData);
2ee3ee1b
VZ
374}
375
6c8a980f 376void wxListBox::DoSetItemClientData(int n, void *clientData)
2ee3ee1b
VZ
377{
378 wxCHECK_RET( n >= 0 && n < m_noItems,
223d09f6 379 wxT("invalid index in wxListBox::SetClientData") );
dd3c394a 380
2ee3ee1b
VZ
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 )
223d09f6 391 wxLogDebug(wxT("LB_SETITEMDATA failed"));
2bda0e17
KB
392}
393
394// Return number of selections and an array of selected integers
14483330 395int wxListBox::GetSelections(wxArrayInt& aSelections) const
2bda0e17 396{
dd3c394a 397 aSelections.Empty();
14483330 398
2ee3ee1b 399 if ( HasMultipleSelection() )
dd3c394a 400 {
d90879fa
VZ
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];
14483330 409
d90879fa
VZ
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 }
14483330 422
dd3c394a
VZ
423 delete [] selections;
424 }
14483330 425
d90879fa 426 return countSel;
dd3c394a
VZ
427 }
428 else // single-selection listbox
429 {
f6bcfd97
BP
430 if (ListBox_GetCurSel(GetHwnd()) > -1)
431 aSelections.Add(ListBox_GetCurSel(GetHwnd()));
14483330 432
f6bcfd97 433 return aSelections.Count();
dd3c394a 434 }
2bda0e17
KB
435}
436
437// Get single selection, for single choice list items
14483330 438int wxListBox::GetSelection() const
2bda0e17 439{
2ee3ee1b 440 wxCHECK_MSG( !HasMultipleSelection(),
dd3c394a 441 -1,
f6bcfd97 442 wxT("GetSelection() can't be used with multiple-selection listboxes, use GetSelections() instead.") );
14483330 443
a23fd0e1 444 return ListBox_GetCurSel(GetHwnd());
2bda0e17
KB
445}
446
447// Find string for position
debe6624 448wxString wxListBox::GetString(int N) const
2bda0e17 449{
2b5f62a0 450 wxCHECK_MSG( N >= 0 && N < m_noItems, wxEmptyString,
223d09f6 451 wxT("invalid index in wxListBox::GetClientData") );
dd3c394a 452
a23fd0e1 453 int len = ListBox_GetTextLen(GetHwnd(), N);
dd3c394a
VZ
454
455 // +1 for terminating NUL
456 wxString result;
de564874 457 ListBox_GetText(GetHwnd(), N, wxStringBuffer(result, len + 1));
dd3c394a
VZ
458
459 return result;
2bda0e17
KB
460}
461
2ee3ee1b
VZ
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++ )
fd7ab28c
VZ
470 {
471 int idx = ListBox_InsertString(GetHwnd(), i + pos, items[i]);
472
473#if wxUSE_OWNER_DRAWN
9085d634
RD
474 if ( m_windowStyle & wxLB_OWNERDRAW )
475 {
2b5f62a0 476 wxOwnerDrawn *pNewItem = CreateLboxItem(idx);
9085d634
RD
477 pNewItem->SetName(items[i]);
478 pNewItem->SetFont(GetFont());
479 m_aItems.Insert(pNewItem, idx);
fd7ab28c 480
9085d634
RD
481 ListBox_SetItemData(GetHwnd(), idx, pNewItem);
482 }
fd7ab28c
VZ
483#endif // wxUSE_OWNER_DRAWN
484 }
485
2ee3ee1b
VZ
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;
1e6feb95 501 if ( m_clientDataItemsType == wxClientData_Void )
2ee3ee1b 502 oldData = GetClientData(N);
1e6feb95 503 else if ( m_clientDataItemsType == wxClientData_Object )
2ee3ee1b
VZ
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 )
c294f450 527 {
2ee3ee1b
VZ
528 // update item's text
529 m_aItems[N]->SetName(s);
fd7ab28c 530
c294f450
RD
531 // reassign the item's data
532 ListBox_SetItemData(GetHwnd(), N, m_aItems[N]);
533 }
2ee3ee1b
VZ
534#endif //USE_OWNER_DRAWN
535}
536
537int wxListBox::GetCount() const
538{
539 return m_noItems;
540}
541
542// ----------------------------------------------------------------------------
543// helpers
544// ----------------------------------------------------------------------------
545
4438caf4
VZ
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.
2bda0e17
KB
548// Otherwise, all strings are used.
549void wxListBox::SetHorizontalExtent(const wxString& s)
550{
dd3c394a
VZ
551 // Only necessary if we want a horizontal scrollbar
552 if (!(m_windowStyle & wxHSCROLL))
553 return;
554 TEXTMETRIC lpTextMetric;
555
2ee3ee1b 556 if ( !s.IsEmpty() )
2bda0e17 557 {
a23fd0e1
VZ
558 int existingExtent = (int)SendMessage(GetHwnd(), LB_GETHORIZONTALEXTENT, 0, 0L);
559 HDC dc = GetWindowDC(GetHwnd());
dd3c394a
VZ
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;
837e5743 566 ::GetTextExtentPoint(dc, (LPTSTR) (const wxChar *)s, s.Length(), &extentXY);
dd3c394a
VZ
567 int extentX = (int)(extentXY.cx + lpTextMetric.tmAveCharWidth);
568
569 if (oldFont)
570 ::SelectObject(dc, oldFont);
571
a23fd0e1 572 ReleaseDC(GetHwnd(), dc);
dd3c394a 573 if (extentX > existingExtent)
a23fd0e1 574 SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT, LOWORD(extentX), 0L);
dd3c394a
VZ
575 }
576 else
577 {
578 int largestExtent = 0;
a23fd0e1 579 HDC dc = GetWindowDC(GetHwnd());
dd3c394a
VZ
580 HFONT oldFont = 0;
581 if (GetFont().Ok() && GetFont().GetResourceHandle())
582 oldFont = (HFONT) ::SelectObject(dc, (HFONT) GetFont().GetResourceHandle());
583
584 GetTextMetrics(dc, &lpTextMetric);
3e3be693
VZ
585
586 // FIXME: buffer overflow!!
587 wxChar buf[1024];
588 for (int i = 0; i < m_noItems; i++)
dd3c394a 589 {
3e3be693
VZ
590 int len = (int)SendMessage(GetHwnd(), LB_GETTEXT, i, (LPARAM)buf);
591 buf[len] = 0;
dd3c394a 592 SIZE extentXY;
3e3be693 593 ::GetTextExtentPoint(dc, buf, len, &extentXY);
dd3c394a
VZ
594 int extentX = (int)(extentXY.cx + lpTextMetric.tmAveCharWidth);
595 if (extentX > largestExtent)
596 largestExtent = extentX;
597 }
598 if (oldFont)
599 ::SelectObject(dc, oldFont);
600
a23fd0e1
VZ
601 ReleaseDC(GetHwnd(), dc);
602 SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT, LOWORD(largestExtent), 0L);
2bda0e17 603 }
2bda0e17
KB
604}
605
f68586e5 606wxSize wxListBox::DoGetBestSize() const
b908d224
VZ
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
5b6d6b70
VZ
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);
b908d224
VZ
634
635 return wxSize(wListbox, hListbox);
636}
637
2ee3ee1b
VZ
638// ----------------------------------------------------------------------------
639// callbacks
640// ----------------------------------------------------------------------------
641
642bool wxListBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
2bda0e17 643{
bada28f0 644 wxEventType evtType;
8ee9d618 645 if ( param == LBN_SELCHANGE )
2bda0e17 646 {
bada28f0 647 evtType = wxEVT_COMMAND_LISTBOX_SELECTED;
2bda0e17 648 }
8ee9d618 649 else if ( param == LBN_DBLCLK )
2ee3ee1b 650 {
bada28f0
VZ
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 );
8ee9d618 661
9c9c3d7a
VZ
662 // retrieve the affected item
663 int n = SendMessage(GetHwnd(), LB_GETCARETINDEX, 0, 0);
664 if ( n != LB_ERR )
bada28f0 665 {
bada28f0
VZ
666 if ( HasClientObjectData() )
667 event.SetClientObject( GetClientObject(n) );
668 else if ( HasClientUntypedData() )
669 event.SetClientData( GetClientData(n) );
9c9c3d7a 670
bada28f0 671 event.SetString( GetString(n) );
9c9c3d7a 672 event.SetExtraLong( HasMultipleSelection() ? IsSelected(n) : TRUE );
bada28f0
VZ
673 }
674
675 event.m_commandInt = n;
2ee3ee1b 676
bada28f0 677 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
678}
679
2ee3ee1b
VZ
680// ----------------------------------------------------------------------------
681// wxCheckListBox support
682// ----------------------------------------------------------------------------
2bda0e17 683
47d67540 684#if wxUSE_OWNER_DRAWN
2bda0e17
KB
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
dd3c394a
VZ
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!
2bda0e17
KB
698bool wxListBox::MSWOnMeasure(WXMEASUREITEMSTRUCT *item)
699{
dd3c394a
VZ
700 // only owner-drawn control should receive this message
701 wxCHECK( ((m_windowStyle & wxLB_OWNERDRAW) == wxLB_OWNERDRAW), FALSE );
2bda0e17 702
dd3c394a 703 MEASUREITEMSTRUCT *pStruct = (MEASUREITEMSTRUCT *)item;
2bda0e17 704
4676948b
JS
705#ifdef __WXWINCE__
706 HDC hdc = GetDC(NULL);
707#else
07cf98cb 708 HDC hdc = CreateIC(wxT("DISPLAY"), NULL, NULL, 0);
4676948b 709#endif
07cf98cb 710
dd3c394a 711 wxDC dc;
07cf98cb 712 dc.SetHDC((WXHDC)hdc);
a756f210 713 dc.SetFont(wxSystemSettings::GetFont(wxSYS_ANSI_VAR_FONT));
2bda0e17 714
dd3c394a
VZ
715 pStruct->itemHeight = dc.GetCharHeight() + 2*OWNER_DRAWN_LISTBOX_EXTRA_SPACE;
716 pStruct->itemWidth = dc.GetCharWidth();
2bda0e17 717
07cf98cb
VZ
718 dc.SetHDC(0);
719
720 DeleteDC(hdc);
721
dd3c394a 722 return TRUE;
2bda0e17
KB
723}
724
725// forward the message to the appropriate item
726bool wxListBox::MSWOnDraw(WXDRAWITEMSTRUCT *item)
727{
dd3c394a
VZ
728 // only owner-drawn control should receive this message
729 wxCHECK( ((m_windowStyle & wxLB_OWNERDRAW) == wxLB_OWNERDRAW), FALSE );
730
731 DRAWITEMSTRUCT *pStruct = (DRAWITEMSTRUCT *)item;
f6bcfd97
BP
732 UINT itemID = pStruct->itemID;
733
734 // the item may be -1 for an empty listbox
735 if ( itemID == (UINT)-1 )
736 return FALSE;
dd3c394a 737
a23fd0e1 738 long data = ListBox_GetItemData(GetHwnd(), pStruct->itemID);
2bda0e17 739
dd3c394a 740 wxCHECK( data && (data != LB_ERR), FALSE );
2bda0e17 741
dd3c394a 742 wxListBoxItem *pItem = (wxListBoxItem *)data;
2bda0e17 743
7561aacd 744 wxDCTemp dc((WXHDC)pStruct->hDC);
dd3c394a 745 wxRect rect(wxPoint(pStruct->rcItem.left, pStruct->rcItem.top),
f6bcfd97 746 wxPoint(pStruct->rcItem.right, pStruct->rcItem.bottom));
2bda0e17 747
dd3c394a 748 return pItem->OnDrawItem(dc, rect,
7561aacd
VZ
749 (wxOwnerDrawn::wxODAction)pStruct->itemAction,
750 (wxOwnerDrawn::wxODStatus)pStruct->itemState);
2bda0e17
KB
751}
752
1e6feb95
VZ
753#endif // wxUSE_OWNER_DRAWN
754
755#endif // wxUSE_LISTBOX