X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bcfced3616c0ca77179f1ee69166eeb68d6c4b57..c82af6eec562a372bcc2e6ff26dbf3d14e227d72:/include/wx/dirdlg.h diff --git a/include/wx/dirdlg.h b/include/wx/dirdlg.h index 83c9ed5ea8..2afab20159 100644 --- a/include/wx/dirdlg.h +++ b/include/wx/dirdlg.h @@ -1,3 +1,14 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: wx/dirdlg.h +// Purpose: wxDirDialog base class +// Author: Robert Roebling +// Modified by: +// Created: +// Copyright: (c) Robert Roebling +// RCS-ID: $Id$ +// Licence: wxWindows Licence +///////////////////////////////////////////////////////////////////////////// + #ifndef _WX_DIRDLG_H_BASE_ #define _WX_DIRDLG_H_BASE_ @@ -9,12 +20,18 @@ // constants // ---------------------------------------------------------------------------- -WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr; -WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr; -WXDLLEXPORT_DATA(extern const wxChar*) wxDirSelectorPromptStr; +extern WXDLLEXPORT_DATA(const wxChar) wxDirDialogNameStr[]; +extern WXDLLEXPORT_DATA(const wxChar) wxDirDialogDefaultFolderStr[]; +extern WXDLLEXPORT_DATA(const wxChar) wxDirSelectorPromptStr[]; + -#define wxDD_DEFAULT_STYLE \ - (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxDD_NEW_DIR_BUTTON) +#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 @@ -67,6 +84,11 @@ public: #include "wx/mac/dirdlg.h" +// Native Cocoa +#elif defined(__WXCOCOA__) + + #include "wx/cocoa/dirdlg.h" + // Other ports use generic implementation #elif defined(__WXMOTIF__) || \ defined(__WXGTK__) || \