]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/os2/dirdlg.h |
0e320a79 | 3 | // Purpose: wxDirDialog class |
fb46a9a6 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
fb46a9a6 | 6 | // Created: 10/14/99 |
fb46a9a6 | 7 | // Copyright: (c) David Webster |
65571936 | 8 | // Licence: wxWindows licence |
0e320a79 DW |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | #ifndef _WX_DIRDLG_H_ | |
12 | #define _WX_DIRDLG_H_ | |
13 | ||
0e320a79 DW |
14 | #include "wx/dialog.h" |
15 | ||
53a2db12 | 16 | WXDLLIMPEXP_DATA_CORE(extern const wxChar) wxFileSelectorPromptStr[]; |
0e320a79 | 17 | |
53a2db12 | 18 | class WXDLLIMPEXP_CORE wxDirDialog: public wxDirDialogBase |
0e320a79 | 19 | { |
141d782d | 20 | DECLARE_DYNAMIC_CLASS(wxDirDialog) |
0e320a79 DW |
21 | public: |
22 | wxDirDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr, | |
23 | const wxString& defaultPath = "", | |
24 | long style = 0, const wxPoint& pos = wxDefaultPosition); | |
25 | ||
0e320a79 DW |
26 | int ShowModal(); |
27 | ||
28 | protected: | |
0e320a79 | 29 | wxWindow * m_parent; |
0e320a79 DW |
30 | }; |
31 | ||
32 | #endif | |
33 | // _WX_DIRDLG_H_ |