]> git.saurik.com Git - wxWidgets.git/blame - src/motif/radiobut.cpp
don't use deprecated macros
[wxWidgets.git] / src / motif / radiobut.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobut.cpp
3// Purpose: wxRadioButton
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 "radiobut.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/radiobut.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>
338dd992
JJ
34#ifdef __VMS__
35#pragma message enable nosimpint
36#endif
a4294b78 37
3096bd2f 38#include "wx/motif/private.h"
a4294b78
JS
39
40void wxRadioButtonCallback (Widget w, XtPointer clientData,
2d120f83 41 XmToggleButtonCallbackStruct * cbs);
4bb6408c 42
4bb6408c 43IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
4bb6408c 44
a4294b78
JS
45wxRadioButton::wxRadioButton()
46{
a4294b78
JS
47}
48
4bb6408c 49bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
2d120f83
JS
50 const wxString& label,
51 const wxPoint& pos,
52 const wxSize& size, long style,
53 const wxValidator& validator,
54 const wxString& name)
4bb6408c
JS
55{
56 SetName(name);
57 SetValidator(validator);
0d57be45
JS
58 m_backgroundColour = parent->GetBackgroundColour();
59 m_foregroundColour = parent->GetForegroundColour();
da175b2c 60 m_font = parent->GetFont();
31528cd3 61
4bb6408c 62 if (parent) parent->AddChild(this);
31528cd3 63
4bb6408c 64 if ( id == -1 )
2d120f83 65 m_windowId = (int)NewControlId();
4bb6408c 66 else
2d120f83 67 m_windowId = id;
31528cd3 68
4bb6408c 69 m_windowStyle = style ;
31528cd3 70
a4294b78 71 Widget parentWidget = (Widget) parent->GetClientWidget();
31528cd3 72
a4294b78 73 wxString label1(wxStripMenuCodes(label));
31528cd3 74
da494b40 75 wxXmString text( label1 );
31528cd3 76
da494b40 77 WXFontType fontType = m_font.GetFontType(XtDisplay(parentWidget));
31528cd3 78
a4294b78
JS
79 Widget radioButtonWidget = XtVaCreateManagedWidget ("toggle",
80#if wxUSE_GADGETS
2d120f83 81 xmToggleButtonGadgetClass, parentWidget,
a4294b78 82#else
2d120f83 83 xmToggleButtonWidgetClass, parentWidget,
a4294b78 84#endif
da494b40
MB
85 wxFont::GetFontTag(), fontType,
86 XmNlabelString, text(),
2d120f83
JS
87 XmNfillOnSelect, True,
88 XmNindicatorType, XmONE_OF_MANY, // diamond-shape
89 NULL);
31528cd3 90
a4294b78 91 XtAddCallback (radioButtonWidget, XmNvalueChangedCallback, (XtCallbackProc) wxRadioButtonCallback,
d7dcb939 92 (XtPointer) this);
31528cd3 93
a4294b78 94 m_mainWidget = (WXWidget) radioButtonWidget;
31528cd3 95
a4294b78 96 XtManageChild (radioButtonWidget);
31528cd3 97
a4294b78 98 SetCanAddEventHandler(TRUE);
b412f9be 99 AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
31528cd3 100
0d57be45 101 ChangeBackgroundColour();
31528cd3 102
f37907ff
MB
103 //copied from mac/radiobut.cpp (from here till "return TRUE;")
104 m_cycle = this ;
105
106 if (HasFlag(wxRB_GROUP))
107 {
108 AddInCycle( NULL ) ;
109 }
110 else
111 {
112 /* search backward for last group start */
113 wxRadioButton *chief = (wxRadioButton*) NULL;
114 wxWindowList::Node *node = parent->GetChildren().GetLast();
115 while (node)
116 {
117 wxWindow *child = node->GetData();
118 if (child->IsKindOf( CLASSINFO( wxRadioButton ) ) )
119 {
120 chief = (wxRadioButton*) child;
121 if (child->HasFlag(wxRB_GROUP)) break;
122 }
123 node = node->GetPrevious();
124 }
125 AddInCycle( chief ) ;
126 }
a4294b78 127 return TRUE;
4bb6408c
JS
128}
129
130void wxRadioButton::SetValue(bool value)
131{
f37907ff
MB
132 if (GetValue() == value)
133 return;
134
a4294b78
JS
135 m_inSetValue = TRUE;
136 XmToggleButtonSetState ((Widget) m_mainWidget, (Boolean) value, FALSE);
137 m_inSetValue = FALSE;
f37907ff
MB
138
139 ClearSelections();
4bb6408c
JS
140}
141
142// Get single selection, for single choice list items
143bool wxRadioButton::GetValue() const
144{
a4294b78 145 return (XmToggleButtonGetState ((Widget) m_mainWidget) != 0);
4bb6408c
JS
146}
147
148void wxRadioButton::Command (wxCommandEvent & event)
149{
2d120f83
JS
150 SetValue ( (event.m_commandInt != 0) );
151 ProcessCommand (event);
4bb6408c
JS
152}
153
4b5f3fe6 154void wxRadioButton::ChangeFont(bool keepOriginalSize)
0d57be45 155{
4b5f3fe6 156 wxWindow::ChangeFont(keepOriginalSize);
0d57be45
JS
157}
158
159void wxRadioButton::ChangeBackgroundColour()
160{
321db4b6 161 wxWindow::ChangeBackgroundColour();
9838df2c
JS
162
163 // What colour should this be?
164 int selectPixel = wxBLACK->AllocColour(wxGetDisplay());
165
166 XtVaSetValues ((Widget) GetMainWidget(),
167 XmNselectColor, selectPixel,
168 NULL);
0d57be45
JS
169}
170
171void wxRadioButton::ChangeForegroundColour()
172{
321db4b6 173 wxWindow::ChangeForegroundColour();
0d57be45
JS
174}
175
a4294b78 176void wxRadioButtonCallback (Widget w, XtPointer clientData,
2d120f83 177 XmToggleButtonCallbackStruct * cbs)
a4294b78 178{
2d120f83
JS
179 if (!cbs->set)
180 return;
31528cd3 181
2d120f83
JS
182 wxRadioButton *item = (wxRadioButton *) clientData;
183 if (item->InSetValue())
184 return;
31528cd3 185
f37907ff
MB
186 //based on mac/radiobut.cpp
187 wxRadioButton* old = item->ClearSelections();
188 item->SetValue(TRUE);
189
190 if ( old )
191 {
192 wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED,
193 old->GetId() );
194 event.SetEventObject(old);
195 event.SetInt( FALSE );
196 old->ProcessCommand(event);
197 }
198 wxCommandEvent event2(wxEVT_COMMAND_RADIOBUTTON_SELECTED, item->GetId() );
199 event2.SetEventObject(item);
200 event2.SetInt( TRUE );
201 item->ProcessCommand(event2);
202}
203
204wxRadioButton* wxRadioButton::AddInCycle(wxRadioButton *cycle)
205{
206 wxRadioButton* next;
207 wxRadioButton* current;
208
209 if (cycle == NULL)
210 {
211 m_cycle = this;
212 return this;
213 }
214 else
215 {
216 current = cycle;
217 while ((next = current->m_cycle) != cycle)
218 current = current->m_cycle;
219 m_cycle = cycle;
220 current->m_cycle = this;
221 return cycle;
222 }
223}
31528cd3 224
f37907ff
MB
225wxRadioButton* wxRadioButton::ClearSelections()
226{
227 wxRadioButton* cycle = NextInCycle();
228 wxRadioButton* old = 0;
229
230 if (cycle)
231 {
232 while (cycle != this)
233 {
234 if ( cycle->GetValue() )
235 {
236 old = cycle;
237 cycle->SetValue(FALSE);
238 }
239 cycle = cycle->NextInCycle();
240 }
241 }
242
243 return old;
a4294b78 244}
4bb6408c 245
f37907ff
MB
246void wxRadioButton::RemoveFromCycle()
247{
248 wxRadioButton* curr = NextInCycle();
249
250 while( curr )
251 {
252 if( curr->NextInCycle() == this )
253 {
254 curr->m_cycle = this->m_cycle;
255 return;
256 }
257
258 curr = curr->NextInCycle();
259 }
260}