]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/frame.cpp
Removed floor() references
[wxWidgets.git] / src / msw / frame.cpp
index f5558c492d690d8e971f02fa0f4dd84dac37843b..2c459e4c3a861b17bdc68d92359d5598342545a5 100644 (file)
@@ -791,6 +791,20 @@ void wxFrame::IconizeChildFrames(bool bIconize)
     }
 }
 
+
+// make the window modal (all other windows unresponsive)
+void wxFrame::MakeModal(bool modal)
+{
+    if (modal) {
+        wxEnableTopLevelWindows(FALSE);
+        Enable(TRUE);           // keep this window enabled
+    }
+    else {
+        wxEnableTopLevelWindows(TRUE);
+    }
+}
+
+
 // ===========================================================================
 // message processing
 // ===========================================================================