X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/456bc6d9b83882a3b0e919fc733898d9d331ecd6..2245b2b2c3339ecf023e5880caa803610a5d1907:/src/common/containr.cpp diff --git a/src/common/containr.cpp b/src/common/containr.cpp index c5133c803d..90a20eb833 100644 --- a/src/common/containr.cpp +++ b/src/common/containr.cpp @@ -29,6 +29,9 @@ #endif #ifndef WX_PRECOMP + #include "wx/log.h" + #include "wx/event.h" + #include "wx/window.h" #endif //WX_PRECOMP #include "wx/containr.h" @@ -47,19 +50,43 @@ wxControlContainer::wxControlContainer(wxWindow *winParent) void wxControlContainer::SetLastFocus(wxWindow *win) { - // find the last _immediate_ child which got focus - while ( win ) + // 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 ) { - wxWindow *parent = win->GetParent(); - if ( parent == m_winParent ) - break; + // 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(); - win = parent; - } + // 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")); + } } // ---------------------------------------------------------------------------- @@ -210,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; } @@ -242,7 +269,7 @@ void wxControlContainer::HandleOnWindowDestroy(wxWindowBase *child) // focus handling // ---------------------------------------------------------------------------- -void wxControlContainer::DoSetFocus() +bool wxControlContainer::DoSetFocus() { wxLogTrace(_T("focus"), _T("SetFocus on wxPanel 0x%08x."), m_winParent->GetHandle()); @@ -274,10 +301,24 @@ void wxControlContainer::DoSetFocus() // // RR: Removed for now. Let's see what happens.. - if ( !SetFocusToChild() ) + // if our child already has focus, don't take it away from it + wxWindow *win = wxWindow::FindFocus(); + while ( win ) { - m_winParent->SetFocus(); + 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(); } void wxControlContainer::HandleOnFocus(wxFocusEvent& event) @@ -319,7 +360,7 @@ bool wxSetFocusToChild(wxWindow *win, wxWindow **childLastFocused) _T("SetFocusToChild() => last child (0x%08x)."), (*childLastFocused)->GetHandle()); - (*childLastFocused)->SetFocus(); + (*childLastFocused)->SetFocusFromKbd(); return TRUE; } else @@ -342,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; }