+ // Find the thread-local instance of wxMessageDialog
+ const DWORD tid = ::GetCurrentThreadId();
+ wxMessageDialogMap::iterator node = HookMap().find(tid);
+ wxCHECK_MSG( node != HookMap().end(), false,
+ wxT("bogus thread id in wxMessageDialog::Hook") );
+
+ wxMessageDialog * const wnd = node->second;
+
+ const HHOOK hhook = (HHOOK)wnd->m_hook;
+ const LRESULT rc = ::CallNextHookEx(hhook, code, wParam, lParam);
+
+ if ( code == HC_ACTION && lParam )
+ {
+ const CWPRETSTRUCT * const s = (CWPRETSTRUCT *)lParam;
+
+ if ( s->message == HCBT_ACTIVATE )
+ {
+ // we won't need this hook any longer
+ ::UnhookWindowsHookEx(hhook);
+ wnd->m_hook = NULL;
+ HookMap().erase(tid);
+
+ if ( wnd->GetMessageDialogStyle() & wxCENTER )
+ {
+ wnd->SetHWND(s->hwnd);
+ wnd->Center(); // center on parent
+ wnd->SetHWND(NULL);
+ }
+ //else: default behaviour, center on screen
+ }
+ }
+
+ return rc;
+}
+
+#endif // wxUSE_MSGBOX_HOOK
+
+
+int wxMessageDialog::ShowModal()
+{
+ if ( !wxTheApp->GetTopWindow() )
+ {
+ // when the message box is shown from wxApp::OnInit() (i.e. before the
+ // message loop is entered), this must be done or the next message box
+ // will never be shown - just try putting 2 calls to wxMessageBox() in
+ // OnInit() to see it
+ while ( wxTheApp->Pending() )
+ wxTheApp->Dispatch();
+ }
+
+ // use the top level window as parent if none specified
+ if ( !m_parent )
+ m_parent = FindSuitableParent();
+ HWND hWnd = m_parent ? GetHwndOf(m_parent) : NULL;
+
+ // translate wx style in MSW
+ unsigned int msStyle = MB_OK;
+ const long wxStyle = GetMessageDialogStyle();
+ if (wxStyle & wxYES_NO)
+ {
+#if !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
+ if (wxStyle & wxCANCEL)
+ msStyle = MB_YESNOCANCEL;
+ else
+#endif // !(__SMARTPHONE__ && __WXWINCE__)
+ msStyle = MB_YESNO;
+
+ if (wxStyle & wxNO_DEFAULT)
+ msStyle |= MB_DEFBUTTON2;
+ }
+
+ if (wxStyle & wxOK)
+ {
+ if (wxStyle & wxCANCEL)
+ msStyle = MB_OKCANCEL;
+ else
+ msStyle = MB_OK;
+ }
+ if (wxStyle & wxICON_EXCLAMATION)
+ msStyle |= MB_ICONEXCLAMATION;
+ else if (wxStyle & wxICON_HAND)
+ msStyle |= MB_ICONHAND;
+ else if (wxStyle & wxICON_INFORMATION)
+ msStyle |= MB_ICONINFORMATION;
+ else if (wxStyle & wxICON_QUESTION)
+ msStyle |= MB_ICONQUESTION;
+
+ if ( wxStyle & wxSTAY_ON_TOP )
+ msStyle |= MB_TOPMOST;
+
+#ifndef __WXWINCE__
+ if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
+ msStyle |= MB_RTLREADING | MB_RIGHT;
+#endif
+
+ if (hWnd)
+ msStyle |= MB_APPLMODAL;