]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/popupwin.cpp
freeze whole window for TLW
[wxWidgets.git] / src / osx / carbon / popupwin.cpp
index 48dff3d929c2849fc6c24b76a725c748a60355ef..b28aaba17d0ac15dc753bb2686cf52c39f8d77c6 100644 (file)
@@ -56,4 +56,25 @@ bool wxPopupWindow::Create(wxWindow *parent, int flags)
 
 }
 
+bool wxPopupWindow::Show(bool show)
+{
+    if ( !wxWindow::Show(show) )
+        return false;
+
+    if ( m_nowpeer && show)
+        m_nowpeer->ShowWithoutActivating();
+    else if ( m_nowpeer )
+        m_nowpeer->Show(false);
+
+    if ( show )
+    {
+        // because apps expect a size event to occur at this moment
+        wxSizeEvent event(GetSize() , m_windowId);
+        event.SetEventObject(this);
+        HandleWindowEvent(event);
+    }
+        
+    return true;
+}
+
 #endif // #if wxUSE_POPUPWIN