]>
Commit | Line | Data |
---|---|---|
524c47aa SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/osx/carbon/listbox.cpp | |
3 | // Purpose: wxListBox | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id: listbox.cpp 54820 2008-07-29 20:04:11Z SC $ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #if wxUSE_LISTBOX | |
15 | ||
16 | #include "wx/listbox.h" | |
17 | ||
18 | #ifndef WX_PRECOMP | |
19 | #include "wx/log.h" | |
20 | #include "wx/intl.h" | |
21 | #include "wx/utils.h" | |
22 | #include "wx/settings.h" | |
23 | #include "wx/arrstr.h" | |
24 | #include "wx/dcclient.h" | |
25 | #endif | |
26 | ||
27 | IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControlWithItems) | |
28 | ||
29 | BEGIN_EVENT_TABLE(wxListBox, wxControl) | |
30 | END_EVENT_TABLE() | |
31 | ||
32 | #include "wx/osx/private.h" | |
33 | ||
34 | // ============================================================================ | |
35 | // list box control implementation | |
36 | // ============================================================================ | |
37 | ||
38 | wxListBox::wxListBox() | |
39 | { | |
40 | } | |
41 | ||
42 | bool wxListBox::Create( | |
43 | wxWindow *parent, | |
44 | wxWindowID id, | |
45 | const wxPoint& pos, | |
46 | const wxSize& size, | |
47 | const wxArrayString& choices, | |
48 | long style, | |
49 | const wxValidator& validator, | |
50 | const wxString& name ) | |
51 | { | |
52 | wxCArrayString chs(choices); | |
53 | ||
54 | return Create( | |
55 | parent, id, pos, size, chs.GetCount(), chs.GetStrings(), | |
56 | style, validator, name ); | |
57 | } | |
58 | ||
59 | wxListWidgetImpl* wxListBox::GetListPeer() const | |
60 | { | |
61 | wxListWidgetImpl* impl = dynamic_cast<wxListWidgetImpl*> ( GetPeer() ); | |
62 | return impl; | |
63 | } | |
64 | ||
65 | bool wxListBox::Create( | |
66 | wxWindow *parent, | |
67 | wxWindowID id, | |
68 | const wxPoint& pos, | |
69 | const wxSize& size, | |
70 | int n, | |
71 | const wxString choices[], | |
72 | long style, | |
73 | const wxValidator& validator, | |
74 | const wxString& name ) | |
75 | { | |
76 | m_blockEvents = false; | |
77 | m_macIsUserPane = false; | |
78 | ||
79 | wxASSERT_MSG( !(style & wxLB_MULTIPLE) || !(style & wxLB_EXTENDED), | |
80 | wxT("only a single listbox selection mode can be specified") ); | |
81 | ||
82 | if ( !wxListBoxBase::Create( parent, id, pos, size, style & ~(wxHSCROLL | wxVSCROLL), validator, name ) ) | |
83 | return false; | |
84 | ||
85 | if ( IsSorted() ) | |
86 | m_strings.sorted = new wxSortedArrayString; | |
87 | else | |
88 | m_strings.unsorted = new wxArrayString; | |
89 | ||
90 | m_peer = wxWidgetImpl::CreateListBox( this, parent, id, pos, size, style, GetExtraStyle() ); | |
91 | ||
92 | MacPostControlCreate( pos, size ); | |
93 | ||
94 | m_textColumn = GetListPeer()->InsertTextColumn(0,wxEmptyString); | |
95 | ||
96 | Append(n, choices); | |
97 | ||
98 | // Needed because it is a wxControlWithItems | |
99 | SetInitialSize( size ); | |
100 | ||
101 | return true; | |
102 | } | |
103 | ||
104 | wxListBox::~wxListBox() | |
105 | { | |
106 | FreeData(); | |
107 | // make sure no native events get sent to a object in destruction | |
108 | delete m_peer; | |
109 | m_peer = NULL; | |
110 | ||
111 | if ( IsSorted() ) | |
112 | delete m_strings.sorted; | |
113 | else | |
114 | delete m_strings.unsorted; | |
115 | ||
116 | m_strings.sorted = NULL; | |
117 | } | |
118 | ||
119 | void wxListBox::FreeData() | |
120 | { | |
121 | if ( IsSorted() ) | |
122 | m_strings.sorted->Clear(); | |
123 | else | |
124 | m_strings.unsorted->Clear(); | |
125 | ||
126 | m_itemsClientData.Clear(); | |
127 | ||
128 | GetListPeer()->ListClear(); | |
129 | } | |
130 | ||
131 | void wxListBox::DoSetFirstItem(int n) | |
132 | { | |
133 | GetListPeer()->ListScrollTo( n ); | |
134 | } | |
135 | ||
136 | void wxListBox::EnsureVisible(int n) | |
137 | { | |
138 | GetListPeer()->ListScrollTo( n ); | |
139 | } | |
140 | ||
141 | void wxListBox::DoDeleteOneItem(unsigned int n) | |
142 | { | |
143 | wxCHECK_RET( IsValid(n), wxT("invalid index in wxListBox::Delete") ); | |
144 | ||
145 | m_blockEvents = true; | |
146 | if ( IsSorted() ) | |
147 | m_strings.sorted->RemoveAt(n); | |
148 | else | |
149 | m_strings.unsorted->RemoveAt(n); | |
150 | ||
151 | m_itemsClientData.RemoveAt(n); | |
152 | ||
153 | GetListPeer()->ListDelete( n ); | |
154 | m_blockEvents = false; | |
155 | ||
156 | UpdateOldSelections(); | |
157 | } | |
158 | ||
159 | void wxListBox::DoClear() | |
160 | { | |
161 | m_blockEvents = true; | |
162 | FreeData(); | |
163 | m_blockEvents = false; | |
164 | ||
165 | UpdateOldSelections(); | |
166 | } | |
167 | ||
168 | // ---------------------------------------------------------------------------- | |
169 | // selection | |
170 | // ---------------------------------------------------------------------------- | |
171 | ||
172 | void wxListBox::DoSetSelection(int n, bool select) | |
173 | { | |
174 | wxCHECK_RET( n == wxNOT_FOUND || IsValid(n), | |
175 | wxT("invalid index in wxListBox::SetSelection") ); | |
176 | ||
177 | m_blockEvents = true; | |
178 | ||
179 | if ( n == wxNOT_FOUND ) | |
180 | GetListPeer()->ListDeselectAll(); | |
181 | else | |
182 | GetListPeer()->ListSetSelection( n, select, HasMultipleSelection() ); | |
183 | ||
184 | m_blockEvents = false; | |
185 | ||
186 | UpdateOldSelections(); | |
187 | } | |
188 | ||
189 | bool wxListBox::IsSelected(int n) const | |
190 | { | |
191 | wxCHECK_MSG( IsValid(n), false, wxT("invalid index in wxListBox::Selected") ); | |
192 | ||
193 | return GetListPeer()->ListIsSelected( n ); | |
194 | } | |
195 | ||
196 | // Return number of selections and an array of selected integers | |
197 | int wxListBox::GetSelections(wxArrayInt& aSelections) const | |
198 | { | |
199 | return GetListPeer()->ListGetSelections( aSelections ); | |
200 | } | |
201 | ||
202 | // Get single selection, for single choice list items | |
203 | int wxListBox::GetSelection() const | |
204 | { | |
205 | return GetListPeer()->ListGetSelection(); | |
206 | } | |
207 | ||
208 | // ---------------------------------------------------------------------------- | |
209 | // display | |
210 | // ---------------------------------------------------------------------------- | |
211 | ||
212 | void wxListBox::GetValueCallback( unsigned int n, wxListWidgetColumn* col , wxListWidgetCellValue& value ) | |
213 | { | |
214 | if ( col == m_textColumn ) | |
215 | value.Set( GetString( n ) ); | |
216 | } | |
217 | ||
218 | void wxListBox::SetValueCallback( unsigned int n, wxListWidgetColumn* col , wxListWidgetCellValue& value ) | |
219 | { | |
220 | } | |
221 | ||
222 | wxSize wxListBox::DoGetBestSize() const | |
223 | { | |
224 | int lbWidth = 100; // some defaults | |
225 | int lbHeight = 110; | |
226 | int wLine; | |
227 | ||
228 | { | |
229 | wxClientDC dc(const_cast<wxListBox*>(this)); | |
230 | dc.SetFont(GetFont()); | |
231 | ||
232 | // Find the widest line | |
233 | for (unsigned int i = 0; i < GetCount(); i++) | |
234 | { | |
235 | wxString str( GetString( i ) ); | |
236 | ||
237 | wxCoord width, height ; | |
238 | dc.GetTextExtent( str , &width, &height); | |
239 | wLine = width ; | |
240 | lbWidth = wxMax( lbWidth, wLine ); | |
241 | } | |
242 | ||
243 | // Add room for the scrollbar | |
244 | lbWidth += wxSystemSettings::GetMetric( wxSYS_VSCROLL_X ); | |
245 | ||
246 | // And just a bit more | |
247 | int cy = 12; | |
248 | ||
249 | wxCoord width, height ; | |
250 | dc.GetTextExtent( wxT("XX") , &width, &height); | |
251 | int cx = width ; | |
252 | lbWidth += cx; | |
253 | ||
254 | // don't make the listbox too tall (limit height to around 10 items) | |
255 | // but don't make it too small neither | |
256 | lbHeight = wxMax( (cy + 4) * wxMin( wxMax( GetCount(), 3 ), 10 ), 70 ); | |
257 | } | |
258 | ||
259 | return wxSize( lbWidth, lbHeight ); | |
260 | } | |
261 | ||
262 | void wxListBox::Refresh(bool eraseBack, const wxRect *rect) | |
263 | { | |
264 | wxControl::Refresh( eraseBack, rect ); | |
265 | } | |
266 | ||
267 | // Some custom controls depend on this | |
268 | /* static */ wxVisualAttributes | |
269 | wxListBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
270 | { | |
271 | wxVisualAttributes attr; | |
272 | ||
273 | attr.colFg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); | |
274 | attr.colBg = wxSystemSettings::GetColour( wxSYS_COLOUR_LISTBOX ); | |
7ac5e1c9 | 275 | #if wxOSX_USE_ATSU_TEXT |
524c47aa SC |
276 | attr.font.MacCreateFromThemeFont(kThemeViewsFont); |
277 | #else | |
278 | attr.font.MacCreateFromUIFont(kCTFontViewsFontType); | |
279 | #endif | |
280 | ||
281 | return attr; | |
282 | } | |
283 | ||
284 | // below is all code copied from univ | |
285 | ||
286 | // ---------------------------------------------------------------------------- | |
287 | // client data handling | |
288 | // ---------------------------------------------------------------------------- | |
289 | ||
290 | void wxListBox::DoSetItemClientData(unsigned int n, void* clientData) | |
291 | { | |
292 | m_itemsClientData[n] = clientData; | |
293 | } | |
294 | ||
295 | void *wxListBox::DoGetItemClientData(unsigned int n) const | |
296 | { | |
297 | return m_itemsClientData[n]; | |
298 | } | |
299 | ||
300 | // ---------------------------------------------------------------------------- | |
301 | // accessing strings | |
302 | // ---------------------------------------------------------------------------- | |
303 | ||
304 | unsigned int wxListBox::GetCount() const | |
305 | { | |
306 | return IsSorted() ? m_strings.sorted->size() | |
307 | : m_strings.unsorted->size(); | |
308 | } | |
309 | ||
310 | wxString wxListBox::GetString(unsigned int n) const | |
311 | { | |
312 | return IsSorted() ? m_strings.sorted->Item(n) | |
313 | : m_strings.unsorted->Item(n); | |
314 | } | |
315 | ||
316 | int wxListBox::FindString(const wxString& s, bool bCase) const | |
317 | { | |
318 | return IsSorted() ? m_strings.sorted->Index(s, bCase) | |
319 | : m_strings.unsorted->Index(s, bCase); | |
320 | } | |
321 | ||
322 | // ---------------------------------------------------------------------------- | |
323 | // adding/inserting strings | |
324 | // ---------------------------------------------------------------------------- | |
325 | ||
326 | void wxListBox::OnItemInserted(unsigned int WXUNUSED(pos)) | |
327 | { | |
328 | ||
329 | } | |
330 | ||
331 | int wxListBox::DoInsertItems(const wxArrayStringsAdapter& items, | |
332 | unsigned int pos, | |
333 | void **clientData, | |
334 | wxClientDataType type) | |
335 | { | |
336 | int idx = wxNOT_FOUND; | |
337 | unsigned int startpos = pos; | |
338 | ||
339 | const unsigned int numItems = items.GetCount(); | |
340 | for ( unsigned int i = 0; i < numItems; ++i ) | |
341 | { | |
342 | const wxString& item = items[i]; | |
343 | idx = IsSorted() ? m_strings.sorted->Add(item) | |
344 | : (m_strings.unsorted->Insert(item, pos), pos++); | |
345 | ||
346 | m_itemsClientData.Insert(NULL, idx); | |
347 | AssignNewItemClientData(idx, clientData, i, type); | |
348 | ||
349 | GetListPeer()->ListInsert(startpos+i); | |
350 | ||
351 | OnItemInserted(idx); | |
352 | } | |
353 | ||
354 | GetListPeer()->UpdateLineToEnd(startpos); | |
355 | ||
356 | UpdateOldSelections(); | |
357 | ||
358 | return idx; | |
359 | } | |
360 | ||
361 | void wxListBox::SetString(unsigned int n, const wxString& s) | |
362 | { | |
363 | wxCHECK_RET( !IsSorted(), _T("can't set string in sorted listbox") ); | |
364 | ||
365 | if ( IsSorted() ) | |
366 | (*m_strings.sorted)[n] = s; | |
367 | else | |
368 | (*m_strings.unsorted)[n] = s; | |
369 | ||
370 | GetListPeer()->UpdateLine(n); | |
371 | } | |
372 | ||
21267321 SC |
373 | // |
374 | // common event handling | |
375 | // | |
376 | ||
377 | void wxListBox::HandleLineEvent( unsigned int n, bool doubleClick ) | |
378 | { | |
379 | wxCommandEvent event( doubleClick ? wxEVT_COMMAND_LISTBOX_DOUBLECLICKED : | |
380 | wxEVT_COMMAND_LISTBOX_SELECTED, GetId() ); | |
381 | event.SetEventObject( this ); | |
382 | if ( HasClientObjectData() ) | |
383 | event.SetClientObject( GetClientObject(n) ); | |
384 | else if ( HasClientUntypedData() ) | |
385 | event.SetClientData( GetClientData(n) ); | |
386 | event.SetString( GetString(n) ); | |
387 | event.SetInt( n ); | |
388 | event.SetExtraLong( 1 ); | |
389 | HandleWindowEvent(event); | |
390 | } | |
391 | ||
524c47aa | 392 | #endif // wxUSE_LISTBOX |