]>
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 | |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
2bda0e17 KB |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
dd3c394a | 16 | #pragma hdrstop |
2bda0e17 KB |
17 | #endif |
18 | ||
1e6feb95 | 19 | #if wxUSE_LISTBOX |
0c589ad0 | 20 | |
2a673eb1 WS |
21 | #include "wx/listbox.h" |
22 | ||
2bda0e17 | 23 | #ifndef WX_PRECOMP |
ad9835c9 | 24 | #include "wx/dynarray.h" |
ad9835c9 WS |
25 | #include "wx/settings.h" |
26 | #include "wx/brush.h" | |
27 | #include "wx/font.h" | |
28 | #include "wx/dc.h" | |
29 | #include "wx/utils.h" | |
e4db172a | 30 | #include "wx/log.h" |
cdccdfab | 31 | #include "wx/window.h" |
2bda0e17 KB |
32 | #endif |
33 | ||
1e6feb95 | 34 | #include "wx/msw/private.h" |
74052fe8 | 35 | #include "wx/msw/dc.h" |
1e6feb95 | 36 | |
5ea105e0 RR |
37 | #include <windowsx.h> |
38 | ||
0c589ad0 BM |
39 | #if wxUSE_OWNER_DRAWN |
40 | #include "wx/ownerdrw.h" | |
41 | #endif | |
2bda0e17 | 42 | |
2bda0e17 KB |
43 | // ============================================================================ |
44 | // list box item declaration and implementation | |
45 | // ============================================================================ | |
46 | ||
47d67540 | 47 | #if wxUSE_OWNER_DRAWN |
2bda0e17 KB |
48 | |
49 | class wxListBoxItem : public wxOwnerDrawn | |
50 | { | |
51 | public: | |
98fbab9e VZ |
52 | wxListBoxItem(wxListBox *parent) |
53 | { m_parent = parent; } | |
2bda0e17 | 54 | |
98fbab9e VZ |
55 | wxListBox *GetParent() const |
56 | { return m_parent; } | |
57 | ||
58 | int GetIndex() const | |
59 | { return m_parent->GetItemIndex(const_cast<wxListBoxItem*>(this)); } | |
60 | ||
61 | wxString GetName() const | |
62 | { return m_parent->GetString(GetIndex()); } | |
63 | ||
64 | private: | |
65 | wxListBox *m_parent; | |
66 | }; | |
2bda0e17 | 67 | |
2b5f62a0 | 68 | wxOwnerDrawn *wxListBox::CreateLboxItem(size_t WXUNUSED(n)) |
2bda0e17 | 69 | { |
98fbab9e | 70 | return new wxListBoxItem(this); |
2bda0e17 KB |
71 | } |
72 | ||
73 | #endif //USE_OWNER_DRAWN | |
74 | ||
75 | // ============================================================================ | |
76 | // list box control implementation | |
77 | // ============================================================================ | |
78 | ||
2ee3ee1b VZ |
79 | // ---------------------------------------------------------------------------- |
80 | // creation | |
81 | // ---------------------------------------------------------------------------- | |
dd3c394a | 82 | |
096d5447 | 83 | void wxListBox::Init() |
2bda0e17 | 84 | { |
dd3c394a | 85 | m_noItems = 0; |
1ddb283a | 86 | m_updateHorizontalExtent = false; |
f2eb4ad2 | 87 | m_selectedByKeyboard = false; |
2bda0e17 KB |
88 | } |
89 | ||
dd3c394a VZ |
90 | bool wxListBox::Create(wxWindow *parent, |
91 | wxWindowID id, | |
2bda0e17 KB |
92 | const wxPoint& pos, |
93 | const wxSize& size, | |
debe6624 JS |
94 | int n, const wxString choices[], |
95 | long style, | |
56a44c64 | 96 | const wxValidator& validator, |
2bda0e17 KB |
97 | const wxString& name) |
98 | { | |
7a69cd96 VZ |
99 | // initialize base class fields |
100 | if ( !CreateControl(parent, id, pos, size, style, validator, name) ) | |
101 | return false; | |
2bda0e17 | 102 | |
7a69cd96 | 103 | // create the native control |
9a83f860 | 104 | if ( !MSWCreateControl(wxT("LISTBOX"), wxEmptyString, pos, size) ) |
7a69cd96 VZ |
105 | { |
106 | // control creation failed | |
107 | return false; | |
2bda0e17 | 108 | } |
1c089c47 | 109 | |
7a69cd96 VZ |
110 | // initialize the contents |
111 | for ( int i = 0; i < n; i++ ) | |
112 | { | |
113 | Append(choices[i]); | |
2bda0e17 | 114 | } |
2bda0e17 | 115 | |
f022dc23 | 116 | // now we can compute our best size correctly, so do it again |
170acdc9 | 117 | SetInitialSize(size); |
7ec5921d | 118 | |
7a69cd96 | 119 | return true; |
2bda0e17 KB |
120 | } |
121 | ||
584ad2a3 MB |
122 | bool wxListBox::Create(wxWindow *parent, |
123 | wxWindowID id, | |
124 | const wxPoint& pos, | |
125 | const wxSize& size, | |
126 | const wxArrayString& choices, | |
127 | long style, | |
76efbc2a | 128 | const wxValidator& validator, |
584ad2a3 MB |
129 | const wxString& name) |
130 | { | |
131 | wxCArrayString chs(choices); | |
132 | return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(), | |
133 | style, validator, name); | |
134 | } | |
135 | ||
bfc6fde4 | 136 | wxListBox::~wxListBox() |
2bda0e17 | 137 | { |
ad998d78 | 138 | Clear(); |
2bda0e17 KB |
139 | } |
140 | ||
7a69cd96 | 141 | WXDWORD wxListBox::MSWGetStyle(long style, WXDWORD *exstyle) const |
2bda0e17 | 142 | { |
7a69cd96 VZ |
143 | WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle); |
144 | ||
145 | // we always want to get the notifications | |
146 | msStyle |= LBS_NOTIFY; | |
147 | ||
148 | // without this style, you get unexpected heights, so e.g. constraint | |
149 | // layout doesn't work properly | |
150 | msStyle |= LBS_NOINTEGRALHEIGHT; | |
151 | ||
152 | wxASSERT_MSG( !(style & wxLB_MULTIPLE) || !(style & wxLB_EXTENDED), | |
9a83f860 | 153 | wxT("only one of listbox selection modes can be specified") ); |
7a69cd96 VZ |
154 | |
155 | if ( style & wxLB_MULTIPLE ) | |
156 | msStyle |= LBS_MULTIPLESEL; | |
157 | else if ( style & wxLB_EXTENDED ) | |
158 | msStyle |= LBS_EXTENDEDSEL; | |
159 | ||
58dcd1ae | 160 | wxASSERT_MSG( !(style & wxLB_ALWAYS_SB) || !(style & wxLB_NO_SB), |
9a83f860 | 161 | wxT( "Conflicting styles wxLB_ALWAYS_SB and wxLB_NO_SB." ) ); |
58dcd1ae VZ |
162 | |
163 | if ( !(style & wxLB_NO_SB) ) | |
164 | { | |
165 | msStyle |= WS_VSCROLL; | |
166 | if ( style & wxLB_ALWAYS_SB ) | |
167 | msStyle |= LBS_DISABLENOSCROLL; | |
168 | } | |
169 | ||
7a69cd96 VZ |
170 | if ( m_windowStyle & wxLB_HSCROLL ) |
171 | msStyle |= WS_HSCROLL; | |
172 | if ( m_windowStyle & wxLB_SORT ) | |
173 | msStyle |= LBS_SORT; | |
174 | ||
175 | #if wxUSE_OWNER_DRAWN && !defined(__WXWINCE__) | |
176 | if ( m_windowStyle & wxLB_OWNERDRAW ) | |
177 | { | |
178 | // we don't support LBS_OWNERDRAWVARIABLE yet and we also always put | |
179 | // the strings in the listbox for simplicity even though we could have | |
180 | // avoided it in this case | |
181 | msStyle |= LBS_OWNERDRAWFIXED | LBS_HASSTRINGS; | |
182 | } | |
183 | #endif // wxUSE_OWNER_DRAWN | |
184 | ||
185 | return msStyle; | |
2bda0e17 KB |
186 | } |
187 | ||
1ddb283a RR |
188 | void wxListBox::OnInternalIdle() |
189 | { | |
190 | wxWindow::OnInternalIdle(); | |
03647350 | 191 | |
1ddb283a RR |
192 | if (m_updateHorizontalExtent) |
193 | { | |
194 | SetHorizontalExtent(wxEmptyString); | |
195 | m_updateHorizontalExtent = false; | |
196 | } | |
197 | } | |
198 | ||
316bba0c VZ |
199 | void wxListBox::MSWOnItemsChanged() |
200 | { | |
201 | // we need to do two things when items change: update their max horizontal | |
202 | // extent so that horizontal scrollbar could be shown or hidden as | |
203 | // appropriate and also invlaidate the best size | |
204 | // | |
205 | // updating the max extent is slow (it's an O(N) operation) and so we defer | |
206 | // it until the idle time but the best size should be invalidated | |
207 | // immediately doing it in idle time is too late -- layout using incorrect | |
208 | // old best size will have been already done by then | |
209 | ||
210 | m_updateHorizontalExtent = true; | |
211 | ||
212 | InvalidateBestSize(); | |
213 | } | |
214 | ||
2ee3ee1b VZ |
215 | // ---------------------------------------------------------------------------- |
216 | // implementation of wxListBoxBase methods | |
217 | // ---------------------------------------------------------------------------- | |
218 | ||
219 | void wxListBox::DoSetFirstItem(int N) | |
2bda0e17 | 220 | { |
8228b893 | 221 | wxCHECK_RET( IsValid(N), |
223d09f6 | 222 | wxT("invalid index in wxListBox::SetFirstItem") ); |
dd3c394a | 223 | |
2ee3ee1b | 224 | SendMessage(GetHwnd(), LB_SETTOPINDEX, (WPARAM)N, (LPARAM)0); |
2bda0e17 KB |
225 | } |
226 | ||
a236aa20 | 227 | void wxListBox::DoDeleteOneItem(unsigned int n) |
2bda0e17 | 228 | { |
aa61d352 | 229 | wxCHECK_RET( IsValid(n), |
223d09f6 | 230 | wxT("invalid index in wxListBox::Delete") ); |
dd3c394a | 231 | |
98fbab9e | 232 | #if wxUSE_OWNER_DRAWN |
e1009295 VZ |
233 | if ( HasFlag(wxLB_OWNERDRAW) ) |
234 | { | |
235 | delete m_aItems[n]; | |
236 | m_aItems.RemoveAt(n); | |
237 | } | |
98fbab9e VZ |
238 | #endif // wxUSE_OWNER_DRAWN |
239 | ||
aa61d352 | 240 | SendMessage(GetHwnd(), LB_DELETESTRING, n, 0); |
dd3c394a VZ |
241 | m_noItems--; |
242 | ||
316bba0c | 243 | MSWOnItemsChanged(); |
84c5c49b RR |
244 | |
245 | UpdateOldSelections(); | |
2bda0e17 KB |
246 | } |
247 | ||
11e62fe6 | 248 | int wxListBox::FindString(const wxString& s, bool bCase) const |
2bda0e17 | 249 | { |
11e62fe6 WS |
250 | // back to base class search for not native search type |
251 | if (bCase) | |
252 | return wxItemContainerImmutable::FindString( s, bCase ); | |
253 | ||
017dc06b | 254 | int pos = ListBox_FindStringExact(GetHwnd(), -1, s.t_str()); |
dd3c394a | 255 | if (pos == LB_ERR) |
2ee3ee1b | 256 | return wxNOT_FOUND; |
dd3c394a VZ |
257 | else |
258 | return pos; | |
2bda0e17 KB |
259 | } |
260 | ||
a236aa20 | 261 | void wxListBox::DoClear() |
2bda0e17 | 262 | { |
98fbab9e | 263 | #if wxUSE_OWNER_DRAWN |
e1009295 | 264 | if ( HasFlag(wxLB_OWNERDRAW) ) |
98fbab9e VZ |
265 | { |
266 | WX_CLEAR_ARRAY(m_aItems); | |
267 | } | |
268 | #endif // wxUSE_OWNER_DRAWN | |
8ee9d618 VZ |
269 | |
270 | ListBox_ResetContent(GetHwnd()); | |
271 | ||
272 | m_noItems = 0; | |
316bba0c | 273 | MSWOnItemsChanged(); |
84c5c49b RR |
274 | |
275 | UpdateOldSelections(); | |
8ee9d618 VZ |
276 | } |
277 | ||
c6179a84 | 278 | void wxListBox::DoSetSelection(int N, bool select) |
2bda0e17 | 279 | { |
8228b893 | 280 | wxCHECK_RET( N == wxNOT_FOUND || IsValid(N), |
223d09f6 | 281 | wxT("invalid index in wxListBox::SetSelection") ); |
dd3c394a | 282 | |
2ee3ee1b VZ |
283 | if ( HasMultipleSelection() ) |
284 | { | |
bbb03ec9 VZ |
285 | // Setting selection to -1 should deselect everything. |
286 | const bool deselectAll = N == wxNOT_FOUND; | |
287 | SendMessage(GetHwnd(), LB_SETSEL, | |
288 | deselectAll ? FALSE : select, | |
289 | deselectAll ? -1 : N); | |
2ee3ee1b | 290 | } |
dd3c394a VZ |
291 | else |
292 | { | |
2ee3ee1b | 293 | SendMessage(GetHwnd(), LB_SETCURSEL, select ? N : -1, 0); |
dd3c394a | 294 | } |
84c5c49b RR |
295 | |
296 | UpdateOldSelections(); | |
2bda0e17 KB |
297 | } |
298 | ||
2ee3ee1b | 299 | bool wxListBox::IsSelected(int N) const |
2bda0e17 | 300 | { |
8228b893 | 301 | wxCHECK_MSG( IsValid(N), false, |
223d09f6 | 302 | wxT("invalid index in wxListBox::Selected") ); |
dd3c394a | 303 | |
598ddd96 | 304 | return SendMessage(GetHwnd(), LB_GETSEL, N, 0) == 0 ? false : true; |
2bda0e17 KB |
305 | } |
306 | ||
aa61d352 | 307 | void *wxListBox::DoGetItemClientData(unsigned int n) const |
2bda0e17 | 308 | { |
6f46510c VZ |
309 | LPARAM rc = SendMessage(GetHwnd(), LB_GETITEMDATA, n, 0); |
310 | if ( rc == LB_ERR && GetLastError() != ERROR_SUCCESS ) | |
311 | { | |
312 | wxLogLastError(wxT("LB_GETITEMDATA")); | |
313 | ||
314 | return NULL; | |
315 | } | |
316 | ||
317 | return (void *)rc; | |
2bda0e17 KB |
318 | } |
319 | ||
aa61d352 | 320 | void wxListBox::DoSetItemClientData(unsigned int n, void *clientData) |
2ee3ee1b | 321 | { |
2ee3ee1b | 322 | if ( ListBox_SetItemData(GetHwnd(), n, clientData) == LB_ERR ) |
43b2d5e7 | 323 | { |
223d09f6 | 324 | wxLogDebug(wxT("LB_SETITEMDATA failed")); |
43b2d5e7 | 325 | } |
2bda0e17 KB |
326 | } |
327 | ||
328 | // Return number of selections and an array of selected integers | |
14483330 | 329 | int wxListBox::GetSelections(wxArrayInt& aSelections) const |
2bda0e17 | 330 | { |
dd3c394a | 331 | aSelections.Empty(); |
14483330 | 332 | |
2ee3ee1b | 333 | if ( HasMultipleSelection() ) |
dd3c394a | 334 | { |
d90879fa VZ |
335 | int countSel = ListBox_GetSelCount(GetHwnd()); |
336 | if ( countSel == LB_ERR ) | |
337 | { | |
9a83f860 | 338 | wxLogDebug(wxT("ListBox_GetSelCount failed")); |
d90879fa VZ |
339 | } |
340 | else if ( countSel != 0 ) | |
341 | { | |
342 | int *selections = new int[countSel]; | |
14483330 | 343 | |
d90879fa VZ |
344 | if ( ListBox_GetSelItems(GetHwnd(), |
345 | countSel, selections) == LB_ERR ) | |
346 | { | |
347 | wxLogDebug(wxT("ListBox_GetSelItems failed")); | |
348 | countSel = -1; | |
349 | } | |
350 | else | |
351 | { | |
352 | aSelections.Alloc(countSel); | |
353 | for ( int n = 0; n < countSel; n++ ) | |
354 | aSelections.Add(selections[n]); | |
355 | } | |
14483330 | 356 | |
dd3c394a VZ |
357 | delete [] selections; |
358 | } | |
14483330 | 359 | |
d90879fa | 360 | return countSel; |
dd3c394a VZ |
361 | } |
362 | else // single-selection listbox | |
363 | { | |
f6bcfd97 BP |
364 | if (ListBox_GetCurSel(GetHwnd()) > -1) |
365 | aSelections.Add(ListBox_GetCurSel(GetHwnd())); | |
14483330 | 366 | |
f6bcfd97 | 367 | return aSelections.Count(); |
dd3c394a | 368 | } |
2bda0e17 KB |
369 | } |
370 | ||
371 | // Get single selection, for single choice list items | |
14483330 | 372 | int wxListBox::GetSelection() const |
2bda0e17 | 373 | { |
2ee3ee1b | 374 | wxCHECK_MSG( !HasMultipleSelection(), |
dd3c394a | 375 | -1, |
f6bcfd97 | 376 | wxT("GetSelection() can't be used with multiple-selection listboxes, use GetSelections() instead.") ); |
14483330 | 377 | |
a23fd0e1 | 378 | return ListBox_GetCurSel(GetHwnd()); |
2bda0e17 KB |
379 | } |
380 | ||
381 | // Find string for position | |
aa61d352 | 382 | wxString wxListBox::GetString(unsigned int n) const |
2bda0e17 | 383 | { |
aa61d352 | 384 | wxCHECK_MSG( IsValid(n), wxEmptyString, |
66cf41cb | 385 | wxT("invalid index in wxListBox::GetString") ); |
dd3c394a | 386 | |
aa61d352 | 387 | int len = ListBox_GetTextLen(GetHwnd(), n); |
dd3c394a VZ |
388 | |
389 | // +1 for terminating NUL | |
390 | wxString result; | |
aa61d352 | 391 | ListBox_GetText(GetHwnd(), n, (wxChar*)wxStringBuffer(result, len + 1)); |
dd3c394a VZ |
392 | |
393 | return result; | |
2bda0e17 KB |
394 | } |
395 | ||
a236aa20 VZ |
396 | int wxListBox::DoInsertItems(const wxArrayStringsAdapter & items, |
397 | unsigned int pos, | |
398 | void **clientData, | |
399 | wxClientDataType type) | |
2ee3ee1b | 400 | { |
a236aa20 VZ |
401 | MSWAllocStorage(items, LB_INITSTORAGE); |
402 | ||
403 | const bool append = pos == GetCount(); | |
404 | ||
405 | // we must use CB_ADDSTRING when appending as only it works correctly for | |
406 | // the sorted controls | |
407 | const unsigned msg = append ? LB_ADDSTRING : LB_INSERTSTRING; | |
2ee3ee1b | 408 | |
a236aa20 VZ |
409 | if ( append ) |
410 | pos = 0; | |
411 | ||
412 | int n = wxNOT_FOUND; | |
413 | ||
414 | const unsigned int numItems = items.GetCount(); | |
415 | for ( unsigned int i = 0; i < numItems; i++ ) | |
fd7ab28c | 416 | { |
a236aa20 VZ |
417 | n = MSWInsertOrAppendItem(pos, items[i], msg); |
418 | if ( n == wxNOT_FOUND ) | |
419 | return n; | |
420 | ||
421 | if ( !append ) | |
422 | pos++; | |
423 | ||
424 | ++m_noItems; | |
fd7ab28c VZ |
425 | |
426 | #if wxUSE_OWNER_DRAWN | |
a236aa20 | 427 | if ( HasFlag(wxLB_OWNERDRAW) ) |
9085d634 | 428 | { |
a236aa20 | 429 | wxOwnerDrawn *pNewItem = CreateLboxItem(n); |
9085d634 | 430 | pNewItem->SetFont(GetFont()); |
a236aa20 | 431 | m_aItems.Insert(pNewItem, n); |
9085d634 | 432 | } |
fd7ab28c | 433 | #endif // wxUSE_OWNER_DRAWN |
a236aa20 | 434 | AssignNewItemClientData(n, clientData, i, type); |
fd7ab28c VZ |
435 | } |
436 | ||
316bba0c | 437 | MSWOnItemsChanged(); |
a236aa20 | 438 | |
84c5c49b RR |
439 | UpdateOldSelections(); |
440 | ||
a236aa20 | 441 | return n; |
2ee3ee1b VZ |
442 | } |
443 | ||
85ee88cd | 444 | int wxListBox::DoHitTestList(const wxPoint& point) const |
c00fed0e | 445 | { |
44e7bad0 VZ |
446 | LRESULT lRes = ::SendMessage(GetHwnd(), LB_ITEMFROMPOINT, |
447 | 0, MAKELPARAM(point.x, point.y)); | |
c00fed0e VZ |
448 | |
449 | // non zero high-order word means that this item is outside of the client | |
450 | // area, IOW the point is outside of the listbox | |
44e7bad0 | 451 | return HIWORD(lRes) ? wxNOT_FOUND : LOWORD(lRes); |
c00fed0e VZ |
452 | } |
453 | ||
aa61d352 | 454 | void wxListBox::SetString(unsigned int n, const wxString& s) |
2ee3ee1b | 455 | { |
aa61d352 | 456 | wxCHECK_RET( IsValid(n), |
2ee3ee1b VZ |
457 | wxT("invalid index in wxListBox::SetString") ); |
458 | ||
459 | // remember the state of the item | |
aa61d352 | 460 | bool wasSelected = IsSelected(n); |
2ee3ee1b VZ |
461 | |
462 | void *oldData = NULL; | |
463 | wxClientData *oldObjData = NULL; | |
b4a11fe8 | 464 | if ( HasClientUntypedData() ) |
aa61d352 | 465 | oldData = GetClientData(n); |
b4a11fe8 | 466 | else if ( HasClientObjectData() ) |
aa61d352 | 467 | oldObjData = GetClientObject(n); |
2ee3ee1b VZ |
468 | |
469 | // delete and recreate it | |
aa61d352 | 470 | SendMessage(GetHwnd(), LB_DELETESTRING, n, 0); |
2ee3ee1b | 471 | |
aa61d352 VZ |
472 | int newN = n; |
473 | if ( n == (m_noItems - 1) ) | |
2ee3ee1b VZ |
474 | newN = -1; |
475 | ||
017dc06b | 476 | ListBox_InsertString(GetHwnd(), newN, s.t_str()); |
2ee3ee1b VZ |
477 | |
478 | // restore the client data | |
479 | if ( oldData ) | |
aa61d352 | 480 | SetClientData(n, oldData); |
2ee3ee1b | 481 | else if ( oldObjData ) |
aa61d352 | 482 | SetClientObject(n, oldObjData); |
2ee3ee1b | 483 | |
781bdbb4 JS |
484 | // we may have lost the selection |
485 | if ( wasSelected ) | |
aa61d352 | 486 | Select(n); |
31582e4e | 487 | |
316bba0c | 488 | MSWOnItemsChanged(); |
2ee3ee1b VZ |
489 | } |
490 | ||
aa61d352 | 491 | unsigned int wxListBox::GetCount() const |
2ee3ee1b VZ |
492 | { |
493 | return m_noItems; | |
494 | } | |
495 | ||
496 | // ---------------------------------------------------------------------------- | |
fca418ae | 497 | // size-related stuff |
2ee3ee1b VZ |
498 | // ---------------------------------------------------------------------------- |
499 | ||
2bda0e17 KB |
500 | void wxListBox::SetHorizontalExtent(const wxString& s) |
501 | { | |
fca418ae VZ |
502 | // the rest is only necessary if we want a horizontal scrollbar |
503 | if ( !HasFlag(wxHSCROLL) ) | |
dd3c394a | 504 | return; |
dd3c394a | 505 | |
dd3c394a | 506 | |
fca418ae VZ |
507 | WindowHDC dc(GetHwnd()); |
508 | SelectInHDC selFont(dc, GetHfontOf(GetFont())); | |
dd3c394a | 509 | |
fca418ae VZ |
510 | TEXTMETRIC lpTextMetric; |
511 | ::GetTextMetrics(dc, &lpTextMetric); | |
dd3c394a | 512 | |
fca418ae VZ |
513 | int largestExtent = 0; |
514 | SIZE extentXY; | |
3e3be693 | 515 | |
fca418ae VZ |
516 | if ( s.empty() ) |
517 | { | |
518 | // set extent to the max length of all strings | |
519 | for ( unsigned int i = 0; i < m_noItems; i++ ) | |
dd3c394a | 520 | { |
fca418ae | 521 | const wxString str = GetString(i); |
767b35a5 | 522 | ::GetTextExtentPoint32(dc, str.c_str(), str.length(), &extentXY); |
fca418ae | 523 | |
dd3c394a | 524 | int extentX = (int)(extentXY.cx + lpTextMetric.tmAveCharWidth); |
fca418ae | 525 | if ( extentX > largestExtent ) |
dd3c394a VZ |
526 | largestExtent = extentX; |
527 | } | |
fca418ae VZ |
528 | } |
529 | else // just increase the extent to the length of this string | |
530 | { | |
531 | int existingExtent = (int)SendMessage(GetHwnd(), | |
532 | LB_GETHORIZONTALEXTENT, 0, 0L); | |
dd3c394a | 533 | |
fca418ae VZ |
534 | ::GetTextExtentPoint32(dc, s.c_str(), s.length(), &extentXY); |
535 | ||
536 | int extentX = (int)(extentXY.cx + lpTextMetric.tmAveCharWidth); | |
537 | if ( extentX > existingExtent ) | |
538 | largestExtent = extentX; | |
2bda0e17 | 539 | } |
fca418ae VZ |
540 | |
541 | if ( largestExtent ) | |
542 | SendMessage(GetHwnd(), LB_SETHORIZONTALEXTENT, LOWORD(largestExtent), 0L); | |
543 | //else: it shouldn't change | |
2bda0e17 KB |
544 | } |
545 | ||
743b4266 | 546 | wxSize wxListBox::DoGetBestClientSize() const |
b908d224 VZ |
547 | { |
548 | // find the widest string | |
549 | int wLine; | |
550 | int wListbox = 0; | |
aa61d352 | 551 | for (unsigned int i = 0; i < m_noItems; i++) |
b908d224 VZ |
552 | { |
553 | wxString str(GetString(i)); | |
554 | GetTextExtent(str, &wLine, NULL); | |
555 | if ( wLine > wListbox ) | |
556 | wListbox = wLine; | |
557 | } | |
558 | ||
559 | // give it some reasonable default value if there are no strings in the | |
560 | // list | |
561 | if ( wListbox == 0 ) | |
562 | wListbox = 100; | |
563 | ||
564 | // the listbox should be slightly larger than the widest string | |
743b4266 | 565 | wListbox += 3*GetCharWidth(); |
b908d224 | 566 | |
743b4266 | 567 | // add room for the scrollbar |
908f91bc RD |
568 | wListbox += wxSystemSettings::GetMetric(wxSYS_VSCROLL_X); |
569 | ||
5b6d6b70 VZ |
570 | // don't make the listbox too tall (limit height to 10 items) but don't |
571 | // make it too small neither | |
743b4266 | 572 | int hListbox = SendMessage(GetHwnd(), LB_GETITEMHEIGHT, 0, 0)* |
5b6d6b70 | 573 | wxMin(wxMax(m_noItems, 3), 10); |
b908d224 | 574 | |
743b4266 | 575 | return wxSize(wListbox, hListbox); |
b908d224 VZ |
576 | } |
577 | ||
2ee3ee1b VZ |
578 | // ---------------------------------------------------------------------------- |
579 | // callbacks | |
580 | // ---------------------------------------------------------------------------- | |
581 | ||
582 | bool wxListBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id)) | |
2bda0e17 | 583 | { |
bada28f0 | 584 | wxEventType evtType; |
f2eb4ad2 | 585 | int n = wxNOT_FOUND; |
8ee9d618 | 586 | if ( param == LBN_SELCHANGE ) |
2bda0e17 | 587 | { |
53f60d4a VZ |
588 | if ( HasMultipleSelection() ) |
589 | return CalcAndSendEvent(); | |
590 | ||
bada28f0 | 591 | evtType = wxEVT_COMMAND_LISTBOX_SELECTED; |
44e7bad0 | 592 | |
f2eb4ad2 VZ |
593 | if ( m_selectedByKeyboard ) |
594 | { | |
595 | // We shouldn't use the mouse position to find the item as mouse | |
596 | // can be anywhere, ask the listbox itself. Notice that this can't | |
597 | // be used when the item is selected using the mouse however as | |
598 | // LB_GETCARETINDEX will always return a valid item, even if the | |
599 | // mouse is clicked below all the items, which is why we find the | |
600 | // item ourselves below in this case. | |
601 | n = SendMessage(GetHwnd(), LB_GETCARETINDEX, 0, 0); | |
602 | } | |
f186bd4d | 603 | //else: n will be determined below from the mouse position |
2bda0e17 | 604 | } |
8ee9d618 | 605 | else if ( param == LBN_DBLCLK ) |
2ee3ee1b | 606 | { |
bada28f0 VZ |
607 | evtType = wxEVT_COMMAND_LISTBOX_DOUBLECLICKED; |
608 | } | |
609 | else | |
610 | { | |
611 | // some event we're not interested in | |
598ddd96 | 612 | return false; |
bada28f0 VZ |
613 | } |
614 | ||
f186bd4d VZ |
615 | // Find the item position if it was a mouse-generated selection event or a |
616 | // double click event (which is always generated using the mouse) | |
617 | if ( n == wxNOT_FOUND ) | |
618 | { | |
619 | const DWORD pos = ::GetMessagePos(); | |
620 | const wxPoint pt(GET_X_LPARAM(pos), GET_Y_LPARAM(pos)); | |
621 | n = HitTest(ScreenToClient(wxPoint(pt))); | |
622 | } | |
623 | ||
624 | // We get events even when mouse is clicked outside of any valid item from | |
625 | // Windows, just ignore them. | |
c07b0669 VZ |
626 | if ( n == wxNOT_FOUND ) |
627 | return false; | |
628 | ||
c07b0669 VZ |
629 | if ( param == LBN_SELCHANGE ) |
630 | { | |
24ee1bef | 631 | if ( !DoChangeSingleSelection(n) ) |
c07b0669 | 632 | return false; |
c07b0669 VZ |
633 | } |
634 | ||
635 | // Do generate an event otherwise. | |
636 | return SendEvent(evtType, n, true /* selection */); | |
2bda0e17 KB |
637 | } |
638 | ||
f2eb4ad2 VZ |
639 | WXLRESULT |
640 | wxListBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) | |
641 | { | |
642 | // Remember whether there was a keyboard or mouse event before | |
643 | // LBN_SELCHANGE: this allows us to correctly determine the item affected | |
644 | // by it in MSWCommand() above in any case. | |
645 | if ( WM_KEYFIRST <= nMsg && nMsg <= WM_KEYLAST ) | |
646 | m_selectedByKeyboard = true; | |
647 | else if ( WM_MOUSEFIRST <= nMsg && nMsg <= WM_MOUSELAST ) | |
648 | m_selectedByKeyboard = false; | |
649 | ||
650 | return wxListBoxBase::MSWWindowProc(nMsg, wParam, lParam); | |
651 | } | |
652 | ||
2ee3ee1b | 653 | // ---------------------------------------------------------------------------- |
e1009295 | 654 | // owner-drawn list boxes support |
2ee3ee1b | 655 | // ---------------------------------------------------------------------------- |
2bda0e17 | 656 | |
47d67540 | 657 | #if wxUSE_OWNER_DRAWN |
2bda0e17 | 658 | |
85ee88cd VZ |
659 | // misc overloaded methods |
660 | // ----------------------- | |
661 | ||
85ee88cd VZ |
662 | bool wxListBox::SetFont(const wxFont &font) |
663 | { | |
e1009295 VZ |
664 | if ( HasFlag(wxLB_OWNERDRAW) ) |
665 | { | |
666 | const unsigned count = m_aItems.GetCount(); | |
667 | for ( unsigned i = 0; i < count; i++ ) | |
668 | m_aItems[i]->SetFont(font); | |
669 | } | |
85ee88cd VZ |
670 | |
671 | wxListBoxBase::SetFont(font); | |
672 | ||
673 | return true; | |
674 | } | |
675 | ||
676 | bool wxListBox::GetItemRect(size_t n, wxRect& rect) const | |
677 | { | |
678 | wxCHECK_MSG( IsValid(n), false, | |
679 | wxT("invalid index in wxListBox::GetItemRect") ); | |
680 | ||
681 | RECT rc; | |
682 | ||
683 | if ( ListBox_GetItemRect(GetHwnd(), n, &rc) != LB_ERR ) | |
684 | { | |
685 | rect = wxRectFromRECT(rc); | |
686 | return true; | |
687 | } | |
688 | else | |
689 | { | |
690 | // couldn't retrieve rect: for example, item isn't visible | |
691 | return false; | |
692 | } | |
693 | } | |
694 | ||
695 | bool wxListBox::RefreshItem(size_t n) | |
696 | { | |
697 | wxRect rect; | |
698 | if ( !GetItemRect(n, rect) ) | |
699 | return false; | |
700 | ||
701 | RECT rc; | |
702 | wxCopyRectToRECT(rect, rc); | |
703 | ||
704 | return ::InvalidateRect((HWND)GetHWND(), &rc, FALSE) == TRUE; | |
705 | } | |
706 | ||
707 | ||
2bda0e17 KB |
708 | // drawing |
709 | // ------- | |
710 | ||
85ee88cd VZ |
711 | namespace |
712 | { | |
713 | // space beneath/above each row in pixels | |
714 | static const int LISTBOX_EXTRA_SPACE = 1; | |
715 | ||
716 | } // anonymous namespace | |
2bda0e17 KB |
717 | |
718 | // the height is the same for all items | |
dd3c394a VZ |
719 | // TODO should be changed for LBS_OWNERDRAWVARIABLE style listboxes |
720 | ||
721 | // NB: can't forward this to wxListBoxItem because LB_SETITEMDATA | |
722 | // message is not yet sent when we get here! | |
2bda0e17 KB |
723 | bool wxListBox::MSWOnMeasure(WXMEASUREITEMSTRUCT *item) |
724 | { | |
dd3c394a | 725 | // only owner-drawn control should receive this message |
e1009295 | 726 | wxCHECK( HasFlag(wxLB_OWNERDRAW), false ); |
2bda0e17 | 727 | |
dd3c394a | 728 | MEASUREITEMSTRUCT *pStruct = (MEASUREITEMSTRUCT *)item; |
2bda0e17 | 729 | |
4676948b JS |
730 | #ifdef __WXWINCE__ |
731 | HDC hdc = GetDC(NULL); | |
732 | #else | |
07cf98cb | 733 | HDC hdc = CreateIC(wxT("DISPLAY"), NULL, NULL, 0); |
4676948b | 734 | #endif |
07cf98cb | 735 | |
7d09b97f VZ |
736 | { |
737 | wxDCTemp dc((WXHDC)hdc); | |
738 | dc.SetFont(GetFont()); | |
2bda0e17 | 739 | |
85ee88cd | 740 | pStruct->itemHeight = dc.GetCharHeight() + 2 * LISTBOX_EXTRA_SPACE; |
7d09b97f VZ |
741 | pStruct->itemWidth = dc.GetCharWidth(); |
742 | } | |
07cf98cb | 743 | |
7d09b97f VZ |
744 | #ifdef __WXWINCE__ |
745 | ReleaseDC(NULL, hdc); | |
746 | #else | |
07cf98cb | 747 | DeleteDC(hdc); |
7d09b97f | 748 | #endif |
07cf98cb | 749 | |
598ddd96 | 750 | return true; |
2bda0e17 KB |
751 | } |
752 | ||
753 | // forward the message to the appropriate item | |
754 | bool wxListBox::MSWOnDraw(WXDRAWITEMSTRUCT *item) | |
755 | { | |
dd3c394a | 756 | // only owner-drawn control should receive this message |
e1009295 | 757 | wxCHECK( HasFlag(wxLB_OWNERDRAW), false ); |
dd3c394a VZ |
758 | |
759 | DRAWITEMSTRUCT *pStruct = (DRAWITEMSTRUCT *)item; | |
f6bcfd97 BP |
760 | |
761 | // the item may be -1 for an empty listbox | |
e4de7a77 | 762 | if ( pStruct->itemID == (UINT)-1 ) |
598ddd96 | 763 | return false; |
dd3c394a | 764 | |
e4de7a77 | 765 | wxListBoxItem *pItem = (wxListBoxItem *)m_aItems[pStruct->itemID]; |
2bda0e17 | 766 | |
7561aacd | 767 | wxDCTemp dc((WXHDC)pStruct->hDC); |
2bda0e17 | 768 | |
6efda5fd | 769 | return pItem->OnDrawItem(dc, wxRectFromRECT(pStruct->rcItem), |
7561aacd | 770 | (wxOwnerDrawn::wxODAction)pStruct->itemAction, |
98fbab9e | 771 | (wxOwnerDrawn::wxODStatus)(pStruct->itemState | wxOwnerDrawn::wxODHidePrefix)); |
2bda0e17 KB |
772 | } |
773 | ||
1e6feb95 VZ |
774 | #endif // wxUSE_OWNER_DRAWN |
775 | ||
776 | #endif // wxUSE_LISTBOX |