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