]>
git.saurik.com Git - wxWidgets.git/blob - src/common/dseldlg.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/dseldlg.cpp
3 // Purpose: implementation of ::wxDirSelector()
4 // Author: Paul Thiessen
8 // Copyright: (c) 2001 wxWindows team
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "dseldlg.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/dirdlg.h"
38 // ============================================================================
40 // ============================================================================
42 const wxChar
*wxDirSelectorPromptStr
= wxT("Select a directory");
44 wxString
wxDirSelector(const wxString
& message
,
45 const wxString
& defaultPath
,
52 wxDirDialog
dirDialog(parent
, message
, defaultPath
, style
, pos
);
53 if ( dirDialog
.ShowModal() == wxID_OK
)
55 path
= dirDialog
.GetPath();
61 #endif // wxUSE_DIRDLG