wxDIALOG_ADAPTATION_MODE_DISABLED = 2 ///< Disable this dialog overriding global status.
};
+#define wxDEFAULT_DIALOG_STYLE (wxCAPTION | wxSYSTEM_MENU | wxCLOSE_BOX)
+
/**
@class wxDialog
virtual bool DoLayoutAdaptation(wxDialog* dialog) = 0;
};
+
+class wxWindowModalDialogEvent : public wxCommandEvent
+{
+public:
+ wxWindowModalDialogEvent (wxEventType commandType = wxEVT_NULL, int id = 0);
+
+ wxDialog *GetDialog() const;
+ int GetReturnCode() const;
+ virtual wxEvent *Clone() const;
+};