]>
Commit | Line | Data |
---|---|---|
da0634c1 | 1 | ///////////////////////////////////////////////////////////////////////////// |
b0b5881a | 2 | // Name: src/cocoa/radiobut.mm |
da0634c1 DE |
3 | // Purpose: wxRadioButton |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2003/03/16 | |
b0b5881a | 7 | // RCS-ID: $Id$ |
da0634c1 | 8 | // Copyright: (c) 2003 David Elliott |
b0b5881a | 9 | // Licence: wxWidgets licence |
da0634c1 DE |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
449c5673 | 12 | #include "wx/wxprec.h" |
16c81607 RN |
13 | |
14 | #if wxUSE_RADIOBTN | |
15 | ||
b0b5881a WS |
16 | #include "wx/radiobut.h" |
17 | ||
449c5673 DE |
18 | #ifndef WX_PRECOMP |
19 | #include "wx/log.h" | |
20 | #include "wx/app.h" | |
449c5673 | 21 | #endif //WX_PRECOMP |
da0634c1 DE |
22 | |
23 | #import <AppKit/NSButton.h> | |
c8cae94c | 24 | #include "wx/cocoa/string.h" |
e51c36de | 25 | #include "wx/cocoa/autorelease.h" |
da0634c1 | 26 | |
d0a5e34a DE |
27 | #include "wx/listimpl.cpp" |
28 | ||
29 | WX_DEFINE_LIST(wxRadioButtonList); | |
30 | ||
da0634c1 DE |
31 | IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl) |
32 | // wxRadioButtonBase == wxControl | |
33 | BEGIN_EVENT_TABLE(wxRadioButton, wxControl) | |
34 | END_EVENT_TABLE() | |
35 | WX_IMPLEMENT_COCOA_OWNER(wxRadioButton,NSButton,NSControl,NSView) | |
36 | ||
37 | bool wxRadioButton::Create(wxWindow *parent, wxWindowID winid, | |
38 | const wxString& label, | |
39 | const wxPoint& pos, | |
40 | const wxSize& size, | |
41 | long style, | |
42 | const wxValidator& validator, | |
43 | const wxString& name) | |
44 | { | |
e51c36de | 45 | wxAutoNSAutoreleasePool pool; |
d0a5e34a | 46 | m_radioMaster = NULL; |
da0634c1 DE |
47 | if(!CreateControl(parent,winid,pos,size,style,validator,name)) |
48 | return false; | |
d0a5e34a DE |
49 | if(style&wxRB_GROUP) |
50 | { | |
51 | m_radioMaster = this; | |
52 | m_radioSlaves.Append(this); | |
53 | } | |
54 | else if(style&wxRB_SINGLE) | |
55 | m_radioMaster = NULL; | |
56 | else | |
57 | { | |
58 | for(wxWindowList::compatibility_iterator siblingNode= GetParent()->GetChildren().GetLast(); | |
59 | siblingNode; | |
60 | siblingNode = siblingNode->GetPrevious()) | |
61 | { | |
62 | wxRadioButton *radioButton = wxDynamicCast(siblingNode->GetData(),wxRadioButton); | |
63 | if(radioButton && radioButton!=this) | |
64 | { | |
65 | m_radioMaster = radioButton->m_radioMaster; | |
66 | wxASSERT_MSG(m_radioMaster, | |
2b030203 | 67 | wxT("Previous radio button should be part of a group")); |
d0a5e34a DE |
68 | // Don't crash, assume user meant wxRB_SINGLE |
69 | if(m_radioMaster) | |
70 | m_radioMaster->m_radioSlaves.Append(this); | |
71 | break; | |
72 | } | |
73 | } | |
74 | } | |
75 | ||
da0634c1 | 76 | m_cocoaNSView = NULL; |
8d656ea9 | 77 | SetNSButton([[NSButton alloc] initWithFrame: MakeDefaultNSRect(size)]); |
da0634c1 DE |
78 | [m_cocoaNSView release]; |
79 | [GetNSButton() setButtonType: NSRadioButton]; | |
525007cf | 80 | CocoaSetLabelForObject(label, GetNSButton()); |
bd8e6e37 DE |
81 | // If it's the first in a group, it should be selected |
82 | if(style&wxRB_GROUP) | |
83 | [GetNSButton() setState: NSOnState]; | |
da0634c1 DE |
84 | [GetNSControl() sizeToFit]; |
85 | ||
86 | if(m_parent) | |
87 | m_parent->CocoaAddChild(this); | |
8d656ea9 DE |
88 | SetInitialFrameRect(pos,size); |
89 | ||
da0634c1 DE |
90 | return true; |
91 | } | |
92 | ||
93 | wxRadioButton::~wxRadioButton() | |
94 | { | |
d0a5e34a DE |
95 | if(m_radioMaster==this) |
96 | { | |
97 | // First get rid of ourselves (we should ALWAYS be at the head) | |
98 | wxRadioButtonList::compatibility_iterator slaveNode = | |
99 | m_radioSlaves.GetFirst(); | |
100 | wxASSERT(slaveNode); | |
101 | wxASSERT(slaveNode->GetData() == this); | |
96c0183f | 102 | m_radioSlaves.Erase(slaveNode); |
b0b5881a | 103 | |
d0a5e34a DE |
104 | // Now find the new master |
105 | wxRadioButton *newMaster = NULL; | |
106 | slaveNode = m_radioSlaves.GetFirst(); | |
107 | if(slaveNode) | |
108 | newMaster = slaveNode->GetData(); | |
b0b5881a | 109 | |
d0a5e34a DE |
110 | // For each node (including the new master) set the master, remove |
111 | // it from this list, and add it to the new master's list | |
112 | for(; slaveNode; slaveNode = m_radioSlaves.GetFirst()) | |
113 | { | |
114 | wxRadioButton *radioButton = slaveNode->GetData(); | |
115 | wxASSERT(radioButton->m_radioMaster == this); | |
116 | radioButton->m_radioMaster = newMaster; | |
117 | newMaster->m_radioSlaves.Append(radioButton); | |
96c0183f | 118 | m_radioSlaves.Erase(slaveNode); |
d0a5e34a DE |
119 | } |
120 | } | |
121 | else if(m_radioMaster) | |
122 | { | |
123 | m_radioMaster->m_radioSlaves.DeleteObject(this); | |
124 | m_radioMaster = NULL; | |
125 | } | |
126 | // normal stuff | |
911e17c6 | 127 | DisassociateNSButton(GetNSButton()); |
da0634c1 DE |
128 | } |
129 | ||
d0a5e34a | 130 | void wxRadioButton::SetValue(bool value) |
da0634c1 | 131 | { |
d0a5e34a | 132 | if(value) |
18359b19 | 133 | { |
d0a5e34a | 134 | [GetNSButton() setState: NSOnState]; |
18359b19 DE |
135 | Cocoa_DeselectOtherButtonsInTheGroup(); |
136 | } | |
d0a5e34a DE |
137 | else |
138 | [GetNSButton() setState: NSOffState]; | |
da0634c1 DE |
139 | } |
140 | ||
141 | bool wxRadioButton::GetValue() const | |
142 | { | |
d0a5e34a DE |
143 | int state = [GetNSButton() state]; |
144 | wxASSERT(state!=NSMixedState); | |
145 | return state==NSOnState; | |
da0634c1 DE |
146 | } |
147 | ||
3c0f8ed2 DE |
148 | void wxRadioButton::SetLabel(const wxString& label) |
149 | { | |
150 | wxAutoNSAutoreleasePool pool; | |
151 | CocoaSetLabelForObject(label, GetNSButton()); | |
152 | } | |
153 | ||
154 | wxString wxRadioButton::GetLabel() const | |
155 | { | |
156 | return wxStringWithNSString([GetNSButton() title]); | |
157 | } | |
158 | ||
18359b19 DE |
159 | /** |
160 | * If this radio button is part of a group, this method turns off every other | |
161 | * button in the group. If this radio button is not part of a group, this | |
162 | * method does absolutely nothing. | |
163 | */ | |
164 | void wxRadioButton::Cocoa_DeselectOtherButtonsInTheGroup(void) | |
da0634c1 | 165 | { |
18359b19 | 166 | if(m_radioMaster) |
d0a5e34a DE |
167 | { |
168 | for(wxRadioButtonList::compatibility_iterator slaveNode = | |
169 | m_radioMaster->m_radioSlaves.GetFirst(); | |
170 | slaveNode; slaveNode = slaveNode->GetNext()) | |
171 | { | |
172 | wxRadioButton *radioButton = slaveNode->GetData(); | |
173 | if(radioButton!=this) | |
174 | radioButton->SetValue(false); | |
175 | } | |
176 | } | |
18359b19 DE |
177 | } |
178 | ||
179 | void wxRadioButton::Cocoa_wxNSButtonAction(void) | |
180 | { | |
181 | wxLogTrace(wxTRACE_COCOA,wxT("wxRadioButton")); | |
182 | if([GetNSButton() state] == NSOnState) | |
183 | { | |
184 | Cocoa_DeselectOtherButtonsInTheGroup(); | |
185 | } | |
d0a5e34a DE |
186 | wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, GetId()); |
187 | InitCommandEvent(event); // event.SetEventObject(this); | |
188 | event.SetInt(GetValue()); | |
189 | Command(event); | |
da0634c1 DE |
190 | } |
191 | ||
16c81607 | 192 | #endif |