1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRadioButton
5 // Modified by: JS Lair (99/11/15) adding the cyclic groupe notion for radiobox
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "radiobut.h"
16 #include "wx/wxprec.h"
20 #include "wx/radiobut.h"
22 IMPLEMENT_DYNAMIC_CLASS(wxRadioButton
, wxControl
)
24 #include "wx/mac/uma.h"
26 bool wxRadioButton::Create(wxWindow
*parent
, wxWindowID id
,
27 const wxString
& label
,
29 const wxSize
& size
, long style
,
30 const wxValidator
& validator
,
33 m_macIsUserPane
= false ;
35 if ( !wxControl::Create(parent
, id
, pos
, size
, style
, validator
, name
) )
40 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
42 m_peer
= new wxMacControl(this) ;
43 verify_noerr ( CreateRadioButtonControl( MAC_WXHWND(parent
->MacGetTopLevelWindowRef()) , &bounds
, CFSTR("") ,
44 0 , false /* no autotoggle */ , m_peer
->GetControlRefAddr() ) );
47 MacPostControlCreate(pos
,size
) ;
51 if (HasFlag(wxRB_GROUP
))
57 /* search backward for last group start */
58 wxRadioButton
*chief
= (wxRadioButton
*) NULL
;
59 wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetLast();
62 wxWindow
*child
= node
->GetData();
63 if (child
->IsKindOf( CLASSINFO( wxRadioButton
) ) )
65 chief
= (wxRadioButton
*) child
;
66 if (child
->HasFlag(wxRB_GROUP
)) break;
68 node
= node
->GetPrevious();
75 wxRadioButton::~wxRadioButton()
80 void wxRadioButton::SetValue(bool val
)
83 if ( m_peer
->GetValue() == val
)
86 m_peer
->SetValue( val
) ;
89 cycle
=this->NextInCycle();
94 cycle
->SetValue(false);
95 cycle
=cycle
->NextInCycle();
101 bool wxRadioButton::GetValue() const
103 return m_peer
->GetValue() ;
106 void wxRadioButton::Command (wxCommandEvent
& event
)
108 SetValue ( (event
.GetInt() != 0) );
109 ProcessCommand (event
);
112 wxInt32
wxRadioButton::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF
WXUNUSED(event
) )
114 // if already set -> no action
118 wxRadioButton
*cycle
;
119 cycle
=this->NextInCycle();
121 while (cycle
!=this) {
122 if ( cycle
->GetValue() ) {
123 cycle
->SetValue(false);
125 cycle
=cycle
->NextInCycle();
131 wxCommandEvent
event2(wxEVT_COMMAND_RADIOBUTTON_SELECTED
, m_windowId
);
132 event2
.SetEventObject(this);
133 event2
.SetInt( true );
134 ProcessCommand(event2
);
138 wxRadioButton
*wxRadioButton::AddInCycle(wxRadioButton
*cycle
)
140 wxRadioButton
*next
,*current
;
150 while ((next
=current
->m_cycle
)!=cycle
)
151 current
=current
->m_cycle
;
153 current
->m_cycle
=this;
158 void wxRadioButton::RemoveFromCycle()
160 if (m_cycle
==NULL
|| m_cycle
== this)
166 // Find the previous one and make it point to the next one
167 wxRadioButton
* prev
= this;
168 while (prev
->m_cycle
!= this)
169 prev
= prev
->m_cycle
;
170 prev
->m_cycle
= m_cycle
;