]> git.saurik.com Git - wxWidgets.git/blame - src/motif/choice.cpp
use wxDEPRECATED around GetNoHistoryFiles()
[wxWidgets.git] / src / motif / choice.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: choice.cpp
3// Purpose: wxChoice
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#ifdef __GNUG__
13#pragma implementation "choice.h"
14#endif
15
bcd055ae 16#ifdef __VMS
4dff3400
JJ
17#define XtDisplay XTDISPLAY
18#define XtParent XTPARENT
19#endif
20
f6045f99
GD
21#include "wx/defs.h"
22
4bb6408c 23#include "wx/choice.h"
f97c9854
JS
24#include "wx/utils.h"
25
338dd992
JJ
26#ifdef __VMS__
27#pragma message disable nosimpint
28#endif
f97c9854
JS
29#include <Xm/Xm.h>
30#include <Xm/PushBG.h>
31#include <Xm/PushB.h>
32#include <Xm/RowColumn.h>
338dd992
JJ
33#ifdef __VMS__
34#pragma message enable nosimpint
35#endif
f97c9854
JS
36
37#include "wx/motif/private.h"
4bb6408c 38
3a73cc52
MB
39#define WIDTH_OVERHEAD 48
40#define WIDTH_OVERHEAD_SUBTRACT 40
41#define HEIGHT_OVERHEAD 15
42
4bb6408c 43IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl)
4bb6408c 44
f97c9854 45void wxChoiceCallback (Widget w, XtPointer clientData,
2d120f83 46 XtPointer ptr);
f97c9854
JS
47
48wxChoice::wxChoice()
49{
ec75d791
MB
50 Init();
51}
52
53void wxChoice::Init()
54{
55 InitBase();
56
f97c9854
JS
57 m_noStrings = 0;
58 m_buttonWidget = (WXWidget) 0;
59 m_menuWidget = (WXWidget) 0;
f97c9854 60 m_formWidget = (WXWidget) 0;
f97c9854
JS
61}
62
4bb6408c 63bool wxChoice::Create(wxWindow *parent, wxWindowID id,
2d120f83
JS
64 const wxPoint& pos,
65 const wxSize& size,
66 int n, const wxString choices[],
67 long style,
68 const wxValidator& validator,
69 const wxString& name)
4bb6408c 70{
ec75d791
MB
71 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
72 return FALSE;
31528cd3 73
f97c9854 74 Widget parentWidget = (Widget) parent->GetClientWidget();
31528cd3
VZ
75
76 m_formWidget = (WXWidget) XtVaCreateManagedWidget(name.c_str(),
2d120f83
JS
77 xmRowColumnWidgetClass, parentWidget,
78 XmNmarginHeight, 0,
79 XmNmarginWidth, 0,
80 XmNpacking, XmPACK_TIGHT,
81 XmNorientation, XmHORIZONTAL,
3a73cc52
MB
82 XmNresizeWidth, False,
83 XmNresizeHeight, False,
2d120f83 84 NULL);
31528cd3 85
f97c9854 86 XtVaSetValues ((Widget) m_formWidget, XmNspacing, 0, NULL);
31528cd3 87
2d120f83 88 /*
f97c9854
JS
89 * Create the popup menu
90 */
ec75d791
MB
91 m_menuWidget = (WXWidget) XmCreatePulldownMenu ((Widget) m_formWidget,
92 "choiceMenu", NULL, 0);
31528cd3 93
f97c9854
JS
94 if (n > 0)
95 {
96 int i;
97 for (i = 0; i < n; i++)
98 Append (choices[i]);
99 }
31528cd3 100
2d120f83 101 /*
f97c9854
JS
102 * Create button
103 */
104 Arg args[10];
105 Cardinal argcnt = 0;
31528cd3 106
ec75d791
MB
107 XtSetArg (args[argcnt], XmNsubMenuId, (Widget) m_menuWidget); ++argcnt;
108 XtSetArg (args[argcnt], XmNmarginWidth, 0); ++argcnt;
109 XtSetArg (args[argcnt], XmNmarginHeight, 0); ++argcnt;
110 XtSetArg (args[argcnt], XmNpacking, XmPACK_TIGHT); ++argcnt;
111 m_buttonWidget = (WXWidget) XmCreateOptionMenu ((Widget) m_formWidget,
112 "choiceButton",
113 args, argcnt);
31528cd3 114
f97c9854 115 m_mainWidget = m_buttonWidget;
31528cd3 116
f97c9854 117 XtManageChild ((Widget) m_buttonWidget);
9838df2c 118
f97c9854
JS
119 // New code from Roland Haenel (roland_haenel@ac.cybercity.de)
120 // Some time ago, I reported a problem with wxChoice-items under
121 // Linux and Motif 2.0 (they caused sporadic GPFs). Now it seems
122 // that I have found the code responsible for this behaviour.
123#if XmVersion >= 1002
124#if XmVersion < 2000
9838df2c
JS
125 // JACS, 24/1/99: this seems to cause a malloc crash later on, e.g.
126 // in controls sample.
dfe1eee3
VZ
127 //
128 // Widget optionLabel = XmOptionLabelGadget ((Widget) m_buttonWidget);
129 // XtUnmanageChild (optionLabel);
f97c9854
JS
130#endif
131#endif
9838df2c 132
a29ee706
MB
133 wxSize bestSize = GetBestSize();
134 if( size.x > 0 ) bestSize.x = size.x;
135 if( size.y > 0 ) bestSize.y = size.y;
136
f97c9854 137 XtVaSetValues((Widget) m_formWidget, XmNresizePolicy, XmRESIZE_NONE, NULL);
31528cd3 138
4b5f3fe6 139 ChangeFont(FALSE);
3a73cc52 140 ChangeBackgroundColour();
9838df2c 141
ec75d791 142 AttachWidget (parent, m_buttonWidget, m_formWidget,
a29ee706 143 pos.x, pos.y, bestSize.x, bestSize.y);
31528cd3 144
f97c9854
JS
145 return TRUE;
146}
147
148wxChoice::~wxChoice()
149{
2d120f83
JS
150 // For some reason destroying the menuWidget
151 // can cause crashes on some machines. It will
152 // be deleted implicitly by deleting the parent form
153 // anyway.
154 // XtDestroyWidget (menuWidget);
31528cd3 155
8aa04e8b
JS
156 if (GetMainWidget())
157 {
158 DetachWidget(GetMainWidget()); // Removes event handlers
b412f9be 159 DetachWidget(m_formWidget);
31528cd3 160
8aa04e8b
JS
161 XtDestroyWidget((Widget) m_formWidget);
162 m_formWidget = (WXWidget) 0;
31528cd3 163
8aa04e8b
JS
164 // Presumably the other widgets have been deleted now, via the form
165 m_mainWidget = (WXWidget) 0;
166 m_buttonWidget = (WXWidget) 0;
167 }
ec75d791
MB
168 if ( HasClientObjectData() )
169 m_clientDataDict.DestroyData();
4bb6408c
JS
170}
171
c33c81c3 172int wxChoice::DoAppend(const wxString& item)
4bb6408c 173{
31528cd3 174 Widget w = XtVaCreateManagedWidget (wxStripMenuCodes(item),
f97c9854 175#if USE_GADGETS
2d120f83 176 xmPushButtonGadgetClass, (Widget) m_menuWidget,
f97c9854 177#else
2d120f83 178 xmPushButtonWidgetClass, (Widget) m_menuWidget,
f97c9854 179#endif
2d120f83 180 NULL);
31528cd3 181
a8680e3e 182 wxDoChangeBackgroundColour((WXWidget) w, m_backgroundColour);
31528cd3 183
e1aae528
MB
184 if( m_font.Ok() )
185 wxDoChangeFont( w, m_font );
31528cd3 186
ec75d791 187 m_widgetArray.Add(w);
31528cd3 188
3a73cc52 189 char mnem = wxFindMnemonic (item);
f6bcfd97
BP
190 if (mnem != 0)
191 XtVaSetValues (w, XmNmnemonic, mnem, NULL);
31528cd3 192
ec75d791
MB
193 XtAddCallback (w, XmNactivateCallback,
194 (XtCallbackProc) wxChoiceCallback,
195 (XtPointer) this);
31528cd3 196
f6bcfd97
BP
197 if (m_noStrings == 0 && m_buttonWidget)
198 {
199 XtVaSetValues ((Widget) m_buttonWidget, XmNmenuHistory, w, NULL);
200 Widget label = XmOptionButtonGadget ((Widget) m_buttonWidget);
c13c9657 201 wxXmString text( item );
f6bcfd97 202 XtVaSetValues (label,
c13c9657 203 XmNlabelString, text(),
f6bcfd97 204 NULL);
f6bcfd97 205 }
ec75d791 206 m_stringList.Add(item);
f6bcfd97 207 m_noStrings ++;
c33c81c3 208
ec75d791 209 return GetCount() - 1;
4bb6408c
JS
210}
211
ec75d791 212void wxChoice::Delete(int n)
4bb6408c 213{
ec75d791
MB
214 Widget w = (Widget)m_widgetArray[n];
215 XtRemoveCallback(w, XmNactivateCallback, (XtCallbackProc)wxChoiceCallback,
216 (XtPointer)this);
217 m_stringList.DeleteNode(m_stringList.Item(n));
218 m_widgetArray.RemoveAt(size_t(n));
219 m_clientDataDict.Delete(n, HasClientObjectData());
31528cd3 220
ec75d791 221 XtDestroyWidget(w);
4bb6408c
JS
222 m_noStrings --;
223}
224
225void wxChoice::Clear()
226{
f97c9854 227 m_stringList.Clear ();
fd304d98 228 size_t i;
f97c9854
JS
229 for (i = 0; i < m_noStrings; i++)
230 {
ec75d791
MB
231 XtRemoveCallback((Widget) m_widgetArray[i],
232 XmNactivateCallback, (XtCallbackProc)wxChoiceCallback,
233 (XtPointer)this);
234 XtUnmanageChild ((Widget) m_widgetArray[i]);
235 XtDestroyWidget ((Widget) m_widgetArray[i]);
f97c9854 236 }
ec75d791 237 m_widgetArray.Clear();
f97c9854 238 if (m_buttonWidget)
ec75d791
MB
239 XtVaSetValues ((Widget) m_buttonWidget,
240 XmNmenuHistory, (Widget) NULL,
241 NULL);
f6bcfd97
BP
242
243 if ( HasClientObjectData() )
ec75d791 244 m_clientDataDict.DestroyData();
f6bcfd97 245
4bb6408c
JS
246 m_noStrings = 0;
247}
248
249int wxChoice::GetSelection() const
250{
2d120f83 251 XmString text;
2d120f83
JS
252 Widget label = XmOptionButtonGadget ((Widget) m_buttonWidget);
253 XtVaGetValues (label,
254 XmNlabelString, &text,
255 NULL);
da494b40
MB
256 wxXmString freeMe(text);
257 wxString s = wxXmStringToString( text );
31528cd3 258
da494b40 259 if (!s.IsEmpty())
2d120f83
JS
260 {
261 int i = 0;
ec75d791
MB
262 for (wxStringListNode* node = m_stringList.GetFirst ();
263 node; node = node->GetNext ())
f97c9854 264 {
da494b40 265 if (wxStrcmp(node->GetData(), s.c_str()) == 0)
2d120f83 266 {
2d120f83
JS
267 return i;
268 }
269 else
270 i++;
271 } // for()
31528cd3 272
2d120f83
JS
273 return -1;
274 }
2d120f83 275 return -1;
4bb6408c
JS
276}
277
278void wxChoice::SetSelection(int n)
279{
2d120f83 280 m_inSetValue = TRUE;
31528cd3 281
ec75d791 282 wxStringListNode *node = m_stringList.Item(n);
2d120f83 283 if (node)
f97c9854 284 {
ec75d791 285#if 0
2d120f83 286 Dimension selectionWidth, selectionHeight;
ec75d791 287#endif
fd304d98 288 wxXmString text( node->GetData() );
ec75d791
MB
289// MBN: this seems silly, at best, and causes wxChoices to be clipped:
290// will remove "soon"
291#if 0
292 XtVaGetValues ((Widget) m_widgetArray[n],
293 XmNwidth, &selectionWidth,
294 XmNheight, &selectionHeight,
295 NULL);
296#endif
2d120f83
JS
297 Widget label = XmOptionButtonGadget ((Widget) m_buttonWidget);
298 XtVaSetValues (label,
ec75d791 299 XmNlabelString, text(),
2d120f83 300 NULL);
ec75d791 301#if 0
2d120f83
JS
302 XtVaSetValues ((Widget) m_buttonWidget,
303 XmNwidth, selectionWidth, XmNheight, selectionHeight,
ec75d791
MB
304 XmNmenuHistory, (Widget) m_widgetArray[n], NULL);
305#endif
f97c9854 306 }
2d120f83 307 m_inSetValue = FALSE;
4bb6408c
JS
308}
309
310int wxChoice::FindString(const wxString& s) const
311{
f97c9854 312 int i = 0;
ec75d791
MB
313 for (wxStringListNode* node = m_stringList.GetFirst();
314 node; node = node->GetNext ())
f97c9854 315 {
ec75d791 316 if (s == node->GetData())
f97c9854 317 return i;
ec75d791
MB
318
319 i++;
f97c9854 320 }
ec75d791 321
f97c9854 322 return -1;
4bb6408c
JS
323}
324
325wxString wxChoice::GetString(int n) const
326{
ec75d791 327 wxStringListNode *node = m_stringList.Item(n);
2d120f83 328 if (node)
ec75d791 329 return node->GetData();
2d120f83
JS
330 else
331 return wxEmptyString;
f97c9854
JS
332}
333
334void wxChoice::SetColumns(int n)
335{
2d120f83 336 if (n<1) n = 1 ;
31528cd3 337
2d120f83
JS
338 short numColumns = n ;
339 Arg args[3];
31528cd3 340
2d120f83
JS
341 XtSetArg(args[0], XmNnumColumns, numColumns);
342 XtSetArg(args[1], XmNpacking, XmPACK_COLUMN);
343 XtSetValues((Widget) m_menuWidget,args,2) ;
f97c9854
JS
344}
345
346int wxChoice::GetColumns(void) const
347{
2d120f83 348 short numColumns ;
31528cd3 349
2d120f83
JS
350 XtVaGetValues((Widget) m_menuWidget,XmNnumColumns,&numColumns,NULL) ;
351 return numColumns ;
f97c9854
JS
352}
353
354void wxChoice::SetFocus()
355{
2d120f83 356 XmProcessTraversal(XtParent((Widget)m_mainWidget), XmTRAVERSE_CURRENT);
4bb6408c
JS
357}
358
bfc6fde4 359void wxChoice::DoSetSize(int x, int y, int width, int height, int sizeFlags)
4bb6408c 360{
f97c9854
JS
361 XtVaSetValues((Widget) m_formWidget, XmNresizePolicy, XmRESIZE_ANY, NULL);
362 bool managed = XtIsManaged((Widget) m_formWidget);
31528cd3 363
f97c9854
JS
364 if (managed)
365 XtUnmanageChild ((Widget) m_formWidget);
31528cd3 366
3a73cc52
MB
367 int actualWidth = width - WIDTH_OVERHEAD_SUBTRACT,
368 actualHeight = height - HEIGHT_OVERHEAD;
31528cd3 369
f97c9854
JS
370 if (width > -1)
371 {
fd304d98 372 size_t i;
f97c9854 373 for (i = 0; i < m_noStrings; i++)
ec75d791
MB
374 XtVaSetValues ((Widget) m_widgetArray[i],
375 XmNwidth, actualWidth,
376 NULL);
f97c9854 377 XtVaSetValues ((Widget) m_buttonWidget, XmNwidth, actualWidth,
2d120f83 378 NULL);
f97c9854
JS
379 }
380 if (height > -1)
381 {
3a73cc52 382#if 0
fd304d98 383 size_t i;
f97c9854 384 for (i = 0; i < m_noStrings; i++)
ec75d791
MB
385 XtVaSetValues ((Widget) m_widgetArray[i],
386 XmNheight, actualHeight,
387 NULL);
3a73cc52 388#endif
f97c9854 389 XtVaSetValues ((Widget) m_buttonWidget, XmNheight, actualHeight,
2d120f83 390 NULL);
f97c9854 391 }
31528cd3 392
f97c9854
JS
393 if (managed)
394 XtManageChild ((Widget) m_formWidget);
395 XtVaSetValues((Widget) m_formWidget, XmNresizePolicy, XmRESIZE_NONE, NULL);
31528cd3 396
bfc6fde4 397 wxControl::DoSetSize (x, y, width, height, sizeFlags);
4bb6408c
JS
398}
399
4bb6408c
JS
400void wxChoice::Command(wxCommandEvent & event)
401{
402 SetSelection (event.GetInt());
403 ProcessCommand (event);
404}
405
f9e02ac7 406void wxChoiceCallback (Widget w, XtPointer clientData, XtPointer WXUNUSED(ptr))
f97c9854
JS
407{
408 wxChoice *item = (wxChoice *) clientData;
409 if (item)
410 {
a4294b78 411 if (item->InSetValue())
f97c9854 412 return;
31528cd3 413
ec75d791
MB
414 int n = item->GetWidgets().Index(w);
415 if (n != wxNOT_FOUND)
f97c9854 416 {
ec75d791 417 wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, item->GetId());
55acd85e 418 event.SetEventObject(item);
ec75d791
MB
419 event.m_commandInt = n;
420 event.m_commandString = item->GetStrings().Item(n)->GetData();
421 if ( item->HasClientObjectData() )
422 event.SetClientObject( item->GetClientObject(n) );
423 else if ( item->HasClientUntypedData() )
424 event.SetClientData( item->GetClientData(n) );
f97c9854
JS
425 item->ProcessCommand (event);
426 }
427 }
428}
429
4b5f3fe6 430void wxChoice::ChangeFont(bool keepOriginalSize)
0d57be45 431{
321db4b6
JS
432 // Note that this causes the widget to be resized back
433 // to its original size! We therefore have to set the size
434 // back again. TODO: a better way in Motif?
da175b2c 435 if (m_font.Ok())
321db4b6
JS
436 {
437 int width, height, width1, height1;
438 GetSize(& width, & height);
31528cd3 439
da494b40
MB
440 WXFontType fontType =
441 m_font.GetFontType(XtDisplay((Widget) m_mainWidget));
442 WXString fontTag = wxFont::GetFontTag();
443
444 XtVaSetValues ((Widget) m_formWidget, fontTag, fontType, NULL);
445 XtVaSetValues ((Widget) m_buttonWidget, fontTag, fontType, NULL);
31528cd3 446
ec75d791
MB
447 for( size_t i = 0; i < m_noStrings; ++i )
448 XtVaSetValues( (Widget)m_widgetArray[i],
da494b40 449 fontTag, fontType,
ec75d791
MB
450 NULL );
451
321db4b6 452 GetSize(& width1, & height1);
4b5f3fe6 453 if (keepOriginalSize && (width != width1 || height != height1))
321db4b6
JS
454 {
455 SetSize(-1, -1, width, height);
456 }
457 }
0d57be45
JS
458}
459
460void wxChoice::ChangeBackgroundColour()
461{
a8680e3e
MB
462 wxDoChangeBackgroundColour(m_formWidget, m_backgroundColour);
463 wxDoChangeBackgroundColour(m_buttonWidget, m_backgroundColour);
464 wxDoChangeBackgroundColour(m_menuWidget, m_backgroundColour);
fd304d98 465 size_t i;
321db4b6 466 for (i = 0; i < m_noStrings; i++)
a8680e3e 467 wxDoChangeBackgroundColour(m_widgetArray[i], m_backgroundColour);
0d57be45
JS
468}
469
470void wxChoice::ChangeForegroundColour()
471{
a8680e3e
MB
472 wxDoChangeForegroundColour(m_formWidget, m_foregroundColour);
473 wxDoChangeForegroundColour(m_buttonWidget, m_foregroundColour);
474 wxDoChangeForegroundColour(m_menuWidget, m_foregroundColour);
fd304d98 475 size_t i;
321db4b6 476 for (i = 0; i < m_noStrings; i++)
a8680e3e 477 wxDoChangeForegroundColour(m_widgetArray[i], m_foregroundColour);
0d57be45 478}
6adaedf0 479
6adaedf0
JS
480int wxChoice::GetCount() const
481{
ec75d791 482 return m_noStrings;
6adaedf0
JS
483}
484
ec75d791 485void wxChoice::DoSetItemClientData(int n, void* clientData)
6adaedf0 486{
ec75d791 487 m_clientDataDict.Set(n, (wxClientData*)clientData, FALSE);
6adaedf0
JS
488}
489
ec75d791 490void* wxChoice::DoGetItemClientData(int n) const
6adaedf0 491{
ec75d791 492 return (void*)m_clientDataDict.Get(n);
6adaedf0
JS
493}
494
ec75d791 495void wxChoice::DoSetItemClientObject(int n, wxClientData* clientData)
6adaedf0 496{
ec75d791
MB
497 // don't delete, wxItemContainer does that for us
498 m_clientDataDict.Set(n, clientData, FALSE);
6adaedf0
JS
499}
500
ec75d791 501wxClientData* wxChoice::DoGetItemClientObject(int n) const
6adaedf0 502{
ec75d791 503 return m_clientDataDict.Get(n);
6adaedf0
JS
504}
505
ec75d791 506void wxChoice::SetString(int WXUNUSED(n), const wxString& WXUNUSED(s))
6adaedf0 507{
ec75d791 508 wxFAIL_MSG( wxT("wxChoice::SetString not implemented") );
6adaedf0
JS
509}
510
ec75d791 511wxSize wxChoice::GetItemsSize() const
6adaedf0 512{
ec75d791 513 int x, y, mx = 0, my = 0;
f6bcfd97 514
ec75d791
MB
515 // get my
516 GetTextExtent( "|", &x, &my );
f6bcfd97 517
ec75d791
MB
518 wxStringList::Node* curr = m_stringList.GetFirst();
519 while( curr )
520 {
521 GetTextExtent( curr->GetData(), &x, &y );
522 mx = wxMax( mx, x );
523 my = wxMax( my, y );
524 curr = curr->GetNext();
525 }
6adaedf0 526
ec75d791 527 return wxSize( mx, my );
6adaedf0
JS
528}
529
ec75d791 530wxSize wxChoice::DoGetBestSize() const
6adaedf0 531{
ec75d791
MB
532 wxSize items = GetItemsSize();
533 // FIXME arbitrary constants
3a73cc52
MB
534 return wxSize( ( items.x ? items.x + WIDTH_OVERHEAD : 120 ),
535 items.y + HEIGHT_OVERHEAD );
6adaedf0 536}