prevent the parent window from losing activation when a popup is shown

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15662 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-05-25 13:02:58 +00:00
parent d45bc43695
commit 7e25f59e48
7 changed files with 119 additions and 25 deletions

View File

@@ -35,6 +35,8 @@
#include "wx/msw/private.h" // for WS_CHILD and WS_POPUP
wxWindowList wxPopupWindow::ms_shownPopups;
// ============================================================================
// implementation
// ============================================================================
@@ -76,3 +78,43 @@ WXDWORD wxPopupWindow::MSWGetStyle(long flags, WXDWORD *exstyle) const
return style;
}
bool wxPopupWindow::Show(bool show)
{
// skip wxWindow::Show() which calls wxBringWindowToTop(): this results in
// activating the popup window and stealing the atcivation from our parent
// which means that the parent frame becomes deactivated when opening a
// combobox, for example -- definitely not what we want
if ( !wxWindowBase::Show(show) )
return FALSE;
if ( show )
{
ms_shownPopups.Append(this);
}
else // remove from the shown list
{
ms_shownPopups.DeleteObject(this);
}
::ShowWindow(GetHwnd(), show ? SW_SHOWNOACTIVATE : SW_HIDE);
return TRUE;
}
/* static */
wxPopupWindow *wxPopupWindow::FindPopupFor(wxWindow *winParent)
{
// find a popup with the given parent in the linked list of all shown
// popups
for ( wxWindowList::Node *node = ms_shownPopups.GetFirst();
node;
node = node->GetNext() )
{
wxWindow *win = node->GetData();
if ( win->GetParent() == winParent )
return (wxPopupWindow *)win;
}
return NULL;
}