]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dialog.cpp
Added new wxGrid classes. This is a work in progress !
[wxWidgets.git] / src / msw / dialog.cpp
index dde02e52a8f4daa728c8842223ce669970ef88c2..8c3f4e9afaea005fa64323bc60ca10883900807b 100644 (file)
@@ -123,12 +123,12 @@ bool wxDialog::Create(wxWindow *parent, wxWindowID id,
     // resizeable or not (but a resizeable dialog always has caption -
     // otherwise it would look too strange)
     const wxChar *dlg;
-    if ( style & wxTHICK_FRAME )
-        dlg = _T("wxResizeableDialog");
+    if ( style & wxRESIZE_BORDER )
+        dlg = T("wxResizeableDialog");
     else if ( style & wxCAPTION )
-        dlg = _T("wxCaptionDialog");
+        dlg = T("wxCaptionDialog");
     else
-        dlg = _T("wxNoCaptionDialog");
+        dlg = T("wxNoCaptionDialog");
     MSWCreate(m_windowId, parent, NULL, this, NULL,
               x, y, width, height,
               0, // style is not used if we have dlg template
@@ -281,6 +281,11 @@ bool wxDialog::IsShown() const
   return m_isShown;
 }
 
+bool wxDialog::IsModal() const
+{
+    return wxModalDialogs.Find((wxDialog *)this) != 0; // const_cast
+}
+
 bool wxDialog::Show(bool show)
 {
   m_isShown = show;