X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/08c63240955ba156a1c73024c65f28ddc1a660ac..414f2513fc42e1ec60954c7c000d7ae78ba6af8c:/include/wx/dirdlg.h diff --git a/include/wx/dirdlg.h b/include/wx/dirdlg.h index bf8053e4e7..78d21ae1cd 100644 --- a/include/wx/dirdlg.h +++ b/include/wx/dirdlg.h @@ -9,12 +9,17 @@ // constants // ---------------------------------------------------------------------------- -WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr; -WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr; -WXDLLEXPORT_DATA(extern const wxChar*) wxDirSelectorPromptStr; - -#define wxDD_DEFAULT_STYLE \ - (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxDD_NEW_DIR_BUTTON) +extern WXDLLEXPORT_DATA(const wxChar*) wxDirDialogNameStr; +extern WXDLLEXPORT_DATA(const wxChar*) wxDirDialogDefaultFolderStr; +extern WXDLLEXPORT_DATA(const wxChar*) wxDirSelectorPromptStr; + +#ifdef __WXWINCE__ + #define wxDD_DEFAULT_STYLE \ + (wxDEFAULT_DIALOG_STYLE | wxDD_NEW_DIR_BUTTON) +#else + #define wxDD_DEFAULT_STYLE \ + (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxDD_NEW_DIR_BUTTON) +#endif /* The interface (TODO: make the other classes really derive from it!) is @@ -44,7 +49,6 @@ public: // Universal and non-port related switches with need for generic implementation #if defined(__WXMSW__) && (defined(__WXUNIVERSAL__) || \ - defined(__SMARTPHONE__) || \ defined(__SALFORDC__) || \ !wxUSE_OLE || \ (defined (__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)) @@ -52,6 +56,12 @@ public: #include "wx/generic/dirdlgg.h" #define wxDirDialog wxGenericDirDialog +// MS PocketPC or MS Smartphone +#elif defined(__WXMSW__) && defined(__WXWINCE__) && !defined(__HANDHELDPC__) + + #include "wx/generic/dirdlgg.h" + #define wxDirDialog wxGenericDirDialog + // Native MSW #elif defined(__WXMSW__)