X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/eb085907468d3c3a9912d453647c1ab14b951a7c..dbcbe229628c7667da2b6257198467d4f09ab28d:/src/generic/dirdlgg.cpp diff --git a/src/generic/dirdlgg.cpp b/src/generic/dirdlgg.cpp index 6158e8d0e6..b8bab14d3f 100644 --- a/src/generic/dirdlgg.cpp +++ b/src/generic/dirdlgg.cpp @@ -29,6 +29,7 @@ #include "wx/button.h" #include "wx/layout.h" #include "wx/msgdlg.h" +#include "wx/textctrl.h" #include "wx/textdlg.h" #include "wx/filefn.h" #include "wx/cmndata.h" @@ -39,6 +40,7 @@ #include "wx/log.h" #include "wx/sizer.h" #include "wx/tokenzr.h" +#include "wx/dir.h" #if wxUSE_STATLINE #include "wx/statline.h" @@ -147,10 +149,7 @@ void wxDirItemData::SetNewDirName( wxString path ) bool wxDirItemData::HasSubDirs() { - wxString search = m_path + wxT("/*"); - wxLogNull log; - wxString path = wxFindFirstFile( search, wxDIR ); - return (bool)(!path.IsNull()); + return wxDir(m_path).HasSubDirs(); } //----------------------------------------------------------------------------- @@ -315,27 +314,19 @@ void wxDirCtrl::OnExpandItem(wxTreeEvent &event) wxDirItemData *data = (wxDirItemData *)GetItemData(event.GetItem()); wxASSERT(data); - wxString search,path,filename; - m_paths.Clear(); m_names.Clear(); -#ifdef __WXMSW__ - search = data->m_path + _T("\\*.*"); -#else - search = data->m_path + _T("/*"); -#endif - for (path = wxFindFirstFile( search, wxDIR ); !path.IsNull(); - path=wxFindNextFile() ) + + wxDir dir(data->m_path); + + wxString filename; + bool cont = dir.GetFirst(&filename, "", wxDIR_DIRS | wxDIR_HIDDEN); + while ( cont ) { - filename = wxFileNameFromPath( path ); - /* Don't add "." and ".." to the tree. I think wxFindNextFile - * also checks this, but I don't quite understand what happens - * there. Also wxFindNextFile seems to swallow hidden dirs */ - if ( (filename != _T(".")) && (filename != _T("..")) ) - { - m_paths.Add(path); - m_names.Add(filename); - } + m_paths.Add(data->m_path); + m_names.Add(filename); + + cont = dir.GetNext(&filename); } CreateItems( event.GetItem() );