Add documentation of wxFileSelectorEx() and wx{Load,Save}FileSelector().

Document all wxFileDialog-related functions and not just wxFileSelector().

See #14051.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2012-03-04 00:29:11 +00:00
parent 0b59366faa
commit 68a8473f93

View File

@ -373,5 +373,34 @@ wxString wxFileSelector(const wxString& message,
int x = wxDefaultCoord,
int y = wxDefaultCoord);
/**
An extended version of wxFileSelector
*/
wxString wxFileSelectorEx(const wxString& message = wxFileSelectorPromptStr,
const wxString& default_path = wxEmptyString,
const wxString& default_filename = wxEmptyString,
int *indexDefaultExtension = NULL,
const wxString& wildcard = wxFileSelectorDefaultWildcardStr,
int flags = 0,
wxWindow *parent = NULL,
int x = wxDefaultCoord,
int y = wxDefaultCoord);
/**
Ask for filename to load
*/
wxString wxLoadFileSelector(const wxString& what,
const wxString& extension,
const wxString& default_name = wxEmptyString,
wxWindow *parent = NULL);
/**
Ask for filename to save
*/
wxString wxSaveFileSelector(const wxString& what,
const wxString& extension,
const wxString& default_name = wxEmptyString,
wxWindow *parent = NULL);
//@}