#include "wx/radiobut.h"
+
IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
+BEGIN_EVENT_TABLE(wxRadioButton, wxControl)
+ EVT_IDLE( wxRadioButton::OnIdle )
+END_EVENT_TABLE()
+
#include <wx/mac/uma.h>
bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
MacPostControlCreate() ;
- return TRUE;
+ return TRUE;
+}
+
+void wxRadioButton::OnIdle( wxIdleEvent &event )
+{
+ if (!m_cycle && HasFlag(wxRB_GROUP))
+ {
+ // we are a stand-alone radiobutton and have
+ // the group flag indicating we have to collect
+ // the other radiobuttons belonging to this one
+
+ bool reached_this = FALSE;
+ wxRadioButton *m_radioButtonCycle = NULL;
+ m_radioButtonCycle = AddInCycle( m_radioButtonCycle );
+
+ wxWindow *parent = GetParent();
+ wxNode *node = parent->GetChildren().First();
+ while (node)
+ {
+ wxWindow *child = (wxWindow*) node->Data();
+
+ node = node->Next();
+
+ // start searching behind current radiobutton
+ if (!reached_this)
+ {
+ reached_this = (this == child);
+ continue;
+ }
+
+ if (child->IsKindOf( CLASSINFO ( wxRadioButton ) ))
+ {
+ wxRadioButton *rb = (wxRadioButton*) child;
+
+ // already reached next group
+ if (rb->HasFlag(wxRB_GROUP)) break;
+
+ // part of a radiobox
+ if (rb->NextInCycle()) break;
+
+ m_radioButtonCycle = rb->AddInCycle( m_radioButtonCycle );
+ }
+ }
+
+ }
+
+ event.Skip( TRUE );
}
void wxRadioButton::SetValue(bool val)
::SetControlValue( m_macControl , val ) ;
- if (val) {
+ if (val)
+ {
cycle=this->NextInCycle();
if (cycle!=NULL) {
while (cycle!=this) {
void wxRadioButton::MacHandleControlClick( ControlHandle control , SInt16 controlpart )
{
SetValue(true) ;
+ wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, m_windowId );
+ event.SetEventObject(this);
+ ProcessCommand(event);
}
wxRadioButton *wxRadioButton::AddInCycle(wxRadioButton *cycle)
return(cycle);
}
}
-