wxRadioBox fixed on mac
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10062 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -71,6 +71,7 @@ public:
|
|||||||
inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
|
inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
|
||||||
inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
|
inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
|
||||||
|
|
||||||
|
void OnRadioButton( wxCommandEvent& event ) ;
|
||||||
protected:
|
protected:
|
||||||
wxRadioButton *m_radioButtonCycle;
|
wxRadioButton *m_radioButtonCycle;
|
||||||
|
|
||||||
@@ -85,6 +86,7 @@ protected:
|
|||||||
int GetNumHor() const;
|
int GetNumHor() const;
|
||||||
int GetNumVer() const;
|
int GetNumVer() const;
|
||||||
|
|
||||||
|
DECLARE_EVENT_TABLE()
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@@ -32,6 +32,19 @@ IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
|
|||||||
// <09> wxRadioBox()
|
// <09> wxRadioBox()
|
||||||
//-------------------------------------------------------------------------------------
|
//-------------------------------------------------------------------------------------
|
||||||
// Default constructor
|
// Default constructor
|
||||||
|
BEGIN_EVENT_TABLE(wxRadioBox, wxControl)
|
||||||
|
EVT_RADIOBUTTON( -1 , wxRadioBox::OnRadioButton )
|
||||||
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
void wxRadioBox::OnRadioButton( wxCommandEvent &outer )
|
||||||
|
{
|
||||||
|
wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId);
|
||||||
|
int i = GetSelection() ;
|
||||||
|
event.SetInt( i );
|
||||||
|
event.SetString( GetString( i ) );
|
||||||
|
event.SetEventObject( this );
|
||||||
|
ProcessCommand(event);
|
||||||
|
}
|
||||||
|
|
||||||
wxRadioBox::wxRadioBox()
|
wxRadioBox::wxRadioBox()
|
||||||
{
|
{
|
||||||
|
@@ -96,6 +96,7 @@ void wxRadioButton::MacHandleControlClick( ControlHandle control , SInt16 contro
|
|||||||
SetValue(true) ;
|
SetValue(true) ;
|
||||||
wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, m_windowId );
|
wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, m_windowId );
|
||||||
event.SetEventObject(this);
|
event.SetEventObject(this);
|
||||||
|
event.SetInt( GetValue() );
|
||||||
ProcessCommand(event);
|
ProcessCommand(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -32,6 +32,19 @@ IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
|
|||||||
// <09> wxRadioBox()
|
// <09> wxRadioBox()
|
||||||
//-------------------------------------------------------------------------------------
|
//-------------------------------------------------------------------------------------
|
||||||
// Default constructor
|
// Default constructor
|
||||||
|
BEGIN_EVENT_TABLE(wxRadioBox, wxControl)
|
||||||
|
EVT_RADIOBUTTON( -1 , wxRadioBox::OnRadioButton )
|
||||||
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
void wxRadioBox::OnRadioButton( wxCommandEvent &outer )
|
||||||
|
{
|
||||||
|
wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId);
|
||||||
|
int i = GetSelection() ;
|
||||||
|
event.SetInt( i );
|
||||||
|
event.SetString( GetString( i ) );
|
||||||
|
event.SetEventObject( this );
|
||||||
|
ProcessCommand(event);
|
||||||
|
}
|
||||||
|
|
||||||
wxRadioBox::wxRadioBox()
|
wxRadioBox::wxRadioBox()
|
||||||
{
|
{
|
||||||
|
@@ -96,6 +96,7 @@ void wxRadioButton::MacHandleControlClick( ControlHandle control , SInt16 contro
|
|||||||
SetValue(true) ;
|
SetValue(true) ;
|
||||||
wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, m_windowId );
|
wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, m_windowId );
|
||||||
event.SetEventObject(this);
|
event.SetEventObject(this);
|
||||||
|
event.SetInt( GetValue() );
|
||||||
ProcessCommand(event);
|
ProcessCommand(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user