X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8b5ef6cfd2e9928d462221ce384236cceff07c5f..e1d6e01c88876f9ff57056e2847eaaa91b074abb:/include/wx/dialog.h diff --git a/include/wx/dialog.h b/include/wx/dialog.h index 6f070cf127..ce21810e37 100644 --- a/include/wx/dialog.h +++ b/include/wx/dialog.h @@ -22,7 +22,15 @@ #define wxDIALOG_NO_PARENT 0x0001 // Don't make owned by apps top window -#define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX) +#ifdef __WXWINCE__ +# ifdef __SMARTPHONE__ +# define wxDEFAULT_DIALOG_STYLE (wxMAXIMIZE | wxCAPTION) +# else +# define wxDEFAULT_DIALOG_STYLE (0) +# endif +#else // !__WXWINCE__ +# define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX) +#endif WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr; @@ -63,7 +71,9 @@ protected: #if defined(__WXUNIVERSAL__) && !defined(__WXMICROWIN__) #include "wx/univ/dialog.h" #else - #if defined(__WXMSW__) + #if defined(__PALMOS__) + #include "wx/palmos/dialog.h" + #elif defined(__WXMSW__) #include "wx/msw/dialog.h" #elif defined(__WXMOTIF__) #include "wx/motif/dialog.h"