]>
Commit | Line | Data |
---|---|---|
93cf77c0 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dirdlg.cpp | |
3 | // Purpose: wxDirDialog | |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "dirdlg.h" | |
14 | #endif | |
15 | ||
16 | #include "wx/defs.h" | |
17 | #include "wx/utils.h" | |
18 | #include "wx/dialog.h" | |
19 | #include "wx/dirdlg.h" | |
20 | #endif | |
21 | ||
22 | #include "wx/cmndata.h" | |
23 | ||
24 | #if !USE_SHARED_LIBRARY | |
25 | IMPLEMENT_CLASS(wxDirDialog, wxDialog) | |
26 | #endif | |
27 | ||
28 | wxDirDialog::wxDirDialog(wxWindow *parent, const wxString& message, | |
29 | const wxString& defaultPath, | |
30 | long style, const wxPoint& pos) | |
31 | { | |
32 | m_message = message; | |
33 | m_dialogStyle = style; | |
34 | m_parent = parent; | |
35 | m_path = defaultPath; | |
36 | } | |
37 | ||
38 | int wxDirDialog::ShowModal() | |
39 | { | |
40 | // TODO | |
41 | return wxID_CANCEL; | |
42 | } | |
43 |