#endif
#ifndef WX_PRECOMP
+#include "wx/defs.h"
#endif //WX_PRECOMP
#if wxUSE_POPUPWIN
#include "wx/msw/private.h" // for GetDesktopWindow()
-IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow, wxWindow)
-
// ============================================================================
// implementation
// ============================================================================
bool wxPopupWindow::Create(wxWindow *parent, int flags)
{
+ // popup windows are created hidden by default
+ Hide();
+
return wxPopupWindowBase::Create(parent) &&
- wxWindow::Create(parent, -1,
+ wxWindow::Create(parent, wxID_ANY,
wxDefaultPosition, wxDefaultSize,
flags | wxPOPUP_WINDOW);
}
bool wxPopupWindow::Show(bool show)
{
if ( !wxWindowMSW::Show(show) )
- return FALSE;
+ return false;
if ( show )
{
{
wxLogLastError(_T("SetWindowPos"));
}
+
+ // and set it as the foreground window so the mouse can be captured
+ ::SetForegroundWindow(GetHwnd());
}
- return TRUE;
+ return true;
}
#endif // #if wxUSE_POPUPWIN