]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: filedlg.h | |
3 | // Purpose: wxFileDialog class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_FILEDLG_H_ | |
13 | #define _WX_FILEDLG_H_ | |
14 | ||
f74172ab VZ |
15 | //------------------------------------------------------------------------- |
16 | // wxFileDialog | |
17 | //------------------------------------------------------------------------- | |
9b6dbb09 | 18 | |
f74172ab | 19 | class WXDLLEXPORT wxFileDialog: public wxFileDialogBase |
9b6dbb09 | 20 | { |
83df96d6 | 21 | DECLARE_DYNAMIC_CLASS(wxFileDialog) |
dfad0599 | 22 | public: |
83df96d6 | 23 | |
dfad0599 | 24 | // For Motif |
dfad0599 JS |
25 | static wxString m_fileSelectorAnswer; |
26 | static bool m_fileSelectorReturned; | |
83df96d6 | 27 | |
9b6dbb09 | 28 | public: |
f74172ab VZ |
29 | wxFileDialog(wxWindow *parent, |
30 | const wxString& message = wxFileSelectorPromptStr, | |
31 | const wxString& defaultDir = wxEmptyString, | |
32 | const wxString& defaultFile = wxEmptyString, | |
33 | const wxString& wildCard = wxFileSelectorDefaultWildcardStr, | |
34 | long style = 0, | |
35 | const wxPoint& pos = wxDefaultPosition); | |
83df96d6 | 36 | |
f74172ab | 37 | virtual int ShowModal(); |
9b6dbb09 JS |
38 | }; |
39 | ||
b600ed13 | 40 | #endif // _WX_FILEDLG_H_ |