1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFileDialog class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FILEDLG_H_
13 #define _WX_FILEDLG_H_
15 //-------------------------------------------------------------------------
17 //-------------------------------------------------------------------------
19 class WXDLLEXPORT wxFileDialog
: public wxFileDialogBase
21 DECLARE_DYNAMIC_CLASS(wxFileDialog
)
23 wxFileDialog( wxWindow
* pParent
24 ,const wxString
& rsMessage
= wxFileSelectorPromptStr
25 ,const wxString
& rsDefaultDir
= wxEmptyString
26 ,const wxString
& rsDefaultFile
= wxEmptyString
27 ,const wxString
& rsWildCard
= wxFileSelectorDefaultWildcardStr
29 ,const wxPoint
& rPos
= wxDefaultPosition
32 virtual void GetPaths(wxArrayString
& rasPath
) const;
37 wxArrayString m_fileNames
;
38 }; // end of CLASS wxFileDialog
40 #endif // _WX_FILEDLG_H_