1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/dseldlg.cpp
3 // Purpose: implementation of ::wxDirSelector()
4 // Author: Paul Thiessen
8 // Copyright: (c) 2001 wxWidgets team
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
30 #include "wx/dirdlg.h"
34 // ============================================================================
36 // ============================================================================
38 const wxChar wxDirSelectorPromptStr
[] = wxT("Select a directory");
40 wxString
wxDirSelector(const wxString
& message
,
41 const wxString
& defaultPath
,
48 wxDirDialog
dirDialog(parent
, message
, defaultPath
, style
, pos
);
49 if ( dirDialog
.ShowModal() == wxID_OK
)
51 path
= dirDialog
.GetPath();
57 #endif // wxUSE_DIRDLG