]>
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
7 // Copyright: (c) 2001 wxWidgets team
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
28 #include "wx/dirdlg.h"
33 // ============================================================================
35 // ============================================================================
37 wxString
wxDirSelector(const wxString
& message
,
38 const wxString
& defaultPath
,
45 wxDirDialog
dirDialog(parent
, message
, defaultPath
, style
, pos
);
46 if ( dirDialog
.ShowModal() == wxID_OK
)
48 path
= dirDialog
.GetPath();
54 #endif // wxUSE_DIRDLG