]> git.saurik.com Git - wxWidgets.git/blob - src/mac/classic/radiobox.cpp
Allow wxGridCellNumberEditor::StartingKey to work when the control is
[wxWidgets.git] / src / mac / classic / radiobox.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: radiobox.cpp
3 // Purpose: wxRadioBox
4 // Author: Stefan Csomor
5 // Modified by: JS Lair (99/11/15) first implementation
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "radioboxbase.h"
14 #pragma implementation "radiobox.h"
15 #endif
16
17 //-------------------------------------------------------------------------------------
18 // headers
19 //-------------------------------------------------------------------------------------
20
21 #include "wx/defs.h"
22 #include "wx/arrstr.h"
23
24 #include "wx/radiobox.h"
25 #include "wx/radiobut.h"
26 #include "wx/mac/uma.h"
27
28 #if !USE_SHARED_LIBRARY
29 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
30 #endif
31
32 //-------------------------------------------------------------------------------------
33 // ¥ wxRadioBox()
34 //-------------------------------------------------------------------------------------
35 // Default constructor
36 BEGIN_EVENT_TABLE(wxRadioBox, wxControl)
37 EVT_RADIOBUTTON( wxID_ANY , wxRadioBox::OnRadioButton )
38 END_EVENT_TABLE()
39
40 void wxRadioBox::OnRadioButton( wxCommandEvent &outer )
41 {
42 if ( outer.IsChecked() )
43 {
44 wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId);
45 int i = GetSelection() ;
46 event.SetInt( i );
47 event.SetString( GetString( i ) );
48 event.SetEventObject( this );
49 ProcessCommand(event);
50 }
51 }
52
53 wxRadioBox::wxRadioBox()
54 {
55 m_noItems = 0;
56 m_noRowsOrCols = 0;
57 m_majorDim = 0 ;
58 m_radioButtonCycle = NULL;
59 }
60
61 //-------------------------------------------------------------------------------------
62 // ¥ wxRadioBox(wxWindow*, wxWindowID, const wxString&, const wxPoint&,
63 // const wxSize&, int, const wxString[], int, long,
64 // const wxValidator&, const wxString&)
65 //-------------------------------------------------------------------------------------
66 // Contructor, creating and showing a radiobox
67 //
68 // inline defined
69 //
70
71 //-------------------------------------------------------------------------------------
72 // ¥ ~wxRadioBox
73 //-------------------------------------------------------------------------------------
74 // Destructor, destroying the radiobox item
75
76 wxRadioBox::~wxRadioBox()
77 {
78 m_isBeingDeleted = true;
79
80 wxRadioButton *next,*current;
81
82 current=m_radioButtonCycle->NextInCycle();
83 next=current->NextInCycle();
84 while (current!=m_radioButtonCycle) {
85 delete current;
86 current=next;
87 next=current->NextInCycle();
88 }
89 delete current;
90 }
91
92 //-------------------------------------------------------------------------------------
93 // ¥ Create
94 //-------------------------------------------------------------------------------------
95 // Create the radiobox for two-step construction
96
97 bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
98 const wxPoint& pos, const wxSize& size,
99 const wxArrayString& choices,
100 int majorDim, long style,
101 const wxValidator& val, const wxString& name)
102 {
103 wxCArrayString chs(choices);
104
105 return Create(parent, id, label, pos, size, chs.GetCount(),
106 chs.GetStrings(), majorDim, style, val, name);
107 }
108
109 bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
110 const wxPoint& pos, const wxSize& size,
111 int n, const wxString choices[],
112 int majorDim, long style,
113 const wxValidator& val, const wxString& name)
114 {
115 if ( !wxControl::Create(parent, id, pos, size, style, val, name) )
116 return false;
117
118 int i;
119
120 m_noItems = n;
121 m_noRowsOrCols = majorDim;
122 m_radioButtonCycle = NULL;
123
124 if (majorDim==0)
125 m_majorDim = n ;
126 else
127 m_majorDim = majorDim ;
128
129 Rect bounds ;
130 Str255 title ;
131
132 MacPreControlCreate( parent , id , wxStripMenuCodes(label) , pos , size ,style, val , name , &bounds , title ) ;
133
134 m_macControl = (WXWidget) ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false , 0 , 0 , 1,
135 kControlGroupBoxTextTitleProc , (long) this ) ;
136
137 for (i = 0; i < n; i++)
138 {
139 wxRadioButton *radBtn = new wxRadioButton
140 (
141 this,
142 wxID_ANY,
143 wxStripMenuCodes(choices[i]),
144 wxPoint(5,20*i+10),
145 wxDefaultSize,
146 i == 0 ? wxRB_GROUP : 0
147 );
148 if ( i == 0 )
149 m_radioButtonCycle = radBtn ;
150 // m_radioButtonCycle=radBtn->AddInCycle(m_radioButtonCycle);
151 }
152
153 SetSelection(0);
154 MacPostControlCreate() ;
155
156 return true;
157 }
158
159
160 //-------------------------------------------------------------------------------------
161 // ¥ Enable(bool)
162 //-------------------------------------------------------------------------------------
163 // Enables or disables the entire radiobox
164
165 bool wxRadioBox::Enable(bool enable)
166 {
167 int i;
168 wxRadioButton *current;
169
170 if (!wxControl::Enable(enable))
171 return false;
172
173 current = m_radioButtonCycle;
174 for (i = 0; i < m_noItems; i++) {
175 current->Enable(enable);
176 current = current->NextInCycle();
177 }
178 return true;
179 }
180
181 //-------------------------------------------------------------------------------------
182 // ¥ Enable(int, bool)
183 //-------------------------------------------------------------------------------------
184 // Enables or disables an given button
185
186 bool wxRadioBox::Enable(int item, bool enable)
187 {
188 int i;
189 wxRadioButton *current;
190
191 if (!IsValid(item))
192 return false;
193
194 i = 0;
195 current = m_radioButtonCycle;
196 while (i != item) {
197 i++;
198 current = current->NextInCycle();
199 }
200 return current->Enable(enable);
201 }
202
203 //-------------------------------------------------------------------------------------
204 // ¥ GetLabel()
205 //-------------------------------------------------------------------------------------
206 // Returns the radiobox label
207
208 wxString wxRadioBox::GetLabel() const
209 {
210 return wxControl::GetLabel();
211 }
212
213 //-------------------------------------------------------------------------------------
214 // ¥ GetLabel(int)
215 //-------------------------------------------------------------------------------------
216 // Returns the label for the given button
217
218 wxString wxRadioBox::GetString(int item) const
219 {
220 int i;
221 wxRadioButton *current;
222
223 if (!IsValid(item))
224 return wxEmptyString;
225
226 i = 0;
227 current = m_radioButtonCycle;
228 while (i != item) {
229 i++;
230 current = current->NextInCycle();
231 }
232 return current->GetLabel();
233 }
234
235 //-------------------------------------------------------------------------------------
236 // ¥ GetSelection
237 //-------------------------------------------------------------------------------------
238 // Returns the zero-based position of the selected button
239
240 int wxRadioBox::GetSelection() const
241 {
242 int i;
243 wxRadioButton *current;
244
245 i=0;
246 current=m_radioButtonCycle;
247 while (!current->GetValue()) {
248 i++;
249 current=current->NextInCycle();
250 }
251
252 return i;
253 }
254
255 //-------------------------------------------------------------------------------------
256 // ¥ Number
257 //-------------------------------------------------------------------------------------
258 // Returns the number of buttons in the radiobox
259 //
260 // inline defined
261 //
262
263 //-------------------------------------------------------------------------------------
264 // ¥ SetLabel(const wxString&)
265 //-------------------------------------------------------------------------------------
266 // Sets the radiobox label
267
268 void wxRadioBox::SetLabel(const wxString& label)
269 {
270 return wxControl::SetLabel(label);
271 }
272
273 //-------------------------------------------------------------------------------------
274 // ¥ SetLabel(int, const wxString&)
275 //-------------------------------------------------------------------------------------
276 // Sets the label of a given button
277
278 void wxRadioBox::SetString(int item,const wxString& label)
279 {
280 int i;
281 wxRadioButton *current;
282
283 if (!IsValid(item))
284 return;
285 i=0;
286 current=m_radioButtonCycle;
287 while (i!=item) {
288 i++;
289 current=current->NextInCycle();
290 }
291 return current->SetLabel(label);
292 }
293
294 //-------------------------------------------------------------------------------------
295 // ¥ SetSelection
296 //-------------------------------------------------------------------------------------
297 // Sets a button by passing the desired position. This does not cause
298 // wxEVT_COMMAND_RADIOBOX_SELECTED event to get emitted
299
300 void wxRadioBox::SetSelection(int item)
301 {
302 int i;
303 wxRadioButton *current;
304
305 if (!IsValid(item))
306 return;
307 i=0;
308 current=m_radioButtonCycle;
309 while (i!=item) {
310 i++;
311 current=current->NextInCycle();
312 }
313 current->SetValue(true);
314
315 }
316
317 //-------------------------------------------------------------------------------------
318 // ¥ Show(bool)
319 //-------------------------------------------------------------------------------------
320 // Shows or hides the entire radiobox
321
322 bool wxRadioBox::Show(bool show)
323 {
324 int i;
325 wxRadioButton *current;
326
327 wxControl::Show(show);
328
329 current=m_radioButtonCycle;
330 for (i=0;i<m_noItems;i++)
331 {
332 current->Show(show);
333 current=current->NextInCycle();
334 }
335 return true;
336 }
337
338 //-------------------------------------------------------------------------------------
339 // ¥ Show(int, bool)
340 //-------------------------------------------------------------------------------------
341 // Shows or hides the given button
342
343 bool wxRadioBox::Show(int item, bool show)
344 {
345 int i;
346 wxRadioButton *current;
347
348 if (!IsValid(item))
349 return false;
350 i=0;
351 current=m_radioButtonCycle;
352 while (i!=item) {
353 i++;
354 current=current->NextInCycle();
355 }
356 return current->Show(show);
357 }
358
359 //-------------------------------------------------------------------------------------
360 // ¥ Command
361 //-------------------------------------------------------------------------------------
362 // Simulates the effect of the user issuing a command to the item
363
364 void wxRadioBox::Command (wxCommandEvent & event)
365 {
366 SetSelection (event.GetInt());
367 ProcessCommand (event);
368 }
369
370 //-------------------------------------------------------------------------------------
371 // ¥ SetFocus
372 //-------------------------------------------------------------------------------------
373 // Sets the selected button to receive keyboard input
374
375 void wxRadioBox::SetFocus()
376 {
377 int i;
378 wxRadioButton *current;
379
380 i=0;
381 current=m_radioButtonCycle;
382 while (!current->GetValue()) {
383 i++;
384 current=current->NextInCycle();
385 }
386 current->SetFocus();
387 }
388
389
390 //-------------------------------------------------------------------------------------
391 // ¥ DoSetSize
392 //-------------------------------------------------------------------------------------
393 // Simulates the effect of the user issuing a command to the item
394
395 #define RADIO_SIZE 20
396
397 void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
398 {
399 int i;
400 wxRadioButton *current;
401
402 // define the position
403
404 int x_current, y_current;
405 int x_offset,y_offset;
406 int widthOld, heightOld;
407 GetSize(&widthOld, &heightOld);
408
409 x_offset = x;
410 y_offset = y;
411 GetPosition(&x_current, &y_current);
412 if ((x == wxDefaultCoord) && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
413 x_offset = x_current;
414 if ((y == wxDefaultCoord)&& !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
415 y_offset = y_current;
416
417 // define size
418
419 int charWidth,charHeight;
420 int maxWidth,maxHeight;
421 int eachWidth[128],eachHeight[128];
422 int totWidth,totHeight;
423
424 SetFont(GetParent()->GetFont());
425 GetTextExtent(wxT("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), &charWidth, &charHeight);
426 charWidth/=52;
427
428 maxWidth=-1;
429 maxHeight=-1;
430 for (i = 0 ; i < m_noItems; i++)
431 {
432 GetTextExtent(GetString(i), &eachWidth[i], &eachHeight[i]);
433 eachWidth[i] = (int)(eachWidth[i] + RADIO_SIZE);
434 eachHeight[i] = (int)((3*eachHeight[i])/2);
435 if (maxWidth<eachWidth[i]) maxWidth = eachWidth[i];
436 if (maxHeight<eachHeight[i]) maxHeight = eachHeight[i];
437 }
438
439 totHeight = GetRowCount() * (maxHeight + charHeight/2) + charHeight ;
440 totWidth = GetColumnCount() * (maxWidth + charWidth) + charWidth;
441
442 // only change our width/height if asked for
443 if ( width == wxDefaultCoord )
444 {
445 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
446 width = totWidth ;
447 else
448 width = widthOld;
449 }
450
451 if ( height == wxDefaultCoord )
452 {
453 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
454 height = totHeight ;
455 else
456 height = heightOld;
457 }
458
459 wxControl::DoSetSize(x_offset,y_offset,width,height,wxSIZE_AUTO);
460
461 // arrange radiobuttons
462
463 int x_start,y_start;
464
465
466 x_start = charWidth;
467 y_start = 15 ;
468 if ( UMAGetSystemVersion() >= 0x1030 )
469 {
470 //need to add a few more pixels for the top border on panther
471 y_start = y_start + 5; //how many exactly should this be to meet the HIG?
472 }
473 x_offset = x_start;
474 y_offset = y_start;
475
476 current=m_radioButtonCycle;
477 for ( i = 0 ; i < m_noItems; i++)
478 {
479 if (i&&((i%m_majorDim)==0)) // not to do for the zero button!
480 {
481 if (m_windowStyle & wxRA_VERTICAL)
482 {
483 x_offset += maxWidth + charWidth;
484 y_offset = y_start;
485 }
486 else
487 {
488 x_offset = x_start;
489 y_offset += maxHeight ; /*+ charHeight/2;*/
490 }
491 }
492
493 current->SetSize(x_offset,y_offset,eachWidth[i],eachHeight[i]);
494 current=current->NextInCycle();
495
496 if (m_windowStyle & wxRA_SPECIFY_ROWS)
497 y_offset += maxHeight ; /*+ charHeight/2;*/
498 else
499 x_offset += maxWidth + charWidth;
500 }
501 }
502
503 wxSize wxRadioBox::DoGetBestSize() const
504 {
505 int charWidth, charHeight;
506 int maxWidth, maxHeight;
507 int eachWidth, eachHeight;
508 int totWidth, totHeight;
509
510 wxFont font = GetParent()->GetFont();
511 GetTextExtent(wxT("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"),
512 &charWidth, &charHeight, NULL, NULL, &font);
513 charWidth /= 52;
514
515 maxWidth = -1;
516 maxHeight = -1;
517
518 for (int i = 0 ; i < m_noItems; i++)
519 {
520 GetTextExtent(GetString(i), &eachWidth, &eachHeight);
521 eachWidth = (int)(eachWidth + RADIO_SIZE) ;
522 eachHeight = (int)((3 * eachHeight) / 2);
523 if (maxWidth < eachWidth) maxWidth = eachWidth;
524 if (maxHeight < eachHeight) maxHeight = eachHeight;
525 }
526
527 totHeight = GetRowCount() * (maxHeight + charHeight/2) + charHeight ;
528 totWidth = GetColumnCount() * (maxWidth + charWidth) + charWidth;
529
530 if ( UMAGetSystemVersion() >= 0x1030 )
531 {
532 //need to add a few more pixels for the static boxborder on panther
533 totHeight = totHeight + 10; //how many exactly should this be to meet the HIG?
534 }
535 // handle radio box title as well
536 GetTextExtent(GetTitle(), &eachWidth, NULL);
537 eachWidth = (int)(eachWidth + RADIO_SIZE) + 3 * charWidth ;
538 if (totWidth < eachWidth)
539 totWidth = eachWidth;
540
541 return wxSize(totWidth, totHeight);
542 }
543 //-------------------------------------------------------------------------------------
544 // ¥ GetNumVer
545 //-------------------------------------------------------------------------------------
546 // return the number of buttons in the vertical direction
547
548 int wxRadioBox::GetRowCount() const
549 {
550 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
551 {
552 return m_majorDim;
553 }
554 else
555 {
556 return (m_noItems + m_majorDim - 1)/m_majorDim;
557 }
558 }
559
560 //-------------------------------------------------------------------------------------
561 // ¥ GetNumHor
562 //-------------------------------------------------------------------------------------
563 // return the number of buttons in the horizontal direction
564
565 int wxRadioBox::GetColumnCount() const
566 {
567 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
568 {
569 return (m_noItems + m_majorDim - 1)/m_majorDim;
570 }
571 else
572 {
573 return m_majorDim;
574 }
575 }