1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxFileDialog
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
12 This class represents the file chooser dialog.
14 It pops up a file selector box (native for Windows and GTK2.4+).
16 The path and filename are distinct elements of a full file pathname.
17 If path is wxEmptyString, the current directory will be used.
18 If filename is wxEmptyString, no default filename will be supplied.
19 The wildcard determines what files are displayed in the file selector,
20 and file extension supplies a type extension for the required filename.
23 All implementations of the wxFileDialog provide a wildcard filter. Typing a filename
24 containing wildcards (*, ?) in the filename text item, and clicking on Ok, will
25 result in only those files matching the pattern being displayed.
26 The wildcard may be a specification for multiple types of file with a description
29 "BMP and GIF files (*.bmp;*.gif)|*.bmp;*.gif|PNG files (*.png)|*.png"
31 It must be noted that wildcard support in the native Motif file dialog is quite
32 limited: only one alternative is supported, and it is displayed without the
33 descriptive test; "BMP files (*.bmp)|*.bmp" is displayed as "*.bmp", and both
34 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif" and "Image files|*.bmp;*.gif"
38 @style{wxFD_DEFAULT_STYLE}
39 Equivalent to wxFD_OPEN.
41 This is an open dialog; usually this means that the default
42 button's label of the dialog is "Open". Cannot be combined with wxFD_SAVE.
44 This is a save dialog; usually this means that the default button's
45 label of the dialog is "Save". Cannot be combined with wxFD_OPEN.
46 @style{wxFD_OVERWRITE_PROMPT}
47 For save dialog only: prompt for a confirmation if a file will be
49 @style{wxFD_FILE_MUST_EXIST}
50 For open dialog only: the user may only select files that actually exist.
52 For open dialog only: allows selecting multiple files.
53 @style{wxFD_CHANGE_DIR}
54 Change the current working directory to the directory where the
55 file(s) chosen by the user are.
57 Show the preview of the selected files (currently only supported by
58 wxGTK using GTK+ 2.4 or later).
64 @see @ref overview_cmndlg_file, ::wxFileSelector()
66 class wxFileDialog
: public wxDialog
70 Constructor. Use ShowModal() to show the dialog.
75 Message to show on the dialog.
77 The default directory, or the empty string.
79 The default filename, or the empty string.
81 A wildcard, such as "*.*" or "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif".
82 Note that the native Motif dialog has some limitations with respect to
83 wildcards; see the Remarks section above.
85 A dialog style. See wxFD_* styles for more info.
87 Dialog position. Not implemented.
89 Dialog size. Not implemented.
91 Dialog name. Not implemented.
93 wxFileDialog(wxWindow
* parent
,
94 const wxString
& message
= wxFileSelectorPromptStr
,
95 const wxString
& defaultDir
= wxEmptyString
,
96 const wxString
& defaultFile
= wxEmptyString
,
97 const wxString
& wildcard
= wxFileSelectorDefaultWildcardStr
,
98 long style
= wxFD_DEFAULT_STYLE
,
99 const wxPoint
& pos
= wxDefaultPosition
,
100 const wxSize
& size
= wxDefaultSize
,
101 const wxString
& name
= wxFileDialogNameStr
);
106 virtual ~wxFileDialog();
109 Returns the default directory.
111 virtual wxString
GetDirectory() const;
114 If functions SetExtraControlCreator() and ShowModal() were called,
115 returns the extra window. Otherwise returns @NULL.
117 wxWindow
* GetExtraControl() const;
120 Returns the default filename.
122 virtual wxString
GetFilename() const;
125 Fills the array @a filenames with the names of the files chosen.
127 This function should only be used with the dialogs which have @c wxFD_MULTIPLE style,
128 use GetFilename() for the others.
130 Note that under Windows, if the user selects shortcuts, the filenames
131 include paths, since the application cannot determine the full path
132 of each referenced file by appending the directory containing the shortcuts
135 virtual void GetFilenames(wxArrayString
& filenames
) const;
138 Returns the index into the list of filters supplied, optionally, in the
141 Before the dialog is shown, this is the index which will be used when the
142 dialog is first displayed.
144 After the dialog is shown, this is the index selected by the user.
146 virtual int GetFilterIndex() const;
149 Returns the message that will be displayed on the dialog.
151 virtual wxString
GetMessage() const;
154 Returns the full path (directory and filename) of the selected file.
156 virtual wxString
GetPath() const;
159 Fills the array @a paths with the full paths of the files chosen.
161 This function should only be used with the dialogs which have @c wxFD_MULTIPLE style,
162 use GetPath() for the others.
164 virtual void GetPaths(wxArrayString
& paths
) const;
167 Returns the file dialog wildcard.
169 virtual wxString
GetWildcard() const;
172 Sets the default directory.
174 virtual void SetDirectory(const wxString
& directory
);
177 Customize file dialog by adding extra window, which is typically placed
178 below the list of files and above the buttons.
180 SetExtraControlCreator() can be called only once, before calling ShowModal().
182 The @c creator function should take pointer to parent window (file dialog)
183 and should return a window allocated with operator new.
185 Supported platforms: wxGTK, wxUniv.
187 bool SetExtraControlCreator(ExtraControlCreatorFunction
);
190 Sets the default filename.
192 virtual void SetFilename(const wxString
& setfilename
);
195 Sets the default filter index, starting from zero.
197 virtual void SetFilterIndex(int filterIndex
);
200 Sets the message that will be displayed on the dialog.
202 virtual void SetMessage(const wxString
& message
);
205 Sets the path (the combined directory and filename that will be returned when
206 the dialog is dismissed).
208 virtual void SetPath(const wxString
& path
);
211 Sets the wildcard, which can contain multiple file types, for example:
212 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif".
214 Note that the native Motif dialog has some limitations with respect to
215 wildcards; see the Remarks section above.
217 virtual void SetWildcard(const wxString
& wildCard
);
220 Shows the dialog, returning wxID_OK if the user pressed OK, and wxID_CANCEL
223 virtual int ShowModal();
228 // ============================================================================
229 // Global functions/macros
230 // ============================================================================
232 /** @addtogroup group_funcmacro_dialog */
236 Pops up a file selector box. In Windows, this is the common file selector
237 dialog. In X, this is a file selector box with the same functionality. The
238 path and filename are distinct elements of a full file pathname. If path
239 is empty, the current directory will be used. If filename is empty, no
240 default filename will be supplied. The wildcard determines what files are
241 displayed in the file selector, and file extension supplies a type
242 extension for the required filename. Flags may be a combination of
243 wxFD_OPEN, wxFD_SAVE, wxFD_OVERWRITE_PROMPT or wxFD_FILE_MUST_EXIST.
245 @note wxFD_MULTIPLE can only be used with wxFileDialog and not here since
246 this function only returns a single file name.
248 Both the Unix and Windows versions implement a wildcard filter. Typing a
249 filename containing wildcards (*, ?) in the filename text item, and
250 clicking on Ok, will result in only those files matching the pattern being
253 The wildcard may be a specification for multiple types of file with a
254 description for each, such as:
257 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
260 The application must check for an empty return value (the user pressed
261 Cancel). For example:
264 wxString filename = wxFileSelector("Choose a file to open");
265 if ( !filename.empty() )
267 // work with the file
270 //else: cancelled by user
273 @header{wx/filedlg.h}
275 wxString
wxFileSelector(const wxString
& message
,
276 const wxString
& default_path
= wxEmptyString
,
277 const wxString
& default_filename
= wxEmptyString
,
278 const wxString
& default_extension
= wxEmptyString
,
279 const wxString
& wildcard
= ".",
281 wxWindow
* parent
= NULL
,