]> git.saurik.com Git - wxWidgets.git/commitdiff
merged focus handling fix from 2.2
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 14 Apr 2001 21:46:54 +0000 (21:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 14 Apr 2001 21:46:54 +0000 (21:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/panelg.cpp
src/msw/frame.cpp

index 346a2c82e6a13f080d276105143999c7900b5a1d..3cab12dccb1516b1b8260365664bcff2b34fe35b 100644 (file)
@@ -353,6 +353,8 @@ bool wxPanel::SetFocusToChild()
 
 bool wxSetFocusToChild(wxWindow *win, wxWindow **childLastFocused)
 {
+    wxCHECK_MSG( win, FALSE, _T("wxSetFocusToChild(): invalid window") );
+
     if ( *childLastFocused )
     {
         // It might happen that the window got reparented or no longer accepts
index 857089ffb13ecd3e13ed4c7857c7971441d51fbe..6723824373f2678d3f4deef7d399245ddf04e63e 100644 (file)
@@ -727,18 +727,35 @@ void wxFrame::OnActivate(wxActivateEvent& event)
         // restore focus to the child which was last focused
         wxLogTrace(_T("focus"), _T("wxFrame %08x activated."), m_hWnd);
 
-        wxSetFocusToChild(this, &m_winLastFocused);
+        wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent()
+                                            : NULL;
+        if ( !parent )
+        {
+            parent = this;
+        }
+
+        wxSetFocusToChild(parent, &m_winLastFocused);
     }
-    else
+    else // deactivating
     {
-        // remember the last focused child
+        // remember the last focused child if it is our child
         m_winLastFocused = FindFocus();
-        while ( m_winLastFocused )
+
+        // so we NULL it out if it's a child from some other frame
+        wxWindow *win = m_winLastFocused;
+        while ( win )
         {
-            if ( GetChildren().Find(m_winLastFocused) )
+            if ( win->IsTopLevel() )
+            {
+                if ( win != this )
+                {
+                    m_winLastFocused = NULL;
+                }
+
                 break;
+            }
 
-            m_winLastFocused = m_winLastFocused->GetParent();
+            win = win->GetParent();
         }
 
         wxLogTrace(_T("focus"),