]> git.saurik.com Git - wxWidgets.git/blame - src/motif/radiobox.cpp
changed wxImage::ComputeHistogram to use wxHashMap
[wxWidgets.git] / src / motif / radiobox.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobox.cpp
3// Purpose: wxRadioBox
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
af0bb3b1 9// Licence: wxWindows licence
4bb6408c
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "radiobox.h"
14#endif
15
bcd055ae
JJ
16#ifdef __VMS
17#define XtDisplay XTDISPLAY
18#endif
19
f6045f99
GD
20#include "wx/defs.h"
21
4bb6408c 22#include "wx/radiobox.h"
a4294b78
JS
23#include "wx/utils.h"
24
338dd992
JJ
25#ifdef __VMS__
26#pragma message disable nosimpint
27#endif
a4294b78
JS
28#include <Xm/Label.h>
29#include <Xm/LabelG.h>
30#include <Xm/ToggleB.h>
31#include <Xm/ToggleBG.h>
32#include <Xm/RowColumn.h>
33#include <Xm/Form.h>
9838df2c 34#include <Xm/Frame.h>
338dd992
JJ
35#ifdef __VMS__
36#pragma message enable nosimpint
37#endif
a4294b78 38
3096bd2f 39#include "wx/motif/private.h"
a4294b78
JS
40
41void wxRadioBoxCallback (Widget w, XtPointer clientData,
af0bb3b1 42 XmToggleButtonCallbackStruct * cbs);
4bb6408c 43
4bb6408c 44IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
4bb6408c
JS
45
46// Radio box item
47wxRadioBox::wxRadioBox()
48{
49 m_selectedButton = -1;
50 m_noItems = 0;
51 m_noRowsOrCols = 0;
52 m_majorDim = 0 ;
a4294b78
JS
53
54 m_formWidget = (WXWidget) 0;
9838df2c 55 m_frameWidget = (WXWidget) 0;
a4294b78
JS
56 m_labelWidget = (WXWidget) 0;
57 m_radioButtons = (WXWidget*) NULL;
58 m_radioButtonLabels = (wxString*) NULL;
4bb6408c
JS
59}
60
61bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
62 const wxPoint& pos, const wxSize& size,
63 int n, const wxString choices[],
64 int majorDim, long style,
65 const wxValidator& val, const wxString& name)
66{
67 m_selectedButton = -1;
68 m_noItems = n;
9838df2c
JS
69 m_formWidget = (WXWidget) 0;
70 m_frameWidget = (WXWidget) 0;
a4294b78
JS
71 m_labelWidget = (WXWidget) 0;
72 m_radioButtons = (WXWidget*) NULL;
73 m_radioButtonLabels = (wxString*) NULL;
0d57be45
JS
74 m_backgroundColour = parent->GetBackgroundColour();
75 m_foregroundColour = parent->GetForegroundColour();
da175b2c 76 m_font = parent->GetFont();
4bb6408c
JS
77
78 SetName(name);
79 SetValidator(val);
80
81 parent->AddChild(this);
82
83 m_windowStyle = (long&)style;
84
85 if (id == -1)
86 m_windowId = NewControlId();
87 else
88 m_windowId = id;
89
90 m_noRowsOrCols = majorDim;
91
92 if (majorDim==0)
93 m_majorDim = n ;
94 else
95 m_majorDim = majorDim ;
96
a4294b78
JS
97 Widget parentWidget = (Widget) parent->GetClientWidget();
98
99 wxString label1(wxStripMenuCodes(title));
100
31528cd3 101 Widget formWidget = XtVaCreateManagedWidget (name.c_str(),
af0bb3b1
VZ
102 xmFormWidgetClass, parentWidget,
103 XmNmarginHeight, 0,
104 XmNmarginWidth, 0,
105 NULL);
a4294b78
JS
106
107 m_formWidget = (WXWidget) formWidget;
108
da175b2c 109 XmFontList fontList = (XmFontList) m_font.GetFontList(1.0, XtDisplay(parentWidget));
a4294b78
JS
110 if (label1 != "")
111 {
31528cd3
VZ
112 wxXmString text(label1);
113 (void)XtVaCreateManagedWidget(label1.c_str(),
a4294b78 114#if wxUSE_GADGETS
31528cd3
VZ
115 style & wxCOLOURED ? xmLabelWidgetClass
116 : xmLabelGadgetClass,
af0bb3b1 117 formWidget,
a4294b78 118#else
af0bb3b1 119 xmLabelWidgetClass, formWidget,
a4294b78 120#endif
ea57084d 121 XmNfontList, fontList,
98300330 122 XmNlabelString, text(),
af0bb3b1 123 NULL);
a4294b78
JS
124 }
125
9838df2c 126 Widget frameWidget = XtVaCreateManagedWidget ("frame",
af0bb3b1 127 xmFrameWidgetClass, formWidget,
9838df2c 128 XmNshadowType, XmSHADOW_IN,
af0bb3b1
VZ
129// XmNmarginHeight, 0,
130// XmNmarginWidth, 0,
131 NULL);
9838df2c
JS
132
133 m_frameWidget = (WXWidget) frameWidget;
134
a4294b78
JS
135 Arg args[3];
136
978db70e 137 m_majorDim = (n + m_majorDim - 1) / m_majorDim;
a4294b78
JS
138
139 XtSetArg (args[0], XmNorientation, ((style & wxHORIZONTAL) == wxHORIZONTAL ?
af0bb3b1 140 XmHORIZONTAL : XmVERTICAL));
98300330 141 XtSetArg (args[1], XmNnumColumns, m_majorDim);
a4294b78 142
9838df2c 143 Widget radioBoxWidget = XmCreateRadioBox (frameWidget, "radioBoxWidget", args, 2);
a4294b78 144 m_mainWidget = (WXWidget) radioBoxWidget;
4bb6408c 145
a4294b78
JS
146
147 if (m_labelWidget)
af0bb3b1
VZ
148 XtVaSetValues ((Widget) m_labelWidget,
149 XmNtopAttachment, XmATTACH_FORM,
150 XmNleftAttachment, XmATTACH_FORM,
151 XmNalignment, XmALIGNMENT_BEGINNING,
152 NULL);
a4294b78
JS
153
154 XtVaSetValues (radioBoxWidget,
af0bb3b1
VZ
155 XmNtopAttachment, m_labelWidget ? XmATTACH_WIDGET : XmATTACH_FORM,
156 XmNtopWidget, m_labelWidget ? (Widget) m_labelWidget : formWidget,
157 XmNbottomAttachment, XmATTACH_FORM,
158 XmNleftAttachment, XmATTACH_FORM,
159 XmNrightAttachment, XmATTACH_FORM,
160 NULL);
a4294b78
JS
161
162 // if (style & wxFLAT)
163 // XtVaSetValues (radioBoxWidget, XmNborderWidth, 1, NULL);
164
165 m_radioButtons = new WXWidget[n];
166 m_radioButtonLabels = new wxString[n];
167 int i;
168 for (i = 0; i < n; i++)
169 {
170 wxString str(wxStripMenuCodes(choices[i]));
171 m_radioButtonLabels[i] = str;
172 m_radioButtons[i] = (WXWidget) XtVaCreateManagedWidget ((char*) (const char*) str,
173#if wxUSE_GADGETS
af0bb3b1 174 xmToggleButtonGadgetClass, radioBoxWidget,
a4294b78 175#else
af0bb3b1 176 xmToggleButtonWidgetClass, radioBoxWidget,
a4294b78 177#endif
ea57084d 178 XmNfontList, fontList,
af0bb3b1 179 NULL);
a4294b78 180 XtAddCallback ((Widget) m_radioButtons[i], XmNvalueChangedCallback, (XtCallbackProc) wxRadioBoxCallback,
d7dcb939 181 (XtPointer) this);
a4294b78
JS
182 }
183 SetSelection (0);
184
da175b2c 185 m_font = parent->GetFont();
4b5f3fe6
JS
186 ChangeFont(FALSE);
187
9838df2c 188 // XtManageChild((Widget) m_formWidget);
a4294b78
JS
189 XtManageChild (radioBoxWidget);
190
191 SetCanAddEventHandler(TRUE);
192 AttachWidget (parent, m_mainWidget, m_formWidget, pos.x, pos.y, size.x, size.y);
193
0d57be45 194 ChangeBackgroundColour();
a4294b78
JS
195
196 return TRUE;
4bb6408c
JS
197}
198
199
200wxRadioBox::~wxRadioBox()
201{
a4294b78
JS
202 delete[] m_radioButtonLabels;
203 delete[] m_radioButtons;
15d5ab67 204
b412f9be 205 DetachWidget(m_formWidget);
15d5ab67
JS
206 DetachWidget(m_mainWidget);
207
208 if (m_labelWidget)
209 XtDestroyWidget((Widget) m_labelWidget);
210 XtDestroyWidget((Widget) m_mainWidget);
211 XtDestroyWidget((Widget) m_formWidget);
212
213 m_mainWidget = (WXWidget) 0;
214 m_formWidget = (WXWidget) 0;
215 m_labelWidget = (WXWidget) 0;
4bb6408c
JS
216}
217
218wxString wxRadioBox::GetLabel(int item) const
219{
a4294b78
JS
220 if (item < 0 || item >= m_noItems)
221 return wxEmptyString;
222
223 Widget widget = (Widget) m_radioButtons[item];
224 XmString text;
225 char *s;
226 XtVaGetValues (widget,
af0bb3b1
VZ
227 XmNlabelString, &text,
228 NULL);
a4294b78
JS
229
230 if (XmStringGetLtoR (text, XmSTRING_DEFAULT_CHARSET, &s))
231 {
232 // Should we free 'text'???
233 XmStringFree(text);
234 wxString str(s);
235 XtFree (s);
236 return str;
237 }
238 else
239 {
240 XmStringFree(text);
241 return wxEmptyString;
242 }
4bb6408c
JS
243}
244
245void wxRadioBox::SetLabel(int item, const wxString& label)
246{
a4294b78
JS
247 if (item < 0 || item >= m_noItems)
248 return;
249
250 Widget widget = (Widget) m_radioButtons[item];
251 if (label != "")
252 {
253 wxString label1(wxStripMenuCodes(label));
254 XmString text = XmStringCreateSimple ((char*) (const char*) label1);
255 XtVaSetValues (widget,
af0bb3b1
VZ
256 XmNlabelString, text,
257 XmNlabelType, XmSTRING,
258 NULL);
a4294b78
JS
259 XmStringFree (text);
260 }
4bb6408c
JS
261}
262
263int wxRadioBox::FindString(const wxString& s) const
264{
a4294b78
JS
265 int i;
266 for (i = 0; i < m_noItems; i++)
267 if (s == m_radioButtonLabels[i])
268 return i;
4bb6408c
JS
269 return -1;
270}
271
272void wxRadioBox::SetSelection(int n)
273{
274 if ((n < 0) || (n >= m_noItems))
275 return;
4bb6408c
JS
276
277 m_selectedButton = n;
a4294b78
JS
278
279 m_inSetValue = TRUE;
280
281 XmToggleButtonSetState ((Widget) m_radioButtons[n], TRUE, FALSE);
282
283 int i;
284 for (i = 0; i < m_noItems; i++)
285 if (i != n)
286 XmToggleButtonSetState ((Widget) m_radioButtons[i], FALSE, FALSE);
287
288 m_inSetValue = FALSE;
4bb6408c
JS
289}
290
291// Get single selection, for single choice list items
292int wxRadioBox::GetSelection() const
293{
294 return m_selectedButton;
295}
296
297// Find string for position
298wxString wxRadioBox::GetString(int n) const
299{
a4294b78
JS
300 if ((n < 0) || (n >= m_noItems))
301 return wxEmptyString;
302 return m_radioButtonLabels[n];
4bb6408c
JS
303}
304
bfc6fde4 305void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
4bb6408c 306{
a4294b78 307 bool managed = XtIsManaged((Widget) m_formWidget);
4bb6408c 308
a4294b78
JS
309 if (managed)
310 XtUnmanageChild ((Widget) m_formWidget);
4bb6408c 311
a4294b78
JS
312 int xx = x; int yy = y;
313 AdjustForParentClientOrigin(xx, yy, sizeFlags);
4bb6408c 314
a4294b78
JS
315 if (x > -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
316 XtVaSetValues ((Widget) m_formWidget, XmNleftAttachment, XmATTACH_SELF,
af0bb3b1 317 XmNx, xx, NULL);
a4294b78
JS
318 if (y > -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
319 XtVaSetValues ((Widget) m_formWidget, XmNtopAttachment, XmATTACH_SELF,
af0bb3b1 320 XmNy, yy, NULL);
4bb6408c 321
a4294b78
JS
322 // Must set the actual RadioBox to be desired size MINUS label size
323 Dimension labelWidth = 0, labelHeight = 0, actualWidth = 0, actualHeight = 0;
4bb6408c 324
a4294b78
JS
325 if (m_labelWidget)
326 XtVaGetValues ((Widget) m_labelWidget, XmNwidth, &labelWidth, XmNheight, &labelHeight, NULL);
4bb6408c 327
a4294b78
JS
328 actualWidth = width;
329 actualHeight = height - labelHeight;
330
331 if (width > -1)
332 {
333 XtVaSetValues ((Widget) m_mainWidget, XmNwidth, actualWidth, NULL);
334 }
335 if (height > -1)
336 {
337 XtVaSetValues ((Widget) m_mainWidget, XmNheight, actualHeight, NULL);
338 }
339 if (managed)
340 XtManageChild ((Widget) m_formWidget);
4bb6408c
JS
341}
342
343// Enable a specific button
a4294b78 344void wxRadioBox::Enable(int n, bool enable)
4bb6408c 345{
a4294b78
JS
346 if ((n < 0) || (n >= m_noItems))
347 return;
348
349 XtSetSensitive ((Widget) m_radioButtons[n], (Boolean) enable);
4bb6408c
JS
350}
351
352// Enable all controls
af0bb3b1 353bool wxRadioBox::Enable(bool enable)
4bb6408c 354{
af0bb3b1
VZ
355 if ( !wxControl::Enable(enable) )
356 return FALSE;
4bb6408c 357
a4294b78
JS
358 int i;
359 for (i = 0; i < m_noItems; i++)
360 XtSetSensitive ((Widget) m_radioButtons[i], (Boolean) enable);
af0bb3b1
VZ
361
362 return TRUE;
4bb6408c
JS
363}
364
9838df2c
JS
365bool wxRadioBox::Show(bool show)
366{
367 // TODO: show/hide all children
368 return wxControl::Show(show);
369}
370
4bb6408c 371// Show a specific button
a4294b78 372void wxRadioBox::Show(int n, bool show)
4bb6408c 373{
a4294b78
JS
374 // This method isn't complete, and we try do do our best...
375 // It's main purpose isn't for allowing Show/Unshow dynamically,
376 // but rather to provide a way to design wxRadioBox such:
377 //
378 // o Val1 o Val2 o Val3
379 // o Val4 o Val6
380 // o Val7 o Val8 o Val9
381 //
382 // In my case, this is a 'direction' box, and the Show(5,False) is
383 // coupled with an Enable(5,False)
384 //
385 if ((n < 0) || (n >= m_noItems))
386 return;
387
388 XtVaSetValues ((Widget) m_radioButtons[n],
389 XmNindicatorOn, (unsigned char) show,
390 NULL);
391
392 // Please note that this is all we can do: removing the label
393 // if switching to unshow state. However, when switching
394 // to the on state, it's the prog. resp. to call SetLabel(item,...)
395 // after this call!!
396 if (!show)
397 wxRadioBox::SetLabel (n, " ");
4bb6408c
JS
398}
399
400// For single selection items only
401wxString wxRadioBox::GetStringSelection () const
402{
403 int sel = GetSelection ();
404 if (sel > -1)
405 return this->GetString (sel);
406 else
407 return wxString("");
408}
409
410bool wxRadioBox::SetStringSelection (const wxString& s)
411{
412 int sel = FindString (s);
413 if (sel > -1)
414 {
415 SetSelection (sel);
416 return TRUE;
417 }
418 else
419 return FALSE;
420}
421
422void wxRadioBox::Command (wxCommandEvent & event)
423{
424 SetSelection (event.m_commandInt);
425 ProcessCommand (event);
426}
427
4b5f3fe6 428void wxRadioBox::ChangeFont(bool keepOriginalSize)
0d57be45 429{
94b49b93
JS
430 wxWindow::ChangeFont(keepOriginalSize);
431
da175b2c 432 XmFontList fontList = (XmFontList) m_font.GetFontList(1.0, XtDisplay((Widget) GetTopWidget()));
94b49b93
JS
433
434 int i;
435 for (i = 0; i < m_noItems; i++)
436 {
437 WXWidget radioButton = m_radioButtons[i];
438
439 XtVaSetValues ((Widget) radioButton,
440 XmNfontList, fontList,
af0bb3b1 441 XmNtopAttachment, XmATTACH_FORM,
94b49b93
JS
442 NULL);
443 }
0d57be45
JS
444}
445
446void wxRadioBox::ChangeBackgroundColour()
447{
94b49b93
JS
448 wxWindow::ChangeBackgroundColour();
449
9838df2c
JS
450 DoChangeBackgroundColour((Widget) m_frameWidget, m_backgroundColour);
451
452 int selectPixel = wxBLACK->AllocColour(wxGetDisplay());
453
94b49b93
JS
454 int i;
455 for (i = 0; i < m_noItems; i++)
456 {
457 WXWidget radioButton = m_radioButtons[i];
458
459 DoChangeBackgroundColour(radioButton, m_backgroundColour, TRUE);
9838df2c
JS
460
461 XtVaSetValues ((Widget) radioButton,
462 XmNselectColor, selectPixel,
463 NULL);
94b49b93 464 }
0d57be45
JS
465}
466
467void wxRadioBox::ChangeForegroundColour()
468{
94b49b93
JS
469 wxWindow::ChangeForegroundColour();
470
471 int i;
472 for (i = 0; i < m_noItems; i++)
473 {
474 WXWidget radioButton = m_radioButtons[i];
475
476 DoChangeForegroundColour(radioButton, m_foregroundColour);
477 }
0d57be45
JS
478}
479
a4294b78 480void wxRadioBoxCallback (Widget w, XtPointer clientData,
af0bb3b1 481 XmToggleButtonCallbackStruct * cbs)
a4294b78
JS
482{
483 if (!cbs->set)
484 return;
485
486 wxRadioBox *item = (wxRadioBox *) clientData;
487 int sel = -1;
488 int i;
3c85ada9 489 for (i = 0; i < item->GetCount(); i++)
a4294b78
JS
490 if (item->GetRadioButtons() && ((Widget) (item->GetRadioButtons()[i]) == w))
491 sel = i;
492 item->SetSel(sel);
493
494 if (item->InSetValue())
495 return;
496
497 wxCommandEvent event (wxEVT_COMMAND_RADIOBOX_SELECTED, item->GetId());
498 event.m_commandInt = sel;
499 event.SetEventObject(item);
500 item->ProcessCommand (event);
501}
4bb6408c 502