1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/containr.cpp
3 // Purpose: implementation of wxControlContainer
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
30 #include "wx/window.h"
31 #include "wx/scrolbar.h"
32 #include "wx/radiobut.h"
35 #include "wx/containr.h"
37 // trace mask for focus messages
38 #define TRACE_FOCUS _T("focus")
40 // ============================================================================
42 // ============================================================================
44 wxControlContainer::wxControlContainer(wxWindow
*winParent
)
46 m_winParent
= winParent
;
54 bool wxControlContainer::AcceptsFocus() const
56 // if we're not shown or disabled, we can't accept focus
57 if ( m_winParent
->IsShown() && m_winParent
->IsEnabled() )
59 // otherwise we can accept focus either if we have no children at all
60 // (in this case we're probably not used as a container) or only when
61 // at least one child will accept focus
62 wxWindowList::compatibility_iterator node
= m_winParent
->GetChildren().GetFirst();
67 // wxMac has eventually the two scrollbars as children, they don't count
68 // as real children in the algorithm mentioned above
69 bool hasRealChildren
= false ;
74 wxWindow
*child
= node
->GetData();
76 if ( child
->AcceptsFocus() )
82 wxScrollBar
*sb
= wxDynamicCast( child
, wxScrollBar
) ;
83 if ( sb
== NULL
|| !m_winParent
->MacIsWindowScrollbar( sb
) )
84 hasRealChildren
= true ;
86 node
= node
->GetNext();
90 if ( !hasRealChildren
)
98 void wxControlContainer::SetLastFocus(wxWindow
*win
)
100 // the panel itself should never get the focus at all but if it does happen
101 // temporarily (as it seems to do under wxGTK), at the very least don't
102 // forget our previous m_winLastFocused
103 if ( win
!= m_winParent
)
105 // if we're setting the focus
108 // find the last _immediate_ child which got focus
109 wxWindow
*winParent
= win
;
110 while ( winParent
!= m_winParent
)
113 winParent
= win
->GetParent();
115 // Yes, this can happen, though in a totally pathological case.
116 // like when detaching a menubar from a frame with a child
117 // which has pushed itself as an event handler for the menubar.
120 wxASSERT_MSG( winParent
,
121 _T("Setting last focus for a window that is not our child?") );
125 m_winLastFocused
= win
;
129 wxLogTrace(TRACE_FOCUS
, _T("Set last focus to %s(%s)"),
130 win
->GetClassInfo()->GetClassName(),
131 win
->GetLabel().c_str());
135 wxLogTrace(TRACE_FOCUS
, _T("No more last focus"));
139 // propagate the last focus upwards so that our parent can set focus back
140 // to us if it loses it now and regains later
141 wxWindow
*parent
= m_winParent
->GetParent();
144 wxChildFocusEvent
eventFocus(m_winParent
);
145 parent
->GetEventHandler()->ProcessEvent(eventFocus
);
149 // --------------------------------------------------------------------
150 // The following four functions are used to find other radio buttons
151 // within the same group. Used by wxSetFocusToChild on wxMSW
152 // --------------------------------------------------------------------
156 wxRadioButton
* wxGetPreviousButtonInGroup(wxRadioButton
*btn
)
158 if ( btn
->HasFlag(wxRB_GROUP
) || btn
->HasFlag(wxRB_SINGLE
) )
161 const wxWindowList
& siblings
= btn
->GetParent()->GetChildren();
162 wxWindowList::compatibility_iterator nodeThis
= siblings
.Find(btn
);
163 wxCHECK_MSG( nodeThis
, NULL
, _T("radio button not a child of its parent?") );
165 // Iterate over all previous siblings until we find the next radio button
166 wxWindowList::compatibility_iterator nodeBefore
= nodeThis
->GetPrevious();
167 wxRadioButton
*prevBtn
= 0;
170 prevBtn
= wxDynamicCast(nodeBefore
->GetData(), wxRadioButton
);
174 nodeBefore
= nodeBefore
->GetPrevious();
177 if (!prevBtn
|| prevBtn
->HasFlag(wxRB_SINGLE
))
179 // no more buttons in group
186 wxRadioButton
* wxGetNextButtonInGroup(wxRadioButton
*btn
)
188 if (btn
->HasFlag(wxRB_SINGLE
))
191 const wxWindowList
& siblings
= btn
->GetParent()->GetChildren();
192 wxWindowList::compatibility_iterator nodeThis
= siblings
.Find(btn
);
193 wxCHECK_MSG( nodeThis
, NULL
, _T("radio button not a child of its parent?") );
195 // Iterate over all previous siblings until we find the next radio button
196 wxWindowList::compatibility_iterator nodeNext
= nodeThis
->GetNext();
197 wxRadioButton
*nextBtn
= 0;
200 nextBtn
= wxDynamicCast(nodeNext
->GetData(), wxRadioButton
);
204 nodeNext
= nodeNext
->GetNext();
207 if ( !nextBtn
|| nextBtn
->HasFlag(wxRB_GROUP
) || nextBtn
->HasFlag(wxRB_SINGLE
) )
209 // no more buttons or the first button of the next group
216 wxRadioButton
* wxGetFirstButtonInGroup(wxRadioButton
*btn
)
220 wxRadioButton
* prevBtn
= wxGetPreviousButtonInGroup(btn
);
228 wxRadioButton
* wxGetLastButtonInGroup(wxRadioButton
*btn
)
232 wxRadioButton
* nextBtn
= wxGetNextButtonInGroup(btn
);
240 wxRadioButton
* wxGetSelectedButtonInGroup(wxRadioButton
*btn
)
242 // Find currently selected button
246 if (btn
->HasFlag(wxRB_SINGLE
))
249 wxRadioButton
*selBtn
;
251 // First check all previous buttons
252 for (selBtn
= wxGetPreviousButtonInGroup(btn
); selBtn
; selBtn
= wxGetPreviousButtonInGroup(selBtn
))
253 if (selBtn
->GetValue())
256 // Now all following buttons
257 for (selBtn
= wxGetNextButtonInGroup(btn
); selBtn
; selBtn
= wxGetNextButtonInGroup(selBtn
))
258 if (selBtn
->GetValue())
266 // ----------------------------------------------------------------------------
267 // Keyboard handling - this is the place where the TAB traversal logic is
268 // implemented. As this code is common to all ports, this ensures consistent
269 // behaviour even if we don't specify how exactly the wxNavigationKeyEvent are
270 // generated and this is done in platform specific code which also ensures that
271 // we can follow the given platform standards.
272 // ----------------------------------------------------------------------------
274 void wxControlContainer::HandleOnNavigationKey( wxNavigationKeyEvent
& event
)
276 wxWindow
*parent
= m_winParent
->GetParent();
278 // the event is propagated downwards if the event emitter was our parent
279 bool goingDown
= event
.GetEventObject() == parent
;
281 const wxWindowList
& children
= m_winParent
->GetChildren();
283 // there is not much to do if we don't have children and we're not
284 // interested in "notebook page change" events here
285 if ( !children
.GetCount() || event
.IsWindowChange() )
287 // let the parent process it unless it already comes from our parent
288 // of we don't have any
290 !parent
|| !parent
->GetEventHandler()->ProcessEvent(event
) )
298 // where are we going?
299 const bool forward
= event
.GetDirection();
301 // the node of the children list from which we should start looking for the
302 // next acceptable child
303 wxWindowList::compatibility_iterator node
, start_node
;
305 // we should start from the first/last control and not from the one which
306 // had focus the last time if we're propagating the event downwards because
307 // for our parent we look like a single control
310 // just to be sure it's not used (normally this is not necessary, but
311 // doesn't hurt neither)
312 m_winLastFocused
= (wxWindow
*)NULL
;
314 // start from first or last depending on where we're going
315 node
= forward
? children
.GetFirst() : children
.GetLast();
319 // try to find the child which has the focus currently
321 // the event emitter might have done this for us
322 wxWindow
*winFocus
= event
.GetCurrentFocus();
324 // but if not, we might know where the focus was ourselves
326 winFocus
= m_winLastFocused
;
328 // if still no luck, do it the hard way
330 winFocus
= wxWindow::FindFocus();
335 // If we are in a radio button group, start from the first item in the
337 if ( event
.IsFromTab() && wxIsKindOf(winFocus
, wxRadioButton
) )
338 winFocus
= wxGetFirstButtonInGroup((wxRadioButton
*)winFocus
);
340 // ok, we found the focus - now is it our child?
341 start_node
= children
.Find( winFocus
);
344 if ( !start_node
&& m_winLastFocused
)
346 // window which has focus isn't our child, fall back to the one
347 // which had the focus the last time
348 start_node
= children
.Find( m_winLastFocused
);
351 // if we still didn't find anything, we should start with the first one
354 start_node
= children
.GetFirst();
357 // and the first child which we can try setting focus to is the next or
359 node
= forward
? start_node
->GetNext() : start_node
->GetPrevious();
362 // we want to cycle over all elements passing by NULL
365 // don't go into infinite loop
366 if ( start_node
&& node
&& node
== start_node
)
369 // Have we come to the last or first item on the panel?
374 // exit now as otherwise we'd loop forever
380 // Check if our (maybe grand) parent is another panel: if this
381 // is the case, they will know what to do with this navigation
382 // key and so give them the chance to process it instead of
383 // looping inside this panel (normally, the focus will go to
384 // the next/previous item after this panel in the parent
386 wxWindow
*focussed_child_of_parent
= m_winParent
;
389 // we don't want to tab into a different dialog or frame
390 if ( focussed_child_of_parent
->IsTopLevel() )
393 event
.SetCurrentFocus( focussed_child_of_parent
);
394 if ( parent
->GetEventHandler()->ProcessEvent( event
) )
397 focussed_child_of_parent
= parent
;
399 parent
= parent
->GetParent();
402 //else: as the focus came from our parent, we definitely don't want
403 // to send it back to it!
405 // no, we are not inside another panel so process this ourself
406 node
= forward
? children
.GetFirst() : children
.GetLast();
411 wxWindow
*child
= node
->GetData();
414 if ( event
.IsFromTab() )
416 if ( wxIsKindOf(child
, wxRadioButton
) )
418 // only radio buttons with either wxRB_GROUP or wxRB_SINGLE
420 if ( child
->HasFlag(wxRB_GROUP
) )
422 // need to tab into the active button within a group
423 wxRadioButton
*rb
= wxGetSelectedButtonInGroup((wxRadioButton
*)child
);
427 else if ( !child
->HasFlag(wxRB_SINGLE
) )
429 node
= forward
? node
->GetNext() : node
->GetPrevious();
434 else if ( m_winLastFocused
&&
435 wxIsKindOf(m_winLastFocused
, wxRadioButton
) &&
436 !m_winLastFocused
->HasFlag(wxRB_SINGLE
) )
438 // cursor keys don't navigate out of a radio button group so
439 // find the correct radio button to focus
442 child
= wxGetNextButtonInGroup((wxRadioButton
*)m_winLastFocused
);
445 // no next button in group, set it to the first button
446 child
= wxGetFirstButtonInGroup((wxRadioButton
*)m_winLastFocused
);
451 child
= wxGetPreviousButtonInGroup((wxRadioButton
*)m_winLastFocused
);
454 // no previous button in group, set it to the last button
455 child
= wxGetLastButtonInGroup((wxRadioButton
*)m_winLastFocused
);
459 if ( child
== m_winLastFocused
)
461 // must be a group consisting of only one button therefore
462 // no need to send a navigation event
469 if ( child
->AcceptsFocusFromKeyboard() )
471 // if we're setting the focus to a child panel we should prevent it
472 // from giving it to the child which had the focus the last time
473 // and instead give it to the first/last child depending from which
474 // direction we're coming
475 event
.SetEventObject(m_winParent
);
477 // disable propagation for this call as otherwise the event might
478 // bounce back to us.
479 wxPropagationDisabler
disableProp(event
);
480 if ( !child
->GetEventHandler()->ProcessEvent(event
) )
482 // set it first in case SetFocusFromKbd() results in focus
484 m_winLastFocused
= child
;
486 // everything is simple: just give focus to it
487 child
->SetFocusFromKbd();
489 //else: the child manages its focus itself
496 node
= forward
? node
->GetNext() : node
->GetPrevious();
499 // we cycled through all of our children and none of them wanted to accept
504 void wxControlContainer::HandleOnWindowDestroy(wxWindowBase
*child
)
506 if ( child
== m_winLastFocused
)
507 m_winLastFocused
= NULL
;
509 if ( child
== m_winDefault
)
512 if ( child
== m_winTmpDefault
)
513 m_winTmpDefault
= NULL
;
516 // ----------------------------------------------------------------------------
518 // ----------------------------------------------------------------------------
520 bool wxControlContainer::DoSetFocus()
522 wxLogTrace(TRACE_FOCUS
, _T("SetFocus on wxPanel 0x%p."),
523 m_winParent
->GetHandle());
528 // when the panel gets the focus we move the focus to either the last
529 // window that had the focus or the first one that can get it unless the
530 // focus had been already set to some other child
532 wxWindow
*win
= wxWindow::FindFocus();
535 if ( win
== m_winParent
)
537 // our child already has focus, don't take it away from it
541 if ( win
->IsTopLevel() )
543 // don't look beyond the first top level parent - useless and
548 win
= win
->GetParent();
551 // protect against infinite recursion:
554 bool ret
= SetFocusToChild();
556 m_inSetFocus
= false;
561 void wxControlContainer::HandleOnFocus(wxFocusEvent
& event
)
563 wxLogTrace(TRACE_FOCUS
, _T("OnFocus on wxPanel 0x%p, name: %s"),
564 m_winParent
->GetHandle(),
565 m_winParent
->GetName().c_str() );
572 bool wxControlContainer::SetFocusToChild()
574 return wxSetFocusToChild(m_winParent
, &m_winLastFocused
);
577 // ----------------------------------------------------------------------------
578 // SetFocusToChild(): this function is used by wxPanel but also by wxFrame in
579 // wxMSW, this is why it is outside of wxControlContainer class
580 // ----------------------------------------------------------------------------
582 bool wxSetFocusToChild(wxWindow
*win
, wxWindow
**childLastFocused
)
584 wxCHECK_MSG( win
, false, _T("wxSetFocusToChild(): invalid window") );
585 wxCHECK_MSG( childLastFocused
, false,
586 _T("wxSetFocusToChild(): NULL child poonter") );
588 if ( *childLastFocused
)
590 // It might happen that the window got reparented
591 if ( (*childLastFocused
)->GetParent() == win
)
593 wxLogTrace(TRACE_FOCUS
,
594 _T("SetFocusToChild() => last child (0x%p)."),
595 (*childLastFocused
)->GetHandle());
597 // not SetFocusFromKbd(): we're restoring focus back to the old
598 // window and not setting it as the result of a kbd action
599 (*childLastFocused
)->SetFocus();
604 // it doesn't count as such any more
605 *childLastFocused
= (wxWindow
*)NULL
;
609 // set the focus to the first child who wants it
610 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
613 wxWindow
*child
= node
->GetData();
615 if ( child
->AcceptsFocusFromKeyboard() && !child
->IsTopLevel() )
618 // If a radiobutton is the first focusable child, search for the
619 // selected radiobutton in the same group
620 wxRadioButton
* btn
= wxDynamicCast(child
, wxRadioButton
);
623 wxRadioButton
* selected
= wxGetSelectedButtonInGroup(btn
);
629 wxLogTrace(TRACE_FOCUS
,
630 _T("SetFocusToChild() => first child (0x%p)."),
633 *childLastFocused
= child
;
634 child
->SetFocusFromKbd();
638 node
= node
->GetNext();