]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: filedlg.h | |
3 | // Purpose: wxFileDialog class | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
65571936 | 9 | // Licence: wxWindows licence |
8cf73271 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_FILEDLG_H_ | |
13 | #define _WX_FILEDLG_H_ | |
14 | ||
8cf73271 SC |
15 | //------------------------------------------------------------------------- |
16 | // wxFileDialog | |
17 | //------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLEXPORT wxFileDialog: public wxFileDialogBase | |
20 | { | |
21 | DECLARE_DYNAMIC_CLASS(wxFileDialog) | |
22 | protected: | |
23 | wxArrayString m_fileNames; | |
24 | wxArrayString m_paths; | |
25 | ||
26 | public: | |
27 | wxFileDialog(wxWindow *parent, | |
28 | const wxString& message = wxFileSelectorPromptStr, | |
29 | const wxString& defaultDir = wxEmptyString, | |
30 | const wxString& defaultFile = wxEmptyString, | |
31 | const wxString& wildCard = wxFileSelectorDefaultWildcardStr, | |
32 | long style = 0, | |
33 | const wxPoint& pos = wxDefaultPosition); | |
34 | ||
35 | virtual void GetPaths(wxArrayString& paths) const { paths = m_paths; } | |
36 | virtual void GetFilenames(wxArrayString& files) const { files = m_fileNames ; } | |
37 | ||
38 | virtual int ShowModal(); | |
6f02a879 VZ |
39 | |
40 | protected: | |
8cf73271 SC |
41 | // not supported for file dialog, RR |
42 | virtual void DoSetSize(int WXUNUSED(x), int WXUNUSED(y), | |
43 | int WXUNUSED(width), int WXUNUSED(height), | |
44 | int WXUNUSED(sizeFlags) = wxSIZE_AUTO) {} | |
45 | }; | |
46 | ||
47 | #endif // _WX_FILEDLG_H_ |