]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/os2/filedlg.h |
0e320a79 | 3 | // Purpose: wxFileDialog class |
f0a56ab0 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
f0a56ab0 | 6 | // Created: 10/05/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
f0a56ab0 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_FILEDLG_H_ | |
13 | #define _WX_FILEDLG_H_ | |
14 | ||
f74172ab VZ |
15 | //------------------------------------------------------------------------- |
16 | // wxFileDialog | |
17 | //------------------------------------------------------------------------- | |
0e320a79 | 18 | |
53a2db12 | 19 | class WXDLLIMPEXP_CORE wxFileDialog: public wxFileDialogBase |
0e320a79 DW |
20 | { |
21 | DECLARE_DYNAMIC_CLASS(wxFileDialog) | |
0e320a79 | 22 | public: |
b93f4bb9 DW |
23 | wxFileDialog( wxWindow* pParent |
24 | ,const wxString& rsMessage = wxFileSelectorPromptStr | |
f74172ab VZ |
25 | ,const wxString& rsDefaultDir = wxEmptyString |
26 | ,const wxString& rsDefaultFile = wxEmptyString | |
b93f4bb9 | 27 | ,const wxString& rsWildCard = wxFileSelectorDefaultWildcardStr |
ff3e84ff VZ |
28 | ,long lStyle = wxFD_DEFAULT_STYLE |
29 | ,const wxPoint& rPos = wxDefaultPosition, | |
30 | const wxSize& sz = wxDefaultSize, | |
31 | const wxString& name = wxFileDialogNameStr | |
b93f4bb9 DW |
32 | ); |
33 | ||
f74172ab | 34 | virtual void GetPaths(wxArrayString& rasPath) const; |
0e320a79 DW |
35 | |
36 | int ShowModal(); | |
f0a56ab0 DW |
37 | |
38 | protected: | |
f74172ab | 39 | wxArrayString m_fileNames; |
b93f4bb9 | 40 | }; // end of CLASS wxFileDialog |
0e320a79 | 41 | |
b600ed13 | 42 | #endif // _WX_FILEDLG_H_ |