]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dirdlg.h | |
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 DW |
8 | // Copyright: (c) David Webster |
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 | ||
17 | WXDLLEXPORT_DATA(extern const char*) wxFileSelectorPromptStr; | |
18 | ||
19 | class WXDLLEXPORT wxDirDialog: public wxDialog | |
20 | { | |
21 | DECLARE_DYNAMIC_CLASS(wxDirDialog) | |
22 | public: | |
23 | wxDirDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr, | |
24 | const wxString& defaultPath = "", | |
25 | long style = 0, const wxPoint& pos = wxDefaultPosition); | |
26 | ||
27 | inline void SetMessage(const wxString& message) { m_message = message; } | |
28 | inline void SetPath(const wxString& path) { m_path = path; } | |
29 | inline void SetStyle(long style) { m_dialogStyle = style; } | |
30 | ||
31 | inline wxString GetMessage() const { return m_message; } | |
32 | inline wxString GetPath() const { return m_path; } | |
33 | inline long GetStyle() const { return m_dialogStyle; } | |
34 | ||
35 | int ShowModal(); | |
36 | ||
37 | protected: | |
38 | wxString m_message; | |
39 | long m_dialogStyle; | |
40 | wxWindow * m_parent; | |
41 | wxString m_path; | |
42 | }; | |
43 | ||
44 | #endif | |
45 | // _WX_DIRDLG_H_ |