]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | /////////////////////////////////////////////////////////////////////////////// |
11e62fe6 | 2 | // Name: src/os2/listbox.cpp |
0e320a79 | 3 | // Purpose: wxListBox |
fb9010ed | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
fb9010ed | 6 | // Created: 10/09/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
fb9010ed | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
fb9010ed DW |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
8228b893 WS |
15 | #if wxUSE_LISTBOX |
16 | ||
e4db172a WS |
17 | #include "wx/listbox.h" |
18 | ||
fb9010ed | 19 | #ifndef WX_PRECOMP |
ad9835c9 | 20 | #include "wx/dynarray.h" |
ad9835c9 WS |
21 | #include "wx/settings.h" |
22 | #include "wx/brush.h" | |
23 | #include "wx/font.h" | |
24 | #include "wx/dc.h" | |
25 | #include "wx/dcscreen.h" | |
26 | #include "wx/utils.h" | |
27 | #include "wx/scrolwin.h" | |
e4db172a | 28 | #include "wx/log.h" |
cdccdfab | 29 | #include "wx/window.h" |
fb9010ed DW |
30 | #endif |
31 | ||
38400bb4 | 32 | #include "wx/os2/dcclient.h" |
ad9835c9 WS |
33 | #include "wx/os2/private.h" |
34 | ||
fb9010ed DW |
35 | #define INCL_M |
36 | #include <os2.h> | |
37 | ||
fb9010ed DW |
38 | #if wxUSE_OWNER_DRAWN |
39 | #include "wx/ownerdrw.h" | |
40 | #endif | |
41 | ||
b1294ada | 42 | IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControlWithItems) |
0e320a79 | 43 | |
fb9010ed DW |
44 | // ============================================================================ |
45 | // list box item declaration and implementation | |
46 | // ============================================================================ | |
47 | ||
48 | #if wxUSE_OWNER_DRAWN | |
49 | ||
50 | class wxListBoxItem : public wxOwnerDrawn | |
51 | { | |
52 | public: | |
0fba44b4 | 53 | wxListBoxItem(const wxString& rsStr = wxEmptyString); |
fb9010ed DW |
54 | }; |
55 | ||
49dc8caa DW |
56 | wxListBoxItem::wxListBoxItem( |
57 | const wxString& rsStr | |
58 | ) | |
59 | : wxOwnerDrawn( rsStr | |
ec157c8f | 60 | ,false |
49dc8caa | 61 | ) |
fb9010ed | 62 | { |
49dc8caa DW |
63 | // |
64 | // No bitmaps/checkmarks | |
65 | // | |
fb9010ed | 66 | SetMarginWidth(0); |
49dc8caa | 67 | } // end of wxListBoxItem::wxListBoxItem |
fb9010ed | 68 | |
6670f564 | 69 | wxOwnerDrawn* wxListBox::CreateItem( size_t WXUNUSED(n) ) |
fb9010ed DW |
70 | { |
71 | return new wxListBoxItem(); | |
49dc8caa | 72 | } // end of wxListBox::CreateItem |
fb9010ed DW |
73 | |
74 | #endif //USE_OWNER_DRAWN | |
75 | ||
0e320a79 DW |
76 | // ============================================================================ |
77 | // list box control implementation | |
78 | // ============================================================================ | |
79 | ||
80 | // Listbox item | |
81 | wxListBox::wxListBox() | |
82 | { | |
49dc8caa DW |
83 | m_nNumItems = 0; |
84 | m_nSelected = 0; | |
85 | } // end of wxListBox::wxListBox | |
86 | ||
584ad2a3 MB |
87 | bool wxListBox::Create( |
88 | wxWindow* pParent | |
89 | , wxWindowID vId | |
90 | , const wxPoint& rPos | |
91 | , const wxSize& rSize | |
92 | , const wxArrayString& asChoices | |
93 | , long lStyle | |
94 | , const wxValidator& rValidator | |
95 | , const wxString& rsName | |
96 | ) | |
97 | { | |
98 | wxCArrayString chs(asChoices); | |
99 | ||
100 | return Create(pParent, vId, rPos, rSize, chs.GetCount(), chs.GetStrings(), | |
101 | lStyle, rValidator, rsName); | |
102 | } | |
103 | ||
8228b893 WS |
104 | bool wxListBox::Create( wxWindow* pParent, |
105 | wxWindowID vId, | |
106 | const wxPoint& rPos, | |
107 | const wxSize& rSize, | |
108 | int n, | |
109 | const wxString asChoices[], | |
110 | long lStyle, | |
111 | const wxValidator& rValidator, | |
112 | const wxString& rsName ) | |
0e320a79 | 113 | { |
49dc8caa DW |
114 | m_nNumItems = 0; |
115 | m_hWnd = 0; | |
116 | m_nSelected = 0; | |
0e320a79 | 117 | |
49dc8caa | 118 | SetName(rsName); |
5d4b632b | 119 | #if wxUSE_VALIDATORS |
49dc8caa | 120 | SetValidator(rValidator); |
5d4b632b | 121 | #endif |
0e320a79 | 122 | |
49dc8caa DW |
123 | if (pParent) |
124 | pParent->AddChild(this); | |
125 | ||
126 | wxSystemSettings vSettings; | |
127 | ||
ec157c8f | 128 | SetBackgroundColour(vSettings.GetColour(wxSYS_COLOUR_WINDOW)); |
49dc8caa | 129 | SetForegroundColour(pParent->GetForegroundColour()); |
0e320a79 | 130 | |
49dc8caa | 131 | m_windowId = (vId == -1) ? (int)NewControlId() : vId; |
0e320a79 | 132 | |
49dc8caa DW |
133 | int nX = rPos.x; |
134 | int nY = rPos.y; | |
135 | int nWidth = rSize.x; | |
136 | int nHeight = rSize.y; | |
0e320a79 | 137 | |
49dc8caa | 138 | m_windowStyle = lStyle; |
fb9010ed | 139 | |
49dc8caa DW |
140 | lStyle = WS_VISIBLE; |
141 | ||
142 | if (m_windowStyle & wxCLIP_SIBLINGS ) | |
143 | lStyle |= WS_CLIPSIBLINGS; | |
fb9010ed | 144 | if (m_windowStyle & wxLB_MULTIPLE) |
49dc8caa | 145 | lStyle |= LS_MULTIPLESEL; |
fb9010ed | 146 | else if (m_windowStyle & wxLB_EXTENDED) |
49dc8caa | 147 | lStyle |= LS_EXTENDEDSEL; |
fb9010ed | 148 | if (m_windowStyle & wxLB_HSCROLL) |
49dc8caa DW |
149 | lStyle |= LS_HORZSCROLL; |
150 | if (m_windowStyle & wxLB_OWNERDRAW) | |
151 | lStyle |= LS_OWNERDRAW; | |
fb9010ed | 152 | |
49dc8caa | 153 | // |
fb9010ed DW |
154 | // Without this style, you get unexpected heights, so e.g. constraint layout |
155 | // doesn't work properly | |
49dc8caa DW |
156 | // |
157 | lStyle |= LS_NOADJUSTPOS; | |
158 | ||
159 | m_hWnd = (WXHWND)::WinCreateWindow( GetWinHwnd(pParent) // Parent | |
160 | ,WC_LISTBOX // Default Listbox class | |
161 | ,"LISTBOX" // Control's name | |
162 | ,lStyle // Initial Style | |
163 | ,0, 0, 0, 0 // Position and size | |
164 | ,GetWinHwnd(pParent) // Owner | |
165 | ,HWND_TOP // Z-Order | |
166 | ,(HMENU)m_windowId // Id | |
167 | ,NULL // Control Data | |
168 | ,NULL // Presentation Parameters | |
169 | ); | |
170 | if (m_hWnd == 0) | |
fb9010ed | 171 | { |
ec157c8f | 172 | return false; |
fb9010ed DW |
173 | } |
174 | ||
49dc8caa DW |
175 | // |
176 | // Subclass again for purposes of dialog editing mode | |
177 | // | |
fb9010ed DW |
178 | SubclassWin(m_hWnd); |
179 | ||
49dc8caa | 180 | LONG lUi; |
0e320a79 | 181 | |
49dc8caa DW |
182 | for (lUi = 0; lUi < (LONG)n; lUi++) |
183 | { | |
184 | Append(asChoices[lUi]); | |
185 | } | |
b3260bce DW |
186 | wxFont* pTextFont = new wxFont( 10 |
187 | ,wxMODERN | |
188 | ,wxNORMAL | |
189 | ,wxNORMAL | |
190 | ); | |
191 | SetFont(*pTextFont); | |
e58dab20 | 192 | |
5d44b24e | 193 | // |
ad4e3f7b | 194 | // Set OS/2 system colours for Listbox items and highlighting |
5d44b24e DW |
195 | // |
196 | wxColour vColour; | |
197 | ||
ad4e3f7b | 198 | vColour = wxSystemSettingsNative::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT); |
5d44b24e DW |
199 | |
200 | LONG lColor = (LONG)vColour.GetPixel(); | |
201 | ||
202 | ::WinSetPresParam( m_hWnd | |
203 | ,PP_HILITEFOREGROUNDCOLOR | |
204 | ,sizeof(LONG) | |
205 | ,(PVOID)&lColor | |
206 | ); | |
ad4e3f7b | 207 | vColour = wxSystemSettingsNative::GetColour(wxSYS_COLOUR_HIGHLIGHT); |
5d44b24e DW |
208 | lColor = (LONG)vColour.GetPixel(); |
209 | ::WinSetPresParam( m_hWnd | |
210 | ,PP_HILITEBACKGROUNDCOLOR | |
211 | ,sizeof(LONG) | |
212 | ,(PVOID)&lColor | |
213 | ); | |
214 | ||
ad4e3f7b SN |
215 | SetXComp(0); |
216 | SetYComp(0); | |
49dc8caa DW |
217 | SetSize( nX |
218 | ,nY | |
219 | ,nWidth | |
220 | ,nHeight | |
221 | ); | |
b3260bce | 222 | delete pTextFont; |
ec157c8f | 223 | return true; |
49dc8caa | 224 | } // end of wxListBox::Create |
0e320a79 DW |
225 | |
226 | wxListBox::~wxListBox() | |
227 | { | |
fb9010ed | 228 | #if wxUSE_OWNER_DRAWN |
8228b893 | 229 | size_t lUiCount = m_aItems.Count(); |
49dc8caa DW |
230 | |
231 | while (lUiCount-- != 0) | |
232 | { | |
233 | delete m_aItems[lUiCount]; | |
fb9010ed DW |
234 | } |
235 | #endif // wxUSE_OWNER_DRAWN | |
49dc8caa | 236 | } // end of wxListBox::~wxListBox |
fb9010ed DW |
237 | |
238 | void wxListBox::SetupColours() | |
239 | { | |
a756f210 | 240 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); |
fb9010ed | 241 | SetForegroundColour(GetParent()->GetForegroundColour()); |
49dc8caa | 242 | } // end of wxListBox::SetupColours |
0e320a79 | 243 | |
dcd307ee DW |
244 | // ---------------------------------------------------------------------------- |
245 | // implementation of wxListBoxBase methods | |
246 | // ---------------------------------------------------------------------------- | |
247 | ||
8228b893 | 248 | void wxListBox::DoSetFirstItem(int N) |
0e320a79 | 249 | { |
8228b893 | 250 | wxCHECK_RET( IsValid(N), |
fb9010ed DW |
251 | wxT("invalid index in wxListBox::SetFirstItem") ); |
252 | ||
49dc8caa DW |
253 | ::WinSendMsg(GetHwnd(), LM_SETTOPINDEX, MPFROMLONG(N), (MPARAM)0); |
254 | } // end of wxListBox::DoSetFirstItem | |
0e320a79 | 255 | |
a236aa20 | 256 | void wxListBox::DoDeleteOneItem(unsigned int n) |
0e320a79 | 257 | { |
aa61d352 | 258 | wxCHECK_RET( IsValid(n), |
fb9010ed DW |
259 | wxT("invalid index in wxListBox::Delete") ); |
260 | ||
dcd307ee | 261 | #if wxUSE_OWNER_DRAWN |
aa61d352 VZ |
262 | delete m_aItems[n]; |
263 | m_aItems.RemoveAt(n); | |
dcd307ee DW |
264 | #endif // wxUSE_OWNER_DRAWN/!wxUSE_OWNER_DRAWN |
265 | ||
aa61d352 | 266 | ::WinSendMsg(GetHwnd(), LM_DELETEITEM, (MPARAM)n, (MPARAM)0); |
49dc8caa DW |
267 | m_nNumItems--; |
268 | } // end of wxListBox::DoSetFirstItem | |
0e320a79 | 269 | |
a236aa20 VZ |
270 | int wxListBox::DoInsertItems(const wxArrayStringsAdapter & items, |
271 | unsigned int pos, | |
272 | void **clientData, | |
273 | wxClientDataType type) | |
0e320a79 | 274 | { |
8228b893 WS |
275 | long lIndex = 0; |
276 | LONG lIndexType = 0; | |
a236aa20 | 277 | bool incrementPos = false; |
49dc8caa | 278 | |
a236aa20 | 279 | if (IsSorted()) |
9923c37d | 280 | lIndexType = LIT_SORTASCENDING; |
a236aa20 | 281 | else if (pos == GetCount()) |
9923c37d | 282 | lIndexType = LIT_END; |
a236aa20 | 283 | else |
49dc8caa | 284 | { |
a236aa20 VZ |
285 | lIndexType = (LONG)pos; |
286 | incrementPos = true; | |
fb9010ed | 287 | } |
0e320a79 | 288 | |
a236aa20 | 289 | int n = wxNOT_FOUND; |
0e320a79 | 290 | |
a236aa20 VZ |
291 | unsigned int count = items.GetCount(); |
292 | for (unsigned int i = 0; i < count; i++) | |
fb9010ed | 293 | { |
a236aa20 VZ |
294 | n = (int)::WinSendMsg(GetHwnd(), LM_INSERTITEM, (MPARAM)lIndexType, (MPARAM)items[i].wx_str()); |
295 | if (n < 0) | |
dcd307ee | 296 | { |
a236aa20 VZ |
297 | wxLogLastError(_T("WinSendMsg(LM_INSERTITEM)")); |
298 | n = wxNOT_FOUND; | |
299 | break; | |
dcd307ee | 300 | } |
a236aa20 | 301 | ++m_nNumItems; |
fb9010ed DW |
302 | |
303 | #if wxUSE_OWNER_DRAWN | |
a236aa20 | 304 | if (HasFlag(wxLB_OWNERDRAW)) |
49dc8caa | 305 | { |
a236aa20 VZ |
306 | wxOwnerDrawn* pNewItem = CreateItem(n); // dummy argument |
307 | wxScreenDC vDc; // FIXME: is it really needed here? | |
308 | ||
309 | pNewItem->SetName(items[i]); | |
310 | m_aItems.Insert(pNewItem, n); | |
a236aa20 | 311 | pNewItem->SetFont(GetFont()); |
fb9010ed | 312 | } |
a236aa20 VZ |
313 | #endif |
314 | AssignNewItemClientData(n, clientData, i, type); | |
315 | ||
316 | if (incrementPos) | |
317 | ++lIndexType; | |
fb9010ed | 318 | } |
0e320a79 | 319 | |
a236aa20 VZ |
320 | return n; |
321 | } // end of wxListBox::DoInsertAppendItemsWithData | |
322 | ||
323 | void wxListBox::DoClear() | |
0e320a79 | 324 | { |
fb9010ed | 325 | #if wxUSE_OWNER_DRAWN |
aa61d352 | 326 | unsigned int lUiCount = m_aItems.Count(); |
49dc8caa DW |
327 | |
328 | while (lUiCount-- != 0) | |
329 | { | |
330 | delete m_aItems[lUiCount]; | |
fb9010ed DW |
331 | } |
332 | ||
333 | m_aItems.Clear(); | |
a236aa20 | 334 | #endif // wxUSE_OWNER_DRAWN |
49dc8caa | 335 | ::WinSendMsg(GetHwnd(), LM_DELETEALL, (MPARAM)0, (MPARAM)0); |
dcd307ee | 336 | |
49dc8caa DW |
337 | m_nNumItems = 0; |
338 | } // end of wxListBox::Clear | |
fb9010ed | 339 | |
8228b893 | 340 | void wxListBox::DoSetSelection( int N, bool bSelect) |
0e320a79 | 341 | { |
8228b893 | 342 | wxCHECK_RET( IsValid(N), |
fb9010ed | 343 | wxT("invalid index in wxListBox::SetSelection") ); |
49dc8caa DW |
344 | ::WinSendMsg( GetHwnd() |
345 | ,LM_SELECTITEM | |
346 | ,MPFROMLONG(N) | |
347 | ,(MPARAM)bSelect | |
348 | ); | |
1de4baa3 DW |
349 | if(m_windowStyle & wxLB_OWNERDRAW) |
350 | Refresh(); | |
49dc8caa DW |
351 | } // end of wxListBox::SetSelection |
352 | ||
8228b893 | 353 | bool wxListBox::IsSelected( int N ) const |
49dc8caa | 354 | { |
8228b893 | 355 | wxCHECK_MSG( IsValid(N), false, |
fb9010ed DW |
356 | wxT("invalid index in wxListBox::Selected") ); |
357 | ||
49dc8caa | 358 | LONG lItem; |
0e320a79 | 359 | |
70a2c656 DW |
360 | if (GetWindowStyleFlag() & wxLB_EXTENDED) |
361 | { | |
362 | if (N == 0) | |
363 | lItem = LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYSELECTION, (MPARAM)LIT_FIRST, (MPARAM)0)); | |
364 | else | |
365 | lItem = LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYSELECTION, (MPARAM)(N - 1), (MPARAM)0)); | |
366 | } | |
367 | else | |
368 | { | |
369 | lItem = LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYSELECTION, (MPARAM)LIT_FIRST, (MPARAM)0)); | |
370 | } | |
371 | return (lItem == (LONG)N && lItem != LIT_NONE); | |
49dc8caa DW |
372 | } // end of wxListBox::IsSelected |
373 | ||
aa61d352 | 374 | void* wxListBox::DoGetItemClientData(unsigned int n) const |
0e320a79 | 375 | { |
8228b893 | 376 | wxCHECK_MSG( IsValid(n), NULL, |
fb9010ed DW |
377 | wxT("invalid index in wxListBox::GetClientData") ); |
378 | ||
49dc8caa DW |
379 | return((void *)::WinSendMsg(GetHwnd(), LM_QUERYITEMHANDLE, MPFROMLONG(n), (MPARAM)0)); |
380 | } // end of wxListBox::DoGetItemClientData | |
0e320a79 | 381 | |
aa61d352 | 382 | void wxListBox::DoSetItemClientData(unsigned int n, void* pClientData) |
dcd307ee | 383 | { |
8228b893 | 384 | wxCHECK_RET( IsValid(n), |
fb9010ed DW |
385 | wxT("invalid index in wxListBox::SetClientData") ); |
386 | ||
49dc8caa DW |
387 | ::WinSendMsg(GetHwnd(), LM_SETITEMHANDLE, MPFROMLONG(n), MPFROMP(pClientData)); |
388 | } // end of wxListBox::DoSetItemClientData | |
dcd307ee DW |
389 | |
390 | bool wxListBox::HasMultipleSelection() const | |
391 | { | |
392 | return (m_windowStyle & wxLB_MULTIPLE) || (m_windowStyle & wxLB_EXTENDED); | |
49dc8caa | 393 | } // end of wxListBox::HasMultipleSelection |
0e320a79 | 394 | |
6670f564 | 395 | int wxListBox::GetSelections( wxArrayInt& raSelections ) const |
0e320a79 | 396 | { |
8228b893 WS |
397 | int nCount = 0; |
398 | LONG lItem; | |
0e320a79 | 399 | |
fb9010ed | 400 | |
49dc8caa DW |
401 | raSelections.Empty(); |
402 | if (HasMultipleSelection()) | |
403 | { | |
404 | lItem = LONGFROMMR(::WinSendMsg( GetHwnd() | |
405 | ,LM_QUERYSELECTION | |
406 | ,(MPARAM)LIT_FIRST | |
407 | ,(MPARAM)0 | |
408 | ) | |
409 | ); | |
410 | if (lItem != LIT_NONE) | |
411 | { | |
412 | nCount++; | |
413 | while ((lItem = LONGFROMMR(::WinSendMsg( GetHwnd() | |
414 | ,LM_QUERYSELECTION | |
415 | ,(MPARAM)lItem | |
416 | ,(MPARAM)0 | |
417 | ) | |
418 | )) != LIT_NONE) | |
419 | { | |
420 | nCount++; | |
421 | } | |
422 | raSelections.Alloc(nCount); | |
423 | lItem = LONGFROMMR(::WinSendMsg( GetHwnd() | |
424 | ,LM_QUERYSELECTION | |
425 | ,(MPARAM)LIT_FIRST | |
426 | ,(MPARAM)0 | |
427 | ) | |
428 | ); | |
429 | ||
430 | raSelections.Add((int)lItem); | |
431 | while ((lItem = LONGFROMMR(::WinSendMsg( GetHwnd() | |
432 | ,LM_QUERYSELECTION | |
433 | ,(MPARAM)lItem | |
434 | ,(MPARAM)0 | |
435 | ) | |
436 | )) != LIT_NONE) | |
437 | { | |
438 | raSelections.Add((int)lItem); | |
439 | } | |
440 | return nCount; | |
fb9010ed | 441 | } |
0e320a79 DW |
442 | } |
443 | else // single-selection listbox | |
444 | { | |
49dc8caa DW |
445 | lItem = LONGFROMMR(::WinSendMsg( GetHwnd() |
446 | ,LM_QUERYSELECTION | |
447 | ,(MPARAM)LIT_FIRST | |
448 | ,(MPARAM)0 | |
449 | ) | |
450 | ); | |
451 | raSelections.Add((int)lItem); | |
0e320a79 DW |
452 | return 1; |
453 | } | |
dcd307ee | 454 | return 0; |
49dc8caa | 455 | } // end of wxListBox::GetSelections |
0e320a79 | 456 | |
0e320a79 DW |
457 | int wxListBox::GetSelection() const |
458 | { | |
dcd307ee | 459 | wxCHECK_MSG( !HasMultipleSelection(), |
fb9010ed DW |
460 | -1, |
461 | wxT("GetSelection() can't be used with multiple-selection " | |
462 | "listboxes, use GetSelections() instead.") ); | |
463 | ||
49dc8caa DW |
464 | return(LONGFROMMR(::WinSendMsg( GetHwnd() |
465 | ,LM_QUERYSELECTION | |
466 | ,(MPARAM)LIT_FIRST | |
467 | ,(MPARAM)0 | |
468 | ) | |
469 | )); | |
470 | } // end of wxListBox::GetSelection | |
0e320a79 | 471 | |
aa61d352 | 472 | wxString wxListBox::GetString(unsigned int n) const |
0e320a79 | 473 | { |
8228b893 WS |
474 | LONG lLen = 0; |
475 | wxChar* zBuf; | |
476 | wxString sResult; | |
fb9010ed | 477 | |
aa61d352 | 478 | wxCHECK_MSG( IsValid(n), wxEmptyString, |
49dc8caa | 479 | wxT("invalid index in wxListBox::GetClientData") ); |
0e320a79 | 480 | |
aa61d352 | 481 | lLen = LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXTLENGTH, (MPARAM)n, (MPARAM)0)); |
0fba44b4 | 482 | zBuf = new wxChar[lLen + 1]; |
aa61d352 | 483 | ::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXT, MPFROM2SHORT((SHORT)n, (SHORT)lLen), (MPARAM)zBuf); |
49dc8caa DW |
484 | zBuf[lLen] = '\0'; |
485 | sResult = zBuf; | |
486 | delete [] zBuf; | |
487 | return sResult; | |
488 | } // end of wxListBox::GetString | |
489 | ||
aa61d352 | 490 | void wxListBox::SetString(unsigned int n, const wxString& rsString) |
dcd307ee | 491 | { |
aa61d352 | 492 | wxCHECK_RET( IsValid(n), |
dcd307ee DW |
493 | wxT("invalid index in wxListBox::SetString") ); |
494 | ||
49dc8caa DW |
495 | // |
496 | // Remember the state of the item | |
497 | // | |
aa61d352 | 498 | bool bWasSelected = IsSelected(n); |
8228b893 WS |
499 | void* pOldData = NULL; |
500 | wxClientData* pOldObjData = NULL; | |
49dc8caa | 501 | |
6d8eb95b | 502 | if ( HasClientUntypedData() ) |
aa61d352 | 503 | pOldData = GetClientData(n); |
6d8eb95b | 504 | else if ( HasClientObjectData() ) |
aa61d352 | 505 | pOldObjData = GetClientObject(n); |
49dc8caa DW |
506 | |
507 | // | |
508 | // Delete and recreate it | |
509 | // | |
510 | ::WinSendMsg( GetHwnd() | |
511 | ,LM_DELETEITEM | |
aa61d352 | 512 | ,(MPARAM)n |
49dc8caa DW |
513 | ,(MPARAM)0 |
514 | ); | |
515 | ||
aa61d352 | 516 | int nNewN = n; |
49dc8caa | 517 | |
020e385d | 518 | if (n == (m_nNumItems - 1)) |
49dc8caa DW |
519 | nNewN = -1; |
520 | ||
521 | ::WinSendMsg( GetHwnd() | |
522 | ,LM_INSERTITEM | |
523 | ,(MPARAM)nNewN | |
404aba09 | 524 | ,(MPARAM)rsString.wx_str() |
49dc8caa DW |
525 | ); |
526 | ||
527 | // | |
528 | // Restore the client data | |
529 | // | |
530 | if (pOldData) | |
aa61d352 | 531 | SetClientData(n, pOldData); |
49dc8caa | 532 | else if (pOldObjData) |
aa61d352 | 533 | SetClientObject(n, pOldObjData); |
49dc8caa DW |
534 | |
535 | // | |
536 | // We may have lost the selection | |
537 | // | |
538 | if (bWasSelected) | |
aa61d352 | 539 | Select(n); |
dcd307ee DW |
540 | |
541 | #if wxUSE_OWNER_DRAWN | |
49dc8caa DW |
542 | if (m_windowStyle & wxLB_OWNERDRAW) |
543 | // | |
544 | // Update item's text | |
545 | // | |
aa61d352 | 546 | m_aItems[n]->SetName(rsString); |
dcd307ee | 547 | #endif //USE_OWNER_DRAWN |
49dc8caa | 548 | } // end of wxListBox::SetString |
dcd307ee | 549 | |
aa61d352 | 550 | unsigned int wxListBox::GetCount() const |
dcd307ee | 551 | { |
49dc8caa | 552 | return m_nNumItems; |
dcd307ee DW |
553 | } |
554 | ||
555 | // ---------------------------------------------------------------------------- | |
556 | // helpers | |
557 | // ---------------------------------------------------------------------------- | |
558 | ||
e78c4d50 | 559 | wxSize wxListBox::DoGetBestSize() const |
fb9010ed | 560 | { |
49dc8caa DW |
561 | // |
562 | // Find the widest string | |
563 | // | |
8228b893 WS |
564 | int nLine; |
565 | int nListbox = 0; | |
566 | int nCx; | |
567 | int nCy; | |
568 | wxFont vFont = (wxFont)GetFont(); | |
49dc8caa | 569 | |
aa61d352 | 570 | for (unsigned int i = 0; i < m_nNumItems; i++) |
fb9010ed | 571 | { |
8228b893 | 572 | wxString vStr(GetString(i)); |
49dc8caa | 573 | |
8228b893 | 574 | GetTextExtent( vStr, &nLine, NULL ); |
49dc8caa DW |
575 | if (nLine > nListbox) |
576 | nListbox = nLine; | |
fb9010ed DW |
577 | } |
578 | ||
49dc8caa DW |
579 | // |
580 | // Give it some reasonable default value if there are no strings in the | |
581 | // list. | |
582 | // | |
583 | if (nListbox == 0) | |
584 | nListbox = 100; | |
585 | ||
586 | // | |
587 | // The listbox should be slightly larger than the widest string | |
588 | // | |
589 | wxGetCharSize( GetHWND() | |
590 | ,&nCx | |
591 | ,&nCy | |
0d598bae | 592 | ,&vFont |
49dc8caa DW |
593 | ); |
594 | nListbox += 3 * nCx; | |
595 | ||
8228b893 | 596 | int hListbox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(nCy) * (wxMax(m_nNumItems, 7)); |
49dc8caa DW |
597 | |
598 | return wxSize( nListbox | |
599 | ,hListbox | |
600 | ); | |
601 | } // end of wxListBox::DoGetBestSize | |
fb9010ed | 602 | |
dcd307ee DW |
603 | // ---------------------------------------------------------------------------- |
604 | // callbacks | |
605 | // ---------------------------------------------------------------------------- | |
606 | ||
49dc8caa DW |
607 | bool wxListBox::OS2Command( |
608 | WXUINT uParam | |
609 | , WXWORD WXUNUSED(wId)) | |
0e320a79 | 610 | { |
49dc8caa | 611 | wxEventType eEvtType; |
dcd307ee | 612 | |
49dc8caa DW |
613 | if (uParam == LN_SELECT) |
614 | { | |
615 | eEvtType = wxEVT_COMMAND_LISTBOX_SELECTED; | |
dcd307ee | 616 | } |
d6701f32 | 617 | else if (uParam == LN_ENTER) |
0e320a79 | 618 | { |
49dc8caa | 619 | eEvtType = wxEVT_COMMAND_LISTBOX_DOUBLECLICKED; |
0e320a79 | 620 | } |
fb9010ed | 621 | else |
49dc8caa DW |
622 | { |
623 | // | |
624 | // Some event we're not interested in | |
625 | // | |
ec157c8f | 626 | return false; |
49dc8caa DW |
627 | } |
628 | wxCommandEvent vEvent( eEvtType | |
629 | ,m_windowId | |
630 | ); | |
fb9010ed | 631 | |
49dc8caa | 632 | vEvent.SetEventObject(this); |
fb9010ed | 633 | |
8228b893 WS |
634 | wxArrayInt aSelections; |
635 | int n; | |
636 | int nCount = GetSelections(aSelections); | |
fb9010ed | 637 | |
49dc8caa DW |
638 | if (nCount > 0) |
639 | { | |
640 | n = aSelections[0]; | |
641 | if (HasClientObjectData()) | |
642 | vEvent.SetClientObject(GetClientObject(n)); | |
643 | else if ( HasClientUntypedData() ) | |
644 | vEvent.SetClientData(GetClientData(n)); | |
645 | vEvent.SetString(GetString(n)); | |
646 | } | |
647 | else | |
648 | { | |
649 | n = -1; | |
650 | } | |
687706f5 | 651 | vEvent.SetInt(n); |
937013e0 | 652 | return HandleWindowEvent(vEvent); |
49dc8caa | 653 | } // end of wxListBox::OS2Command |
fb9010ed | 654 | |
dcd307ee DW |
655 | // ---------------------------------------------------------------------------- |
656 | // wxCheckListBox support | |
657 | // ---------------------------------------------------------------------------- | |
fb9010ed DW |
658 | |
659 | #if wxUSE_OWNER_DRAWN | |
660 | ||
49dc8caa DW |
661 | // |
662 | // Drawing | |
fb9010ed | 663 | // ------- |
49dc8caa | 664 | // |
fb9010ed DW |
665 | #define OWNER_DRAWN_LISTBOX_EXTRA_SPACE (1) |
666 | ||
8228b893 | 667 | long wxListBox::OS2OnMeasure(WXMEASUREITEMSTRUCT* pItem) |
fb9010ed | 668 | { |
1de4baa3 DW |
669 | if (!pItem) |
670 | pItem = (WXMEASUREITEMSTRUCT*)new OWNERITEM; | |
671 | ||
672 | POWNERITEM pMeasureStruct = (POWNERITEM)pItem; | |
673 | wxScreenDC vDc; | |
674 | ||
49dc8caa | 675 | // |
1de4baa3 | 676 | // Only owner-drawn control should receive this message |
49dc8caa | 677 | // |
1de4baa3 DW |
678 | wxCHECK( ((m_windowStyle & wxLB_OWNERDRAW) == wxLB_OWNERDRAW), FALSE ); |
679 | ||
680 | vDc.SetFont(GetFont()); | |
681 | ||
682 | wxCoord vHeight; | |
f5ea767e DW |
683 | wxCoord vWidth; |
684 | ||
685 | GetSize( &vWidth | |
686 | ,NULL | |
687 | ); | |
1de4baa3 | 688 | |
f5ea767e | 689 | pMeasureStruct->rclItem.xRight = (USHORT)vWidth; |
1de4baa3 DW |
690 | pMeasureStruct->rclItem.xLeft = 0; |
691 | pMeasureStruct->rclItem.yTop = 0; | |
692 | pMeasureStruct->rclItem.yBottom = 0; | |
693 | ||
9923c37d | 694 | vHeight = (wxCoord)(vDc.GetCharHeight() * 2.5); |
f5ea767e | 695 | pMeasureStruct->rclItem.yTop = (USHORT)vHeight; |
1de4baa3 | 696 | |
f5ea767e | 697 | return long(MRFROM2SHORT((USHORT)vHeight, (USHORT)vWidth)); |
1de4baa3 | 698 | } // end of wxListBox::OS2OnMeasure |
fb9010ed | 699 | |
1de4baa3 DW |
700 | bool wxListBox::OS2OnDraw ( |
701 | WXDRAWITEMSTRUCT* pItem | |
702 | ) | |
fb9010ed | 703 | { |
1de4baa3 | 704 | POWNERITEM pDrawStruct = (POWNERITEM)pItem; |
1de4baa3 DW |
705 | int eAction = 0; |
706 | int eStatus = 0; | |
707 | ||
49dc8caa | 708 | // |
1de4baa3 | 709 | // Only owner-drawn control should receive this message |
49dc8caa | 710 | // |
ec157c8f | 711 | wxCHECK(((m_windowStyle & wxLB_OWNERDRAW) == wxLB_OWNERDRAW), false); |
1de4baa3 DW |
712 | |
713 | ||
714 | // | |
715 | // The item may be -1 for an empty listbox | |
716 | // | |
e4de7a77 | 717 | if (pDrawStruct->idItem == -1L) |
ec157c8f | 718 | return false; |
1de4baa3 | 719 | |
e4de7a77 | 720 | wxListBoxItem* pData = (wxListBoxItem*)m_aItems[pDrawStruct->idItem]; |
1de4baa3 | 721 | |
38400bb4 SN |
722 | wxClientDC vDc(this); |
723 | wxPMDCImpl *impl = (wxPMDCImpl*) vDc.GetImpl(); | |
6670f564 WS |
724 | wxPoint pt1( pDrawStruct->rclItem.xLeft, pDrawStruct->rclItem.yTop ); |
725 | wxPoint pt2( pDrawStruct->rclItem.xRight, pDrawStruct->rclItem.yBottom ); | |
726 | wxRect vRect( pt1, pt2 ); | |
1de4baa3 | 727 | |
38400bb4 | 728 | impl->SetHPS(pDrawStruct->hps); |
1de4baa3 DW |
729 | |
730 | if (pDrawStruct->fsAttribute == pDrawStruct->fsAttributeOld) | |
731 | { | |
732 | // | |
733 | // Entire Item needs to be redrawn (either it has reappeared from | |
734 | // behind another window or is being displayed for the first time | |
735 | // | |
736 | eAction = wxOwnerDrawn::wxODDrawAll; | |
737 | ||
738 | if (pDrawStruct->fsAttribute & MIA_HILITED) | |
739 | { | |
740 | // | |
741 | // If it is currently selected we let the system handle it | |
742 | // | |
743 | eStatus |= wxOwnerDrawn::wxODSelected; | |
744 | } | |
745 | if (pDrawStruct->fsAttribute & MIA_CHECKED) | |
746 | { | |
747 | // | |
748 | // If it is currently checked we draw our own | |
749 | // | |
750 | eStatus |= wxOwnerDrawn::wxODChecked; | |
751 | pDrawStruct->fsAttributeOld = pDrawStruct->fsAttribute &= ~MIA_CHECKED; | |
752 | } | |
753 | if (pDrawStruct->fsAttribute & MIA_DISABLED) | |
754 | { | |
755 | // | |
756 | // If it is currently disabled we let the system handle it | |
757 | // | |
758 | eStatus |= wxOwnerDrawn::wxODDisabled; | |
759 | } | |
760 | // | |
761 | // Don't really care about framed (indicationg focus) or NoDismiss | |
762 | // | |
763 | } | |
764 | else | |
765 | { | |
766 | if (pDrawStruct->fsAttribute & MIA_HILITED) | |
767 | { | |
768 | eAction = wxOwnerDrawn::wxODDrawAll; | |
769 | eStatus |= wxOwnerDrawn::wxODSelected; | |
770 | // | |
771 | // Keep the system from trying to highlight with its bogus colors | |
772 | // | |
773 | pDrawStruct->fsAttributeOld = pDrawStruct->fsAttribute &= ~MIA_HILITED; | |
774 | } | |
775 | else if (!(pDrawStruct->fsAttribute & MIA_HILITED)) | |
776 | { | |
777 | eAction = wxOwnerDrawn::wxODDrawAll; | |
778 | eStatus = 0; | |
779 | // | |
780 | // Keep the system from trying to highlight with its bogus colors | |
781 | // | |
782 | pDrawStruct->fsAttribute = pDrawStruct->fsAttributeOld &= ~MIA_HILITED; | |
783 | } | |
784 | else | |
785 | { | |
786 | // | |
787 | // For now we don't care about anything else | |
788 | // just ignore the entire message! | |
789 | // | |
ec157c8f | 790 | return true; |
1de4baa3 DW |
791 | } |
792 | } | |
793 | return pData->OnDrawItem( vDc | |
794 | ,vRect | |
795 | ,(wxOwnerDrawn::wxODAction)eAction | |
796 | ,(wxOwnerDrawn::wxODStatus)eStatus | |
797 | ); | |
798 | } // end of wxListBox::OS2OnDraw | |
799 | ||
49dc8caa DW |
800 | #endif // ndef for wxUSE_OWNER_DRAWN |
801 | ||
8228b893 | 802 | #endif // wxUSE_LISTBOX |