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
}
18 \helpref{wxFileDialog overview
}{wxfiledialogoverview
},
\helpref{wxFileSelector
}{wxfileselector
}
22 Pops up a file selector box. In Windows, this is the common file selector
23 dialog. In X, this is a file selector box with somewhat less functionality.
24 The path and filename are distinct elements of a full file pathname.
25 If path is ``", the current directory will be used. If filename is ``",
26 no default filename will be supplied. The wildcard determines what files
27 are displayed in the file selector, and file extension supplies a type
28 extension for the required filename. Flags may be a combination of wxOPEN,
29 wxSAVE, wxOVERWRITE
\_PROMPT, wxHIDE
\_READONLY, wxFILE
\_MUST\_EXIST, wxMULTIPLE or
0.
31 Both the X and Windows versions implement a wildcard filter. Typing a
32 filename containing wildcards
(*, ?) in the filename text item, and
33 clicking on Ok, will result in only those files matching the pattern being
34 displayed. The wildcard may be a specification for multiple
35 types of file with a description for each, such as:
38 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
41 \latexignore{\rtfignore{\wxheading{Members}}}
43 \membersection{wxFileDialog::wxFileDialog}\label{wxfiledialogconstr}
45 \func{}{wxFileDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message = "Choose a file"},\rtfsp
46 \param{const wxString\& }{defaultDir = ""}, \param{const wxString\& }{defaultFile = ``"},\rtfsp
47 \param{const wxString\& }{wildcard = ``*.*"}, \param{long }{style = 0}, \param{const wxPoint\& }{pos = wxDefaultPosition}}
49 Constructor. Use \helpref{wxFileDialog::ShowModal}{wxfiledialogshowmodal} to show the dialog.
51 \wxheading{Parameters}
53 \docparam{parent}{Parent window.}
55 \docparam{message}{Message to show on the dialog.}
57 \docparam{defaultDir}{The default directory, or the empty string.}
59 \docparam{defaultFile}{The default filename, or the empty string.}
61 \docparam{wildcard}{A wildcard, such as ``*.*".}
63 \docparam{style}{A dialog style. A bitlist of:
67 \twocolitem{{\bf wxOPEN}}{This is an open dialog.}
68 \twocolitem{{\bf wxSAVE}}{This is a save dialog.}
69 \twocolitem{{\bf wxHIDE\_READONLY}}{Hide read-only files.}
70 \twocolitem{{\bf wxOVERWRITE\_PROMPT}}{Prompt for a conformation if a file will be overridden.}
71 \twocolitem{{\bf wxMULTIPLE}}{For open dialog only: allows selecting multiple files}
75 \docparam{pos}{Dialog position. Not implemented.}
77 \membersection{wxFileDialog::\destruct{wxFileDialog}}
79 \func{}{\destruct{wxFileDialog}}{\void}
83 \membersection{wxFileDialog::GetDirectory}\label{wxfiledialoggetdirectory}
85 \constfunc{wxString}{GetDirectory}{\void}
87 Returns the default directory.
89 \membersection{wxFileDialog::GetFilename}\label{wxfiledialoggetfilename}
91 \constfunc{wxString}{GetFilename}{\void}
93 Returns the default filename.
95 \membersection{wxFileDialog::GetFilenames}\label{wxfiledialoggetfilenames}
97 \constfunc{void}{GetFilenames}{\param{wxArrayString\& }{filenames}}
99 Fills the array {\it filenames} with the names of the files chosen. This
100 function should only be used with the dialogs which have {\tt wxMULTIPLE} style,
101 use \helpref{GetFilename}{wxfiledialoggetfilename} for the others.
103 \membersection{wxFileDialog::GetFilterIndex}\label{wxfiledialoggetfilterindex}
105 \constfunc{int}{GetFilterIndex}{\void}
107 Returns the index into the list of filters supplied, optionally, in the wildcard parameter.
108 Before the dialog is shown, this is the index which will be used when the dialog is first displayed.
109 After the dialog is shown, this is the index selected by the user.
111 \membersection{wxFileDialog::GetMessage}\label{wxfiledialoggetmessage}
113 \constfunc{wxString}{GetMessage}{\void}
115 Returns the message that will be displayed on the dialog.
117 \membersection{wxFileDialog::GetPath}\label{wxfiledialoggetpath}
119 \constfunc{wxString}{GetPath}{\void}
121 Returns the full path (directory and filename) of the selected file.
123 \membersection{wxFileDialog::GetPaths}\label{wxfiledialoggetpaths}
125 \constfunc{void}{GetPaths}{\param{wxArrayString\& }{paths}}
127 Fills the array {\it paths} with the full paths of the files chosen. This
128 function should only be used with the dialogs which have {\tt wxMULTIPLE} style,
129 use \helpref{GetPath}{wxfiledialoggetpath} for the others.
131 \membersection{wxFileDialog::GetStyle}\label{wxfiledialoggetstyle}
133 \constfunc{long}{GetStyle}{\void}
135 Returns the dialog style.
137 \membersection{wxFileDialog::GetWildcard}\label{wxfiledialoggetwildcard}
139 \constfunc{wxString}{GetWildcard}{\void}
141 Returns the file dialog wildcard.
143 \membersection{wxFileDialog::SetDirectory}\label{wxfiledialogsetdirectory}
145 \func{void}{SetDirectory}{\param{const wxString\& }{directory}}
147 Sets the default directory.
149 \membersection{wxFileDialog::SetFilename}\label{wxfiledialogsetfilename}
151 \func{void}{SetFilename}{\param{const wxString\& }{setfilename}}
153 Sets the default filename.
155 \membersection{wxFileDialog::SetFilterIndex}\label{wxfiledialogsetfilterindex}
157 \func{void}{SetFilterIndex}{\param{int }{filterIndex}}
159 Sets the default filter index, starting from zero. Windows only.
161 \membersection{wxFileDialog::SetMessage}\label{wxfiledialogsetmessage}
163 \func{void}{SetMessage}{\param{const wxString\& }{message}}
165 Sets the message that will be displayed on the dialog.
167 \membersection{wxFileDialog::SetPath}\label{wxfiledialogsetpath}
169 \func{void}{SetPath}{\param{const wxString\& }{path}}
171 Sets the path (the combined directory and filename that will be returned when the dialog is dismissed).
173 \membersection{wxFileDialog::SetStyle}\label{wxfiledialogsetstyle}
175 \func{void}{SetStyle}{\param{long }{style}}
177 Sets the dialog style. See \helpref{wxFileDialog::wxFileDialog}{wxfiledialogconstr} for details.
179 \membersection{wxFileDialog::SetWildcard}\label{wxfiledialogsetwildcard}
181 \func{void}{SetWildcard}{\param{const wxString\& }{wildCard}}
183 Sets the wildcard, which in Windows can contain multiple file types.
185 \membersection{wxFileDialog::ShowModal}\label{wxfiledialogshowmodal}
187 \func{int}{ShowModal}{\void}
189 Shows the dialog, returning wxID\_OK if the user pressed OK, and wxOK\_CANCEL