+ // Utility functions
+
+#if WXWIN_COMPATIBILITY_2_4
+ // Parses the wildCard, returning the number of filters.
+ // Returns 0 if none or if there's a problem,
+ // The arrays will contain an equal number of items found before the error.
+ // wildCard is in the form:
+ // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png"
+ wxDEPRECATED( static int ParseWildcard(const wxString& wildCard,
+ wxArrayString& descriptions,
+ wxArrayString& filters) );
+#endif // WXWIN_COMPATIBILITY_2_4
+
+ // Append first extension to filePath from a ';' separated extensionList
+ // if filePath = "path/foo.bar" just return it as is
+ // if filePath = "foo[.]" and extensionList = "*.jpg;*.png" return "foo.jpg"
+ // if the extension is "*.j?g" (has wildcards) or "jpg" then return filePath
+ static wxString AppendExtension(const wxString &filePath,
+ const wxString &extensionList);
+
+protected:
+ wxString m_message;
+ wxString m_dir;
+ wxString m_path; // Full path
+ wxString m_fileName;
+ wxString m_wildCard;
+ int m_filterIndex;
+
+private:
+ void Init();
+ DECLARE_DYNAMIC_CLASS(wxFileDialogBase)
+ DECLARE_NO_COPY_CLASS(wxFileDialogBase)
+};
+
+//----------------------------------------------------------------------------
+// wxFileDialog convenience functions
+//----------------------------------------------------------------------------
+
+// File selector - backward compatibility
+WXDLLEXPORT wxString
+wxFileSelector(const wxChar *message = wxFileSelectorPromptStr,
+ const wxChar *default_path = NULL,
+ const wxChar *default_filename = NULL,
+ const wxChar *default_extension = NULL,
+ const wxChar *wildcard = wxFileSelectorDefaultWildcardStr,
+ int flags = 0,
+ wxWindow *parent = NULL,
+ int x = wxDefaultCoord, int y = wxDefaultCoord);
+
+// An extended version of wxFileSelector
+WXDLLEXPORT wxString
+wxFileSelectorEx(const wxChar *message = wxFileSelectorPromptStr,
+ const wxChar *default_path = NULL,
+ const wxChar *default_filename = NULL,
+ int *indexDefaultExtension = NULL,
+ const wxChar *wildcard = wxFileSelectorDefaultWildcardStr,
+ int flags = 0,
+ wxWindow *parent = NULL,
+ int x = wxDefaultCoord, int y = wxDefaultCoord);
+
+// Ask for filename to load
+WXDLLEXPORT wxString
+wxLoadFileSelector(const wxChar *what,
+ const wxChar *extension,
+ const wxChar *default_name = (const wxChar *)NULL,
+ wxWindow *parent = (wxWindow *) NULL);
+
+// Ask for filename to save
+WXDLLEXPORT wxString
+wxSaveFileSelector(const wxChar *what,
+ const wxChar *extension,
+ const wxChar *default_name = (const wxChar *) NULL,
+ wxWindow *parent = (wxWindow *) NULL);
+
+
+#if defined (__WXUNIVERSAL__)
+#define wxUSE_GENERIC_FILEDIALOG
+#include "wx/generic/filedlgg.h"
+#elif defined(__WXMSW__)