X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6463b9f5399b8670a0c74f2f8666bc2c9f37a406..9e152a55785098472ca1c0df110ad0a1203f710f:/include/wx/dialog.h diff --git a/include/wx/dialog.h b/include/wx/dialog.h index f9cfb80b71..c40e2399a3 100644 --- a/include/wx/dialog.h +++ b/include/wx/dialog.h @@ -20,6 +20,14 @@ #include "wx/containr.h" #include "wx/toplevel.h" +#define wxDIALOG_NO_PARENT 0x0001 // Don't make owned by apps top window + +#ifdef __WXWINCE__ + #define wxDEFAULT_DIALOG_STYLE (0) +#else // !__WXWINCE__ + #define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX) +#endif + WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr; class WXDLLEXPORT wxDialogBase : public wxTopLevelWindow