]> git.saurik.com Git - wxWidgets.git/blob - src/motif/listbox.cpp
correct closing comments in #endifs (patch 1756990)
[wxWidgets.git] / src / motif / listbox.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/motif/listbox.cpp
3 // Purpose: wxListBox
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 17/09/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
14
15 #if wxUSE_LISTBOX
16
17 #include "wx/listbox.h"
18
19 #ifndef WX_PRECOMP
20 #include "wx/dynarray.h"
21 #include "wx/log.h"
22 #include "wx/utils.h"
23 #include "wx/settings.h"
24 #include "wx/arrstr.h"
25 #endif
26
27 #ifdef __VMS
28 #define XtParent XTPARENT
29 #define XtDisplay XTDISPLAY
30 #endif
31
32 #ifdef __VMS__
33 #pragma message disable nosimpint
34 #endif
35 #include <Xm/List.h>
36 #ifdef __VMS__
37 #pragma message enable nosimpint
38 #endif
39 #include "wx/motif/private.h"
40
41 IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl)
42
43 static void wxListBoxCallback(Widget w,
44 XtPointer clientData,
45 XmListCallbackStruct * cbs);
46
47 // ----------------------------------------------------------------------------
48 // wxSizeKeeper
49 // ----------------------------------------------------------------------------
50
51 // helper class to reduce code duplication
52 class wxSizeKeeper
53 {
54 int m_x, m_y;
55 int m_w, m_h;
56 wxWindow* m_wnd;
57 public:
58 wxSizeKeeper( wxWindow* w )
59 : m_wnd( w )
60 {
61 m_wnd->GetSize( &m_w, &m_h );
62 m_wnd->GetPosition( &m_x, &m_y );
63 }
64
65 void Restore()
66 {
67 int x, y;
68
69 m_wnd->GetSize( &x, &y );
70 if( x != m_x || y != m_y )
71 m_wnd->SetSize( m_x, m_y, m_w, m_h );
72 }
73 };
74
75 // ============================================================================
76 // list box control implementation
77 // ============================================================================
78
79 // Listbox item
80 wxListBox::wxListBox()
81 {
82 m_noItems = 0;
83 }
84
85 bool wxListBox::Create(wxWindow *parent, wxWindowID id,
86 const wxPoint& pos,
87 const wxSize& size,
88 int n, const wxString choices[],
89 long style,
90 const wxValidator& validator,
91 const wxString& name)
92 {
93 if( !wxControl::CreateControl( parent, id, pos, size, style,
94 validator, name ) )
95 return false;
96 PreCreation();
97
98 m_noItems = (unsigned int)n;
99
100 Widget parentWidget = (Widget) parent->GetClientWidget();
101 Display* dpy = XtDisplay(parentWidget);
102
103 Arg args[4];
104 int count = 0;
105 XtSetArg( args[count], XmNlistSizePolicy, XmCONSTANT ); ++count;
106 XtSetArg( args[count], XmNselectionPolicy,
107 ( m_windowStyle & wxLB_MULTIPLE ) ? XmMULTIPLE_SELECT :
108 ( m_windowStyle & wxLB_EXTENDED ) ? XmEXTENDED_SELECT :
109 XmBROWSE_SELECT );
110 ++count;
111 if( m_font.Ok() )
112 {
113 XtSetArg( args[count],
114 (String)wxFont::GetFontTag(), m_font.GetFontTypeC(dpy) );
115 ++count;
116 }
117 if( m_windowStyle & wxLB_ALWAYS_SB )
118 {
119 XtSetArg( args[count], XmNscrollBarDisplayPolicy, XmSTATIC );
120 ++count;
121 }
122
123 Widget listWidget =
124 XmCreateScrolledList(parentWidget,
125 name.char_str(), args, count);
126
127 m_mainWidget = (WXWidget) listWidget;
128
129 Set(n, choices);
130
131 XtManageChild (listWidget);
132
133 wxSize best = GetBestSize();
134 if( size.x != -1 ) best.x = size.x;
135 if( size.y != -1 ) best.y = size.y;
136
137 XtAddCallback (listWidget,
138 XmNbrowseSelectionCallback,
139 (XtCallbackProc) wxListBoxCallback,
140 (XtPointer) this);
141 XtAddCallback (listWidget,
142 XmNextendedSelectionCallback,
143 (XtCallbackProc) wxListBoxCallback,
144 (XtPointer) this);
145 XtAddCallback (listWidget,
146 XmNmultipleSelectionCallback,
147 (XtCallbackProc) wxListBoxCallback,
148 (XtPointer) this);
149 XtAddCallback (listWidget,
150 XmNdefaultActionCallback,
151 (XtCallbackProc) wxListBoxCallback,
152 (XtPointer) this);
153
154 PostCreation();
155 AttachWidget (parent, m_mainWidget, (WXWidget) NULL,
156 pos.x, pos.y, best.x, best.y);
157
158 return true;
159 }
160
161 bool wxListBox::Create(wxWindow *parent, wxWindowID id,
162 const wxPoint& pos,
163 const wxSize& size,
164 const wxArrayString& choices,
165 long style,
166 const wxValidator& validator,
167 const wxString& name)
168 {
169 wxCArrayString chs(choices);
170 return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
171 style, validator, name);
172 }
173
174 wxListBox::~wxListBox()
175 {
176 if( HasClientObjectData() )
177 m_clientDataDict.DestroyData();
178 }
179
180 void wxListBox::SetSelectionPolicy()
181 {
182 Widget listBox = (Widget)m_mainWidget;
183 Arg args[3];
184
185 XtSetArg( args[0], XmNlistSizePolicy, XmCONSTANT );
186
187 XtSetArg( args[1], XmNselectionPolicy,
188 ( m_windowStyle & wxLB_MULTIPLE ) ? XmMULTIPLE_SELECT :
189 ( m_windowStyle & wxLB_EXTENDED ) ? XmEXTENDED_SELECT :
190 XmBROWSE_SELECT );
191
192 XtSetValues( listBox, args, 2 );
193 }
194
195 void wxListBox::DoSetFirstItem( int N )
196 {
197 int count, length;
198
199 if (!IsValid(N))
200 return;
201
202 XtVaGetValues ((Widget) m_mainWidget,
203 XmNvisibleItemCount, &count,
204 XmNitemCount, &length,
205 NULL);
206 if ((N + count) >= length)
207 N = length - count;
208 XmListSetPos ((Widget) m_mainWidget, N + 1);
209 }
210
211 void wxListBox::Delete(unsigned int n)
212 {
213 Widget listBox = (Widget) m_mainWidget;
214
215 XmListDeletePos (listBox, n + 1);
216
217 m_clientDataDict.Delete(n, HasClientObjectData());
218 m_noItems --;
219 }
220
221 int wxListBox::DoAppend(const wxString& item)
222 {
223 Widget listBox = (Widget) m_mainWidget;
224
225 int n;
226 XtVaGetValues (listBox, XmNitemCount, &n, NULL);
227 wxXmString text( item );
228 // XmListAddItem(listBox, text, n + 1);
229 XmListAddItemUnselected (listBox, text(), 0);
230
231 // It seems that if the list is cleared, we must re-ask for
232 // selection policy!!
233 SetSelectionPolicy();
234
235 m_noItems ++;
236
237 return GetCount() - 1;
238 }
239
240 void wxListBox::DoSetItems(const wxArrayString& items, void** clientData)
241 {
242 Widget listBox = (Widget) m_mainWidget;
243
244 if( HasClientObjectData() )
245 m_clientDataDict.DestroyData();
246
247 XmString *text = new XmString[items.GetCount()];
248 unsigned int i;
249 for (i = 0; i < items.GetCount(); ++i)
250 text[i] = wxStringToXmString (items[i]);
251
252 if ( clientData )
253 for (i = 0; i < items.GetCount(); ++i)
254 m_clientDataDict.Set(i, (wxClientData*)clientData[i], false);
255
256 XmListAddItems (listBox, text, items.GetCount(), 0);
257 for (i = 0; i < items.GetCount(); i++)
258 XmStringFree (text[i]);
259 delete[] text;
260
261 // It seems that if the list is cleared, we must re-ask for
262 // selection policy!!
263 SetSelectionPolicy();
264
265 m_noItems = items.GetCount();
266 }
267
268 int wxDoFindStringInList(Widget w, const wxString& s)
269 {
270 wxXmString str( s );
271 int *positions = NULL;
272 int no_positions = 0;
273 bool success = XmListGetMatchPos (w, str(),
274 &positions, &no_positions);
275
276 if (success && positions)
277 {
278 int pos = positions[0];
279 XtFree ((char *) positions);
280 return pos - 1;
281 }
282 else
283 return -1;
284 }
285
286 int wxListBox::FindString(const wxString& s, bool WXUNUSED(bCase)) const
287 {
288 // FIXME: back to base class for not supported value of bCase
289
290 return wxDoFindStringInList( (Widget)m_mainWidget, s );
291 }
292
293 void wxListBox::Clear()
294 {
295 if (m_noItems <= 0)
296 return;
297
298 wxSizeKeeper sk( this );
299 Widget listBox = (Widget) m_mainWidget;
300
301 XmListDeleteAllItems (listBox);
302 if( HasClientObjectData() )
303 m_clientDataDict.DestroyData();
304
305 sk.Restore();
306
307 m_noItems = 0;
308 }
309
310 void wxListBox::DoSetSelection(int N, bool select)
311 {
312 m_inSetValue = true;
313 if (select)
314 {
315 #if 0
316 if (m_windowStyle & wxLB_MULTIPLE)
317 {
318 int *selections = NULL;
319 int n = GetSelections (&selections);
320
321 // This hack is supposed to work, to make it possible
322 // to select more than one item, but it DOESN'T under Motif 1.1.
323
324 XtVaSetValues ((Widget) m_mainWidget,
325 XmNselectionPolicy, XmMULTIPLE_SELECT,
326 NULL);
327
328 int i;
329 for (i = 0; i < n; i++)
330 XmListSelectPos ((Widget) m_mainWidget,
331 selections[i] + 1, False);
332
333 XmListSelectPos ((Widget) m_mainWidget, N + 1, False);
334
335 XtVaSetValues ((Widget) m_mainWidget,
336 XmNselectionPolicy, XmEXTENDED_SELECT,
337 NULL);
338 }
339 else
340 #endif // 0
341 XmListSelectPos ((Widget) m_mainWidget, N + 1, False);
342
343 }
344 else
345 XmListDeselectPos ((Widget) m_mainWidget, N + 1);
346
347 m_inSetValue = false;
348 }
349
350 bool wxListBox::IsSelected(int N) const
351 {
352 // In Motif, no simple way to determine if the item is selected.
353 wxArrayInt theSelections;
354 int count = GetSelections (theSelections);
355 if (count == 0)
356 return false;
357 else
358 {
359 int j;
360 for (j = 0; j < count; j++)
361 if (theSelections[j] == N)
362 return true;
363 }
364 return false;
365 }
366
367 void wxListBox::DoSetItemClientObject(unsigned int n, wxClientData* clientData)
368 {
369 m_clientDataDict.Set(n, clientData, false);
370 }
371
372 wxClientData* wxListBox::DoGetItemClientObject(unsigned int n) const
373 {
374 return m_clientDataDict.Get(n);
375 }
376
377 void *wxListBox::DoGetItemClientData(unsigned int n) const
378 {
379 return (void*)m_clientDataDict.Get(n);
380 }
381
382 void wxListBox::DoSetItemClientData(unsigned int n, void *Client_data)
383 {
384 m_clientDataDict.Set(n, (wxClientData*)Client_data, false);
385 }
386
387 // Return number of selections and an array of selected integers
388 int wxListBox::GetSelections(wxArrayInt& aSelections) const
389 {
390 aSelections.Empty();
391
392 Widget listBox = (Widget) m_mainWidget;
393 int *posList = NULL;
394 int posCnt = 0;
395 bool flag = XmListGetSelectedPos (listBox, &posList, &posCnt);
396 if (flag)
397 {
398 if (posCnt > 0)
399 {
400 aSelections.Alloc(posCnt);
401
402 int i;
403 for (i = 0; i < posCnt; i++)
404 aSelections.Add(posList[i] - 1);
405
406 XtFree ((char *) posList);
407 return posCnt;
408 }
409 else
410 return 0;
411 }
412 else
413 return 0;
414 }
415
416 // Get single selection, for single choice list items
417 int wxDoGetSelectionInList(Widget listBox)
418 {
419 int *posList = NULL;
420 int posCnt = 0;
421 bool flag = XmListGetSelectedPos (listBox, &posList, &posCnt);
422 if (flag)
423 {
424 int id = -1;
425 if (posCnt > 0)
426 id = posList[0] - 1;
427 XtFree ((char *) posList);
428 return id;
429 }
430 else
431 return -1;
432 }
433
434 int wxListBox::GetSelection() const
435 {
436 return wxDoGetSelectionInList((Widget) m_mainWidget);
437 }
438
439 // Find string for position
440 wxString wxDoGetStringInList( Widget listBox, int n )
441 {
442 XmString *strlist;
443 int count;
444 XtVaGetValues( listBox,
445 XmNitemCount, &count,
446 XmNitems, &strlist,
447 NULL );
448 if( n < count && n >= 0 )
449 return wxXmStringToString( strlist[n] );
450 else
451 return wxEmptyString;
452 }
453
454 wxString wxListBox::GetString(unsigned int n) const
455 {
456 return wxDoGetStringInList( (Widget)m_mainWidget, n );
457 }
458
459 void wxListBox::DoInsertItems(const wxArrayString& items, unsigned int pos)
460 {
461 Widget listBox = (Widget) m_mainWidget;
462
463 XmString *text = new XmString[items.GetCount()];
464 unsigned int i;
465 // Steve Hammes: Motif 1.1 compatibility
466 // #if XmVersion > 1100
467 // Corrected by Sergey Krasnov from Steve Hammes' code
468 #if XmVersion > 1001
469 for (i = 0; i < items.GetCount(); i++)
470 text[i] = wxStringToXmString(items[i]);
471 XmListAddItemsUnselected(listBox, text, items.GetCount(), pos+1);
472 #else
473 for (i = 0; i < items.GetCount(); i++)
474 {
475 text[i] = wxStringToXmString(items[i]);
476 // Another Sergey correction
477 XmListAddItemUnselected(listBox, text[i], pos+i+1);
478 }
479 #endif
480 for (i = 0; i < items.GetCount(); i++)
481 XmStringFree(text[i]);
482 delete[] text;
483
484 // It seems that if the list is cleared, we must re-ask for
485 // selection policy!!
486 SetSelectionPolicy();
487
488 m_noItems += items.GetCount();
489 }
490
491 void wxListBox::SetString(unsigned int n, const wxString& s)
492 {
493 wxSizeKeeper sk( this );
494 Widget listBox = (Widget) m_mainWidget;
495
496 wxXmString text( s );
497
498 // delete the item and add it again.
499 // FIXME isn't there a way to change it in place?
500 XmListDeletePos (listBox, n+1);
501 XmListAddItem (listBox, text(), n+1);
502
503 sk.Restore();
504 }
505
506 void wxListBox::Command (wxCommandEvent & event)
507 {
508 if (event.GetExtraLong())
509 SetSelection (event.GetInt());
510 else
511 {
512 Deselect (event.GetInt());
513 return;
514 }
515 ProcessCommand (event);
516 }
517
518 void wxListBoxCallback (Widget WXUNUSED(w), XtPointer clientData,
519 XmListCallbackStruct * cbs)
520 {
521 wxListBox *item = (wxListBox *) clientData;
522
523 if (item->InSetValue())
524 return;
525
526 wxEventType evtType;
527
528 if( cbs->reason == XmCR_DEFAULT_ACTION )
529 evtType = wxEVT_COMMAND_LISTBOX_DOUBLECLICKED;
530 else
531 evtType = wxEVT_COMMAND_LISTBOX_SELECTED;
532
533 int n = cbs->item_position - 1;
534 wxCommandEvent event (evtType, item->GetId());
535 if ( item->HasClientObjectData() )
536 event.SetClientObject( item->GetClientObject(n) );
537 else if ( item->HasClientUntypedData() )
538 event.SetClientData( item->GetClientData(n) );
539 event.SetInt(n);
540 event.SetExtraLong(true);
541 event.SetEventObject(item);
542 event.SetString( item->GetString( n ) );
543
544 int x = -1;
545 if( NULL != cbs->event && cbs->event->type == ButtonRelease )
546 {
547 XButtonEvent* evt = (XButtonEvent*)cbs->event;
548
549 x = evt->x;
550 }
551
552 switch (cbs->reason)
553 {
554 case XmCR_MULTIPLE_SELECT:
555 case XmCR_BROWSE_SELECT:
556 #if wxUSE_CHECKLISTBOX
557 item->DoToggleItem( n, x );
558 #endif
559 case XmCR_DEFAULT_ACTION:
560 item->GetEventHandler()->ProcessEvent(event);
561 break;
562 case XmCR_EXTENDED_SELECT:
563 switch (cbs->selection_type)
564 {
565 case XmINITIAL:
566 case XmADDITION:
567 case XmMODIFICATION:
568 item->DoToggleItem( n, x );
569 item->GetEventHandler()->ProcessEvent(event);
570 break;
571 }
572 break;
573 }
574 }
575
576 WXWidget wxListBox::GetTopWidget() const
577 {
578 return (WXWidget) XtParent( (Widget) m_mainWidget );
579 }
580
581 void wxListBox::ChangeBackgroundColour()
582 {
583 wxWindow::ChangeBackgroundColour();
584
585 Widget parent = XtParent ((Widget) m_mainWidget);
586 Widget hsb, vsb;
587
588 XtVaGetValues (parent,
589 XmNhorizontalScrollBar, &hsb,
590 XmNverticalScrollBar, &vsb,
591 NULL);
592
593 /* TODO: should scrollbars be affected? Should probably have separate
594 * function to change them (by default, taken from wxSystemSettings)
595 */
596 wxColour backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
597 wxDoChangeBackgroundColour((WXWidget) hsb, backgroundColour, true);
598 wxDoChangeBackgroundColour((WXWidget) vsb, backgroundColour, true);
599
600 XtVaSetValues (hsb,
601 XmNtroughColor, backgroundColour.AllocColour(XtDisplay(hsb)),
602 NULL);
603 XtVaSetValues (vsb,
604 XmNtroughColor, backgroundColour.AllocColour(XtDisplay(vsb)),
605 NULL);
606
607 // MBN: why change parent's background? It looks really ugly.
608 // wxDoChangeBackgroundColour((WXWidget) parent, m_backgroundColour, true);
609 }
610
611 void wxListBox::ChangeForegroundColour()
612 {
613 wxWindow::ChangeForegroundColour();
614
615 Widget parent = XtParent ((Widget) m_mainWidget);
616 Widget hsb, vsb;
617
618 XtVaGetValues(parent,
619 XmNhorizontalScrollBar, &hsb,
620 XmNverticalScrollBar, &vsb,
621 NULL);
622
623 /* TODO: should scrollbars be affected? Should probably have separate
624 function to change them (by default, taken from wxSystemSettings)
625
626 wxDoChangeForegroundColour((WXWidget) hsb, m_foregroundColour);
627 wxDoChangeForegroundColour((WXWidget) vsb, m_foregroundColour);
628 wxDoChangeForegroundColour((WXWidget) parent, m_foregroundColour);
629 */
630 }
631
632 unsigned int wxListBox::GetCount() const
633 {
634 return m_noItems;
635 }
636
637 #define LIST_SCROLL_SPACING 6
638
639 wxSize wxDoGetListBoxBestSize( Widget listWidget, const wxWindow* window )
640 {
641 int max;
642 Dimension spacing, highlight, xmargin, ymargin, shadow;
643 int width = 0;
644 int x, y;
645
646 XtVaGetValues( listWidget,
647 XmNitemCount, &max,
648 XmNlistSpacing, &spacing,
649 XmNhighlightThickness, &highlight,
650 XmNlistMarginWidth, &xmargin,
651 XmNlistMarginHeight, &ymargin,
652 XmNshadowThickness, &shadow,
653 NULL );
654
655 for( size_t i = 0; i < (size_t)max; ++i )
656 {
657 window->GetTextExtent( wxDoGetStringInList( listWidget, i ), &x, &y );
658 width = wxMax( width, x );
659 }
660
661 // use some arbitrary value if there are no strings
662 if( width == 0 )
663 width = 100;
664
665 // get my
666 window->GetTextExtent( "v", &x, &y );
667
668 // make it a little larger than widest string, plus the scrollbar
669 width += wxSystemSettings::GetMetric( wxSYS_VSCROLL_X )
670 + 2 * highlight + LIST_SCROLL_SPACING + 2 * xmargin + 2 * shadow;
671
672 // at least 3 items, at most 10
673 int height = wxMax( 3, wxMin( 10, max ) ) *
674 ( y + spacing + 2 * highlight ) + 2 * ymargin + 2 * shadow;
675
676 return wxSize( width, height );
677 }
678
679 wxSize wxListBox::DoGetBestSize() const
680 {
681 return wxDoGetListBoxBestSize( (Widget)m_mainWidget, this );
682 }
683
684 #endif // wxUSE_LISTBOX