Moved the wxDialog BringWindowToFront fix to Show because it happens in

modeless dialogs too, if other windows have been disabled.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-02-22 08:54:05 +00:00
parent 05fc6c0a67
commit 86ad564eb1

View File

@@ -575,6 +575,18 @@ void wxDialog::DoShowModal()
bool wxDialog::Show(bool show) bool wxDialog::Show(bool show)
{ {
// The following is required when the parent has been disabled,
// (modal dialogs, or modeless dialogs with disabling such as wxProgressDialog).
// Otherwise the parent disappears behind other windows when the dialog is hidden.
if (!show)
{
HWND hwndParent = GetParent() ? (HWND) GetParent()->GetHWND() : (HWND)NULL;
if ( hwndParent )
{
::BringWindowToTop(hwndParent);
}
}
if ( !wxDialogBase::Show(show) ) if ( !wxDialogBase::Show(show) )
{ {
// nothing to do // nothing to do
@@ -620,12 +632,6 @@ void wxDialog::EndModal(int retCode)
{ {
SetReturnCode(retCode); SetReturnCode(retCode);
HWND hwndParent = GetParent() ? (HWND) GetParent()->GetHWND() : (HWND)NULL;
if ( hwndParent )
{
::BringWindowToTop(hwndParent);
}
Show(FALSE); Show(FALSE);
} }