1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGenericDirCtrl
4 // Author: Harm van der Heijden, Robert Roebling, Julian Smart
8 // Copyright: (c) Harm van der Heijden, Robert Roebling and Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dirctrlg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/dialog.h"
27 #include "wx/button.h"
28 #include "wx/layout.h"
29 #include "wx/msgdlg.h"
30 #include "wx/textdlg.h"
31 #include "wx/filefn.h"
32 #include "wx/cmndata.h"
33 #include "wx/gdicmn.h"
35 #include "wx/imaglist.h"
39 #include "wx/tokenzr.h"
41 #include "wx/settings.h"
44 #include "wx/statline.h"
47 #include "wx/generic/dirctrlg.h"
74 // If compiled under Windows, this macro can cause problems
80 static char * icon1_xpm
[] = {
81 /* width height ncolors chars_per_pixel */
109 static char * icon2_xpm
[] = {
110 /* width height ncolors chars_per_pixel */
138 static char * icon3_xpm
[] = {
139 /* width height ncolors chars_per_pixel */
164 static char * icon4_xpm
[] = {
191 static char * icon5_xpm
[] = {
218 static char *icon6_xpm
[] = {
248 static char * icon7_xpm
[] = {
275 static char * icon8_xpm
[] = {
301 static const int ID_DIRCTRL
= 1000;
302 static const int ID_TEXTCTRL
= 1001;
303 static const int ID_OK
= 1002;
304 static const int ID_CANCEL
= 1003;
305 static const int ID_NEW
= 1004;
306 //static const int ID_CHECK = 1005;
308 #if defined(__WXMSW__) || defined(__WXPM__)
309 int setdrive(int drive
)
313 if (drive
< 1 || drive
> 31)
315 newdrive
[0] = (char)('A' + (char)drive
- (char)1);
318 #if defined(__WXMSW__)
319 if (SetCurrentDirectory((LPSTR
)newdrive
))
321 // VA doesn't know what LPSTR is and has its own set
322 if (DosSetCurrentDir((PSZ
)newdrive
))
329 static bool wxIsDriveAvailable(const wxString dirName
)
332 UINT errorMode
= SetErrorMode(SEM_FAILCRITICALERRORS
| SEM_NOOPENFILEERRORBOX
);
336 // Check if this is a root directory and if so,
337 // whether the drive is avaiable.
338 if (dirName
.Len() == 3 && dirName
[(size_t)1] == wxT(':'))
340 wxString
dirNameLower(dirName
.Lower());
341 #if defined(__GNUWIN32__)
342 success
= wxPathExists(dirNameLower
);
344 int currentDrive
= _getdrive();
345 int thisDrive
= (int) (dirNameLower
[(size_t)0] - 'a' + 1) ;
346 int err
= setdrive( thisDrive
) ;
347 setdrive( currentDrive
);
356 (void) SetErrorMode(errorMode
);
363 //-----------------------------------------------------------------------------
365 //-----------------------------------------------------------------------------
367 wxDirItemDataEx::wxDirItemDataEx(const wxString
& path
, const wxString
& name
,
372 /* Insert logic to detect hidden files here
373 * In UnixLand we just check whether the first char is a dot
374 * For FileNameFromPath read LastDirNameInThisPath ;-) */
375 // m_isHidden = (bool)(wxFileNameFromPath(*m_path)[0] == '.');
377 // m_hasSubDirs is no longer needed
378 m_hasSubDirs
= TRUE
; // HasSubDirs();
379 m_isExpanded
= FALSE
;
383 wxDirItemDataEx::~wxDirItemDataEx()
387 void wxDirItemDataEx::SetNewDirName( wxString path
)
390 m_name
= wxFileNameFromPath( path
);
393 //-----------------------------------------------------------------------------
395 //-----------------------------------------------------------------------------
397 IMPLEMENT_DYNAMIC_CLASS(wxGenericDirCtrl
, wxControl
)
399 BEGIN_EVENT_TABLE(wxGenericDirCtrl
, wxControl
)
400 EVT_TREE_ITEM_EXPANDING (-1, wxGenericDirCtrl::OnExpandItem
)
401 EVT_TREE_ITEM_COLLAPSED (-1, wxGenericDirCtrl::OnCollapseItem
)
402 EVT_TREE_BEGIN_LABEL_EDIT (-1, wxGenericDirCtrl::OnBeginEditItem
)
403 EVT_TREE_END_LABEL_EDIT (-1, wxGenericDirCtrl::OnEndEditItem
)
404 EVT_SIZE (wxGenericDirCtrl::OnSize
)
407 wxGenericDirCtrl::wxGenericDirCtrl(void)
412 bool wxGenericDirCtrl::Create(wxWindow
*parent
,
418 const wxString
& filter
,
420 const wxString
& name
)
422 if (!wxControl::Create(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
425 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
429 long treeStyle
= wxTR_HAS_BUTTONS
; // | wxTR_EDIT_LABELS;
430 if ((style
& wxDIRCTRL_3D_INTERNAL
) == 0)
431 treeStyle
|= wxNO_BORDER
;
433 long filterStyle
= 0;
434 if ((style
& wxDIRCTRL_3D_INTERNAL
) == 0)
435 filterStyle
|= wxNO_BORDER
;
437 m_treeCtrl
= new wxTreeCtrl(this, wxID_TREECTRL
, pos
, size
, treeStyle
);
439 if (!filter
.IsEmpty() && (style
& wxDIRCTRL_SHOW_FILTERS
))
440 m_filterListCtrl
= new wxDirFilterListCtrl(this, wxID_FILTERLISTCTRL
, wxDefaultPosition
, wxDefaultSize
, filterStyle
);
445 SetFilterIndex(defaultFilter
);
447 if (m_filterListCtrl
)
448 m_filterListCtrl
->FillFilterList(filter
, defaultFilter
);
450 m_imageList
= new wxImageList(16, 16, TRUE
);
451 m_imageList
->Add(wxIcon(icon1_xpm
));
452 m_imageList
->Add(wxIcon(icon2_xpm
));
453 m_imageList
->Add(wxIcon(icon3_xpm
));
454 m_imageList
->Add(wxIcon(icon4_xpm
));
455 m_imageList
->Add(wxIcon(icon5_xpm
));
456 m_imageList
->Add(wxIcon(icon6_xpm
));
457 m_imageList
->Add(wxIcon(icon7_xpm
));
458 m_imageList
->Add(wxIcon(icon8_xpm
));
459 m_treeCtrl
->SetImageList(m_imageList
);
461 m_showHidden
= FALSE
;
462 wxDirItemDataEx
* rootData
= new wxDirItemDataEx(wxT(""), wxT(""), TRUE
);
466 #if defined(__WXMSW__) || defined(__WXPM__)
467 rootName
= _("Computer");
469 rootName
= _("Sections");
472 m_rootId
= m_treeCtrl
->AddRoot( rootName
, 3, -1, rootData
);
473 m_treeCtrl
->SetItemHasChildren(m_rootId
);
474 m_treeCtrl
->Expand(m_rootId
); // automatically expand first level
476 // Expand and select the default path
477 if (!m_defaultPath
.IsEmpty())
478 ExpandPath(m_defaultPath
);
485 wxGenericDirCtrl::~wxGenericDirCtrl()
487 m_treeCtrl
->SetImageList(NULL
);
491 void wxGenericDirCtrl::Init()
493 m_showHidden
= FALSE
;
496 m_currentFilterStr
= wxEmptyString
; // Default: any file
498 m_filterListCtrl
= NULL
;
501 void wxGenericDirCtrl::AddSection(const wxString
& path
, const wxString
& name
, int imageId
)
503 wxDirItemDataEx
*dir_item
= new wxDirItemDataEx(path
,name
,TRUE
);
505 #if defined(__WXMSW__) || defined(__WXPM__)
506 // Windows and OS/2: sections are displayed as drives
507 wxTreeItemId id
= m_treeCtrl
->AppendItem( m_rootId
, name
, imageId
, -1, dir_item
);
509 // Unix: sections are displayed as folders
510 wxTreeItemId id
= m_treeCtrl
->AppendItem( m_rootId
, name
, 0, -1, dir_item
);
511 m_treeCtrl
->SetItemImage( id
, 1, wxTreeItemIcon_Expanded
);
513 // TODO: other operating systems.
515 m_treeCtrl
->SetItemHasChildren(id
);
518 void wxGenericDirCtrl::SetupSections()
520 #if defined(__WXMSW__) || defined(__WXPM__)
523 wxChar driveBuffer
[256];
524 size_t n
= (size_t) GetLogicalDriveStrings(255, driveBuffer
);
529 path
.Printf(wxT("%c:\\"), driveBuffer
[i
]);
530 name
.Printf(wxT("(%c:)"), driveBuffer
[i
]);
533 int driveType
= ::GetDriveType(path
);
536 case DRIVE_REMOVABLE
:
537 if (path
== wxT("a:\\") || path
== wxT("b:\\"))
538 imageId
= 6; // Floppy
556 AddSection(path
, name
, imageId
);
558 while (driveBuffer
[i
] != wxT('\0'))
561 if (driveBuffer
[i
] == wxT('\0'))
568 /* If we can switch to the drive, it exists. */
569 for( drive
= 1; drive
<= 26; drive
++ )
572 path
.Printf(wxT("%c:\\"), (char) (drive
+ 'a' - 1));
573 name
.Printf(wxT("(%c:)"), (char) (drive
+ 'a' - 1));
575 if (wxIsDriveAvailable(path
))
578 AddSection(path
, name
);
584 AddSection(wxT("/"), _("The Computer"), 0);
585 AddSection(wxGetHomeDir(), _("My Home"), 0 );
586 AddSection(wxT("/mnt"), _("Mounted Devices"), 0 );
587 AddSection(wxT("/usr/local"), _("User Local"), 0 );
588 AddSection(wxT("/usr"), _("User"), 0 );
589 AddSection(wxT("/var"), _("Variables"), 0 );
590 AddSection(wxT("/etc"), _("Etcetera"), 0 );
591 AddSection(wxT("/tmp"), _("Temporary"), 0 );
595 void wxGenericDirCtrl::OnBeginEditItem(wxTreeEvent
&event
)
597 // don't rename the main entry "Sections"
598 if (event
.GetItem() == m_rootId
)
604 // don't rename the individual sections
605 if (m_treeCtrl
->GetParent( event
.GetItem() ) == m_rootId
)
612 void wxGenericDirCtrl::OnEndEditItem(wxTreeEvent
&event
)
614 if ((event
.GetLabel().IsEmpty()) ||
615 (event
.GetLabel() == _(".")) ||
616 (event
.GetLabel() == _("..")) ||
617 (event
.GetLabel().First( wxT("/") ) != wxNOT_FOUND
))
619 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
625 wxTreeItemId id
= event
.GetItem();
626 wxDirItemDataEx
*data
= (wxDirItemDataEx
*)m_treeCtrl
->GetItemData( id
);
629 wxString
new_name( wxPathOnly( data
->m_path
) );
630 new_name
+= wxString(wxFILE_SEP_PATH
);
631 new_name
+= event
.GetLabel();
635 if (wxFileExists(new_name
))
637 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
642 if (wxRenameFile(data
->m_path
,new_name
))
644 data
->SetNewDirName( new_name
);
648 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
654 void wxGenericDirCtrl::OnExpandItem(wxTreeEvent
&event
)
656 wxTreeItemId parentId
= event
.GetItem();
661 void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent
&event
)
663 wxTreeItemId child
, parent
= event
.GetItem();
665 wxDirItemDataEx
*data
= (wxDirItemDataEx
*) m_treeCtrl
->GetItemData(event
.GetItem());
666 if (!data
->m_isExpanded
)
669 data
->m_isExpanded
= FALSE
;
671 /* Workaround because DeleteChildren has disapeared (why?) and
672 * CollapseAndReset doesn't work as advertised (deletes parent too) */
673 child
= m_treeCtrl
->GetFirstChild(parent
, cookie
);
676 m_treeCtrl
->Delete(child
);
677 /* Not GetNextChild below, because the cookie mechanism can't
678 * handle disappearing children! */
679 child
= m_treeCtrl
->GetFirstChild(parent
, cookie
);
683 void wxGenericDirCtrl::ExpandDir(wxTreeItemId parentId
)
685 wxDirItemDataEx
*data
= (wxDirItemDataEx
*) m_treeCtrl
->GetItemData(parentId
);
687 if (data
->m_isExpanded
)
690 data
->m_isExpanded
= TRUE
;
692 if (parentId
== m_rootId
)
700 wxString search
,path
,filename
;
702 wxString
dirName(data
->m_path
);
704 #if defined(__WXMSW__) || defined(__WXPM__)
705 // Check if this is a root directory and if so,
706 // whether the drive is avaiable.
707 if (!wxIsDriveAvailable(dirName
))
709 data
->m_isExpanded
= FALSE
;
710 //wxMessageBox(wxT("Sorry, this drive is not available."));
715 // This may take a longish time. Go to busy cursor
718 #if defined(__WXMSW__) || defined(__WXPM__)
719 if (dirName
.Last() == ':')
720 dirName
+= wxString(wxFILE_SEP_PATH
);
724 wxArrayString filenames
;
727 wxString eachFilename
;
734 if (d
.GetFirst(& eachFilename
, wxEmptyString
, wxDIR_DIRS
))
738 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
740 dirs
.Add(eachFilename
);
743 while (d
.GetNext(& eachFilename
)) ;
748 // Now do the filenames -- but only if we're allowed to
749 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0)
757 if (d
.GetFirst(& eachFilename
, m_currentFilterStr
, wxDIR_FILES
))
761 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
763 filenames
.Add(eachFilename
);
766 while (d
.GetNext(& eachFilename
)) ;
772 // Add the sorted dirs
774 for (i
= 0; i
< dirs
.Count(); i
++)
776 wxString
eachFilename(dirs
[i
]);
778 if (path
.Last() != wxFILE_SEP_PATH
)
779 path
+= wxString(wxFILE_SEP_PATH
);
780 path
+= eachFilename
;
782 wxDirItemDataEx
*dir_item
= new wxDirItemDataEx(path
,eachFilename
,TRUE
);
783 wxTreeItemId id
= m_treeCtrl
->AppendItem( parentId
, eachFilename
, 0, -1, dir_item
);
784 m_treeCtrl
->SetItemImage( id
, 1, wxTreeItemIcon_Expanded
);
786 // Has this got any children? If so, make it expandable.
787 int options
= wxDIR_DEFAULT
;
788 if (GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) // If only showing dirs, then we specify dirs only here
790 options
= wxDIR_DIRS
;
798 // Have to test for wxDIR_DIRS separately in case m_currentFilterStr is non-empty and
799 // and filters out any directories
800 if (dir2
.GetFirst(& str
, m_currentFilterStr
, options
) || dir2
.GetFirst(& str
, wxEmptyString
, wxDIR_DIRS
))
802 m_treeCtrl
->SetItemHasChildren(id
);
807 // Add the sorted filenames
808 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0)
810 for (i
= 0; i
< filenames
.Count(); i
++)
812 wxString
eachFilename(filenames
[i
]);
814 if (path
.Last() != wxFILE_SEP_PATH
)
815 path
+= wxString(wxFILE_SEP_PATH
);
816 path
+= eachFilename
;
817 //path = dirName + wxString(wxT("/")) + eachFilename;
818 wxDirItemDataEx
*dir_item
= new wxDirItemDataEx(path
,eachFilename
,FALSE
);
819 (void)m_treeCtrl
->AppendItem( parentId
, eachFilename
, 2, -1, dir_item
);
824 // Find the child that matches the first part of 'path'.
825 // E.g. if a child path is "/usr" and 'path' is "/usr/include"
826 // then the child for /usr is returned.
827 wxTreeItemId
wxGenericDirCtrl::FindChild(wxTreeItemId parentId
, const wxString
& path
, bool& done
)
829 wxString
path2(path
);
831 // Make sure all separators are as per the current platform
832 path2
.Replace(wxT("\\"), wxString(wxFILE_SEP_PATH
));
833 path2
.Replace(wxT("/"), wxString(wxFILE_SEP_PATH
));
835 // Append a separator to foil bogus substring matching
836 path2
+= wxString(wxFILE_SEP_PATH
);
838 // In MSW or PM, case is not significant
839 #if defined(__WXMSW__) || defined(__WXPM__)
844 wxTreeItemId childId
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
845 while (childId
.IsOk())
847 wxDirItemDataEx
* data
= (wxDirItemDataEx
*) m_treeCtrl
->GetItemData(childId
);
849 if (data
&& data
->m_path
!= "")
851 wxString
childPath(data
->m_path
);
852 if (childPath
.Last() != wxFILE_SEP_PATH
)
853 childPath
+= wxString(wxFILE_SEP_PATH
);
855 // In MSW and PM, case is not significant
856 #if defined(__WXMSW__) || defined(__WXPM__)
857 childPath
.MakeLower();
860 if (childPath
.Len() <= path2
.Len())
862 wxString path3
= path2
.Mid(0, childPath
.Len());
863 if (childPath
== path3
)
865 if (path3
.Len() == path2
.Len())
874 childId
= m_treeCtrl
->GetNextChild(childId
, cookie
);
876 wxTreeItemId invalid
;
880 // Try to expand as much of the given path as possible,
881 // and select the given tree item.
882 bool wxGenericDirCtrl::ExpandPath(const wxString
& path
)
885 wxTreeItemId id
= FindChild(m_rootId
, path
, done
);
886 wxTreeItemId lastId
= id
; // The last non-zero id
887 while (id
.IsOk() && !done
)
891 id
= FindChild(id
, path
, done
);
897 wxDirItemDataEx
*data
= (wxDirItemDataEx
*) m_treeCtrl
->GetItemData(lastId
);
900 m_treeCtrl
->Expand(lastId
);
902 if ((GetWindowStyle() & wxDIRCTRL_SELECT_FIRST
) && data
->m_isDir
)
904 // Find the first file in this directory
906 wxTreeItemId childId
= m_treeCtrl
->GetFirstChild(lastId
, cookie
);
907 bool selectedChild
= FALSE
;
908 while (childId
.IsOk())
910 wxDirItemDataEx
* data
= (wxDirItemDataEx
*) m_treeCtrl
->GetItemData(childId
);
912 if (data
&& data
->m_path
!= "" && !data
->m_isDir
)
914 m_treeCtrl
->SelectItem(childId
);
915 m_treeCtrl
->EnsureVisible(childId
);
916 selectedChild
= TRUE
;
919 childId
= m_treeCtrl
->GetNextChild(lastId
, cookie
);
923 m_treeCtrl
->SelectItem(lastId
);
924 m_treeCtrl
->EnsureVisible(lastId
);
929 m_treeCtrl
->SelectItem(lastId
);
930 m_treeCtrl
->EnsureVisible(lastId
);
939 wxString
wxGenericDirCtrl::GetPath() const
941 wxTreeItemId id
= m_treeCtrl
->GetSelection();
944 wxDirItemDataEx
* data
= (wxDirItemDataEx
*) m_treeCtrl
->GetItemData(id
);
948 return wxEmptyString
;
951 wxString
wxGenericDirCtrl::GetFilePath() const
953 wxTreeItemId id
= m_treeCtrl
->GetSelection();
956 wxDirItemDataEx
* data
= (wxDirItemDataEx
*) m_treeCtrl
->GetItemData(id
);
958 return wxEmptyString
;
963 return wxEmptyString
;
966 void wxGenericDirCtrl::SetPath(const wxString
& path
)
968 m_defaultPath
= path
;
975 void wxGenericDirCtrl::FindChildFiles(wxTreeItemId id
, int dirFlags
, wxArrayString
& filenames
)
977 wxDirItemDataEx
*data
= (wxDirItemDataEx
*) m_treeCtrl
->GetItemData(id
);
979 // This may take a longish time. Go to busy cursor
984 wxString search
,path
,filename
;
986 wxString
dirName(data
->m_path
);
988 #if defined(__WXMSW__) || defined(__WXPM__)
989 if (dirName
.Last() == ':')
990 dirName
+= wxString(wxFILE_SEP_PATH
);
994 wxString eachFilename
;
1001 if (d
.GetFirst(& eachFilename
, m_currentFilterStr
, dirFlags
))
1005 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
1007 filenames
.Add(eachFilename
);
1010 while (d
.GetNext(& eachFilename
)) ;
1016 void wxGenericDirCtrl::SetFilterIndex(int n
)
1018 m_currentFilter
= n
;
1021 if (ExtractWildcard(m_filter
, n
, f
, d
))
1022 m_currentFilterStr
= f
;
1024 m_currentFilterStr
= wxT("*.*");
1027 void wxGenericDirCtrl::SetFilter(const wxString
& filter
)
1032 if (ExtractWildcard(m_filter
, m_currentFilter
, f
, d
))
1033 m_currentFilterStr
= f
;
1035 m_currentFilterStr
= wxT("*.*");
1038 // Extract description and actual filter from overall filter string
1039 bool wxGenericDirCtrl::ExtractWildcard(const wxString
& filterStr
, int n
, wxString
& filter
, wxString
& description
)
1041 wxArrayString filters
, descriptions
;
1042 int count
= ParseFilter(filterStr
, filters
, descriptions
);
1043 if (count
> 0 && n
< count
)
1045 filter
= filters
[n
];
1046 description
= descriptions
[n
];
1053 // Parses the global filter, returning the number of filters.
1054 // Returns 0 if none or if there's a problem.
1055 // filterStr is in the form:
1057 // "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpg"
1059 int wxGenericDirCtrl::ParseFilter(const wxString
& filterStr
, wxArrayString
& filters
, wxArrayString
& descriptions
)
1061 wxString
str(filterStr
);
1063 wxString description
, filter
;
1065 bool finished
= FALSE
;
1068 pos
= str
.Find(wxT('|'));
1070 return 0; // Problem
1071 description
= str
.Left(pos
);
1072 str
= str
.Mid(pos
+1);
1073 pos
= str
.Find(wxT('|'));
1081 filter
= str
.Left(pos
);
1082 str
= str
.Mid(pos
+1);
1084 descriptions
.Add(description
);
1085 filters
.Add(filter
);
1089 return filters
.Count();
1092 void wxGenericDirCtrl::DoResize()
1094 wxSize sz
= GetClientSize();
1095 int verticalSpacing
= 3;
1099 if (m_filterListCtrl
)
1101 filterSz
= m_filterListCtrl
->GetSize();
1102 sz
.y
-= (filterSz
.y
+ verticalSpacing
);
1104 m_treeCtrl
->SetSize(0, 0, sz
.x
, sz
.y
);
1105 if (m_filterListCtrl
)
1107 m_filterListCtrl
->SetSize(0, sz
.y
+ verticalSpacing
, sz
.x
, filterSz
.y
);
1108 // Don't know why, but this needs refreshing after a resize (wxMSW)
1109 m_filterListCtrl
->Refresh();
1115 void wxGenericDirCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
1120 //-----------------------------------------------------------------------------
1121 // wxDirFilterListCtrl
1122 //-----------------------------------------------------------------------------
1124 IMPLEMENT_CLASS(wxDirFilterListCtrl
, wxChoice
)
1126 BEGIN_EVENT_TABLE(wxDirFilterListCtrl
, wxChoice
)
1127 EVT_CHOICE(-1, wxDirFilterListCtrl::OnSelFilter
)
1130 bool wxDirFilterListCtrl::Create(wxGenericDirCtrl
* parent
, const wxWindowID id
,
1136 return wxChoice::Create(parent
, id
, pos
, size
, 0, NULL
, style
);
1139 void wxDirFilterListCtrl::Init()
1144 void wxDirFilterListCtrl::OnSelFilter(wxCommandEvent
& WXUNUSED(event
))
1146 int sel
= GetSelection();
1148 wxString currentPath
= m_dirCtrl
->GetPath();
1150 m_dirCtrl
->SetFilterIndex(sel
);
1152 // If the filter has changed, the view is out of date, so
1153 // collapse the tree.
1154 m_dirCtrl
->GetTreeCtrl()->Collapse(m_dirCtrl
->GetRootId());
1155 m_dirCtrl
->GetTreeCtrl()->Expand(m_dirCtrl
->GetRootId());
1157 // Try to restore the selection, or at least the directory
1158 m_dirCtrl
->ExpandPath(currentPath
);
1161 void wxDirFilterListCtrl::FillFilterList(const wxString
& filter
, int defaultFilter
)
1164 wxArrayString descriptions
, filters
;
1165 size_t n
= (size_t) m_dirCtrl
->ParseFilter(filter
, filters
, descriptions
);
1167 if (n
> 0 && defaultFilter
< (int) n
)
1170 for (i
= 0; i
< n
; i
++)
1171 Append(descriptions
[i
]);
1172 SetSelection(defaultFilter
);
1176 // wxGenericDirDialog implementation
1177 // This should be moved into dirdlgg.cpp eventually
1179 BEGIN_EVENT_TABLE(wxGenericDirDialog
, wxDialog
)
1180 EVT_BUTTON(wxID_OK
, wxGenericDirDialog::OnOK
)
1181 EVT_BUTTON(wxID_NEW
, wxGenericDirDialog::OnNew
)
1182 EVT_BUTTON (wxID_NEW
, wxGenericDirDialog::OnNew
)
1183 EVT_CLOSE(wxGenericDirDialog::OnCloseWindow
)
1184 EVT_TREE_KEY_DOWN (-1, wxGenericDirDialog::OnTreeKeyDown
)
1185 EVT_TREE_SEL_CHANGED (-1, wxGenericDirDialog::OnTreeSelected
)
1186 EVT_TEXT_ENTER (ID_TEXTCTRL
, wxGenericDirDialog::OnOK
)
1189 wxGenericDirDialog::wxGenericDirDialog(wxWindow
* parent
, const wxString
& title
,
1190 const wxString
& defaultPath
, long style
, const wxPoint
& pos
, const wxSize
& sz
, const wxString
& name
):
1191 wxDialog(parent
, ID_DIRCTRL
, title
, pos
, sz
, style
, name
)
1194 m_path
= defaultPath
;
1196 wxBusyCursor cursor
;
1198 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
1201 m_dirCtrl
= new wxGenericDirCtrl(this, ID_DIRCTRL
,
1202 defaultPath
, wxPoint(5, 5),
1203 wxSize(300, 200), wxDIRCTRL_DIR_ONLY
|wxSUNKEN_BORDER
);
1205 topsizer
->Add( m_dirCtrl
, 1, wxTOP
|wxLEFT
|wxRIGHT
| wxEXPAND
, 10 );
1208 m_input
= new wxTextCtrl( this, ID_TEXTCTRL
, m_path
, wxDefaultPosition
);
1209 topsizer
->Add( m_input
, 0, wxTOP
|wxLEFT
|wxRIGHT
| wxEXPAND
, 10 );
1213 topsizer
->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
1217 wxSizer
* buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
1218 wxButton
* okButton
= new wxButton(this, wxID_OK
, _("OK"));
1219 buttonsizer
->Add( okButton
, 0, wxLEFT
|wxRIGHT
, 10 );
1220 wxButton
* cancelButton
= new wxButton(this, wxID_CANCEL
, _("Cancel"));
1221 buttonsizer
->Add( cancelButton
, 0, wxLEFT
|wxRIGHT
, 10 );
1223 // I'm not convinced we need a New button, and we tend to get annoying
1224 // accidental-editing with label editing enabled.
1226 wxButton
* newButton
= new wxButton( this, wxID_NEW
, _("New...") );
1227 buttonsizer
->Add( newButton
, 0, wxLEFT
|wxRIGHT
, 10 );
1230 topsizer
->Add( buttonsizer
, 0, wxALL
| wxCENTER
, 10 );
1232 okButton
->SetDefault();
1233 m_dirCtrl
->SetFocus();
1235 SetAutoLayout( TRUE
);
1236 SetSizer( topsizer
);
1238 topsizer
->SetSizeHints( this );
1239 topsizer
->Fit( this );
1244 void wxGenericDirDialog::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
1246 EndModal(wxID_CANCEL
);
1249 void wxGenericDirDialog::OnOK(wxCommandEvent
& WXUNUSED(event
))
1251 m_path
= m_input
->GetValue();
1252 // Does the path exist? (User may have typed anything in m_input)
1253 if (wxPathExists(m_path
)) {
1254 // OK, path exists, we're done.
1258 // Interact with user, find out if the dir is a typo or to be created
1259 wxString
msg( _("The directory ") );
1261 msg
= msg
+ _("\ndoes not exist\nCreate it now?") ;
1262 wxMessageDialog
dialog(this, msg
, _("Directory does not exist"), wxYES_NO
| wxICON_WARNING
);
1263 if ( dialog
.ShowModal() == wxID_YES
) {
1264 // Okay, let's make it
1266 if (wxMkdir(m_path
)) {
1267 // The new dir was created okay.
1273 msg
= _("Failed to create directory ")+m_path
+
1274 _("\n(Do you have the required permissions?)");
1275 wxMessageDialog
errmsg(this, msg
, _("Error creating directory"), wxOK
| wxICON_ERROR
);
1277 // We still don't have a valid dir. Back to the main dialog.
1280 // User has answered NO to create dir.
1283 void wxGenericDirDialog::SetPath(const wxString
& path
)
1285 m_dirCtrl
->SetPath(path
);
1289 wxString
wxGenericDirDialog::GetPath(void) const
1294 int wxGenericDirDialog::ShowModal()
1296 //m_input->SetValue( m_path );
1297 return wxDialog::ShowModal();
1300 void wxGenericDirDialog::OnTreeSelected( wxTreeEvent
&event
)
1305 wxDirItemDataEx
*data
= (wxDirItemDataEx
*)m_dirCtrl
->GetTreeCtrl()->GetItemData(event
.GetItem());
1307 m_input
->SetValue( data
->m_path
);
1310 void wxGenericDirDialog::OnTreeKeyDown( wxTreeEvent
&WXUNUSED(event
) )
1315 wxDirItemDataEx
*data
= (wxDirItemDataEx
*)m_dirCtrl
->GetTreeCtrl()->GetItemData(m_dirCtrl
->GetTreeCtrl()->GetSelection());
1317 m_input
->SetValue( data
->m_path
);
1320 void wxGenericDirDialog::OnNew( wxCommandEvent
& WXUNUSED(event
) )
1322 wxTreeItemId id
= m_dirCtrl
->GetTreeCtrl()->GetSelection();
1323 if ((id
== m_dirCtrl
->GetTreeCtrl()->GetRootItem()) ||
1324 (m_dirCtrl
->GetTreeCtrl()->GetParent(id
) == m_dirCtrl
->GetTreeCtrl()->GetRootItem()))
1326 wxMessageDialog
msg(this, _("You cannot add a new directory to this section."),
1327 _("Create directory"), wxOK
| wxICON_INFORMATION
);
1332 wxTreeItemId parent
= id
; // m_dirCtrl->GetTreeCtrl()->GetParent( id );
1333 wxDirItemDataEx
*data
= (wxDirItemDataEx
*)m_dirCtrl
->GetTreeCtrl()->GetItemData( parent
);
1336 wxString
new_name( wxT("NewName") );
1337 wxString
path( data
->m_path
);
1338 if (path
.Last() != wxFILE_SEP_PATH
)
1339 path
+= wxFILE_SEP_PATH
;
1341 if (wxFileExists(path
))
1343 // try NewName0, NewName1 etc.
1346 new_name
= wxT("NewName");
1348 num
.Printf( wxT("%d"), i
);
1351 path
= data
->m_path
;
1352 if (path
.Last() != wxFILE_SEP_PATH
)
1353 path
+= wxFILE_SEP_PATH
;
1356 } while (wxFileExists(path
));
1362 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
1367 wxDirItemDataEx
*new_data
= new wxDirItemDataEx( path
, new_name
, TRUE
);
1369 // TODO: THIS CODE DOESN'T WORK YET. We need to avoid duplication of the first child
1371 wxTreeItemId new_id
= m_dirCtrl
->GetTreeCtrl()->AppendItem( parent
, new_name
, 0, 0, new_data
);
1372 m_dirCtrl
->GetTreeCtrl()->EnsureVisible( new_id
);
1373 m_dirCtrl
->GetTreeCtrl()->EditLabel( new_id
);