]> git.saurik.com Git - wxWidgets.git/blame - src/motif/radiobut.cpp
Honour wxSB_WRAP in wxMotif spin button
[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
a4294b78 75 XmString text = XmStringCreateSimple ((char*) (const char*) label1);
31528cd3 76
da175b2c 77 XmFontList fontList = (XmFontList) m_font.GetFontList(1.0, 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
2d120f83
JS
85 XmNfontList, fontList,
86 XmNlabelString, text,
87 XmNfillOnSelect, True,
88 XmNindicatorType, XmONE_OF_MANY, // diamond-shape
89 NULL);
321db4b6 90 XmStringFree (text);
31528cd3 91
a4294b78 92 XtAddCallback (radioButtonWidget, XmNvalueChangedCallback, (XtCallbackProc) wxRadioButtonCallback,
d7dcb939 93 (XtPointer) this);
31528cd3 94
a4294b78 95 m_mainWidget = (WXWidget) radioButtonWidget;
31528cd3 96
a4294b78 97 XtManageChild (radioButtonWidget);
31528cd3 98
a4294b78 99 SetCanAddEventHandler(TRUE);
b412f9be 100 AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
31528cd3 101
0d57be45 102 ChangeBackgroundColour();
31528cd3 103
f37907ff
MB
104 //copied from mac/radiobut.cpp (from here till "return TRUE;")
105 m_cycle = this ;
106
107 if (HasFlag(wxRB_GROUP))
108 {
109 AddInCycle( NULL ) ;
110 }
111 else
112 {
113 /* search backward for last group start */
114 wxRadioButton *chief = (wxRadioButton*) NULL;
115 wxWindowList::Node *node = parent->GetChildren().GetLast();
116 while (node)
117 {
118 wxWindow *child = node->GetData();
119 if (child->IsKindOf( CLASSINFO( wxRadioButton ) ) )
120 {
121 chief = (wxRadioButton*) child;
122 if (child->HasFlag(wxRB_GROUP)) break;
123 }
124 node = node->GetPrevious();
125 }
126 AddInCycle( chief ) ;
127 }
a4294b78 128 return TRUE;
4bb6408c
JS
129}
130
131void wxRadioButton::SetValue(bool value)
132{
f37907ff
MB
133 if (GetValue() == value)
134 return;
135
a4294b78
JS
136 m_inSetValue = TRUE;
137 XmToggleButtonSetState ((Widget) m_mainWidget, (Boolean) value, FALSE);
138 m_inSetValue = FALSE;
f37907ff
MB
139
140 ClearSelections();
4bb6408c
JS
141}
142
143// Get single selection, for single choice list items
144bool wxRadioButton::GetValue() const
145{
a4294b78 146 return (XmToggleButtonGetState ((Widget) m_mainWidget) != 0);
4bb6408c
JS
147}
148
149void wxRadioButton::Command (wxCommandEvent & event)
150{
2d120f83
JS
151 SetValue ( (event.m_commandInt != 0) );
152 ProcessCommand (event);
4bb6408c
JS
153}
154
4b5f3fe6 155void wxRadioButton::ChangeFont(bool keepOriginalSize)
0d57be45 156{
4b5f3fe6 157 wxWindow::ChangeFont(keepOriginalSize);
0d57be45
JS
158}
159
160void wxRadioButton::ChangeBackgroundColour()
161{
321db4b6 162 wxWindow::ChangeBackgroundColour();
9838df2c
JS
163
164 // What colour should this be?
165 int selectPixel = wxBLACK->AllocColour(wxGetDisplay());
166
167 XtVaSetValues ((Widget) GetMainWidget(),
168 XmNselectColor, selectPixel,
169 NULL);
0d57be45
JS
170}
171
172void wxRadioButton::ChangeForegroundColour()
173{
321db4b6 174 wxWindow::ChangeForegroundColour();
0d57be45
JS
175}
176
a4294b78 177void wxRadioButtonCallback (Widget w, XtPointer clientData,
2d120f83 178 XmToggleButtonCallbackStruct * cbs)
a4294b78 179{
2d120f83
JS
180 if (!cbs->set)
181 return;
31528cd3 182
2d120f83
JS
183 wxRadioButton *item = (wxRadioButton *) clientData;
184 if (item->InSetValue())
185 return;
31528cd3 186
f37907ff
MB
187 //based on mac/radiobut.cpp
188 wxRadioButton* old = item->ClearSelections();
189 item->SetValue(TRUE);
190
191 if ( old )
192 {
193 wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED,
194 old->GetId() );
195 event.SetEventObject(old);
196 event.SetInt( FALSE );
197 old->ProcessCommand(event);
198 }
199 wxCommandEvent event2(wxEVT_COMMAND_RADIOBUTTON_SELECTED, item->GetId() );
200 event2.SetEventObject(item);
201 event2.SetInt( TRUE );
202 item->ProcessCommand(event2);
203}
204
205wxRadioButton* wxRadioButton::AddInCycle(wxRadioButton *cycle)
206{
207 wxRadioButton* next;
208 wxRadioButton* current;
209
210 if (cycle == NULL)
211 {
212 m_cycle = this;
213 return this;
214 }
215 else
216 {
217 current = cycle;
218 while ((next = current->m_cycle) != cycle)
219 current = current->m_cycle;
220 m_cycle = cycle;
221 current->m_cycle = this;
222 return cycle;
223 }
224}
31528cd3 225
f37907ff
MB
226wxRadioButton* wxRadioButton::ClearSelections()
227{
228 wxRadioButton* cycle = NextInCycle();
229 wxRadioButton* old = 0;
230
231 if (cycle)
232 {
233 while (cycle != this)
234 {
235 if ( cycle->GetValue() )
236 {
237 old = cycle;
238 cycle->SetValue(FALSE);
239 }
240 cycle = cycle->NextInCycle();
241 }
242 }
243
244 return old;
a4294b78 245}
4bb6408c 246
f37907ff
MB
247void wxRadioButton::RemoveFromCycle()
248{
249 wxRadioButton* curr = NextInCycle();
250
251 while( curr )
252 {
253 if( curr->NextInCycle() == this )
254 {
255 curr->m_cycle = this->m_cycle;
256 return;
257 }
258
259 curr = curr->NextInCycle();
260 }
261}