X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/24a7a1980f309763c349541daffa46f1a5fd16b2..2245b2b2c3339ecf023e5880caa803610a5d1907:/src/common/containr.cpp diff --git a/src/common/containr.cpp b/src/common/containr.cpp index 04a7794bfe..90a20eb833 100644 --- a/src/common/containr.cpp +++ b/src/common/containr.cpp @@ -50,15 +50,43 @@ wxControlContainer::wxControlContainer(wxWindow *winParent) void wxControlContainer::SetLastFocus(wxWindow *win) { - // find the last _immediate_ child which got focus - while ( win && win != m_winParent ) + // the panel itself should never get the focus at all but if it does happen + // temporarily (as it seems to do under wxGTK), at the very least don't + // forget our previous m_winLastFocused + if ( win == m_winParent ) + return; + + // if we're setting the focus + if ( win ) { - win = win->GetParent(); - } + // find the last _immediate_ child which got focus but be prepared to + // handle the case when win == m_winParent as well + wxWindow *winParent = win; + while ( winParent != m_winParent ) + { + win = winParent; + winParent = win->GetParent(); + + // Yes, this can happen, though in a totally pathological case. + // like when detaching a menubar from a frame with a child which + // has pushed itself as an event handler for the menubar. (wxGtk) - wxASSERT_MSG( win, _T("attempt to set last focus to not a child?") ); + wxASSERT_MSG( winParent, _T("Setting last-focus for a window that is not our child?") ); + } + } m_winLastFocused = win; + + if ( win ) + { + wxLogTrace(_T("focus"), _T("Set last focus to %s(%s)"), + win->GetClassInfo()->GetClassName(), + win->GetLabel().c_str()); + } + else + { + wxLogTrace(_T("focus"), _T("No more last focus")); + } } // ---------------------------------------------------------------------------- @@ -209,7 +237,7 @@ void wxControlContainer::HandleOnNavigationKey( wxNavigationKeyEvent& event ) if ( !child->GetEventHandler()->ProcessEvent(event) ) { // everything is simple: just give focus to it - child->SetFocus(); + child->SetFocusFromKbd(); m_winLastFocused = child; } @@ -273,6 +301,23 @@ bool wxControlContainer::DoSetFocus() // // RR: Removed for now. Let's see what happens.. + // if our child already has focus, don't take it away from it + wxWindow *win = wxWindow::FindFocus(); + while ( win ) + { + if ( win == m_winParent ) + return TRUE; + + if ( win->IsTopLevel() ) + { + // don't look beyond the first top level parent - useless and + // unnecessary + break; + } + + win = win->GetParent(); + } + return SetFocusToChild(); } @@ -315,7 +360,7 @@ bool wxSetFocusToChild(wxWindow *win, wxWindow **childLastFocused) _T("SetFocusToChild() => last child (0x%08x)."), (*childLastFocused)->GetHandle()); - (*childLastFocused)->SetFocus(); + (*childLastFocused)->SetFocusFromKbd(); return TRUE; } else @@ -338,7 +383,7 @@ bool wxSetFocusToChild(wxWindow *win, wxWindow **childLastFocused) child->GetHandle()); *childLastFocused = child; // should be redundant, but it is not - child->SetFocus(); + child->SetFocusFromKbd(); return TRUE; }