1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
21 #pragma implementation "radiobox.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/bitmap.h"
36 #include "wx/radiobox.h"
39 #include "wx/msw/private.h"
41 #if !USE_SHARED_LIBRARY
42 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
, wxControl
)
45 // ---------------------------------------------------------------------------
47 // ---------------------------------------------------------------------------
49 // wnd proc for radio buttons
51 LRESULT APIENTRY _EXPORT
wxRadioBtnWndProc(HWND hWnd
,
56 // ---------------------------------------------------------------------------
58 // ---------------------------------------------------------------------------
60 // the pointer to standard radio button wnd proc
61 static WXFARPROC s_wndprocRadioBtn
= (WXFARPROC
)NULL
;
65 // ===========================================================================
67 // ===========================================================================
69 // ---------------------------------------------------------------------------
71 // ---------------------------------------------------------------------------
73 int wxRadioBox::GetNumVer() const
75 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
81 return (m_noItems
+ m_majorDim
- 1)/m_majorDim
;
85 int wxRadioBox::GetNumHor() const
87 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
89 return (m_noItems
+ m_majorDim
- 1)/m_majorDim
;
97 bool wxRadioBox::MSWCommand(WXUINT cmd
, WXWORD id
)
99 if ( cmd
== BN_CLICKED
)
101 int selectedButton
= -1;
103 for ( int i
= 0; i
< m_noItems
; i
++ )
105 if ( id
== wxGetWindowId(m_radioButtons
[i
]) )
113 wxASSERT_MSG( selectedButton
!= -1, wxT("click from alien button?") );
115 if ( selectedButton
!= m_selectedButton
)
117 m_selectedButton
= selectedButton
;
119 SendNotificationEvent();
121 //else: don't generate events when the selection doesn't change
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
)
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
);
146 wxRadioBox::wxRadioBox()
148 m_selectedButton
= -1;
151 m_radioButtons
= NULL
;
154 m_radioHeight
= NULL
;
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
)
163 m_selectedButton
= -1;
169 parent
->AddChild(this);
170 m_backgroundColour
= parent
->GetBackgroundColour();
171 m_foregroundColour
= parent
->GetForegroundColour();
173 m_windowStyle
= (long&)style
;
181 m_windowId
= NewControlId();
188 m_majorDim
= majorDim
;
189 m_noRowsOrCols
= majorDim
;
191 long msStyle
= GROUP_FLAGS
;
194 WXDWORD exStyle
= Determine3DEffects(0, &want3D
);
196 HWND hwndParent
= (HWND
)parent
->GetHWND();
198 m_hWnd
= (WXHWND
)::CreateWindowEx
214 Ctl3dSubclassCtl((HWND
)m_hWnd
);
217 #endif // wxUSE_CTL3D
219 SetFont(parent
->GetFont());
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
];
229 for (i
= 0; i
< n
; i
++)
231 m_radioWidth
[i
] = m_radioHeight
[i
] = -1;
233 if ( i
== 0 && style
== 0 )
234 groupStyle
= WS_GROUP
;
235 long newId
= NewControlId();
236 long msStyle
= groupStyle
| RADIO_FLAGS
;
238 HWND hwndBtn
= CreateWindowEx(exStyle
, RADIO_CLASS
,
242 (HMENU
)newId
, wxGetInstance(),
245 m_radioButtons
[i
] = (WXHWND
)hwndBtn
;
247 SubclassRadioButton((WXHWND
)hwndBtn
);
249 wxFont
& font
= GetFont();
252 SendMessage(hwndBtn
, WM_SETFONT
,
253 (WPARAM
)font
.GetResourceHandle(), 0L);
256 m_subControls
.Append((wxObject
*)(WXDWORD
)(WXWORD
)newId
);
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
);
266 SetSize(x
, y
, width
, height
);
271 wxRadioBox::~wxRadioBox()
273 m_isBeingDeleted
= TRUE
;
278 for (i
= 0; i
< m_noItems
; i
++)
279 ::DestroyWindow((HWND
)m_radioButtons
[i
]);
280 delete[] m_radioButtons
;
284 delete[] m_radioWidth
;
286 delete[] m_radioHeight
;
290 wxString
wxRadioBox::GetLabel(int item
) const
292 wxCHECK_MSG( item
>= 0 && item
< m_noItems
, wxT(""), wxT("invalid radiobox index") );
294 return wxGetWindowText(m_radioButtons
[item
]);
297 void wxRadioBox::SetLabel(int item
, const wxString
& label
)
299 wxCHECK_RET( item
>= 0 && item
< m_noItems
, wxT("invalid radiobox index") );
301 m_radioWidth
[item
] = m_radioHeight
[item
] = -1;
302 SetWindowText((HWND
)m_radioButtons
[item
], label
.c_str());
305 void wxRadioBox::SetLabel(int item
, wxBitmap
*bitmap
)
308 m_radioWidth[item] = bitmap->GetWidth() + FB_MARGIN;
309 m_radioHeight[item] = bitmap->GetHeight() + FB_MARGIN;
311 wxFAIL_MSG(wxT("not implemented"));
314 int wxRadioBox::FindString(const wxString
& s
) const
316 for (int i
= 0; i
< m_noItems
; i
++)
318 if ( s
== wxGetWindowText(m_radioButtons
[i
]) )
325 void wxRadioBox::SetSelection(int N
)
327 wxCHECK_RET( (N
>= 0) && (N
< m_noItems
), wxT("invalid radiobox index") );
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);
333 ::SendMessage((HWND
)m_radioButtons
[N
], BM_SETCHECK
, 1, 0L);
334 ::SetFocus((HWND
)m_radioButtons
[N
]);
336 m_selectedButton
= N
;
339 // Get single selection, for single choice list items
340 int wxRadioBox::GetSelection() const
342 return m_selectedButton
;
345 // Find string for position
346 wxString
wxRadioBox::GetString(int N
) const
348 return wxGetWindowText(m_radioButtons
[N
]);
351 // Restored old code.
352 void wxRadioBox::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
354 int currentX
, currentY
;
355 GetPosition(¤tX
, ¤tY
);
356 int widthOld
, heightOld
;
357 GetSize(&widthOld
, &heightOld
);
362 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
364 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
371 int current_width
, cyf
;
374 wxGetCharSize(m_hWnd
, &cx1
, &cy1
, & GetFont());
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.
382 for (i
= 0 ; i
< m_noItems
; i
++)
386 if (m_radioWidth
[i
]<0)
388 // It's a labelled toggle
389 buf
= wxGetWindowText(m_radioButtons
[i
]);
390 GetTextExtent(buf
, ¤t_width
, &cyf
);
391 eachWidth
= (int)(current_width
+ RADIO_SIZE
);
392 eachHeight
= (int)((3*cyf
)/2);
396 eachWidth
= m_radioWidth
[i
];
397 eachHeight
= m_radioHeight
[i
];
400 if (maxWidth
<eachWidth
)
401 maxWidth
= eachWidth
;
402 if (maxHeight
<eachHeight
)
403 maxHeight
= eachHeight
;
411 int nbHor
= GetNumHor(),
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;
419 totHeight
= nbVer
* (maxHeight
+cy1
/2);
420 totWidth
= nbHor
* (maxWidth
+cx1
);
422 int extraHeight
= cy1
;
424 #if defined(CTL3D) && !CTL3D
425 // Requires a bigger group box in plain Windows
430 // only change our width/height if asked for
433 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
434 width
= totWidth
+ cx1
;
441 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
442 height
= totHeight
+ extraHeight
;
447 MoveWindow(GetHwnd(), x_offset
, y_offset
, width
, height
, TRUE
);
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.
457 int startX
= x_offset
;
458 int startY
= y_offset
;
460 for ( i
= 0 ; i
< m_noItems
; i
++)
462 // Bidimensional radio adjustment
463 if (i
&&((i%m_majorDim
)==0)) // Why is this omitted for i = 0?
465 if (m_windowStyle
& wxRA_VERTICAL
)
468 x_offset
+= maxWidth
+ cx1
;
473 y_offset
+= maxHeight
;
474 if (m_radioWidth
[0]>0)
480 if (m_radioWidth
[i
]<0)
482 // It's a labeled item
483 buf
= wxGetWindowText(m_radioButtons
[i
]);
484 GetTextExtent(buf
, ¤t_width
, &cyf
);
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);
493 eachWidth
= m_radioWidth
[i
];
494 eachHeight
= m_radioHeight
[i
];
497 MoveWindow((HWND
)m_radioButtons
[i
], x_offset
, y_offset
,
498 eachWidth
, eachHeight
,
501 if (m_windowStyle
& wxRA_SPECIFY_ROWS
)
503 y_offset
+= maxHeight
;
504 if (m_radioWidth
[0]>0)
508 x_offset
+= maxWidth
+ cx1
;
512 void wxRadioBox::GetSize(int *width
, int *height
) const
515 rect
.left
= -1; rect
.right
= -1; rect
.top
= -1; rect
.bottom
= -1;
518 wxFindMaxSize(m_hWnd
, &rect
);
521 for (i
= 0; i
< m_noItems
; i
++)
522 wxFindMaxSize(m_radioButtons
[i
], &rect
);
524 *width
= rect
.right
- rect
.left
;
525 *height
= rect
.bottom
- rect
.top
;
528 void wxRadioBox::GetPosition(int *x
, int *y
) const
530 wxWindow
*parent
= GetParent();
532 rect
.left
= -1; rect
.right
= -1; rect
.top
= -1; rect
.bottom
= -1;
535 for (i
= 0; i
< m_noItems
; i
++)
536 wxFindMaxSize(m_radioButtons
[i
], &rect
);
539 wxFindMaxSize(m_hWnd
, &rect
);
541 // Since we now have the absolute screen coords,
542 // if there's a parent we must subtract its top left corner
548 ::ScreenToClient((HWND
) parent
->GetHWND(), &point
);
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).
555 wxPoint
pt(GetParent()->GetClientAreaOrigin());
564 void wxRadioBox::SetFocus()
568 if (m_selectedButton
== -1)
569 ::SetFocus((HWND
) m_radioButtons
[0]);
571 ::SetFocus((HWND
) m_radioButtons
[m_selectedButton
]);
576 bool wxRadioBox::Show(bool show
)
578 if ( !wxControl::Show(show
) )
581 int nCmdShow
= show
? SW_SHOW
: SW_HIDE
;
582 for ( int i
= 0; i
< m_noItems
; i
++ )
584 ::ShowWindow((HWND
)m_radioButtons
[i
], nCmdShow
);
590 // Enable a specific button
591 void wxRadioBox::Enable(int item
, bool enable
)
593 wxCHECK_RET( item
>= 0 && item
< m_noItems
,
594 wxT("invalid item in wxRadioBox::Enable()") );
596 ::EnableWindow((HWND
) m_radioButtons
[item
], enable
);
599 // Enable all controls
600 bool wxRadioBox::Enable(bool enable
)
602 if ( !wxControl::Enable(enable
) )
605 for (int i
= 0; i
< m_noItems
; i
++)
606 ::EnableWindow((HWND
) m_radioButtons
[i
], enable
);
611 // Show a specific button
612 void wxRadioBox::Show(int item
, bool show
)
614 wxCHECK_RET( item
>= 0 && item
< m_noItems
,
615 wxT("invalid item in wxRadioBox::Show()") );
617 ::ShowWindow((HWND
)m_radioButtons
[item
], show
? SW_SHOW
: SW_HIDE
);
620 WXHBRUSH
wxRadioBox::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
621 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
626 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
627 return (WXHBRUSH
) hbrush
;
631 if (GetParent()->GetTransparentBackground())
632 SetBkMode((HDC
) pDC
, TRANSPARENT
);
634 SetBkMode((HDC
) pDC
, OPAQUE
);
636 ::SetBkColor((HDC
) pDC
, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
637 ::SetTextColor((HDC
) pDC
, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
639 wxBrush
*backgroundBrush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour(), wxSOLID
);
641 return (WXHBRUSH
) backgroundBrush
->GetResourceHandle();
644 // For single selection items only
645 wxString
wxRadioBox::GetStringSelection() const
648 int sel
= GetSelection();
650 result
= GetString(sel
);
655 bool wxRadioBox::SetStringSelection(const wxString
& s
)
657 int sel
= FindString (s
);
667 bool wxRadioBox::ContainsHWND(WXHWND hWnd
) const
670 for (i
= 0; i
< Number(); i
++)
672 if (GetRadioButtons()[i
] == hWnd
)
679 void wxRadioBox::Command (wxCommandEvent
& event
)
681 SetSelection (event
.m_commandInt
);
682 ProcessCommand (event
);
685 void wxRadioBox::SubclassRadioButton(WXHWND hWndBtn
)
688 HWND hwndBtn
= (HWND
)hWndBtn
;
690 if ( !s_wndprocRadioBtn
)
691 s_wndprocRadioBtn
= (WXFARPROC
)::GetWindowLong(hwndBtn
, GWL_WNDPROC
);
693 // No GWL_USERDATA in Win16, so omit this subclassing.
694 ::SetWindowLong(hwndBtn
, GWL_WNDPROC
, (long)wxRadioBtnWndProc
);
695 ::SetWindowLong(hwndBtn
, GWL_USERDATA
, (long)this);
699 void wxRadioBox::SendNotificationEvent()
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
);
708 // ---------------------------------------------------------------------------
709 // window proc for radio buttons
710 // ---------------------------------------------------------------------------
714 LRESULT APIENTRY _EXPORT
wxRadioBtnWndProc(HWND hwnd
,
719 bool processed
= TRUE
;
720 if ( msg
!= WM_KEYDOWN
)
725 wxRadioBox
*radiobox
= (wxRadioBox
*)::GetWindowLong(hwnd
, GWL_USERDATA
);
727 wxCHECK_MSG( radiobox
, 0, wxT("radio button without radio box?") );
729 int sel
= radiobox
->GetSelection();
738 sel
-= radiobox
->GetNumVer();
746 sel
+= radiobox
->GetNumVer();
751 wxNavigationKeyEvent event
;
752 event
.SetDirection(!(::GetKeyState(VK_SHIFT
) & 0x100));
753 event
.SetWindowChange(FALSE
);
754 event
.SetEventObject(radiobox
);
756 if ( radiobox
->GetEventHandler()->ProcessEvent(event
) )
767 if ( sel
>= 0 && sel
< radiobox
->Number() )
769 radiobox
->SetSelection(sel
);
771 // emulate the button click
772 radiobox
->SendNotificationEvent();
778 return ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn
, hwnd
, msg
, wParam
, lParam
);