]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dirdlg.h
fixed assert failure in wxStaticCast()
[wxWidgets.git] / include / wx / dirdlg.h
index b7eddfd0948c3bbbecbe38677d5cb14da6a570a4..7d8682927afe0ba1017cb757acf7fcdc0584f1aa 100644 (file)
@@ -1,19 +1,50 @@
 #ifndef _WX_DIRDLG_H_BASE_
 #define _WX_DIRDLG_H_BASE_
 
+#if wxUSE_DIRDLG
+
+// ----------------------------------------------------------------------------
+// constants
+// ----------------------------------------------------------------------------
+
+WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
+
 #if defined(__WXMSW__)
-#include "wx/msw/dirdlg.h"
+    #if defined(__WIN16__) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS) || defined(__SALFORDC__)
+        #include "wx/generic/dirdlgg.h"
+    #else
+        #include "wx/msw/dirdlg.h"
+    #endif
 #elif defined(__WXMOTIF__)
-#include "wx/generic/dirdlgg.h"
+    #include "wx/generic/dirdlgg.h"
 #elif defined(__WXGTK__)
-#include "wx/gtk/dirdlg.h"
-#elif defined(__WXQT__)
-#include "wx/qt/dirdlg.h"
+    #include "wx/generic/dirdlgg.h"
+#elif defined(__WXMGL__)
+    #include "wx/generic/dirdlgg.h"
 #elif defined(__WXMAC__)
-#include "wx/mac/dirdlg.h"
+    #include "wx/mac/dirdlg.h"
+#elif defined(__WXPM__)
+    #include "wx/os2/dirdlg.h"
 #elif defined(__WXSTUBS__)
-#include "wx/stubs/dirdlg.h"
+    #include "wx/stubs/dirdlg.h"
 #endif
 
+// ----------------------------------------------------------------------------
+// common ::wxDirSelector() function
+// ----------------------------------------------------------------------------
+
+WXDLLEXPORT_DATA(extern const wxChar*) wxDirSelectorPromptStr;
+
+WXDLLEXPORT wxString
+wxDirSelector(const wxString& message = wxDirSelectorPromptStr,
+              const wxString& defaultPath = wxEmptyString,
+              long style = 0,
+              const wxPoint& pos = wxDefaultPosition,
+              wxWindow *parent = NULL);
+
+#endif // wxUSE_DIRDLG
+
 #endif
     // _WX_DIRDLG_H_BASE_