replaced T() makro with wxT() due to namespace probs, _T() exists, too
[wxWidgets.git] / src / msw / radiobox.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: radiobox.cpp
3 // Purpose: wxRadioBox
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ===========================================================================
13 // declarations
14 // ===========================================================================
15
16 // ---------------------------------------------------------------------------
17 // headers
18 // ---------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "radiobox.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #ifndef WX_PRECOMP
32 #include <stdio.h>
33 #include "wx/setup.h"
34 #include "wx/bitmap.h"
35 #include "wx/brush.h"
36 #include "wx/radiobox.h"
37 #endif
38
39 #include "wx/msw/private.h"
40
41 #if !USE_SHARED_LIBRARY
42 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
43 #endif
44
45 // ---------------------------------------------------------------------------
46 // private functions
47 // ---------------------------------------------------------------------------
48
49 // wnd proc for radio buttons
50 #ifdef __WIN32__
51 LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hWnd,
52 UINT message,
53 WPARAM wParam,
54 LPARAM lParam);
55
56 // ---------------------------------------------------------------------------
57 // global vars
58 // ---------------------------------------------------------------------------
59
60 // the pointer to standard radio button wnd proc
61 static WXFARPROC s_wndprocRadioBtn = (WXFARPROC)NULL;
62
63 #endif // __WIN32__
64
65 // ===========================================================================
66 // implementation
67 // ===========================================================================
68
69 // ---------------------------------------------------------------------------
70 // wxRadioBox
71 // ---------------------------------------------------------------------------
72
73 int wxRadioBox::GetNumVer() const
74 {
75 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
76 {
77 return m_majorDim;
78 }
79 else
80 {
81 return (m_noItems + m_majorDim - 1)/m_majorDim;
82 }
83 }
84
85 int wxRadioBox::GetNumHor() const
86 {
87 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
88 {
89 return (m_noItems + m_majorDim - 1)/m_majorDim;
90 }
91 else
92 {
93 return m_majorDim;
94 }
95 }
96
97 bool wxRadioBox::MSWCommand(WXUINT cmd, WXWORD id)
98 {
99 if ( cmd == BN_CLICKED )
100 {
101 int selectedButton = -1;
102
103 for ( int i = 0; i < m_noItems; i++ )
104 {
105 if ( id == wxGetWindowId(m_radioButtons[i]) )
106 {
107 selectedButton = i;
108
109 break;
110 }
111 }
112
113 wxASSERT_MSG( selectedButton != -1, wxT("click from alien button?") );
114
115 if ( selectedButton != m_selectedButton )
116 {
117 m_selectedButton = selectedButton;
118
119 SendNotificationEvent();
120 }
121 //else: don't generate events when the selection doesn't change
122
123 return TRUE;
124 }
125 else
126 return FALSE;
127 }
128
129 #if WXWIN_COMPATIBILITY
130 wxRadioBox::wxRadioBox(wxWindow *parent, wxFunction func, const char *title,
131 int x, int y, int width, int height,
132 int n, char **choices,
133 int majorDim, long style, const char *name)
134 {
135 wxString *choices2 = new wxString[n];
136 for ( int i = 0; i < n; i ++) choices2[i] = choices[i];
137 Create(parent, -1, title, wxPoint(x, y), wxSize(width, height), n, choices2, majorDim, style,
138 wxDefaultValidator, name);
139 Callback(func);
140 delete choices2;
141 }
142
143 #endif
144
145 // Radio box item
146 wxRadioBox::wxRadioBox()
147 {
148 m_selectedButton = -1;
149 m_noItems = 0;
150 m_noRowsOrCols = 0;
151 m_radioButtons = NULL;
152 m_majorDim = 0;
153 m_radioWidth = NULL;
154 m_radioHeight = NULL;
155 }
156
157 bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
158 const wxPoint& pos, const wxSize& size,
159 int n, const wxString choices[],
160 int majorDim, long style,
161 const wxValidator& val, const wxString& name)
162 {
163 m_selectedButton = -1;
164 m_noItems = n;
165
166 SetName(name);
167 SetValidator(val);
168
169 parent->AddChild(this);
170 m_backgroundColour = parent->GetBackgroundColour();
171 m_foregroundColour = parent->GetForegroundColour();
172
173 m_windowStyle = (long&)style;
174
175 int x = pos.x;
176 int y = pos.y;
177 int width = size.x;
178 int height = size.y;
179
180 if (id == -1)
181 m_windowId = NewControlId();
182 else
183 m_windowId = id;
184
185 if ( majorDim == 0 )
186 m_majorDim = n;
187 else
188 m_majorDim = majorDim;
189 m_noRowsOrCols = majorDim;
190
191 long msStyle = GROUP_FLAGS;
192
193 bool want3D;
194 WXDWORD exStyle = Determine3DEffects(0, &want3D);
195
196 HWND hwndParent = (HWND)parent->GetHWND();
197
198 m_hWnd = (WXHWND)::CreateWindowEx
199 (
200 (DWORD)exStyle,
201 GROUP_CLASS,
202 title,
203 msStyle,
204 0, 0, 0, 0,
205 hwndParent,
206 (HMENU)m_windowId,
207 wxGetInstance(),
208 NULL
209 );
210
211 #if wxUSE_CTL3D
212 if (want3D)
213 {
214 Ctl3dSubclassCtl((HWND)m_hWnd);
215 m_useCtl3D = TRUE;
216 }
217 #endif // wxUSE_CTL3D
218
219 SetFont(parent->GetFont());
220
221 SubclassWin(m_hWnd);
222
223 // Some radio boxes test consecutive id.
224 (void)NewControlId();
225 m_radioButtons = new WXHWND[n];
226 m_radioWidth = new int[n];
227 m_radioHeight = new int[n];
228 int i;
229 for (i = 0; i < n; i++)
230 {
231 m_radioWidth[i] = m_radioHeight[i] = -1;
232 long groupStyle = 0;
233 if ( i == 0 && style == 0 )
234 groupStyle = WS_GROUP;
235 long newId = NewControlId();
236 long msStyle = groupStyle | RADIO_FLAGS;
237
238 HWND hwndBtn = CreateWindowEx(exStyle, RADIO_CLASS,
239 choices[i], msStyle,
240 0,0,0,0,
241 hwndParent,
242 (HMENU)newId, wxGetInstance(),
243 NULL);
244
245 m_radioButtons[i] = (WXHWND)hwndBtn;
246
247 SubclassRadioButton((WXHWND)hwndBtn);
248
249 wxFont& font = GetFont();
250 if ( font.Ok() )
251 {
252 SendMessage(hwndBtn, WM_SETFONT,
253 (WPARAM)font.GetResourceHandle(), 0L);
254 }
255
256 m_subControls.Append((wxObject *)(WXDWORD)(WXWORD)newId);
257 }
258
259 // Create a dummy radio control to end the group.
260 (void)CreateWindowEx(0, RADIO_CLASS, wxT(""), WS_GROUP | RADIO_FLAGS,
261 0, 0, 0, 0, hwndParent,
262 (HMENU)NewControlId(), wxGetInstance(), NULL);
263
264 SetSelection(0);
265
266 SetSize(x, y, width, height);
267
268 return TRUE;
269 }
270
271 wxRadioBox::~wxRadioBox()
272 {
273 m_isBeingDeleted = TRUE;
274
275 if (m_radioButtons)
276 {
277 int i;
278 for (i = 0; i < m_noItems; i++)
279 ::DestroyWindow((HWND)m_radioButtons[i]);
280 delete[] m_radioButtons;
281 }
282
283 if (m_radioWidth)
284 delete[] m_radioWidth;
285 if (m_radioHeight)
286 delete[] m_radioHeight;
287
288 }
289
290 wxString wxRadioBox::GetLabel(int item) const
291 {
292 wxCHECK_MSG( item >= 0 && item < m_noItems, wxT(""), wxT("invalid radiobox index") );
293
294 return wxGetWindowText(m_radioButtons[item]);
295 }
296
297 void wxRadioBox::SetLabel(int item, const wxString& label)
298 {
299 wxCHECK_RET( item >= 0 && item < m_noItems, wxT("invalid radiobox index") );
300
301 m_radioWidth[item] = m_radioHeight[item] = -1;
302 SetWindowText((HWND)m_radioButtons[item], label.c_str());
303 }
304
305 void wxRadioBox::SetLabel(int item, wxBitmap *bitmap)
306 {
307 /*
308 m_radioWidth[item] = bitmap->GetWidth() + FB_MARGIN;
309 m_radioHeight[item] = bitmap->GetHeight() + FB_MARGIN;
310 */
311 wxFAIL_MSG(wxT("not implemented"));
312 }
313
314 int wxRadioBox::FindString(const wxString& s) const
315 {
316 for (int i = 0; i < m_noItems; i++)
317 {
318 if ( s == wxGetWindowText(m_radioButtons[i]) )
319 return i;
320 }
321
322 return wxNOT_FOUND;
323 }
324
325 void wxRadioBox::SetSelection(int N)
326 {
327 wxCHECK_RET( (N >= 0) && (N < m_noItems), wxT("invalid radiobox index") );
328
329 // Following necessary for Win32s, because Win32s translate BM_SETCHECK
330 if (m_selectedButton >= 0 && m_selectedButton < m_noItems)
331 ::SendMessage((HWND) m_radioButtons[m_selectedButton], BM_SETCHECK, 0, 0L);
332
333 ::SendMessage((HWND)m_radioButtons[N], BM_SETCHECK, 1, 0L);
334 ::SetFocus((HWND)m_radioButtons[N]);
335
336 m_selectedButton = N;
337 }
338
339 // Get single selection, for single choice list items
340 int wxRadioBox::GetSelection() const
341 {
342 return m_selectedButton;
343 }
344
345 // Find string for position
346 wxString wxRadioBox::GetString(int N) const
347 {
348 return wxGetWindowText(m_radioButtons[N]);
349 }
350
351 // Restored old code.
352 void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
353 {
354 int currentX, currentY;
355 GetPosition(&currentX, &currentY);
356 int widthOld, heightOld;
357 GetSize(&widthOld, &heightOld);
358
359 int xx = x;
360 int yy = y;
361
362 if (x == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
363 xx = currentX;
364 if (y == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
365 yy = currentY;
366
367 wxString buf;
368
369 int y_offset = yy;
370 int x_offset = xx;
371 int current_width, cyf;
372
373 int cx1,cy1;
374 wxGetCharSize(m_hWnd, &cx1, &cy1, & GetFont());
375
376 // Attempt to have a look coherent with other platforms: We compute the
377 // biggest toggle dim, then we align all items according this value.
378 int maxWidth = -1;
379 int maxHeight = -1;
380
381 int i;
382 for (i = 0 ; i < m_noItems; i++)
383 {
384 int eachWidth;
385 int eachHeight;
386 if (m_radioWidth[i]<0)
387 {
388 // It's a labelled toggle
389 buf = wxGetWindowText(m_radioButtons[i]);
390 GetTextExtent(buf, &current_width, &cyf);
391 eachWidth = (int)(current_width + RADIO_SIZE);
392 eachHeight = (int)((3*cyf)/2);
393 }
394 else
395 {
396 eachWidth = m_radioWidth[i];
397 eachHeight = m_radioHeight[i];
398 }
399
400 if (maxWidth<eachWidth)
401 maxWidth = eachWidth;
402 if (maxHeight<eachHeight)
403 maxHeight = eachHeight;
404 }
405
406 if (m_hWnd)
407 {
408 int totWidth;
409 int totHeight;
410
411 int nbHor = GetNumHor(),
412 nbVer = GetNumVer();
413
414 // this formula works, but I don't know why.
415 // Please, be sure what you do if you modify it!!
416 if (m_radioWidth[0]<0)
417 totHeight = (nbVer * maxHeight) + cy1/2;
418 else
419 totHeight = nbVer * (maxHeight+cy1/2);
420 totWidth = nbHor * (maxWidth+cx1);
421
422 int extraHeight = cy1;
423
424 #if defined(CTL3D) && !CTL3D
425 // Requires a bigger group box in plain Windows
426 extraHeight *= 3;
427 extraHeight /= 2;
428 #endif
429
430 // only change our width/height if asked for
431 if ( width == -1 )
432 {
433 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
434 width = totWidth + cx1;
435 else
436 width = widthOld;
437 }
438
439 if ( height == -1 )
440 {
441 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
442 height = totHeight + extraHeight;
443 else
444 height = heightOld;
445 }
446
447 MoveWindow(GetHwnd(), x_offset, y_offset, width, height, TRUE);
448
449 x_offset += cx1;
450 y_offset += cy1;
451 }
452
453 #if defined(CTL3D) && (!CTL3D)
454 y_offset += (int)(cy1/2); // Fudge factor since buttons overlapped label
455 // JACS 2/12/93. CTL3D draws group label quite high.
456 #endif
457 int startX = x_offset;
458 int startY = y_offset;
459
460 for ( i = 0 ; i < m_noItems; i++)
461 {
462 // Bidimensional radio adjustment
463 if (i&&((i%m_majorDim)==0)) // Why is this omitted for i = 0?
464 {
465 if (m_windowStyle & wxRA_VERTICAL)
466 {
467 y_offset = startY;
468 x_offset += maxWidth + cx1;
469 }
470 else
471 {
472 x_offset = startX;
473 y_offset += maxHeight;
474 if (m_radioWidth[0]>0)
475 y_offset += cy1/2;
476 }
477 }
478 int eachWidth;
479 int eachHeight;
480 if (m_radioWidth[i]<0)
481 {
482 // It's a labeled item
483 buf = wxGetWindowText(m_radioButtons[i]);
484 GetTextExtent(buf, &current_width, &cyf);
485
486 // How do we find out radio button bitmap size!!
487 // By adjusting them carefully, manually :-)
488 eachWidth = (int)(current_width + RADIO_SIZE);
489 eachHeight = (int)((3*cyf)/2);
490 }
491 else
492 {
493 eachWidth = m_radioWidth[i];
494 eachHeight = m_radioHeight[i];
495 }
496
497 MoveWindow((HWND)m_radioButtons[i], x_offset, y_offset,
498 eachWidth, eachHeight,
499 TRUE);
500
501 if (m_windowStyle & wxRA_SPECIFY_ROWS)
502 {
503 y_offset += maxHeight;
504 if (m_radioWidth[0]>0)
505 y_offset += cy1/2;
506 }
507 else
508 x_offset += maxWidth + cx1;
509 }
510 }
511
512 void wxRadioBox::GetSize(int *width, int *height) const
513 {
514 RECT rect;
515 rect.left = -1; rect.right = -1; rect.top = -1; rect.bottom = -1;
516
517 if (m_hWnd)
518 wxFindMaxSize(m_hWnd, &rect);
519
520 int i;
521 for (i = 0; i < m_noItems; i++)
522 wxFindMaxSize(m_radioButtons[i], &rect);
523
524 *width = rect.right - rect.left;
525 *height = rect.bottom - rect.top;
526 }
527
528 void wxRadioBox::GetPosition(int *x, int *y) const
529 {
530 wxWindow *parent = GetParent();
531 RECT rect;
532 rect.left = -1; rect.right = -1; rect.top = -1; rect.bottom = -1;
533
534 int i;
535 for (i = 0; i < m_noItems; i++)
536 wxFindMaxSize(m_radioButtons[i], &rect);
537
538 if (m_hWnd)
539 wxFindMaxSize(m_hWnd, &rect);
540
541 // Since we now have the absolute screen coords,
542 // if there's a parent we must subtract its top left corner
543 POINT point;
544 point.x = rect.left;
545 point.y = rect.top;
546 if (parent)
547 {
548 ::ScreenToClient((HWND) parent->GetHWND(), &point);
549 }
550 // We may be faking the client origin.
551 // So a window that's really at (0, 30) may appear
552 // (to wxWin apps) to be at (0, 0).
553 if (GetParent())
554 {
555 wxPoint pt(GetParent()->GetClientAreaOrigin());
556 point.x -= pt.x;
557 point.y -= pt.y;
558 }
559
560 *x = point.x;
561 *y = point.y;
562 }
563
564 void wxRadioBox::SetFocus()
565 {
566 if (m_noItems > 0)
567 {
568 if (m_selectedButton == -1)
569 ::SetFocus((HWND) m_radioButtons[0]);
570 else
571 ::SetFocus((HWND) m_radioButtons[m_selectedButton]);
572 }
573
574 }
575
576 bool wxRadioBox::Show(bool show)
577 {
578 if ( !wxControl::Show(show) )
579 return FALSE;
580
581 int nCmdShow = show ? SW_SHOW : SW_HIDE;
582 for ( int i = 0; i < m_noItems; i++ )
583 {
584 ::ShowWindow((HWND)m_radioButtons[i], nCmdShow);
585 }
586
587 return TRUE;
588 }
589
590 // Enable a specific button
591 void wxRadioBox::Enable(int item, bool enable)
592 {
593 wxCHECK_RET( item >= 0 && item < m_noItems,
594 wxT("invalid item in wxRadioBox::Enable()") );
595
596 ::EnableWindow((HWND) m_radioButtons[item], enable);
597 }
598
599 // Enable all controls
600 bool wxRadioBox::Enable(bool enable)
601 {
602 if ( !wxControl::Enable(enable) )
603 return FALSE;
604
605 for (int i = 0; i < m_noItems; i++)
606 ::EnableWindow((HWND) m_radioButtons[i], enable);
607
608 return TRUE;
609 }
610
611 // Show a specific button
612 void wxRadioBox::Show(int item, bool show)
613 {
614 wxCHECK_RET( item >= 0 && item < m_noItems,
615 wxT("invalid item in wxRadioBox::Show()") );
616
617 ::ShowWindow((HWND)m_radioButtons[item], show ? SW_SHOW : SW_HIDE);
618 }
619
620 WXHBRUSH wxRadioBox::OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
621 WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
622 {
623 #if wxUSE_CTL3D
624 if ( m_useCtl3D )
625 {
626 HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam);
627 return (WXHBRUSH) hbrush;
628 }
629 #endif
630
631 if (GetParent()->GetTransparentBackground())
632 SetBkMode((HDC) pDC, TRANSPARENT);
633 else
634 SetBkMode((HDC) pDC, OPAQUE);
635
636 ::SetBkColor((HDC) pDC, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
637 ::SetTextColor((HDC) pDC, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
638
639 wxBrush *backgroundBrush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour(), wxSOLID);
640
641 return (WXHBRUSH) backgroundBrush->GetResourceHandle();
642 }
643
644 // For single selection items only
645 wxString wxRadioBox::GetStringSelection() const
646 {
647 wxString result;
648 int sel = GetSelection();
649 if (sel > -1)
650 result = GetString(sel);
651
652 return result;
653 }
654
655 bool wxRadioBox::SetStringSelection(const wxString& s)
656 {
657 int sel = FindString (s);
658 if (sel > -1)
659 {
660 SetSelection (sel);
661 return TRUE;
662 }
663 else
664 return FALSE;
665 }
666
667 bool wxRadioBox::ContainsHWND(WXHWND hWnd) const
668 {
669 int i;
670 for (i = 0; i < Number(); i++)
671 {
672 if (GetRadioButtons()[i] == hWnd)
673 return TRUE;
674 }
675
676 return FALSE;
677 }
678
679 void wxRadioBox::Command (wxCommandEvent & event)
680 {
681 SetSelection (event.m_commandInt);
682 ProcessCommand (event);
683 }
684
685 void wxRadioBox::SubclassRadioButton(WXHWND hWndBtn)
686 {
687 #ifdef __WIN32__
688 HWND hwndBtn = (HWND)hWndBtn;
689
690 if ( !s_wndprocRadioBtn )
691 s_wndprocRadioBtn = (WXFARPROC)::GetWindowLong(hwndBtn, GWL_WNDPROC);
692
693 // No GWL_USERDATA in Win16, so omit this subclassing.
694 ::SetWindowLong(hwndBtn, GWL_WNDPROC, (long)wxRadioBtnWndProc);
695 ::SetWindowLong(hwndBtn, GWL_USERDATA, (long)this);
696 #endif // __WIN32__
697 }
698
699 void wxRadioBox::SendNotificationEvent()
700 {
701 wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId);
702 event.SetInt( m_selectedButton );
703 event.SetString( GetString(m_selectedButton) );
704 event.SetEventObject( this );
705 ProcessCommand(event);
706 }
707
708 // ---------------------------------------------------------------------------
709 // window proc for radio buttons
710 // ---------------------------------------------------------------------------
711
712 #ifdef __WIN32__
713
714 LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hwnd,
715 UINT msg,
716 WPARAM wParam,
717 LPARAM lParam)
718 {
719 bool processed = TRUE;
720 if ( msg != WM_KEYDOWN )
721 processed = FALSE;
722
723 if ( processed )
724 {
725 wxRadioBox *radiobox = (wxRadioBox *)::GetWindowLong(hwnd, GWL_USERDATA);
726
727 wxCHECK_MSG( radiobox, 0, wxT("radio button without radio box?") );
728
729 int sel = radiobox->GetSelection();
730
731 switch ( wParam )
732 {
733 case VK_UP:
734 sel--;
735 break;
736
737 case VK_LEFT:
738 sel -= radiobox->GetNumVer();
739 break;
740
741 case VK_DOWN:
742 sel++;
743 break;
744
745 case VK_RIGHT:
746 sel += radiobox->GetNumVer();
747 break;
748
749 case VK_TAB:
750 {
751 wxNavigationKeyEvent event;
752 event.SetDirection(!(::GetKeyState(VK_SHIFT) & 0x100));
753 event.SetWindowChange(FALSE);
754 event.SetEventObject(radiobox);
755
756 if ( radiobox->GetEventHandler()->ProcessEvent(event) )
757 return 0;
758 }
759 // fall through
760
761 default:
762 processed = FALSE;
763 }
764
765 if ( processed )
766 {
767 if ( sel >= 0 && sel < radiobox->Number() )
768 {
769 radiobox->SetSelection(sel);
770
771 // emulate the button click
772 radiobox->SendNotificationEvent();
773 }
774 }
775 }
776
777 if ( !processed )
778 return ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn, hwnd, msg, wParam, lParam);
779 else
780 return 0;
781 }
782
783 #endif // __WIN32__
784