]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/radiobut.cpp
fixed crash in HitTest() with y position below the last line
[wxWidgets.git] / src / mac / carbon / radiobut.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobut.cpp
3// Purpose: wxRadioButton
4// Author: AUTHOR
1dd52151 5// Modified by: JS Lair (99/11/15) adding the cyclic groupe notion for radiobox
e9576ca5
SC
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "radiobut.h"
14#endif
15
d8c736e5 16#include "wx/defs.h"
e9576ca5 17
d8c736e5 18#include "wx/radiobut.h"
079c842c 19
d8c736e5 20#if !USE_SHARED_LIBRARY
e9576ca5 21IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
d8c736e5 22#endif
079c842c 23
1dd52151
UJ
24#include <wx/mac/uma.h>
25
e9576ca5
SC
26bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
27 const wxString& label,
28 const wxPoint& pos,
29 const wxSize& size, long style,
30 const wxValidator& validator,
31 const wxString& name)
32{
1dd52151
UJ
33 Rect bounds ;
34 Str255 title ;
35
1dd52151 36 MacPreControlCreate( parent , id , label , pos , size ,style, validator , name , &bounds , title ) ;
e9576ca5 37
fdaf613a 38 m_macControl = UMANewControl( parent->GetMacRootWindow() , &bounds , title , false , 0 , 0 , 1,
1dd52151
UJ
39 kControlRadioButtonProc , (long) this ) ;
40
41 MacPostControlCreate() ;
e9576ca5 42
aa6c945b 43 m_cycle = this ;
c503ab84 44
0a67a93b
SC
45 if (HasFlag(wxRB_GROUP))
46 {
47 AddInCycle( NULL ) ;
48 }
49 else
50 {
51 /* search backward for last group start */
52 wxRadioButton *chief = (wxRadioButton*) NULL;
53 wxWindowList::Node *node = parent->GetChildren().GetLast();
54 while (node)
079c842c 55 {
0a67a93b
SC
56 wxWindow *child = node->GetData();
57 if (child->IsKindOf( CLASSINFO( wxRadioButton ) ) )
58 {
59 chief = (wxRadioButton*) child;
60 if (child->HasFlag(wxRB_GROUP)) break;
61 }
62 node = node->GetPrevious();
079c842c 63 }
0a67a93b
SC
64 AddInCycle( chief ) ;
65 }
66 return TRUE;
e9576ca5
SC
67}
68
1dd52151 69void wxRadioButton::SetValue(bool val)
e9576ca5 70{
1dd52151
UJ
71 int i;
72 wxRadioButton *cycle;
fdaf613a
SC
73 if ( GetControlValue( m_macControl ) == val )
74 return ;
75
1dd52151 76 ::SetControlValue( m_macControl , val ) ;
2f1ae414
SC
77 if (val)
78 {
1dd52151
UJ
79 cycle=this->NextInCycle();
80 if (cycle!=NULL) {
81 while (cycle!=this) {
82 cycle->SetValue(false);
83 cycle=cycle->NextInCycle();
84 }
85 }
86 }
e9576ca5
SC
87}
88
e9576ca5
SC
89bool wxRadioButton::GetValue() const
90{
1dd52151 91 return ::GetControlValue( m_macControl ) ;
e9576ca5
SC
92}
93
94void wxRadioButton::Command (wxCommandEvent & event)
95{
1dd52151 96 SetValue ( (event.GetInt() != 0) );
e9576ca5
SC
97 ProcessCommand (event);
98}
99
1dd52151
UJ
100void wxRadioButton::MacHandleControlClick( ControlHandle control , SInt16 controlpart )
101{
f0822896
SC
102 if ( GetValue() )
103 return ;
104
105 wxRadioButton *cycle, *old = NULL ;
106 cycle=this->NextInCycle();
107 if (cycle!=NULL) {
108 while (cycle!=this) {
109 if ( cycle->GetValue() ) {
110 old = cycle ;
111 cycle->SetValue(false);
112 }
113 cycle=cycle->NextInCycle();
114 }
115 }
116
fdaf613a 117 SetValue(true) ;
f0822896
SC
118
119 if ( old ) {
120 wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, old->m_windowId );
121 event.SetEventObject(old);
122 event.SetInt( false );
123 old->ProcessCommand(event);
124 }
125 wxCommandEvent event2(wxEVT_COMMAND_RADIOBUTTON_SELECTED, m_windowId );
126 event2.SetEventObject(this);
127 event2.SetInt( true );
128 ProcessCommand(event2);
1dd52151
UJ
129}
130
131wxRadioButton *wxRadioButton::AddInCycle(wxRadioButton *cycle)
132{
133 wxRadioButton *next,*current;
134
135 if (cycle==NULL) {
136 m_cycle=this;
137 return(this);
138 }
139 else {
140 current=cycle;
0a67a93b
SC
141 while ((next=current->m_cycle)!=cycle)
142 current=current->m_cycle;
1dd52151
UJ
143 m_cycle=cycle;
144 current->m_cycle=this;
145 return(cycle);
146 }
147}