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 WXDLLIMPEXP_CORE 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
28 ,long lStyle
= wxFD_DEFAULT_STYLE
29 ,const wxPoint
& rPos
= wxDefaultPosition
,
30 const wxSize
& sz
= wxDefaultSize
,
31 const wxString
& name
= wxFileDialogNameStr
34 virtual void GetPaths(wxArrayString
& rasPath
) const;
39 wxArrayString m_fileNames
;
40 }; // end of CLASS wxFileDialog
42 #endif // _WX_FILEDLG_H_