]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/dialog.h
wxRadioBox fixed on mac
[wxWidgets.git] / include / wx / msw / dialog.h
index e8eb98da7d491c89e4c77c90d78a250bff90f8e8..f97ed29db02da90be9789192304491cad5f90ccb 100644 (file)
@@ -23,10 +23,8 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr;
 // Dialog boxes
 class WXDLLEXPORT wxDialog : public wxDialogBase
 {
-    DECLARE_DYNAMIC_CLASS(wxDialog)
-
 public:
-    wxDialog();
+    wxDialog() { Init(); }
 
     // Constructor with a modal flag, but no window id - the old convention
     wxDialog(wxWindow *parent,
@@ -116,7 +114,17 @@ protected:
     // show modal dialog and enter modal loop
     void DoShowModal();
 
+    // common part of all ctors
+    void Init();
+
 private:
+    wxWindow *m_oldFocus;
+
+    // while we are showing a modal dialog we disable the other windows using
+    // this object
+    class wxWindowDisabler *m_windowDisabler;
+
+    DECLARE_DYNAMIC_CLASS(wxDialog)
     DECLARE_EVENT_TABLE()
 };