1 \section{\class{wxFileDialog
}}\label{wxfiledialog
}
3 This class represents the file chooser dialog.
5 \wxheading{Derived from
}
7 \helpref{wxDialog
}{wxdialog
}\\
8 \helpref{wxWindow
}{wxwindow
}\\
9 \helpref{wxEvtHandler
}{wxevthandler
}\\
10 \helpref{wxObject
}{wxobject
}
12 \wxheading{Include files
}
16 \wxheading{Window styles
}
18 \begin{twocollist
}\itemsep=
0pt
19 \twocolitem{\windowstyle{wxFD
\_DEFAULT\_STYLE}}{Equivalent to wxFD
\_OPEN.
}
20 \twocolitem{\windowstyle{wxFD
\_OPEN}}{This is an open dialog; usually this means that the default button's label of the dialog is "Open". Cannot be combined with wxFD
\_SAVE.
}
21 \twocolitem{\windowstyle{wxFD
\_SAVE}}{This is a save dialog; usually this means that the default button's label of the dialog is "Save". Cannot be combined with wxFD
\_OPEN.
}
22 \twocolitem{{\windowstyle wxFD
\_OVERWRITE\_PROMPT}}{For save dialog only: prompt for a confirmation if a file will be overwritten.
}
23 \twocolitem{{\windowstyle wxFD
\_FILE\_MUST\_EXIST}}{For open dialog only: the user may only select files that actually exist.
}
24 \twocolitem{{\windowstyle wxFD
\_MULTIPLE}}{For open dialog only: allows selecting multiple files.
}
25 \twocolitem{{\windowstyle wxFD
\_CHANGE\_DIR}}{Change the current working directory to the directory where the file(s) chosen by the user are.
}
26 \twocolitem{{\windowstyle wxFD
\_PREVIEW}}{Show the preview of the selected files (currently only supported by wxGTK using GTK+
2.4 or later).
}
29 {\bf NB:
} Previous versions of wxWidgets used
{\tt wxFD
\_CHANGE\_DIR} by default
30 under MS Windows which allowed the program to simply remember the last
31 directory where user selected the files to open/save. This (desired)
32 functionality must be implemented in the program itself now (manually remember
33 the last path used and pass it to the dialog the next time it is called) or
39 \helpref{wxFileDialog overview
}{wxfiledialogoverview
},
\helpref{wxFileSelector
}{wxfileselector
}
43 Pops up a file selector box. In Windows and GTK2.4+, this is the common
44 file selector dialog. In X, this is a file selector box with somewhat less
45 functionality. The path and filename are distinct elements of a full file pathname.
46 If path is ``", the current directory will be used. If filename is ``",
47 no default filename will be supplied. The wildcard determines what files
48 are displayed in the file selector, and file extension supplies a type
49 extension for the required filename.
51 Both the X and Windows versions implement a wildcard filter. Typing a
52 filename containing wildcards
(*, ?) in the filename text item, and
53 clicking on Ok, will result in only those files matching the pattern being
54 displayed. The wildcard may be a specification for multiple
55 types of file with a description for each, such as:
58 "BMP and GIF files (*.bmp;*.gif)|*.bmp;*.gif|PNG files (*.png)|*.png"
61 It must be noted that wildcard support in the native Motif file
62 dialog is quite limited: only one alternative is supported,
63 and it is displayed without the descriptive test; ``BMP files (*.bmp)|*.bmp''
64 is displayed as ``*.bmp'', and both
65 ``BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif'' and
66 ``Image files|*.bmp;*.gif'' are errors.
68 \latexignore{\rtfignore{\wxheading{Members}}}
70 \membersection{wxFileDialog::wxFileDialog}\label{wxfiledialogctor}
72 \func{}{wxFileDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message = "Choose a file"},\rtfsp
73 \param{const wxString\& }{defaultDir = ""}, \param{const wxString\& }{defaultFile = ``"},\rtfsp
74 \param{const wxString\& }{wildcard = ``*.*"}, \param{long }{style = wxFD\_DEFAULT\_STYLE}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{sz = wxDefaultSize}, \param{const wxString\& }{name = "filedlg"}}
76 Constructor. Use \helpref{wxFileDialog::ShowModal}{wxfiledialogshowmodal} to show the dialog.
78 \wxheading{Parameters}
80 \docparam{parent}{Parent window.}
82 \docparam{message}{Message to show on the dialog.}
84 \docparam{defaultDir}{The default directory, or the empty string.}
86 \docparam{defaultFile}{The default filename, or the empty string.}
88 \docparam{wildcard}{A wildcard, such as ``*.*" or ``BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif".
90 Note that the native Motif dialog has some limitations with respect to
91 wildcards; see the Remarks section above.}
93 \docparam{style}{A dialog style. See wxFD\_* styles for more info.}
95 \docparam{pos}{Dialog position. Not implemented.}
97 \docparam{size}{Dialog size. Not implemented.}
99 \docparam{name}{Dialog name. Not implemented.}
102 \membersection{wxFileDialog::\destruct{wxFileDialog}}\label{wxfiledialogdtor}
104 \func{}{\destruct{wxFileDialog}}{\void}
108 \membersection{wxFileDialog::GetDirectory}\label{wxfiledialoggetdirectory}
110 \constfunc{wxString}{GetDirectory}{\void}
112 Returns the default directory.
114 \membersection{wxFileDialog::GetFilename}\label{wxfiledialoggetfilename}
116 \constfunc{wxString}{GetFilename}{\void}
118 Returns the default filename.
120 \membersection{wxFileDialog::GetFilenames}\label{wxfiledialoggetfilenames}
122 \constfunc{void}{GetFilenames}{\param{wxArrayString\& }{filenames}}
124 Fills the array {\it filenames} with the names of the files chosen. This
125 function should only be used with the dialogs which have {\tt wxMULTIPLE} style,
126 use \helpref{GetFilename}{wxfiledialoggetfilename} for the others.
128 Note that under Windows, if the user selects shortcuts, the filenames
129 include paths, since the application cannot determine the full path
130 of each referenced file by appending the directory containing the shortcuts
133 \membersection{wxFileDialog::GetFilterIndex}\label{wxfiledialoggetfilterindex}
135 \constfunc{int}{GetFilterIndex}{\void}
137 Returns the index into the list of filters supplied, optionally, in the wildcard parameter.
138 Before the dialog is shown, this is the index which will be used when the dialog is first displayed.
139 After the dialog is shown, this is the index selected by the user.
141 \membersection{wxFileDialog::GetMessage}\label{wxfiledialoggetmessage}
143 \constfunc{wxString}{GetMessage}{\void}
145 Returns the message that will be displayed on the dialog.
147 \membersection{wxFileDialog::GetPath}\label{wxfiledialoggetpath}
149 \constfunc{wxString}{GetPath}{\void}
151 Returns the full path (directory and filename) of the selected file.
153 \membersection{wxFileDialog::GetPaths}\label{wxfiledialoggetpaths}
155 \constfunc{void}{GetPaths}{\param{wxArrayString\& }{paths}}
157 Fills the array {\it paths} with the full paths of the files chosen. This
158 function should only be used with the dialogs which have {\tt wxMULTIPLE} style,
159 use \helpref{GetPath}{wxfiledialoggetpath} for the others.
161 \membersection{wxFileDialog::GetWildcard}\label{wxfiledialoggetwildcard}
163 \constfunc{wxString}{GetWildcard}{\void}
165 Returns the file dialog wildcard.
167 \membersection{wxFileDialog::SetDirectory}\label{wxfiledialogsetdirectory}
169 \func{void}{SetDirectory}{\param{const wxString\& }{directory}}
171 Sets the default directory.
173 \membersection{wxFileDialog::SetFilename}\label{wxfiledialogsetfilename}
175 \func{void}{SetFilename}{\param{const wxString\& }{setfilename}}
177 Sets the default filename.
179 \membersection{wxFileDialog::SetFilterIndex}\label{wxfiledialogsetfilterindex}
181 \func{void}{SetFilterIndex}{\param{int }{filterIndex}}
183 Sets the default filter index, starting from zero.
185 \membersection{wxFileDialog::SetMessage}\label{wxfiledialogsetmessage}
187 \func{void}{SetMessage}{\param{const wxString\& }{message}}
189 Sets the message that will be displayed on the dialog.
191 \membersection{wxFileDialog::SetPath}\label{wxfiledialogsetpath}
193 \func{void}{SetPath}{\param{const wxString\& }{path}}
195 Sets the path (the combined directory and filename that will be returned when the dialog is dismissed).
197 \membersection{wxFileDialog::SetWildcard}\label{wxfiledialogsetwildcard}
199 \func{void}{SetWildcard}{\param{const wxString\& }{wildCard}}
201 Sets the wildcard, which can contain multiple file types, for example:
203 ``BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
205 Note that the native Motif dialog has some limitations with respect to
206 wildcards; see the Remarks section above.
208 \membersection{wxFileDialog::ShowModal}\label{wxfiledialogshowmodal}
210 \func{int}{ShowModal}{\void}
212 Shows the dialog, returning wxID\_OK if the user pressed OK, and wxID\_CANCEL