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