]> git.saurik.com Git - wxWidgets.git/blame - src/motif/radiobox.cpp
Fixed apparent typo in wxGridCellAttr::MergeWith, hopefully fixing
[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 53
a4294b78
JS
54 m_radioButtons = (WXWidget*) NULL;
55 m_radioButtonLabels = (wxString*) NULL;
4bb6408c
JS
56}
57
58bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
59 const wxPoint& pos, const wxSize& size,
60 int n, const wxString choices[],
61 int majorDim, long style,
62 const wxValidator& val, const wxString& name)
63{
64 m_selectedButton = -1;
65 m_noItems = n;
a4294b78
JS
66 m_radioButtons = (WXWidget*) NULL;
67 m_radioButtonLabels = (wxString*) NULL;
0d57be45
JS
68 m_backgroundColour = parent->GetBackgroundColour();
69 m_foregroundColour = parent->GetForegroundColour();
da175b2c 70 m_font = parent->GetFont();
4bb6408c
JS
71
72 SetName(name);
73 SetValidator(val);
74
75 parent->AddChild(this);
76
77 m_windowStyle = (long&)style;
78
79 if (id == -1)
80 m_windowId = NewControlId();
81 else
82 m_windowId = id;
83
84 m_noRowsOrCols = majorDim;
85
86 if (majorDim==0)
87 m_majorDim = n ;
88 else
89 m_majorDim = majorDim ;
90
a4294b78
JS
91 Widget parentWidget = (Widget) parent->GetClientWidget();
92
34774093 93 m_mainWidget = XtVaCreateWidget ("radioboxframe",
2ad99bc1
JS
94 xmFrameWidgetClass, parentWidget,
95 XmNshadowType, XmSHADOW_IN,
96 XmNresizeHeight, True,
97 XmNresizeWidth, True,
af0bb3b1 98 NULL);
a4294b78 99
2ad99bc1 100 wxString label1(wxStripMenuCodes(title));
a4294b78 101
da175b2c 102 XmFontList fontList = (XmFontList) m_font.GetFontList(1.0, XtDisplay(parentWidget));
2ad99bc1 103
a4294b78
JS
104 if (label1 != "")
105 {
31528cd3
VZ
106 wxXmString text(label1);
107 (void)XtVaCreateManagedWidget(label1.c_str(),
a4294b78 108#if wxUSE_GADGETS
31528cd3
VZ
109 style & wxCOLOURED ? xmLabelWidgetClass
110 : xmLabelGadgetClass,
2ad99bc1 111 (Widget)m_mainWidget,
a4294b78 112#else
2ad99bc1 113 xmLabelWidgetClass, (Widget)m_mainWidget,
a4294b78 114#endif
ea57084d 115 XmNfontList, fontList,
98300330 116 XmNlabelString, text(),
34774093
JS
117// XmNframeChildType is not in Motif 1.2.
118// TODO: check this still looks OK for Motif 1.2.
119#if (XmVersion > 1200) || defined(LESSTIF_VERSION)
2ad99bc1 120 XmNframeChildType, XmFRAME_TITLE_CHILD,
34774093 121#endif
2ad99bc1 122 XmNchildVerticalAlignment, XmALIGNMENT_CENTER,
af0bb3b1 123 NULL);
a4294b78
JS
124 }
125
126 Arg args[3];
127
978db70e 128 m_majorDim = (n + m_majorDim - 1) / m_majorDim;
a4294b78
JS
129
130 XtSetArg (args[0], XmNorientation, ((style & wxHORIZONTAL) == wxHORIZONTAL ?
af0bb3b1 131 XmHORIZONTAL : XmVERTICAL));
98300330 132 XtSetArg (args[1], XmNnumColumns, m_majorDim);
a4294b78 133
2ad99bc1 134 Widget radioBoxWidget = XmCreateRadioBox ((Widget)m_mainWidget, "radioBoxWidget", args, 2);
a4294b78
JS
135
136 // if (style & wxFLAT)
137 // XtVaSetValues (radioBoxWidget, XmNborderWidth, 1, NULL);
138
139 m_radioButtons = new WXWidget[n];
140 m_radioButtonLabels = new wxString[n];
141 int i;
142 for (i = 0; i < n; i++)
143 {
144 wxString str(wxStripMenuCodes(choices[i]));
145 m_radioButtonLabels[i] = str;
146 m_radioButtons[i] = (WXWidget) XtVaCreateManagedWidget ((char*) (const char*) str,
147#if wxUSE_GADGETS
af0bb3b1 148 xmToggleButtonGadgetClass, radioBoxWidget,
a4294b78 149#else
af0bb3b1 150 xmToggleButtonWidgetClass, radioBoxWidget,
a4294b78 151#endif
ea57084d 152 XmNfontList, fontList,
af0bb3b1 153 NULL);
a4294b78 154 XtAddCallback ((Widget) m_radioButtons[i], XmNvalueChangedCallback, (XtCallbackProc) wxRadioBoxCallback,
d7dcb939 155 (XtPointer) this);
a4294b78 156 }
a4294b78 157
da175b2c 158 m_font = parent->GetFont();
4b5f3fe6
JS
159 ChangeFont(FALSE);
160
2ad99bc1
JS
161 SetSelection (0);
162
163 XtRealizeWidget((Widget)m_mainWidget);
a4294b78 164 XtManageChild (radioBoxWidget);
2ad99bc1 165 XtManageChild ((Widget)m_mainWidget);
a4294b78
JS
166
167 SetCanAddEventHandler(TRUE);
2ad99bc1 168 AttachWidget (parent, m_mainWidget, NULL, pos.x, pos.y, size.x, size.y);
a4294b78 169
0d57be45 170 ChangeBackgroundColour();
a4294b78
JS
171
172 return TRUE;
4bb6408c
JS
173}
174
175
176wxRadioBox::~wxRadioBox()
177{
a4294b78
JS
178 delete[] m_radioButtonLabels;
179 delete[] m_radioButtons;
15d5ab67 180
15d5ab67 181 DetachWidget(m_mainWidget);
15d5ab67 182 XtDestroyWidget((Widget) m_mainWidget);
15d5ab67
JS
183
184 m_mainWidget = (WXWidget) 0;
4bb6408c
JS
185}
186
18128cbb 187void wxRadioBox::SetString(int item, const wxString& label)
4bb6408c 188{
a4294b78
JS
189 if (item < 0 || item >= m_noItems)
190 return;
191
192 Widget widget = (Widget) m_radioButtons[item];
193 if (label != "")
194 {
195 wxString label1(wxStripMenuCodes(label));
196 XmString text = XmStringCreateSimple ((char*) (const char*) label1);
197 XtVaSetValues (widget,
af0bb3b1
VZ
198 XmNlabelString, text,
199 XmNlabelType, XmSTRING,
200 NULL);
a4294b78
JS
201 XmStringFree (text);
202 }
4bb6408c
JS
203}
204
205int wxRadioBox::FindString(const wxString& s) const
206{
a4294b78
JS
207 int i;
208 for (i = 0; i < m_noItems; i++)
209 if (s == m_radioButtonLabels[i])
210 return i;
4bb6408c
JS
211 return -1;
212}
213
214void wxRadioBox::SetSelection(int n)
215{
216 if ((n < 0) || (n >= m_noItems))
217 return;
4bb6408c
JS
218
219 m_selectedButton = n;
a4294b78
JS
220
221 m_inSetValue = TRUE;
222
223 XmToggleButtonSetState ((Widget) m_radioButtons[n], TRUE, FALSE);
224
225 int i;
226 for (i = 0; i < m_noItems; i++)
227 if (i != n)
228 XmToggleButtonSetState ((Widget) m_radioButtons[i], FALSE, FALSE);
229
230 m_inSetValue = FALSE;
4bb6408c
JS
231}
232
233// Get single selection, for single choice list items
234int wxRadioBox::GetSelection() const
235{
236 return m_selectedButton;
237}
238
239// Find string for position
240wxString wxRadioBox::GetString(int n) const
241{
a4294b78
JS
242 if ((n < 0) || (n >= m_noItems))
243 return wxEmptyString;
244 return m_radioButtonLabels[n];
4bb6408c
JS
245}
246
bfc6fde4 247void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
4bb6408c 248{
2ad99bc1 249 bool managed = XtIsManaged((Widget) m_mainWidget);
4bb6408c 250
a4294b78 251 if (managed)
2ad99bc1 252 XtUnmanageChild ((Widget) m_mainWidget);
4bb6408c 253
a4294b78
JS
254 int xx = x; int yy = y;
255 AdjustForParentClientOrigin(xx, yy, sizeFlags);
4bb6408c 256
a4294b78 257 if (x > -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
2ad99bc1 258 XtVaSetValues ((Widget) m_mainWidget, XmNx, xx, NULL);
a4294b78 259 if (y > -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
2ad99bc1 260 XtVaSetValues ((Widget) m_mainWidget, XmNy, yy, NULL);
4bb6408c 261
2ad99bc1
JS
262 if (width > 0)
263 XtVaSetValues ((Widget) m_mainWidget, XmNwidth, width, NULL);
264 if (height > 0)
265 XtVaSetValues ((Widget) m_mainWidget, XmNheight, height, NULL);
a4294b78 266
a4294b78 267 if (managed)
2ad99bc1 268 XtManageChild ((Widget) m_mainWidget);
4bb6408c
JS
269}
270
271// Enable a specific button
a4294b78 272void wxRadioBox::Enable(int n, bool enable)
4bb6408c 273{
a4294b78
JS
274 if ((n < 0) || (n >= m_noItems))
275 return;
276
277 XtSetSensitive ((Widget) m_radioButtons[n], (Boolean) enable);
4bb6408c
JS
278}
279
280// Enable all controls
af0bb3b1 281bool wxRadioBox::Enable(bool enable)
4bb6408c 282{
af0bb3b1
VZ
283 if ( !wxControl::Enable(enable) )
284 return FALSE;
4bb6408c 285
a4294b78
JS
286 int i;
287 for (i = 0; i < m_noItems; i++)
288 XtSetSensitive ((Widget) m_radioButtons[i], (Boolean) enable);
af0bb3b1
VZ
289
290 return TRUE;
4bb6408c
JS
291}
292
9838df2c
JS
293bool wxRadioBox::Show(bool show)
294{
295 // TODO: show/hide all children
296 return wxControl::Show(show);
297}
298
4bb6408c 299// Show a specific button
a4294b78 300void wxRadioBox::Show(int n, bool show)
4bb6408c 301{
a4294b78
JS
302 // This method isn't complete, and we try do do our best...
303 // It's main purpose isn't for allowing Show/Unshow dynamically,
304 // but rather to provide a way to design wxRadioBox such:
305 //
306 // o Val1 o Val2 o Val3
307 // o Val4 o Val6
308 // o Val7 o Val8 o Val9
309 //
310 // In my case, this is a 'direction' box, and the Show(5,False) is
311 // coupled with an Enable(5,False)
312 //
313 if ((n < 0) || (n >= m_noItems))
314 return;
315
316 XtVaSetValues ((Widget) m_radioButtons[n],
317 XmNindicatorOn, (unsigned char) show,
318 NULL);
319
320 // Please note that this is all we can do: removing the label
321 // if switching to unshow state. However, when switching
18128cbb 322 // to the on state, it's the prog. resp. to call SetString(item,...)
a4294b78
JS
323 // after this call!!
324 if (!show)
18128cbb 325 wxRadioBox::SetString (n, " ");
4bb6408c
JS
326}
327
328// For single selection items only
329wxString wxRadioBox::GetStringSelection () const
330{
331 int sel = GetSelection ();
332 if (sel > -1)
333 return this->GetString (sel);
334 else
335 return wxString("");
336}
337
338bool wxRadioBox::SetStringSelection (const wxString& s)
339{
340 int sel = FindString (s);
341 if (sel > -1)
342 {
343 SetSelection (sel);
344 return TRUE;
345 }
346 else
347 return FALSE;
348}
349
350void wxRadioBox::Command (wxCommandEvent & event)
351{
352 SetSelection (event.m_commandInt);
353 ProcessCommand (event);
354}
355
4b5f3fe6 356void wxRadioBox::ChangeFont(bool keepOriginalSize)
0d57be45 357{
94b49b93
JS
358 wxWindow::ChangeFont(keepOriginalSize);
359
da175b2c 360 XmFontList fontList = (XmFontList) m_font.GetFontList(1.0, XtDisplay((Widget) GetTopWidget()));
94b49b93
JS
361
362 int i;
363 for (i = 0; i < m_noItems; i++)
364 {
365 WXWidget radioButton = m_radioButtons[i];
366
367 XtVaSetValues ((Widget) radioButton,
368 XmNfontList, fontList,
94b49b93
JS
369 NULL);
370 }
0d57be45
JS
371}
372
373void wxRadioBox::ChangeBackgroundColour()
374{
94b49b93
JS
375 wxWindow::ChangeBackgroundColour();
376
9838df2c
JS
377 int selectPixel = wxBLACK->AllocColour(wxGetDisplay());
378
94b49b93
JS
379 int i;
380 for (i = 0; i < m_noItems; i++)
381 {
382 WXWidget radioButton = m_radioButtons[i];
383
384 DoChangeBackgroundColour(radioButton, m_backgroundColour, TRUE);
9838df2c
JS
385
386 XtVaSetValues ((Widget) radioButton,
387 XmNselectColor, selectPixel,
388 NULL);
94b49b93 389 }
0d57be45
JS
390}
391
392void wxRadioBox::ChangeForegroundColour()
393{
94b49b93
JS
394 wxWindow::ChangeForegroundColour();
395
396 int i;
397 for (i = 0; i < m_noItems; i++)
398 {
399 WXWidget radioButton = m_radioButtons[i];
400
401 DoChangeForegroundColour(radioButton, m_foregroundColour);
402 }
0d57be45
JS
403}
404
18128cbb
MB
405static int CalcOtherDim( int items, int dim )
406{
407 return items / dim + ( items % dim ? 1 : 0 );
408}
409
410int wxRadioBox::GetRowCount() const
411{
412 return m_windowStyle & wxRA_SPECIFY_ROWS ? m_noRowsOrCols
413 : CalcOtherDim( GetCount(), m_noRowsOrCols );
414}
415
416int wxRadioBox::GetColumnCount() const
417{
418 return m_windowStyle & wxRA_SPECIFY_COLS ? m_noRowsOrCols
419 : CalcOtherDim( GetCount(), m_noRowsOrCols );
420}
421
a4294b78 422void wxRadioBoxCallback (Widget w, XtPointer clientData,
af0bb3b1 423 XmToggleButtonCallbackStruct * cbs)
a4294b78
JS
424{
425 if (!cbs->set)
426 return;
427
428 wxRadioBox *item = (wxRadioBox *) clientData;
429 int sel = -1;
430 int i;
3c85ada9 431 for (i = 0; i < item->GetCount(); i++)
a4294b78
JS
432 if (item->GetRadioButtons() && ((Widget) (item->GetRadioButtons()[i]) == w))
433 sel = i;
434 item->SetSel(sel);
435
436 if (item->InSetValue())
437 return;
438
439 wxCommandEvent event (wxEVT_COMMAND_RADIOBOX_SELECTED, item->GetId());
2ad99bc1
JS
440 event.SetInt(sel);
441 event.SetString(item->GetStringSelection());
a4294b78
JS
442 event.SetEventObject(item);
443 item->ProcessCommand (event);
444}
4bb6408c 445