]>
Commit | Line | Data |
---|---|---|
e9576ca5 | 1 | /////////////////////////////////////////////////////////////////////////////// |
11e62fe6 | 2 | // Name: src/mac/carbon/listbox.cpp |
e9576ca5 | 3 | // Purpose: wxListBox |
a31a5f85 | 4 | // Author: Stefan Csomor |
e9576ca5 | 5 | // Modified by: |
a31a5f85 | 6 | // Created: 1998-01-01 |
e9576ca5 | 7 | // RCS-ID: $Id$ |
a31a5f85 | 8 | // Copyright: (c) Stefan Csomor |
65571936 | 9 | // Licence: wxWindows licence |
e9576ca5 SC |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
3d1a4878 SC |
12 | #include "wx/wxprec.h" |
13 | ||
179e085f RN |
14 | #if wxUSE_LISTBOX |
15 | ||
e4db172a WS |
16 | #include "wx/listbox.h" |
17 | ||
ad9835c9 WS |
18 | #ifndef WX_PRECOMP |
19 | #include "wx/dynarray.h" | |
e4db172a | 20 | #include "wx/log.h" |
670f9935 | 21 | #include "wx/app.h" |
ad9835c9 WS |
22 | #endif |
23 | ||
dc0ace7c | 24 | #include "wx/button.h" |
e9576ca5 | 25 | #include "wx/settings.h" |
422644a3 | 26 | #include "wx/toplevel.h" |
e9576ca5 | 27 | |
519cb848 | 28 | #include "wx/utils.h" |
519cb848 | 29 | |
b4726a58 SC |
30 | IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl) |
31 | ||
32 | BEGIN_EVENT_TABLE(wxListBox, wxControl) | |
33 | END_EVENT_TABLE() | |
34 | ||
fdd4e6cc | 35 | #include "wx/mac/uma.h" |
ad9835c9 WS |
36 | #include "wx/dynarray.h" |
37 | #include "wx/arrstr.h" | |
b4726a58 SC |
38 | |
39 | // ============================================================================ | |
6cce68ea | 40 | // list box control implementation |
b4726a58 | 41 | // ============================================================================ |
e9576ca5 | 42 | |
6cce68ea | 43 | wxListBox::wxListBox() |
83ce5634 | 44 | { |
83ce5634 SC |
45 | } |
46 | ||
6cce68ea SC |
47 | bool wxListBox::Create( |
48 | wxWindow *parent, | |
49 | wxWindowID id, | |
50 | const wxPoint& pos, | |
51 | const wxSize& size, | |
52 | const wxArrayString& choices, | |
53 | long style, | |
54 | const wxValidator& validator, | |
55 | const wxString& name ) | |
facd6764 | 56 | { |
6cce68ea | 57 | wxCArrayString chs(choices); |
cee24bf7 | 58 | |
6cce68ea SC |
59 | return Create( |
60 | parent, id, pos, size, chs.GetCount(), chs.GetStrings(), | |
61 | style, validator, name ); | |
62 | } | |
c6179a84 | 63 | |
ad9835c9 WS |
64 | wxMacListControl* wxListBox::GetPeer() const |
65 | { | |
66 | return dynamic_cast<wxMacListControl*>(m_peer); | |
facd6764 | 67 | } |
fe3dc505 | 68 | |
6cce68ea SC |
69 | bool wxListBox::Create( |
70 | wxWindow *parent, | |
71 | wxWindowID id, | |
72 | const wxPoint& pos, | |
73 | const wxSize& size, | |
74 | int n, | |
75 | const wxString choices[], | |
76 | long style, | |
77 | const wxValidator& validator, | |
78 | const wxString& name ) | |
b4726a58 | 79 | { |
6cce68ea | 80 | m_macIsUserPane = false; |
b4726a58 | 81 | |
6cce68ea SC |
82 | wxASSERT_MSG( !(style & wxLB_MULTIPLE) || !(style & wxLB_EXTENDED), |
83 | wxT("only a single listbox selection mode can be specified") ); | |
b4726a58 | 84 | |
6cce68ea SC |
85 | if ( !wxListBoxBase::Create( parent, id, pos, size, style & ~(wxHSCROLL | wxVSCROLL), validator, name ) ) |
86 | return false; | |
ad9835c9 | 87 | |
6cce68ea SC |
88 | wxMacDataBrowserListControl* control = new wxMacDataBrowserListControl( this, pos, size, style ); |
89 | control->SetClientDataType( m_clientDataItemsType ); | |
90 | m_peer = control; | |
cee24bf7 | 91 | |
6cce68ea | 92 | MacPostControlCreate( pos, size ); |
b4726a58 | 93 | |
6cce68ea | 94 | InsertItems( n, choices, 0 ); |
b4726a58 | 95 | |
6cce68ea SC |
96 | // Needed because it is a wxControlWithItems |
97 | SetBestSize( size ); | |
b4726a58 | 98 | |
6cce68ea SC |
99 | return true; |
100 | } | |
cee24bf7 | 101 | |
6cce68ea SC |
102 | wxListBox::~wxListBox() |
103 | { | |
104 | FreeData(); | |
105 | m_peer->SetReference( 0 ); | |
106 | } | |
b4726a58 | 107 | |
6cce68ea SC |
108 | void wxListBox::FreeData() |
109 | { | |
110 | GetPeer()->MacClear(); | |
111 | } | |
b4726a58 | 112 | |
6cce68ea SC |
113 | void wxListBox::DoSetFirstItem(int n) |
114 | { | |
115 | GetPeer()->MacScrollTo( n ); | |
116 | } | |
b4726a58 | 117 | |
6cce68ea SC |
118 | void wxListBox::EnsureVisible(int n) |
119 | { | |
120 | GetPeer()->MacScrollTo( n ); | |
b4726a58 | 121 | } |
cee24bf7 | 122 | |
6cce68ea | 123 | void wxListBox::Delete(unsigned int n) |
b4726a58 | 124 | { |
6cce68ea SC |
125 | wxCHECK_RET( IsValid(n), wxT("invalid index in wxListBox::Delete") ); |
126 | ||
127 | GetPeer()->MacDelete( n ); | |
b4726a58 SC |
128 | } |
129 | ||
6cce68ea | 130 | int wxListBox::DoAppend(const wxString& item) |
b4726a58 | 131 | { |
6cce68ea | 132 | InvalidateBestSize(); |
b4726a58 | 133 | |
6cce68ea SC |
134 | return GetPeer()->MacAppend( item ); |
135 | } | |
cee24bf7 | 136 | |
6cce68ea SC |
137 | void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData) |
138 | { | |
139 | Clear(); | |
ad9835c9 | 140 | |
6cce68ea | 141 | unsigned int n = choices.GetCount(); |
cee24bf7 | 142 | |
6cce68ea | 143 | for ( size_t i = 0; i < n; ++i ) |
b4726a58 | 144 | { |
6cce68ea | 145 | if ( clientData ) |
b4726a58 | 146 | { |
6cce68ea | 147 | Append( choices[i], clientData[i] ); |
b4726a58 | 148 | } |
6cce68ea SC |
149 | else |
150 | Append( choices[i] ); | |
b4726a58 | 151 | } |
cee24bf7 | 152 | |
b4726a58 SC |
153 | } |
154 | ||
6cce68ea | 155 | int wxListBox::FindString(const wxString& s, bool bCase) const |
b4726a58 | 156 | { |
6cce68ea | 157 | for ( size_t i = 0; i < GetCount(); ++ i ) |
b4726a58 | 158 | { |
6cce68ea SC |
159 | if (s.IsSameAs( GetString( i ), bCase) ) |
160 | return (int)i; | |
b4726a58 SC |
161 | } |
162 | ||
6cce68ea | 163 | return wxNOT_FOUND; |
b4726a58 SC |
164 | } |
165 | ||
6cce68ea | 166 | void wxListBox::Clear() |
b4726a58 | 167 | { |
6cce68ea SC |
168 | FreeData(); |
169 | } | |
b4726a58 | 170 | |
6cce68ea SC |
171 | void wxListBox::DoSetSelection(int n, bool select) |
172 | { | |
173 | wxCHECK_RET( n == wxNOT_FOUND || IsValid(n), | |
174 | wxT("invalid index in wxListBox::SetSelection") ); | |
b4726a58 | 175 | |
6cce68ea SC |
176 | if ( n == wxNOT_FOUND ) |
177 | GetPeer()->MacDeselectAll(); | |
178 | else | |
179 | GetPeer()->MacSetSelection( n, select ); | |
180 | } | |
b4726a58 | 181 | |
6cce68ea SC |
182 | bool wxListBox::IsSelected(int n) const |
183 | { | |
184 | wxCHECK_MSG( IsValid(n), false, wxT("invalid index in wxListBox::Selected") ); | |
cee24bf7 | 185 | |
6cce68ea | 186 | return GetPeer()->MacIsSelected( n ); |
b4726a58 SC |
187 | } |
188 | ||
6cce68ea | 189 | void *wxListBox::DoGetItemClientData(unsigned int n) const |
b4726a58 | 190 | { |
6cce68ea SC |
191 | wxCHECK_MSG( IsValid(n), NULL, wxT("invalid index in wxListBox::GetClientData")); |
192 | return GetPeer()->MacGetClientData( n ); | |
b4726a58 SC |
193 | } |
194 | ||
6cce68ea | 195 | wxClientData *wxListBox::DoGetItemClientObject(unsigned int n) const |
b4726a58 | 196 | { |
6cce68ea | 197 | return (wxClientData*)DoGetItemClientData( n ); |
b4726a58 SC |
198 | } |
199 | ||
6cce68ea | 200 | void wxListBox::DoSetItemClientData(unsigned int n, void *clientData) |
b4726a58 | 201 | { |
6cce68ea SC |
202 | wxCHECK_RET( IsValid(n), wxT("invalid index in wxListBox::SetClientData") ); |
203 | GetPeer()->MacSetClientData( n , clientData); | |
b4726a58 SC |
204 | } |
205 | ||
6cce68ea | 206 | void wxListBox::DoSetItemClientObject(unsigned int n, wxClientData* clientData) |
b4726a58 | 207 | { |
6cce68ea | 208 | DoSetItemClientData(n, clientData); |
b4726a58 SC |
209 | } |
210 | ||
6cce68ea SC |
211 | // Return number of selections and an array of selected integers |
212 | int wxListBox::GetSelections(wxArrayInt& aSelections) const | |
b4726a58 | 213 | { |
6cce68ea SC |
214 | return GetPeer()->MacGetSelections( aSelections ); |
215 | } | |
cee24bf7 | 216 | |
6cce68ea SC |
217 | // Get single selection, for single choice list items |
218 | int wxListBox::GetSelection() const | |
219 | { | |
220 | return GetPeer()->MacGetSelection(); | |
b4726a58 SC |
221 | } |
222 | ||
6cce68ea SC |
223 | // Find string for position |
224 | wxString wxListBox::GetString(unsigned int n) const | |
b4726a58 | 225 | { |
6cce68ea SC |
226 | wxCHECK_MSG( IsValid(n), wxEmptyString, wxT("invalid index in wxListBox::GetString") ); |
227 | return GetPeer()->MacGetString(n); | |
b4726a58 SC |
228 | } |
229 | ||
6cce68ea | 230 | void wxListBox::DoInsertItems(const wxArrayString& items, unsigned int pos) |
b4726a58 | 231 | { |
6cce68ea | 232 | wxCHECK_RET( IsValidInsert(pos), wxT("invalid index in wxListBox::InsertItems") ); |
cee24bf7 | 233 | |
6cce68ea SC |
234 | InvalidateBestSize(); |
235 | ||
236 | GetPeer()->MacInsert( pos, items ); | |
b4726a58 SC |
237 | } |
238 | ||
6cce68ea | 239 | void wxListBox::SetString(unsigned int n, const wxString& s) |
b4726a58 | 240 | { |
6cce68ea SC |
241 | GetPeer()->MacSetString( n, s ); |
242 | } | |
b4726a58 | 243 | |
6cce68ea SC |
244 | wxSize wxListBox::DoGetBestSize() const |
245 | { | |
246 | int lbWidth = 100; // some defaults | |
247 | int lbHeight = 110; | |
248 | int wLine; | |
b4726a58 | 249 | |
b4726a58 | 250 | { |
6cce68ea SC |
251 | wxMacPortStateHelper st( UMAGetWindowPort( (WindowRef)MacGetTopLevelWindowRef() ) ); |
252 | ||
253 | // TODO: clean this up | |
254 | if ( m_font.Ok() ) | |
b4726a58 | 255 | { |
6cce68ea SC |
256 | ::TextFont( m_font.MacGetFontNum() ); |
257 | ::TextSize( m_font.MacGetFontSize() ); | |
258 | ::TextFace( m_font.MacGetFontStyle() ); | |
259 | } | |
260 | else | |
261 | { | |
262 | ::TextFont( kFontIDMonaco ); | |
263 | ::TextSize( 9 ); | |
264 | ::TextFace( 0 ); | |
b4726a58 | 265 | } |
cee24bf7 | 266 | |
6cce68ea SC |
267 | // Find the widest line |
268 | for (unsigned int i = 0; i < GetCount(); i++) | |
269 | { | |
270 | wxString str( GetString( i ) ); | |
b4726a58 | 271 | |
6cce68ea SC |
272 | #if wxUSE_UNICODE |
273 | Point bounds = {0, 0}; | |
274 | SInt16 baseline; | |
b4726a58 | 275 | |
6cce68ea SC |
276 | // NB: what if m_font.Ok() == false ??? |
277 | ::GetThemeTextDimensions( | |
278 | wxMacCFStringHolder( str, m_font.GetEncoding() ), | |
279 | kThemeCurrentPortFont, | |
280 | kThemeStateActive, | |
281 | false, | |
282 | &bounds, | |
283 | &baseline ); | |
284 | wLine = bounds.h; | |
285 | #else | |
286 | wLine = ::TextWidth( str.c_str(), 0, str.length() ); | |
287 | #endif | |
b4726a58 | 288 | |
6cce68ea SC |
289 | lbWidth = wxMax( lbWidth, wLine ); |
290 | } | |
b4726a58 | 291 | |
6cce68ea SC |
292 | // Add room for the scrollbar |
293 | lbWidth += wxSystemSettings::GetMetric( wxSYS_VSCROLL_X ); | |
b4726a58 | 294 | |
6cce68ea SC |
295 | // And just a bit more |
296 | int cy = 12; | |
297 | int cx = ::TextWidth( "X", 0, 1 ); | |
298 | lbWidth += cx; | |
b4726a58 | 299 | |
6cce68ea SC |
300 | // don't make the listbox too tall (limit height to around 10 items) |
301 | // but don't make it too small neither | |
302 | lbHeight = wxMax( (cy + 4) * wxMin( wxMax( GetCount(), 3 ), 10 ), 70 ); | |
303 | } | |
b4726a58 | 304 | |
6cce68ea | 305 | return wxSize( lbWidth, lbHeight ); |
b4726a58 SC |
306 | } |
307 | ||
6cce68ea | 308 | unsigned int wxListBox::GetCount() const |
b4726a58 | 309 | { |
6cce68ea | 310 | return GetPeer()->MacGetCount(); |
b4726a58 SC |
311 | } |
312 | ||
6cce68ea | 313 | void wxListBox::Refresh(bool eraseBack, const wxRect *rect) |
b4726a58 | 314 | { |
6cce68ea | 315 | wxControl::Refresh( eraseBack, rect ); |
b4726a58 SC |
316 | } |
317 | ||
6cce68ea SC |
318 | // Some custom controls depend on this |
319 | /* static */ wxVisualAttributes | |
320 | wxListBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
b4726a58 | 321 | { |
6cce68ea | 322 | wxVisualAttributes attr; |
b4726a58 | 323 | |
6cce68ea SC |
324 | attr.colFg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); |
325 | attr.colBg = wxSystemSettings::GetColour( wxSYS_COLOUR_LISTBOX ); | |
326 | attr.font = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT ); | |
b4726a58 | 327 | |
6cce68ea | 328 | return attr; |
b4726a58 SC |
329 | } |
330 | ||
6cce68ea | 331 | int wxListBox::DoListHitTest(const wxPoint& inpoint) const |
b4726a58 | 332 | { |
6cce68ea | 333 | OSStatus err; |
b4726a58 | 334 | |
6cce68ea SC |
335 | // There are few reasons why this is complicated: |
336 | // 1) There is no native HitTest function for Mac | |
337 | // 2) GetDataBrowserItemPartBounds only works on visible items | |
338 | // 3) We can't do it through GetDataBrowserTableView[Item]RowHeight | |
339 | // because what it returns is basically inaccurate in the context | |
340 | // of the coordinates we want here, but we use this as a guess | |
341 | // for where the first visible item lies | |
b4726a58 | 342 | |
6cce68ea | 343 | wxPoint point = inpoint; |
b4726a58 | 344 | |
6cce68ea SC |
345 | // interestingly enough 10.2 (and below?) have GetDataBrowserItemPartBounds |
346 | // giving root window coordinates but 10.3 and above give client coordinates | |
347 | // so we only compare using root window coordinates on 10.3 and up | |
348 | if ( UMAGetSystemVersion() < 0x1030 ) | |
349 | MacClientToRootWindow(&point.x, &point.y); | |
b4726a58 | 350 | |
6cce68ea SC |
351 | // get column property ID (req. for call to itempartbounds) |
352 | DataBrowserTableViewColumnID colId = 0; | |
353 | err = GetDataBrowserTableViewColumnProperty(m_peer->GetControlRef(), 0, &colId); | |
354 | wxCHECK_MSG(err == noErr, wxNOT_FOUND, wxT("Unexpected error from GetDataBrowserTableViewColumnProperty")); | |
b4726a58 | 355 | |
6cce68ea SC |
356 | // OK, first we need to find the first visible item we have - |
357 | // this will be the "low" for our binary search. There is no real | |
358 | // easy way around this, as we will need to do a SLOW linear search | |
359 | // until we find a visible item, but we can do a cheap calculation | |
360 | // via the row height to speed things up a bit | |
361 | UInt32 scrollx, scrolly; | |
362 | err = GetDataBrowserScrollPosition(m_peer->GetControlRef(), &scrollx, &scrolly); | |
363 | wxCHECK_MSG(err == noErr, wxNOT_FOUND, wxT("Unexpected error from GetDataBrowserScrollPosition")); | |
b4726a58 | 364 | |
6cce68ea SC |
365 | UInt16 height; |
366 | err = GetDataBrowserTableViewRowHeight(m_peer->GetControlRef(), &height); | |
367 | wxCHECK_MSG(err == noErr, wxNOT_FOUND, wxT("Unexpected error from GetDataBrowserTableViewRowHeight")); | |
b4726a58 | 368 | |
6cce68ea SC |
369 | // these indices are 0-based, as usual, so we need to add 1 to them when |
370 | // passing them to data browser functions which use 1-based indices | |
371 | int low = scrolly / height, | |
372 | high = GetCount() - 1; | |
b4726a58 | 373 | |
6cce68ea SC |
374 | // search for the first visible item (note that the scroll guess above |
375 | // is the low bounds of where the item might lie so we only use that as a | |
376 | // starting point - we should reach it within 1 or 2 iterations of the loop) | |
377 | while ( low <= high ) | |
378 | { | |
379 | Rect bounds; | |
380 | err = GetDataBrowserItemPartBounds( | |
381 | m_peer->GetControlRef(), low + 1, colId, | |
382 | kDataBrowserPropertyEnclosingPart, | |
383 | &bounds); // note +1 to translate to Mac ID | |
384 | if ( err == noErr ) | |
385 | break; | |
b4726a58 | 386 | |
6cce68ea SC |
387 | // errDataBrowserItemNotFound is expected as it simply means that the |
388 | // item is not currently visible -- but other errors are not | |
389 | wxCHECK_MSG( err == errDataBrowserItemNotFound, wxNOT_FOUND, | |
390 | wxT("Unexpected error from GetDataBrowserItemPartBounds") ); | |
789ae0cf | 391 | |
6cce68ea SC |
392 | low++; |
393 | } | |
de1b0aeb | 394 | |
6cce68ea SC |
395 | // NOW do a binary search for where the item lies, searching low again if |
396 | // we hit an item that isn't visible | |
397 | while ( low <= high ) | |
789ae0cf | 398 | { |
6cce68ea | 399 | int mid = (low + high) / 2; |
fdd4e6cc | 400 | |
6cce68ea SC |
401 | Rect bounds; |
402 | err = GetDataBrowserItemPartBounds( | |
403 | m_peer->GetControlRef(), mid + 1, colId, | |
404 | kDataBrowserPropertyEnclosingPart, | |
405 | &bounds); //note +1 to trans to mac id | |
406 | wxCHECK_MSG( err == noErr || err == errDataBrowserItemNotFound, | |
407 | wxNOT_FOUND, | |
408 | wxT("Unexpected error from GetDataBrowserItemPartBounds") ); | |
789ae0cf | 409 | |
6cce68ea SC |
410 | if ( err == errDataBrowserItemNotFound ) |
411 | { | |
412 | // item not visible, attempt to find a visible one | |
413 | // search lower | |
414 | high = mid - 1; | |
415 | } | |
416 | else // visible item, do actual hitttest | |
417 | { | |
418 | // if point is within the bounds, return this item (since we assume | |
419 | // all x coords of items are equal we only test the x coord in | |
420 | // equality) | |
421 | if ((point.x >= bounds.left && point.x <= bounds.right) && | |
422 | (point.y >= bounds.top && point.y <= bounds.bottom) ) | |
423 | { | |
424 | // found! | |
425 | return mid; | |
426 | } | |
fdd4e6cc | 427 | |
6cce68ea SC |
428 | if ( point.y < bounds.top ) |
429 | // index(bounds) greater then key(point) | |
430 | high = mid - 1; | |
431 | else | |
432 | // index(bounds) less then key(point) | |
433 | low = mid + 1; | |
434 | } | |
435 | } | |
fdd4e6cc | 436 | |
6cce68ea | 437 | return wxNOT_FOUND; |
789ae0cf | 438 | } |
b4726a58 | 439 | |
b4726a58 | 440 | // ============================================================================ |
6cce68ea | 441 | // data browser based implementation |
b4726a58 | 442 | // ============================================================================ |
fe3dc505 | 443 | |
6cce68ea SC |
444 | const short kTextColumnId = 1024; |
445 | const short kNumericOrderColumnId = 1025; | |
446 | ||
447 | wxMacListBoxItem::wxMacListBoxItem() | |
fe3dc505 | 448 | { |
6cce68ea SC |
449 | m_data = NULL; |
450 | m_order = 0; | |
fe3dc505 SC |
451 | } |
452 | ||
6cce68ea | 453 | wxMacListBoxItem::~wxMacListBoxItem() |
fe3dc505 | 454 | { |
fe3dc505 SC |
455 | } |
456 | ||
ad9835c9 | 457 | void wxMacListBoxItem::SetOrder( SInt32 order ) |
facd6764 | 458 | { |
6cce68ea | 459 | m_order = order; |
facd6764 SC |
460 | } |
461 | ||
ad9835c9 | 462 | SInt32 wxMacListBoxItem::GetOrder() const |
facd6764 | 463 | { |
6cce68ea | 464 | return m_order; |
b4726a58 | 465 | } |
fdd4e6cc | 466 | |
ad9835c9 | 467 | void wxMacListBoxItem::SetData( void* data) |
b4726a58 | 468 | { |
6cce68ea | 469 | m_data = data; |
facd6764 SC |
470 | } |
471 | ||
ad9835c9 | 472 | void* wxMacListBoxItem::GetData() const |
facd6764 | 473 | { |
6cce68ea | 474 | return m_data; |
facd6764 SC |
475 | } |
476 | ||
6cce68ea | 477 | void wxMacListBoxItem::SetLabel( const wxString& str) |
facd6764 | 478 | { |
6cce68ea SC |
479 | m_label = str; |
480 | m_cfLabel.Assign( str , wxLocale::GetSystemEncoding()); | |
facd6764 SC |
481 | } |
482 | ||
6cce68ea | 483 | const wxString& wxMacListBoxItem::GetLabel() const |
facd6764 | 484 | { |
6cce68ea | 485 | return m_label; |
facd6764 SC |
486 | } |
487 | ||
ad9835c9 WS |
488 | bool wxMacListBoxItem::IsLessThan(wxMacDataItemBrowserControl *owner , |
489 | const wxMacDataItem* rhs, | |
6cce68ea | 490 | DataBrowserPropertyID sortProperty) const |
facd6764 | 491 | { |
6cce68ea SC |
492 | const wxMacListBoxItem* otherItem = dynamic_cast<const wxMacListBoxItem*>(rhs); |
493 | bool retval = false; | |
494 | switch (sortProperty) | |
b4726a58 | 495 | { |
6cce68ea SC |
496 | case kTextColumnId: |
497 | retval = m_label.CmpNoCase( otherItem->m_label) < 0; | |
498 | break; | |
facd6764 | 499 | |
6cce68ea SC |
500 | case kNumericOrderColumnId: |
501 | retval = m_order < otherItem->m_order; | |
502 | break; | |
9f884528 | 503 | |
6cce68ea SC |
504 | default: |
505 | break; | |
506 | }; | |
facd6764 | 507 | |
6cce68ea | 508 | return retval; |
facd6764 SC |
509 | } |
510 | ||
6cce68ea SC |
511 | OSStatus wxMacListBoxItem::GetSetData( wxMacDataItemBrowserControl *owner , |
512 | DataBrowserPropertyID property, | |
513 | DataBrowserItemDataRef itemData, | |
ad9835c9 | 514 | bool changeValue ) |
facd6764 | 515 | { |
6cce68ea SC |
516 | OSStatus err = errDataBrowserPropertyNotSupported; |
517 | wxListBox *list = wxDynamicCast( owner->GetPeer() , wxListBox ); | |
518 | wxCHECK_MSG( list != NULL , errDataBrowserPropertyNotSupported , wxT("Listbox expected")); | |
519 | wxCheckListBox *checklist = wxDynamicCast( list , wxCheckListBox ); | |
c6179a84 | 520 | |
6cce68ea | 521 | if ( !changeValue ) |
facd6764 | 522 | { |
6cce68ea | 523 | switch (property) |
b4726a58 | 524 | { |
6cce68ea SC |
525 | case kTextColumnId: |
526 | err = ::SetDataBrowserItemDataText( itemData, m_cfLabel ); | |
527 | err = noErr; | |
528 | break; | |
529 | ||
530 | case kNumericOrderColumnId: | |
531 | err = ::SetDataBrowserItemDataValue( itemData, m_order ); | |
532 | err = noErr; | |
533 | break; | |
534 | ||
535 | default: | |
536 | break; | |
b4726a58 | 537 | } |
facd6764 | 538 | } |
6cce68ea | 539 | else |
cee24bf7 | 540 | { |
6cce68ea | 541 | switch (property) |
cee24bf7 | 542 | { |
6cce68ea SC |
543 | // no editable props here |
544 | default: | |
545 | break; | |
b4726a58 | 546 | } |
6cce68ea SC |
547 | } |
548 | ||
549 | return err; | |
550 | } | |
cee24bf7 | 551 | |
ad9835c9 | 552 | void wxMacListBoxItem::Notification(wxMacDataItemBrowserControl *owner , |
6cce68ea SC |
553 | DataBrowserItemNotification message, |
554 | DataBrowserItemDataRef itemData ) const | |
555 | { | |
556 | wxMacDataBrowserListControl *lb = dynamic_cast<wxMacDataBrowserListControl*>(owner); | |
b4726a58 | 557 | |
6cce68ea | 558 | // we want to depend on as little as possible to make sure tear-down of controls is safe |
ad9835c9 | 559 | |
6cce68ea SC |
560 | if ( message == kDataBrowserItemRemoved) |
561 | { | |
562 | if ( lb != NULL && lb->GetClientDataType() == wxClientData_Object ) | |
cee24bf7 | 563 | { |
6cce68ea | 564 | delete (wxClientData*) (m_data); |
b4726a58 | 565 | } |
6cce68ea SC |
566 | |
567 | delete this; | |
568 | return; | |
b4726a58 | 569 | } |
ad9835c9 | 570 | |
6cce68ea SC |
571 | wxListBox *list = wxDynamicCast( owner->GetPeer() , wxListBox ); |
572 | wxCHECK_RET( list != NULL , wxT("Listbox expected")); | |
facd6764 | 573 | |
6cce68ea SC |
574 | bool trigger = false; |
575 | wxCommandEvent event( wxEVT_COMMAND_LISTBOX_SELECTED, list->GetId() ); | |
576 | switch (message) | |
facd6764 | 577 | { |
6cce68ea SC |
578 | case kDataBrowserItemDeselected: |
579 | if ( list->HasMultipleSelection() ) | |
580 | trigger = !lb->IsSelectionSuppressed(); | |
581 | break; | |
fdd4e6cc | 582 | |
6cce68ea SC |
583 | case kDataBrowserItemSelected: |
584 | trigger = !lb->IsSelectionSuppressed(); | |
585 | break; | |
facd6764 | 586 | |
6cce68ea SC |
587 | case kDataBrowserItemDoubleClicked: |
588 | event.SetEventType( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED ); | |
589 | trigger = true; | |
590 | break; | |
facd6764 | 591 | |
6cce68ea SC |
592 | default: |
593 | break; | |
594 | } | |
c6179a84 | 595 | |
6cce68ea SC |
596 | if ( trigger ) |
597 | { | |
598 | event.SetEventObject( list ); | |
599 | if ( list->HasClientObjectData() ) | |
600 | event.SetClientObject( (wxClientData*) m_data ); | |
601 | else if ( list->HasClientUntypedData() ) | |
602 | event.SetClientData( m_data ); | |
603 | event.SetString( m_label ); | |
604 | event.SetInt( owner->GetLineFromItem( this ) ); | |
605 | event.SetExtraLong( list->HasMultipleSelection() ? message == kDataBrowserItemSelected : true ); | |
606 | wxPostEvent( list->GetEventHandler(), event ); | |
607 | ||
608 | // direct notification is not always having the listbox GetSelection() having in synch with event | |
609 | // list->GetEventHandler()->ProcessEvent(event); | |
610 | } | |
facd6764 SC |
611 | } |
612 | ||
6cce68ea SC |
613 | wxMacDataBrowserListControl::wxMacDataBrowserListControl( wxListBox *peer, const wxPoint& pos, const wxSize& size, long style) |
614 | : wxMacDataItemBrowserControl( peer, pos, size, style ) | |
facd6764 | 615 | { |
6cce68ea SC |
616 | OSStatus err = noErr; |
617 | m_clientDataItemsType = wxClientData_None; | |
618 | m_stringSorted = style & wxLB_SORT; | |
ad9835c9 | 619 | |
6cce68ea SC |
620 | DataBrowserSelectionFlags options = kDataBrowserDragSelect; |
621 | if ( style & wxLB_MULTIPLE ) | |
622 | { | |
623 | options |= kDataBrowserAlwaysExtendSelection | kDataBrowserCmdTogglesSelection; | |
624 | } | |
625 | else if ( style & wxLB_EXTENDED ) | |
626 | { | |
627 | // default behaviour | |
628 | } | |
629 | else | |
630 | { | |
631 | options |= kDataBrowserSelectOnlyOne; | |
632 | } | |
633 | err = SetSelectionFlags( options ); | |
634 | verify_noerr( err ); | |
ad9835c9 | 635 | |
6cce68ea SC |
636 | DataBrowserListViewColumnDesc columnDesc; |
637 | columnDesc.headerBtnDesc.titleOffset = 0; | |
638 | columnDesc.headerBtnDesc.version = kDataBrowserListViewLatestHeaderDesc; | |
facd6764 | 639 | |
6cce68ea SC |
640 | columnDesc.headerBtnDesc.btnFontStyle.flags = |
641 | kControlUseFontMask | kControlUseJustMask; | |
8228b893 | 642 | |
6cce68ea SC |
643 | columnDesc.headerBtnDesc.btnContentInfo.contentType = kControlNoContent; |
644 | columnDesc.headerBtnDesc.btnFontStyle.just = teFlushDefault; | |
645 | columnDesc.headerBtnDesc.btnFontStyle.font = kControlFontViewSystemFont; | |
646 | columnDesc.headerBtnDesc.btnFontStyle.style = normal; | |
647 | columnDesc.headerBtnDesc.titleString = NULL; | |
c6179a84 | 648 | |
6cce68ea SC |
649 | columnDesc.headerBtnDesc.minimumWidth = 0; |
650 | columnDesc.headerBtnDesc.maximumWidth = 10000; | |
facd6764 | 651 | |
6cce68ea SC |
652 | columnDesc.propertyDesc.propertyID = kTextColumnId; |
653 | columnDesc.propertyDesc.propertyType = kDataBrowserTextType; | |
654 | columnDesc.propertyDesc.propertyFlags = kDataBrowserTableViewSelectionColumn; | |
655 | #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2 | |
656 | columnDesc.propertyDesc.propertyFlags |= kDataBrowserListViewTypeSelectColumn; | |
657 | #endif | |
facd6764 | 658 | |
6cce68ea | 659 | verify_noerr( AddColumn( &columnDesc, kDataBrowserListViewAppendColumn ) ); |
c6179a84 | 660 | |
6cce68ea SC |
661 | columnDesc.headerBtnDesc.minimumWidth = 0; |
662 | columnDesc.headerBtnDesc.maximumWidth = 0; | |
663 | columnDesc.propertyDesc.propertyID = kNumericOrderColumnId; | |
664 | columnDesc.propertyDesc.propertyType = kDataBrowserPropertyRelevanceRankPart; | |
665 | columnDesc.propertyDesc.propertyFlags = kDataBrowserTableViewSelectionColumn; | |
666 | #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2 | |
667 | columnDesc.propertyDesc.propertyFlags |= kDataBrowserListViewTypeSelectColumn; | |
cee24bf7 DS |
668 | #endif |
669 | ||
6cce68ea | 670 | verify_noerr( AddColumn( &columnDesc, kDataBrowserListViewAppendColumn ) ); |
c6179a84 | 671 | |
6cce68ea SC |
672 | SetDataBrowserSortProperty( m_controlRef , kTextColumnId); |
673 | if ( m_stringSorted ) | |
674 | { | |
675 | SetDataBrowserSortProperty( m_controlRef , kTextColumnId); | |
676 | SetDataBrowserSortOrder( m_controlRef , kDataBrowserOrderIncreasing); | |
677 | } | |
facd6764 | 678 | else |
6cce68ea SC |
679 | { |
680 | SetDataBrowserSortProperty( m_controlRef , kNumericOrderColumnId); | |
681 | SetDataBrowserSortOrder( m_controlRef , kDataBrowserOrderIncreasing); | |
682 | } | |
facd6764 | 683 | |
6cce68ea SC |
684 | verify_noerr( AutoSizeColumns() ); |
685 | verify_noerr( SetHiliteStyle(kDataBrowserTableViewFillHilite ) ); | |
686 | verify_noerr( SetHeaderButtonHeight( 0 ) ); | |
687 | err = SetHasScrollBars( (style & wxHSCROLL) != 0 , true ); | |
688 | #if 0 | |
689 | // shouldn't be necessary anymore under 10.2 | |
690 | m_peer->SetData( kControlNoPart, kControlDataBrowserIncludesFrameAndFocusTag, (Boolean)false ); | |
691 | m_peer->SetNeedsFocusRect( true ); | |
692 | #endif | |
facd6764 SC |
693 | } |
694 | ||
6cce68ea | 695 | wxMacDataBrowserListControl::~wxMacDataBrowserListControl() |
facd6764 | 696 | { |
facd6764 SC |
697 | } |
698 | ||
6cce68ea | 699 | |
ad9835c9 | 700 | wxMacListBoxItem* wxMacDataBrowserListControl::CreateItem() |
facd6764 | 701 | { |
6cce68ea SC |
702 | return new wxMacListBoxItem(); |
703 | } | |
55ae2833 | 704 | |
6cce68ea | 705 | wxListBox * wxMacDataBrowserListControl::GetPeer() const |
ad9835c9 WS |
706 | { |
707 | return wxDynamicCast( wxMacControl::GetPeer() , wxListBox ); | |
facd6764 SC |
708 | } |
709 | ||
ad9835c9 | 710 | wxClientDataType wxMacDataBrowserListControl::GetClientDataType() const |
facd6764 | 711 | { |
6cce68ea SC |
712 | return m_clientDataItemsType; |
713 | } | |
ad9835c9 | 714 | void wxMacDataBrowserListControl::SetClientDataType(wxClientDataType clientDataItemsType) |
6cce68ea SC |
715 | { |
716 | m_clientDataItemsType = clientDataItemsType; | |
717 | } | |
c6179a84 | 718 | |
ad9835c9 | 719 | unsigned int wxMacDataBrowserListControl::MacGetCount() const |
6cce68ea SC |
720 | { |
721 | return GetItemCount(wxMacDataBrowserRootContainer,false,kDataBrowserItemNoState); | |
facd6764 SC |
722 | } |
723 | ||
6cce68ea | 724 | void wxMacDataBrowserListControl::MacDelete( unsigned int n ) |
facd6764 | 725 | { |
6cce68ea SC |
726 | wxMacListBoxItem* item = (wxMacListBoxItem*)GetItemFromLine( n ); |
727 | RemoveItem( wxMacDataBrowserRootContainer, item ); | |
facd6764 SC |
728 | } |
729 | ||
6cce68ea | 730 | void wxMacDataBrowserListControl::MacInsert( unsigned int n, const wxString& text) |
facd6764 | 731 | { |
6cce68ea SC |
732 | wxMacListBoxItem* newItem = CreateItem(); |
733 | newItem->SetLabel( text ); | |
facd6764 | 734 | |
6cce68ea | 735 | if ( !m_stringSorted ) |
facd6764 | 736 | { |
6cce68ea SC |
737 | // increase the order of the lines to be shifted |
738 | unsigned int lines = MacGetCount(); | |
739 | for ( unsigned int i = n; i < lines; ++i) | |
facd6764 | 740 | { |
6cce68ea SC |
741 | wxMacListBoxItem* iter = (wxMacListBoxItem*) GetItemFromLine(i); |
742 | iter->SetOrder( iter->GetOrder() + 1 ); | |
facd6764 | 743 | } |
ad9835c9 | 744 | |
6cce68ea SC |
745 | SInt32 frontLineOrder = 0; |
746 | if ( n > 0 ) | |
facd6764 | 747 | { |
6cce68ea SC |
748 | wxMacListBoxItem* iter = (wxMacListBoxItem*) GetItemFromLine(n-1); |
749 | frontLineOrder = iter->GetOrder(); | |
facd6764 | 750 | } |
6cce68ea SC |
751 | newItem->SetOrder( frontLineOrder + 1 ); |
752 | } | |
ad9835c9 | 753 | |
6cce68ea SC |
754 | AddItem( wxMacDataBrowserRootContainer, newItem ); |
755 | } | |
c6179a84 | 756 | |
6cce68ea SC |
757 | void wxMacDataBrowserListControl::MacInsert( unsigned int n, const wxArrayString& items) |
758 | { | |
759 | size_t itemsCount = items.GetCount(); | |
760 | if ( itemsCount == 0 ) | |
761 | return; | |
ad9835c9 | 762 | |
6cce68ea | 763 | SInt32 frontLineOrder = 0; |
ad9835c9 | 764 | |
6cce68ea SC |
765 | if ( !m_stringSorted ) |
766 | { | |
767 | // increase the order of the lines to be shifted | |
768 | unsigned int lines = MacGetCount(); | |
769 | for ( unsigned int i = n; i < lines; ++i) | |
fdd4e6cc | 770 | { |
6cce68ea SC |
771 | wxMacListBoxItem* iter = (wxMacListBoxItem*) GetItemFromLine(i); |
772 | iter->SetOrder( iter->GetOrder() + itemsCount ); | |
773 | } | |
774 | if ( n > 0 ) | |
775 | { | |
776 | wxMacListBoxItem* iter = (wxMacListBoxItem*) GetItemFromLine(n-1); | |
777 | frontLineOrder = iter->GetOrder(); | |
facd6764 | 778 | } |
6cce68ea | 779 | } |
c6179a84 | 780 | |
6cce68ea SC |
781 | wxArrayMacDataItemPtr ids; |
782 | ids.SetCount( itemsCount ); | |
c6179a84 | 783 | |
6cce68ea SC |
784 | for ( unsigned int i = 0; i < itemsCount; ++i ) |
785 | { | |
786 | wxMacListBoxItem* item = CreateItem(); | |
787 | item->SetLabel( items[i]); | |
788 | if ( !m_stringSorted ) | |
789 | item->SetOrder( frontLineOrder + 1 + i ); | |
c6179a84 | 790 | |
6cce68ea | 791 | ids[i] = item; |
facd6764 SC |
792 | } |
793 | ||
6cce68ea | 794 | AddItems( wxMacDataBrowserRootContainer, ids ); |
facd6764 SC |
795 | } |
796 | ||
6cce68ea | 797 | int wxMacDataBrowserListControl::MacAppend( const wxString& text) |
facd6764 | 798 | { |
6cce68ea SC |
799 | wxMacListBoxItem* item = CreateItem(); |
800 | item->SetLabel( text ); | |
801 | if ( !m_stringSorted ) | |
802 | { | |
803 | unsigned int lines = MacGetCount(); | |
804 | if ( lines == 0 ) | |
805 | item->SetOrder( 1 ); | |
806 | else | |
807 | { | |
808 | wxMacListBoxItem* frontItem = (wxMacListBoxItem*) GetItemFromLine(lines-1); | |
809 | item->SetOrder( frontItem->GetOrder() + 1 ); | |
810 | } | |
811 | } | |
812 | AddItem( wxMacDataBrowserRootContainer, item ); | |
813 | ||
814 | return GetLineFromItem(item); | |
facd6764 SC |
815 | } |
816 | ||
6cce68ea | 817 | void wxMacDataBrowserListControl::MacClear() |
facd6764 | 818 | { |
6cce68ea SC |
819 | wxMacDataItemBrowserSelectionSuppressor suppressor(this); |
820 | RemoveAllItems(wxMacDataBrowserRootContainer); | |
facd6764 SC |
821 | } |
822 | ||
6cce68ea | 823 | void wxMacDataBrowserListControl::MacDeselectAll() |
b6a20a20 | 824 | { |
6cce68ea SC |
825 | wxMacDataItemBrowserSelectionSuppressor suppressor(this); |
826 | SetSelectedAllItems( kDataBrowserItemsRemove ); | |
b6a20a20 RD |
827 | } |
828 | ||
6cce68ea | 829 | void wxMacDataBrowserListControl::MacSetSelection( unsigned int n, bool select ) |
facd6764 | 830 | { |
6cce68ea SC |
831 | wxMacListBoxItem* item = (wxMacListBoxItem*) GetItemFromLine(n); |
832 | wxMacDataItemBrowserSelectionSuppressor suppressor(this); | |
fdd4e6cc | 833 | |
6cce68ea SC |
834 | if ( IsItemSelected( item ) != select ) |
835 | { | |
836 | if ( select ) | |
837 | SetSelectedItem( item, GetPeer()->HasMultipleSelection() ? kDataBrowserItemsAdd : kDataBrowserItemsAssign ); | |
838 | else | |
839 | SetSelectedItem( item, kDataBrowserItemsRemove ); | |
840 | } | |
841 | ||
842 | MacScrollTo( n ); | |
facd6764 SC |
843 | } |
844 | ||
6cce68ea | 845 | bool wxMacDataBrowserListControl::MacIsSelected( unsigned int n ) const |
facd6764 | 846 | { |
6cce68ea SC |
847 | wxMacListBoxItem* item = (wxMacListBoxItem*) GetItemFromLine(n); |
848 | return IsItemSelected( item ); | |
facd6764 SC |
849 | } |
850 | ||
6cce68ea SC |
851 | int wxMacDataBrowserListControl::MacGetSelection() const |
852 | { | |
853 | wxMacDataItemPtr first, last; | |
854 | GetSelectionAnchor( &first, &last ); | |
fdd4e6cc | 855 | |
6cce68ea SC |
856 | if ( first != NULL ) |
857 | { | |
858 | return GetLineFromItem( first ); | |
859 | } | |
facd6764 | 860 | |
6cce68ea SC |
861 | return -1; |
862 | } | |
863 | ||
864 | int wxMacDataBrowserListControl::MacGetSelections( wxArrayInt& aSelections ) const | |
facd6764 | 865 | { |
6cce68ea SC |
866 | aSelections.Empty(); |
867 | wxArrayMacDataItemPtr selectedItems; | |
868 | GetItems( wxMacDataBrowserRootContainer, false , kDataBrowserItemIsSelected, selectedItems); | |
519cb848 | 869 | |
6cce68ea | 870 | int count = selectedItems.GetCount(); |
e42e45a9 | 871 | |
6cce68ea SC |
872 | for ( int i = 0; i < count; ++i) |
873 | { | |
874 | aSelections.Add(GetLineFromItem(selectedItems[i])); | |
875 | } | |
876 | ||
877 | return count; | |
facd6764 SC |
878 | } |
879 | ||
6cce68ea | 880 | void wxMacDataBrowserListControl::MacSetString( unsigned int n, const wxString& text ) |
443e2f09 | 881 | { |
6cce68ea SC |
882 | // as we don't store the strings we only have to issue a redraw |
883 | wxMacListBoxItem* item = (wxMacListBoxItem*) GetItemFromLine( n); | |
884 | item->SetLabel( text ); | |
885 | UpdateItem( wxMacDataBrowserRootContainer, item , kTextColumnId ); | |
886 | } | |
443e2f09 | 887 | |
6cce68ea SC |
888 | wxString wxMacDataBrowserListControl::MacGetString( unsigned int n ) const |
889 | { | |
890 | wxMacListBoxItem * item = (wxMacListBoxItem*) GetItemFromLine( n ); | |
891 | return item->GetLabel(); | |
892 | } | |
cee24bf7 | 893 | |
ad9835c9 | 894 | void wxMacDataBrowserListControl::MacSetClientData( unsigned int n, void * data) |
6cce68ea SC |
895 | { |
896 | wxMacListBoxItem* item = (wxMacListBoxItem*) GetItemFromLine( n); | |
897 | item->SetData( data ); | |
898 | // not displayed, therefore no Update infos to DataBrowser | |
899 | } | |
443e2f09 | 900 | |
ad9835c9 | 901 | void * wxMacDataBrowserListControl::MacGetClientData( unsigned int n) const |
6cce68ea SC |
902 | { |
903 | wxMacListBoxItem * item = (wxMacListBoxItem*) GetItemFromLine( n ); | |
ad9835c9 | 904 | return item->GetData(); |
6cce68ea | 905 | } |
443e2f09 | 906 | |
6cce68ea SC |
907 | void wxMacDataBrowserListControl::MacScrollTo( unsigned int n ) |
908 | { | |
909 | RevealItem( GetItemFromLine( n) , kDataBrowserRevealWithoutSelecting ); | |
910 | } | |
443e2f09 | 911 | |
6cce68ea | 912 | #if 0 |
443e2f09 | 913 | |
6cce68ea | 914 | // in case we need that one day |
443e2f09 | 915 | |
6cce68ea SC |
916 | // ============================================================================ |
917 | // HIView owner-draw-based implementation | |
918 | // ============================================================================ | |
443e2f09 | 919 | |
6cce68ea SC |
920 | static pascal void ListBoxDrawProc( |
921 | ControlRef browser, DataBrowserItemID item, DataBrowserPropertyID property, | |
922 | DataBrowserItemState itemState, const Rect *itemRect, SInt16 depth, Boolean isColorDevice ) | |
923 | { | |
924 | CFStringRef cfString; | |
925 | ThemeDrawingState themeState; | |
926 | long systemVersion; | |
443e2f09 | 927 | |
6cce68ea SC |
928 | GetThemeDrawingState( &themeState ); |
929 | cfString = CFStringCreateWithFormat( NULL, NULL, CFSTR("Row %d"), item ); | |
c00fed0e | 930 | |
6cce68ea SC |
931 | // In this sample we handle the "selected" state; all others fall through to our "active" state |
932 | if ( itemState == kDataBrowserItemIsSelected ) | |
c00fed0e | 933 | { |
6cce68ea | 934 | ThemeBrush colorBrushID; |
443e2f09 | 935 | |
6cce68ea SC |
936 | // TODO: switch over to wxSystemSettingsNative::GetColour() when kThemeBrushSecondaryHighlightColor |
937 | // is incorporated Panther DB starts using kThemeBrushSecondaryHighlightColor | |
938 | // for inactive browser highlighting | |
939 | Gestalt( gestaltSystemVersion, &systemVersion ); | |
940 | if ( (systemVersion >= 0x00001030) && !IsControlActive( browser ) ) | |
941 | colorBrushID = kThemeBrushSecondaryHighlightColor; | |
942 | else | |
943 | colorBrushID = kThemeBrushPrimaryHighlightColor; | |
443e2f09 | 944 | |
6cce68ea SC |
945 | // First paint the hilite rect, then the text on top |
946 | SetThemePen( colorBrushID, 32, true ); | |
947 | PaintRect( itemRect ); | |
948 | SetThemeDrawingState( themeState, false ); | |
c00fed0e | 949 | } |
443e2f09 | 950 | |
6cce68ea SC |
951 | DrawThemeTextBox( cfString, kThemeApplicationFont, kThemeStateActive, true, itemRect, teFlushDefault, NULL ); |
952 | SetThemeDrawingState( themeState, true ); | |
953 | ||
954 | if ( cfString != NULL ) | |
955 | CFRelease( cfString ); | |
c00fed0e VZ |
956 | } |
957 | ||
179e085f | 958 | #endif |
6cce68ea SC |
959 | |
960 | ||
961 | #endif |