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