]>
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 |
0e320a79 | 7 | // RCS-ID: $Id$ |
fb46a9a6 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_DIRDLG_H_ | |
13 | #define _WX_DIRDLG_H_ | |
14 | ||
0e320a79 DW |
15 | #include "wx/dialog.h" |
16 | ||
53a2db12 | 17 | WXDLLIMPEXP_DATA_CORE(extern const wxChar) wxFileSelectorPromptStr[]; |
0e320a79 | 18 | |
53a2db12 | 19 | class WXDLLIMPEXP_CORE wxDirDialog: public wxDirDialogBase |
0e320a79 | 20 | { |
141d782d | 21 | DECLARE_DYNAMIC_CLASS(wxDirDialog) |
0e320a79 DW |
22 | public: |
23 | wxDirDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr, | |
24 | const wxString& defaultPath = "", | |
25 | long style = 0, const wxPoint& pos = wxDefaultPosition); | |
26 | ||
0e320a79 DW |
27 | int ShowModal(); |
28 | ||
29 | protected: | |
0e320a79 | 30 | wxWindow * m_parent; |
0e320a79 DW |
31 | }; |
32 | ||
33 | #endif | |
34 | // _WX_DIRDLG_H_ |