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"
25 #include "wx/generic/dirctrlg.h"
27 #include "wx/module.h"
29 #include "wx/button.h"
30 #include "wx/layout.h"
31 #include "wx/msgdlg.h"
32 #include "wx/textctrl.h"
33 #include "wx/textdlg.h"
34 #include "wx/filefn.h"
35 #include "wx/cmndata.h"
36 #include "wx/gdicmn.h"
38 #include "wx/imaglist.h"
42 #include "wx/tokenzr.h"
44 #include "wx/settings.h"
45 #include "wx/artprov.h"
47 #include "wx/mimetype.h"
49 #include "wx/choice.h"
52 #include "wx/statline.h"
55 #if defined(__WXMAC__)
56 #include "wx/mac/private.h" // includes mac headers
62 // FIXME - Mingw32 1.0 has both _getdrive() and _chdrive(). For now, let's assume
63 // older releases don't, but it should be verified and the checks modified
65 #if !defined(__GNUWIN32__) || (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
82 extern bool wxIsDriveAvailable(const wxString
& dirName
);
85 #if defined(__WXMAC__)
87 # include "MoreFilesX.h"
89 # include "MoreFilesExtras.h"
97 // If compiled under Windows, this macro can cause problems
102 // ----------------------------------------------------------------------------
103 // wxGetAvailableDrives, for WINDOWS, DOS, WXPM, MAC, UNIX (returns "/")
104 // ----------------------------------------------------------------------------
106 size_t wxGetAvailableDrives(wxArrayString
&paths
, wxArrayString
&names
, wxArrayInt
&icon_ids
)
108 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__)
111 wxChar driveBuffer
[256];
112 size_t n
= (size_t) GetLogicalDriveStrings(255, driveBuffer
);
117 path
.Printf(wxT("%c:\\"), driveBuffer
[i
]);
118 name
.Printf(wxT("%c:"), driveBuffer
[i
]);
120 int imageId
= wxFileIconsTable::drive
;
121 int driveType
= ::GetDriveType(path
);
124 case DRIVE_REMOVABLE
:
125 if (path
== wxT("a:\\") || path
== wxT("b:\\"))
126 imageId
= wxFileIconsTable::floppy
;
128 imageId
= wxFileIconsTable::removeable
;
131 imageId
= wxFileIconsTable::cdrom
;
136 imageId
= wxFileIconsTable::drive
;
142 icon_ids
.Add(imageId
);
144 while (driveBuffer
[i
] != wxT('\0'))
147 if (driveBuffer
[i
] == wxT('\0'))
153 /* If we can switch to the drive, it exists. */
154 for( drive
= 1; drive
<= 26; drive
++ )
157 path
.Printf(wxT("%c:\\"), (char) (drive
+ 'a' - 1));
158 name
.Printf(wxT("%c:"), (char) (drive
+ 'A' - 1));
160 if (wxIsDriveAvailable(path
))
164 icon_ids
.Add((drive
<= 2) ? wxFileIconsTable::floppy
: wxFileIconsTable::drive
);
167 #endif // __WIN32__/!__WIN32__
169 #elif defined(__WXMAC__)
172 ItemCount theVolCount
;
173 char thePath
[FILENAME_MAX
];
175 if (FSGetMountedVolumes(&theVolRefs
, &theVolCount
) == noErr
) {
177 ::HLock( (Handle
)theVolRefs
) ;
178 for (index
= 0; index
< theVolCount
; ++index
) {
179 // get the POSIX path associated with the FSRef
180 if ( FSRefMakePath(&((*theVolRefs
)[index
]),
181 (UInt8
*)thePath
, sizeof(thePath
)) != noErr
) {
184 // add path separator at end if necessary
185 wxString
path( thePath
) ;
186 if (path
.Last() != wxFILE_SEP_PATH
) {
187 path
+= wxFILE_SEP_PATH
;
189 // get Mac volume name for display
190 FSVolumeRefNum vRefNum
;
191 HFSUniStr255 volumeName
;
193 if ( FSGetVRefNum(&((*theVolRefs
)[index
]), &vRefNum
) != noErr
) {
196 if ( FSGetVInfo(vRefNum
, &volumeName
, NULL
, NULL
) != noErr
) {
199 // get C string from Unicode HFS name
200 // see: http://developer.apple.com/carbon/tipsandtricks.html
201 CFStringRef cfstr
= CFStringCreateWithCharacters( kCFAllocatorDefault
,
204 // Do something with str
205 char *cstr
= NewPtr(CFStringGetLength(cfstr
) + 1);
206 if (( cstr
== NULL
) ||
207 !CFStringGetCString(cfstr
, cstr
, CFStringGetLength(cfstr
) + 1,
208 kCFStringEncodingMacRoman
))
213 wxString
name( cstr
);
217 GetVolParmsInfoBuffer volParmsInfo
;
219 if ( FSGetVolParms(vRefNum
, sizeof(volParmsInfo
), &volParmsInfo
, &actualSize
) != noErr
) {
226 if ( VolIsEjectable(&volParmsInfo
) )
227 icon_ids
.Add(wxFileIconsTable::cdrom
);
229 icon_ids
.Add(wxFileIconsTable::drive
);
231 ::HUnlock( (Handle
)theVolRefs
);
232 ::DisposeHandle( (Handle
)theVolRefs
);
239 short actualCount
= 0 ;
240 if (OnLine(&volume
, 1, &actualCount
, &index
) != noErr
|| actualCount
==0)
245 wxString name
= wxMacFSSpec2MacFilename( &volume
);
246 paths
.Add(name
+ wxFILE_SEP_PATH
);
248 icon_ids
.Add(wxFileIconsTable::drive
);
252 #elif defined(__UNIX__)
255 icon_ids
.Add(wxFileIconsTable::computer
);
257 #error "Unsupported platform in wxGenericDirCtrl!"
259 return paths
.GetCount();
262 // ----------------------------------------------------------------------------
263 // wxIsDriveAvailable
264 // ----------------------------------------------------------------------------
268 bool wxIsDriveAvailable(const wxString
& dirName
)
270 // FIXME_MGL - this method leads to hang up under Watcom for some reason
272 if ( dirName
.Len() == 3 && dirName
[1u] == wxT(':') )
274 wxString
dirNameLower(dirName
.Lower());
275 // VS: always return TRUE for removable media, since Win95 doesn't
276 // like it when MS-DOS app accesses empty floppy drive
277 return (dirNameLower
[0u] == wxT('a') ||
278 dirNameLower
[0u] == wxT('b') ||
279 wxPathExists(dirNameLower
));
286 #elif defined(__WINDOWS__) || defined(__WXPM__)
288 int setdrive(int drive
)
290 #if defined(__GNUWIN32__) && \
291 (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
292 return _chdrive(drive
);
296 if (drive
< 1 || drive
> 31)
298 newdrive
[0] = (wxChar
)(wxT('A') + drive
- 1);
299 newdrive
[1] = wxT(':');
300 newdrive
[2] = wxT('\0');
301 #if defined(__WXMSW__)
303 if (wxSetWorkingDirectory(newdrive
))
305 if (::SetCurrentDirectory(newdrive
))
308 // VA doesn't know what LPSTR is and has its own set
309 if (DosSetCurrentDir((PSZ
)newdrive
))
317 bool wxIsDriveAvailable(const wxString
& dirName
)
320 UINT errorMode
= SetErrorMode(SEM_FAILCRITICALERRORS
| SEM_NOOPENFILEERRORBOX
);
324 // Check if this is a root directory and if so,
325 // whether the drive is available.
326 if (dirName
.Len() == 3 && dirName
[(size_t)1] == wxT(':'))
328 wxString
dirNameLower(dirName
.Lower());
329 #if defined(__GNUWIN32__) && !(defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
330 success
= wxPathExists(dirNameLower
);
332 int currentDrive
= _getdrive();
333 int thisDrive
= (int) (dirNameLower
[(size_t)0] - 'a' + 1) ;
334 int err
= setdrive( thisDrive
) ;
335 setdrive( currentDrive
);
344 (void) SetErrorMode(errorMode
);
349 #endif // __WINDOWS__ || __WXPM__
351 // Function which is called by quick sort. We want to override the default wxArrayString behaviour,
352 // and sort regardless of case.
353 static int LINKAGEMODE
wxDirCtrlStringCompareFunction(const void *first
, const void *second
)
355 wxString
*strFirst
= (wxString
*)first
;
356 wxString
*strSecond
= (wxString
*)second
;
358 return strFirst
->CmpNoCase(*strSecond
);
361 //-----------------------------------------------------------------------------
363 //-----------------------------------------------------------------------------
365 wxDirItemData::wxDirItemData(const wxString
& path
, const wxString
& name
,
370 /* Insert logic to detect hidden files here
371 * In UnixLand we just check whether the first char is a dot
372 * For FileNameFromPath read LastDirNameInThisPath ;-) */
373 // m_isHidden = (bool)(wxFileNameFromPath(*m_path)[0] == '.');
375 m_isExpanded
= FALSE
;
379 wxDirItemData::~wxDirItemData()
383 void wxDirItemData::SetNewDirName(const wxString
& path
)
386 m_name
= wxFileNameFromPath(path
);
389 bool wxDirItemData::HasSubDirs() const
391 if (m_path
.IsEmpty())
397 if ( !dir
.Open(m_path
) )
401 return dir
.HasSubDirs();
404 bool wxDirItemData::HasFiles(const wxString
& WXUNUSED(spec
)) const
406 if (m_path
.IsEmpty())
412 if ( !dir
.Open(m_path
) )
416 return dir
.HasFiles();
419 //-----------------------------------------------------------------------------
421 //-----------------------------------------------------------------------------
423 IMPLEMENT_DYNAMIC_CLASS(wxGenericDirCtrl
, wxControl
)
425 BEGIN_EVENT_TABLE(wxGenericDirCtrl
, wxControl
)
426 EVT_TREE_ITEM_EXPANDING (-1, wxGenericDirCtrl::OnExpandItem
)
427 EVT_TREE_ITEM_COLLAPSED (-1, wxGenericDirCtrl::OnCollapseItem
)
428 EVT_TREE_BEGIN_LABEL_EDIT (-1, wxGenericDirCtrl::OnBeginEditItem
)
429 EVT_TREE_END_LABEL_EDIT (-1, wxGenericDirCtrl::OnEndEditItem
)
430 EVT_SIZE (wxGenericDirCtrl::OnSize
)
433 wxGenericDirCtrl::wxGenericDirCtrl(void)
438 bool wxGenericDirCtrl::Create(wxWindow
*parent
,
444 const wxString
& filter
,
446 const wxString
& name
)
448 if (!wxControl::Create(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
451 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
455 long treeStyle
= wxTR_HAS_BUTTONS
| wxTR_HIDE_ROOT
;
457 if (style
& wxDIRCTRL_EDIT_LABELS
)
458 treeStyle
|= wxTR_EDIT_LABELS
;
460 if ((style
& wxDIRCTRL_3D_INTERNAL
) == 0)
461 treeStyle
|= wxNO_BORDER
;
463 treeStyle
|= wxBORDER_SUNKEN
;
465 long filterStyle
= 0;
466 if ((style
& wxDIRCTRL_3D_INTERNAL
) == 0)
467 filterStyle
|= wxNO_BORDER
;
469 filterStyle
|= wxBORDER_SUNKEN
;
471 m_treeCtrl
= new wxTreeCtrl(this, wxID_TREECTRL
, pos
, size
, treeStyle
);
473 if (!filter
.IsEmpty() && (style
& wxDIRCTRL_SHOW_FILTERS
))
474 m_filterListCtrl
= new wxDirFilterListCtrl(this, wxID_FILTERLISTCTRL
, wxDefaultPosition
, wxDefaultSize
, filterStyle
);
479 SetFilterIndex(defaultFilter
);
481 if (m_filterListCtrl
)
482 m_filterListCtrl
->FillFilterList(filter
, defaultFilter
);
484 m_treeCtrl
->SetImageList(wxTheFileIconsTable
->GetSmallImageList());
486 m_showHidden
= FALSE
;
487 wxDirItemData
* rootData
= new wxDirItemData(wxT(""), wxT(""), TRUE
);
491 #if defined(__WINDOWS__) || defined(__WXPM__) || defined(__DOS__)
492 rootName
= _("Computer");
494 rootName
= _("Sections");
497 m_rootId
= m_treeCtrl
->AddRoot( rootName
, 3, -1, rootData
);
498 m_treeCtrl
->SetItemHasChildren(m_rootId
);
499 ExpandDir(m_rootId
); // automatically expand first level
501 // Expand and select the default path
502 if (!m_defaultPath
.IsEmpty())
503 ExpandPath(m_defaultPath
);
510 wxGenericDirCtrl::~wxGenericDirCtrl()
514 void wxGenericDirCtrl::Init()
516 m_showHidden
= FALSE
;
518 m_currentFilterStr
= wxEmptyString
; // Default: any file
520 m_filterListCtrl
= NULL
;
523 void wxGenericDirCtrl::ShowHidden( bool show
)
527 wxString path
= GetPath();
533 wxGenericDirCtrl::AddSection(const wxString
& path
, const wxString
& name
, int imageId
)
535 wxDirItemData
*dir_item
= new wxDirItemData(path
,name
,TRUE
);
537 wxTreeItemId id
= AppendItem( m_rootId
, name
, imageId
, -1, dir_item
);
539 m_treeCtrl
->SetItemHasChildren(id
);
544 void wxGenericDirCtrl::SetupSections()
546 wxArrayString paths
, names
;
549 size_t n
, count
= wxGetAvailableDrives(paths
, names
, icons
);
551 for (n
= 0; n
< count
; n
++)
553 AddSection(paths
[n
], names
[n
], icons
[n
]);
557 void wxGenericDirCtrl::OnBeginEditItem(wxTreeEvent
&event
)
559 // don't rename the main entry "Sections"
560 if (event
.GetItem() == m_rootId
)
566 // don't rename the individual sections
567 if (m_treeCtrl
->GetItemParent( event
.GetItem() ) == m_rootId
)
574 void wxGenericDirCtrl::OnEndEditItem(wxTreeEvent
&event
)
576 if ((event
.GetLabel().IsEmpty()) ||
577 (event
.GetLabel() == _(".")) ||
578 (event
.GetLabel() == _("..")) ||
579 (event
.GetLabel().Find(wxT('/')) != wxNOT_FOUND
) ||
580 (event
.GetLabel().Find(wxT('\\')) != wxNOT_FOUND
) ||
581 (event
.GetLabel().Find(wxT('|')) != wxNOT_FOUND
))
583 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
589 wxTreeItemId id
= event
.GetItem();
590 wxDirItemData
*data
= (wxDirItemData
*)m_treeCtrl
->GetItemData( id
);
593 wxString
new_name( wxPathOnly( data
->m_path
) );
594 new_name
+= wxString(wxFILE_SEP_PATH
);
595 new_name
+= event
.GetLabel();
599 if (wxFileExists(new_name
))
601 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
606 if (wxRenameFile(data
->m_path
,new_name
))
608 data
->SetNewDirName( new_name
);
612 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
618 void wxGenericDirCtrl::OnExpandItem(wxTreeEvent
&event
)
620 wxTreeItemId parentId
= event
.GetItem();
622 // VS: this is needed because the event handler is called from wxTreeCtrl
623 // ctor when wxTR_HIDE_ROOT was specified
625 if (!m_rootId
.IsOk())
627 m_rootId
= m_treeCtrl
->GetRootItem();
632 void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent
&event
)
634 CollapseDir(event
.GetItem());
637 void wxGenericDirCtrl::CollapseDir(wxTreeItemId parentId
)
641 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(parentId
);
642 if (!data
->m_isExpanded
)
645 data
->m_isExpanded
= FALSE
;
647 /* Workaround because DeleteChildren has disapeared (why?) and
648 * CollapseAndReset doesn't work as advertised (deletes parent too) */
649 child
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
652 m_treeCtrl
->Delete(child
);
653 /* Not GetNextChild below, because the cookie mechanism can't
654 * handle disappearing children! */
655 child
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
659 void wxGenericDirCtrl::ExpandDir(wxTreeItemId parentId
)
661 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(parentId
);
663 if (data
->m_isExpanded
)
666 data
->m_isExpanded
= TRUE
;
668 if (parentId
== m_treeCtrl
->GetRootItem())
676 wxString search
,path
,filename
;
678 wxString
dirName(data
->m_path
);
680 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__)
681 // Check if this is a root directory and if so,
682 // whether the drive is avaiable.
683 if (!wxIsDriveAvailable(dirName
))
685 data
->m_isExpanded
= FALSE
;
686 //wxMessageBox(wxT("Sorry, this drive is not available."));
691 // This may take a longish time. Go to busy cursor
694 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__)
695 if (dirName
.Last() == ':')
696 dirName
+= wxString(wxFILE_SEP_PATH
);
700 wxArrayString filenames
;
703 wxString eachFilename
;
710 int style
= wxDIR_DIRS
;
711 if (m_showHidden
) style
|= wxDIR_HIDDEN
;
712 if (d
.GetFirst(& eachFilename
, wxEmptyString
, style
))
716 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
718 dirs
.Add(eachFilename
);
721 while (d
.GetNext(& eachFilename
));
724 dirs
.Sort((wxArrayString::CompareFunction
) wxDirCtrlStringCompareFunction
);
726 // Now do the filenames -- but only if we're allowed to
727 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0)
735 if (d
.GetFirst(& eachFilename
, m_currentFilterStr
, wxDIR_FILES
))
739 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
741 filenames
.Add(eachFilename
);
744 while (d
.GetNext(& eachFilename
));
747 filenames
.Sort((wxArrayString::CompareFunction
) wxDirCtrlStringCompareFunction
);
750 // Add the sorted dirs
752 for (i
= 0; i
< dirs
.Count(); i
++)
754 wxString
eachFilename(dirs
[i
]);
756 if (!wxEndsWithPathSeparator(path
))
757 path
+= wxString(wxFILE_SEP_PATH
);
758 path
+= eachFilename
;
760 wxDirItemData
*dir_item
= new wxDirItemData(path
,eachFilename
,TRUE
);
761 wxTreeItemId id
= AppendItem( parentId
, eachFilename
,
762 wxFileIconsTable::folder
, -1, dir_item
);
763 m_treeCtrl
->SetItemImage( id
, wxFileIconsTable::folder_open
,
764 wxTreeItemIcon_Expanded
);
766 // Has this got any children? If so, make it expandable.
767 // (There are two situations when a dir has children: either it
768 // has subdirectories or it contains files that weren't filtered
769 // out. The latter only applies to dirctrl with files.)
770 if ( dir_item
->HasSubDirs() ||
771 (((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0) &&
772 dir_item
->HasFiles(m_currentFilterStr
)) )
774 m_treeCtrl
->SetItemHasChildren(id
);
778 // Add the sorted filenames
779 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0)
781 for (i
= 0; i
< filenames
.Count(); i
++)
783 wxString
eachFilename(filenames
[i
]);
785 if (!wxEndsWithPathSeparator(path
))
786 path
+= wxString(wxFILE_SEP_PATH
);
787 path
+= eachFilename
;
788 //path = dirName + wxString(wxT("/")) + eachFilename;
789 wxDirItemData
*dir_item
= new wxDirItemData(path
,eachFilename
,FALSE
);
790 int image_id
= wxFileIconsTable::file
;
791 if (eachFilename
.Find(wxT('.')) != wxNOT_FOUND
)
792 image_id
= wxTheFileIconsTable
->GetIconID(eachFilename
.AfterLast(wxT('.')));
793 (void) AppendItem( parentId
, eachFilename
, image_id
, -1, dir_item
);
798 void wxGenericDirCtrl::ReCreateTree()
800 CollapseDir(m_treeCtrl
->GetRootItem());
801 ExpandDir(m_treeCtrl
->GetRootItem());
804 // Find the child that matches the first part of 'path'.
805 // E.g. if a child path is "/usr" and 'path' is "/usr/include"
806 // then the child for /usr is returned.
807 wxTreeItemId
wxGenericDirCtrl::FindChild(wxTreeItemId parentId
, const wxString
& path
, bool& done
)
809 wxString
path2(path
);
811 // Make sure all separators are as per the current platform
812 path2
.Replace(wxT("\\"), wxString(wxFILE_SEP_PATH
));
813 path2
.Replace(wxT("/"), wxString(wxFILE_SEP_PATH
));
815 // Append a separator to foil bogus substring matching
816 path2
+= wxString(wxFILE_SEP_PATH
);
818 // In MSW or PM, case is not significant
819 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__)
824 wxTreeItemId childId
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
825 while (childId
.IsOk())
827 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(childId
);
829 if (data
&& !data
->m_path
.IsEmpty())
831 wxString
childPath(data
->m_path
);
832 if (!wxEndsWithPathSeparator(childPath
))
833 childPath
+= wxString(wxFILE_SEP_PATH
);
835 // In MSW and PM, case is not significant
836 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__)
837 childPath
.MakeLower();
840 if (childPath
.Len() <= path2
.Len())
842 wxString path3
= path2
.Mid(0, childPath
.Len());
843 if (childPath
== path3
)
845 if (path3
.Len() == path2
.Len())
854 childId
= m_treeCtrl
->GetNextChild(parentId
, cookie
);
856 wxTreeItemId invalid
;
860 // Try to expand as much of the given path as possible,
861 // and select the given tree item.
862 bool wxGenericDirCtrl::ExpandPath(const wxString
& path
)
865 wxTreeItemId id
= FindChild(m_rootId
, path
, done
);
866 wxTreeItemId lastId
= id
; // The last non-zero id
867 while (id
.IsOk() && !done
)
871 id
= FindChild(id
, path
, done
);
877 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(lastId
);
880 m_treeCtrl
->Expand(lastId
);
882 if ((GetWindowStyle() & wxDIRCTRL_SELECT_FIRST
) && data
->m_isDir
)
884 // Find the first file in this directory
886 wxTreeItemId childId
= m_treeCtrl
->GetFirstChild(lastId
, cookie
);
887 bool selectedChild
= FALSE
;
888 while (childId
.IsOk())
890 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(childId
);
892 if (data
&& data
->m_path
!= wxT("") && !data
->m_isDir
)
894 m_treeCtrl
->SelectItem(childId
);
895 m_treeCtrl
->EnsureVisible(childId
);
896 selectedChild
= TRUE
;
899 childId
= m_treeCtrl
->GetNextChild(lastId
, cookie
);
903 m_treeCtrl
->SelectItem(lastId
);
904 m_treeCtrl
->EnsureVisible(lastId
);
909 m_treeCtrl
->SelectItem(lastId
);
910 m_treeCtrl
->EnsureVisible(lastId
);
919 wxString
wxGenericDirCtrl::GetPath() const
921 wxTreeItemId id
= m_treeCtrl
->GetSelection();
924 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
928 return wxEmptyString
;
931 wxString
wxGenericDirCtrl::GetFilePath() const
933 wxTreeItemId id
= m_treeCtrl
->GetSelection();
936 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
938 return wxEmptyString
;
943 return wxEmptyString
;
946 void wxGenericDirCtrl::SetPath(const wxString
& path
)
948 m_defaultPath
= path
;
955 void wxGenericDirCtrl::FindChildFiles(wxTreeItemId id
, int dirFlags
, wxArrayString
& filenames
)
957 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
959 // This may take a longish time. Go to busy cursor
964 wxString search
,path
,filename
;
966 wxString
dirName(data
->m_path
);
968 #if defined(__WXMSW__) || defined(__WXPM__)
969 if (dirName
.Last() == ':')
970 dirName
+= wxString(wxFILE_SEP_PATH
);
974 wxString eachFilename
;
981 if (d
.GetFirst(& eachFilename
, m_currentFilterStr
, dirFlags
))
985 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
987 filenames
.Add(eachFilename
);
990 while (d
.GetNext(& eachFilename
)) ;
996 void wxGenericDirCtrl::SetFilterIndex(int n
)
1001 if (ExtractWildcard(m_filter
, n
, f
, d
))
1002 m_currentFilterStr
= f
;
1004 m_currentFilterStr
= wxT("*.*");
1007 void wxGenericDirCtrl::SetFilter(const wxString
& filter
)
1012 if (ExtractWildcard(m_filter
, m_currentFilter
, f
, d
))
1013 m_currentFilterStr
= f
;
1015 m_currentFilterStr
= wxT("*.*");
1018 // Extract description and actual filter from overall filter string
1019 bool wxGenericDirCtrl::ExtractWildcard(const wxString
& filterStr
, int n
, wxString
& filter
, wxString
& description
)
1021 wxArrayString filters
, descriptions
;
1022 int count
= ParseFilter(filterStr
, filters
, descriptions
);
1023 if (count
> 0 && n
< count
)
1025 filter
= filters
[n
];
1026 description
= descriptions
[n
];
1033 // Parses the global filter, returning the number of filters.
1034 // Returns 0 if none or if there's a problem.
1035 // filterStr is in the form:
1037 // "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpg"
1039 int wxGenericDirCtrl::ParseFilter(const wxString
& filterStr
, wxArrayString
& filters
, wxArrayString
& descriptions
)
1041 wxString
str(filterStr
);
1043 wxString description
, filter
;
1045 bool finished
= FALSE
;
1048 pos
= str
.Find(wxT('|'));
1050 return 0; // Problem
1051 description
= str
.Left(pos
);
1052 str
= str
.Mid(pos
+1);
1053 pos
= str
.Find(wxT('|'));
1061 filter
= str
.Left(pos
);
1062 str
= str
.Mid(pos
+1);
1064 descriptions
.Add(description
);
1065 filters
.Add(filter
);
1069 return filters
.Count();
1072 void wxGenericDirCtrl::DoResize()
1074 wxSize sz
= GetClientSize();
1075 int verticalSpacing
= 3;
1079 if (m_filterListCtrl
)
1082 // For some reason, this is required in order for the
1083 // correct control height to always be returned, rather
1084 // than the drop-down list height which is sometimes returned.
1085 wxSize oldSize
= m_filterListCtrl
->GetSize();
1086 m_filterListCtrl
->SetSize(-1, -1, oldSize
.x
+10, -1, wxSIZE_USE_EXISTING
);
1087 m_filterListCtrl
->SetSize(-1, -1, oldSize
.x
, -1, wxSIZE_USE_EXISTING
);
1089 filterSz
= m_filterListCtrl
->GetSize();
1090 sz
.y
-= (filterSz
.y
+ verticalSpacing
);
1092 m_treeCtrl
->SetSize(0, 0, sz
.x
, sz
.y
);
1093 if (m_filterListCtrl
)
1095 m_filterListCtrl
->SetSize(0, sz
.y
+ verticalSpacing
, sz
.x
, filterSz
.y
);
1096 // Don't know why, but this needs refreshing after a resize (wxMSW)
1097 m_filterListCtrl
->Refresh();
1103 void wxGenericDirCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
1108 wxTreeItemId
wxGenericDirCtrl::AppendItem (const wxTreeItemId
& parent
,
1109 const wxString
& text
,
1110 int image
, int selectedImage
,
1111 wxTreeItemData
* data
)
1113 wxTreeCtrl
*treeCtrl
= GetTreeCtrl ();
1115 wxASSERT (treeCtrl
);
1119 return treeCtrl
->AppendItem (parent
, text
, image
, selectedImage
, data
);
1123 return wxTreeItemId();
1128 //-----------------------------------------------------------------------------
1129 // wxDirFilterListCtrl
1130 //-----------------------------------------------------------------------------
1132 IMPLEMENT_CLASS(wxDirFilterListCtrl
, wxChoice
)
1134 BEGIN_EVENT_TABLE(wxDirFilterListCtrl
, wxChoice
)
1135 EVT_CHOICE(-1, wxDirFilterListCtrl::OnSelFilter
)
1138 bool wxDirFilterListCtrl::Create(wxGenericDirCtrl
* parent
, const wxWindowID id
,
1144 return wxChoice::Create(parent
, id
, pos
, size
, 0, NULL
, style
);
1147 void wxDirFilterListCtrl::Init()
1152 void wxDirFilterListCtrl::OnSelFilter(wxCommandEvent
& WXUNUSED(event
))
1154 int sel
= GetSelection();
1156 wxString currentPath
= m_dirCtrl
->GetPath();
1158 m_dirCtrl
->SetFilterIndex(sel
);
1160 // If the filter has changed, the view is out of date, so
1161 // collapse the tree.
1162 m_dirCtrl
->ReCreateTree();
1164 // Try to restore the selection, or at least the directory
1165 m_dirCtrl
->ExpandPath(currentPath
);
1168 void wxDirFilterListCtrl::FillFilterList(const wxString
& filter
, int defaultFilter
)
1171 wxArrayString descriptions
, filters
;
1172 size_t n
= (size_t) m_dirCtrl
->ParseFilter(filter
, filters
, descriptions
);
1174 if (n
> 0 && defaultFilter
< (int) n
)
1177 for (i
= 0; i
< n
; i
++)
1178 Append(descriptions
[i
]);
1179 SetSelection(defaultFilter
);
1184 // ----------------------------------------------------------------------------
1185 // wxFileIconsTable icons
1186 // ----------------------------------------------------------------------------
1189 static const char * file_icons_tbl_folder_open_xpm
[] = {
1190 /* width height ncolors chars_per_pixel */
1218 static const char * file_icons_tbl_computer_xpm
[] = {
1245 static const char * file_icons_tbl_drive_xpm
[] = {
1272 static const char *file_icons_tbl_cdrom_xpm
[] = {
1302 static const char * file_icons_tbl_floppy_xpm
[] = {
1329 static const char * file_icons_tbl_removeable_xpm
[] = {
1355 // ----------------------------------------------------------------------------
1356 // wxFileIconsTable & friends
1357 // ----------------------------------------------------------------------------
1359 // global instance of a wxFileIconsTable
1360 wxFileIconsTable
* wxTheFileIconsTable
= (wxFileIconsTable
*)NULL
;
1362 // A module to allow icons table cleanup
1364 class wxFileIconsTableModule
: public wxModule
1366 DECLARE_DYNAMIC_CLASS(wxFileIconsTableModule
)
1368 wxFileIconsTableModule() {}
1369 bool OnInit() { wxTheFileIconsTable
= new wxFileIconsTable
; return TRUE
; }
1372 if (wxTheFileIconsTable
)
1374 delete wxTheFileIconsTable
;
1375 wxTheFileIconsTable
= NULL
;
1380 IMPLEMENT_DYNAMIC_CLASS(wxFileIconsTableModule
, wxModule
)
1382 class wxFileIconEntry
: public wxObject
1385 wxFileIconEntry(int i
) { id
= i
; }
1390 wxFileIconsTable::wxFileIconsTable()
1393 m_smallImageList
= NULL
;
1396 wxFileIconsTable::~wxFileIconsTable()
1398 if (m_HashTable
) delete m_HashTable
;
1399 if (m_smallImageList
) delete m_smallImageList
;
1402 // delayed initialization - wait until first use (wxArtProv not created yet)
1403 void wxFileIconsTable::Create()
1405 wxCHECK_RET(!m_smallImageList
&& !m_HashTable
, wxT("creating icons twice"));
1406 m_HashTable
= new wxHashTable(wxKEY_STRING
);
1407 m_smallImageList
= new wxImageList(16, 16);
1409 m_HashTable
->DeleteContents(TRUE
);
1411 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_FOLDER
, wxART_CMN_DIALOG
));
1413 m_smallImageList
->Add(wxIcon(file_icons_tbl_folder_open_xpm
));
1415 m_smallImageList
->Add(wxIcon(file_icons_tbl_computer_xpm
));
1417 m_smallImageList
->Add(wxIcon(file_icons_tbl_drive_xpm
));
1419 m_smallImageList
->Add(wxIcon(file_icons_tbl_cdrom_xpm
));
1421 m_smallImageList
->Add(wxIcon(file_icons_tbl_floppy_xpm
));
1423 m_smallImageList
->Add(wxIcon(file_icons_tbl_removeable_xpm
));
1425 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_NORMAL_FILE
, wxART_CMN_DIALOG
));
1427 if (GetIconID(wxEmptyString
, _T("application/x-executable")) == file
)
1429 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_EXECUTABLE_FILE
, wxART_CMN_DIALOG
));
1430 m_HashTable
->Delete(_T("exe"));
1431 m_HashTable
->Put(_T("exe"), new wxFileIconEntry(executable
));
1433 /* else put into list by GetIconID
1434 (KDE defines application/x-executable for *.exe and has nice icon)
1438 wxImageList
*wxFileIconsTable::GetSmallImageList()
1440 if (!m_smallImageList
)
1443 return m_smallImageList
;
1447 // VS: we don't need this function w/o wxMimeTypesManager because we'll only have
1448 // one icon and we won't resize it
1450 static wxBitmap
CreateAntialiasedBitmap(const wxImage
& img
)
1452 wxImage
smallimg (16, 16);
1453 unsigned char *p1
, *p2
, *ps
;
1454 unsigned char mr
= img
.GetMaskRed(),
1455 mg
= img
.GetMaskGreen(),
1456 mb
= img
.GetMaskBlue();
1459 unsigned sr
, sg
, sb
, smask
;
1461 p1
= img
.GetData(), p2
= img
.GetData() + 3 * 32, ps
= smallimg
.GetData();
1462 smallimg
.SetMaskColour(mr
, mr
, mr
);
1464 for (y
= 0; y
< 16; y
++)
1466 for (x
= 0; x
< 16; x
++)
1468 sr
= sg
= sb
= smask
= 0;
1469 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
1470 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
1473 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
1474 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
1477 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
1478 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
1481 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
1482 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
1487 ps
[0] = ps
[1] = ps
[2] = mr
;
1489 ps
[0] = sr
>> 2, ps
[1] = sg
>> 2, ps
[2] = sb
>> 2;
1492 p1
+= 32 * 3, p2
+= 32 * 3;
1495 return wxBitmap(smallimg
);
1498 // finds empty borders and return non-empty area of image:
1499 static wxImage
CutEmptyBorders(const wxImage
& img
)
1501 unsigned char mr
= img
.GetMaskRed(),
1502 mg
= img
.GetMaskGreen(),
1503 mb
= img
.GetMaskBlue();
1504 unsigned char *dt
= img
.GetData(), *dttmp
;
1505 unsigned w
= img
.GetWidth(), h
= img
.GetHeight();
1507 unsigned top
, bottom
, left
, right
, i
;
1510 #define MK_DTTMP(x,y) dttmp = dt + ((x + y * w) * 3)
1511 #define NOEMPTY_PIX(empt) if (dttmp[0] != mr || dttmp[1] != mg || dttmp[2] != mb) {empt = FALSE; break;}
1513 for (empt
= TRUE
, top
= 0; empt
&& top
< h
; top
++)
1516 for (i
= 0; i
< w
; i
++, dttmp
+=3)
1519 for (empt
= TRUE
, bottom
= h
-1; empt
&& bottom
> top
; bottom
--)
1521 MK_DTTMP(0, bottom
);
1522 for (i
= 0; i
< w
; i
++, dttmp
+=3)
1525 for (empt
= TRUE
, left
= 0; empt
&& left
< w
; left
++)
1528 for (i
= 0; i
< h
; i
++, dttmp
+=3*w
)
1531 for (empt
= TRUE
, right
= w
-1; empt
&& right
> left
; right
--)
1534 for (i
= 0; i
< h
; i
++, dttmp
+=3*w
)
1537 top
--, left
--, bottom
++, right
++;
1539 return img
.GetSubImage(wxRect(left
, top
, right
- left
+ 1, bottom
- top
+ 1));
1541 #endif // wxUSE_MIMETYPE
1543 int wxFileIconsTable::GetIconID(const wxString
& extension
, const wxString
& mime
)
1545 if (!m_smallImageList
)
1549 if (!extension
.IsEmpty())
1551 wxFileIconEntry
*entry
= (wxFileIconEntry
*) m_HashTable
->Get(extension
);
1552 if (entry
) return (entry
-> id
);
1555 wxFileType
*ft
= (mime
.IsEmpty()) ?
1556 wxTheMimeTypesManager
-> GetFileTypeFromExtension(extension
) :
1557 wxTheMimeTypesManager
-> GetFileTypeFromMimeType(mime
);
1559 if (ft
== NULL
|| (!ft
->GetIcon(&ic
)) || (!ic
.Ok()))
1562 m_HashTable
->Put(extension
, new wxFileIconEntry(newid
));
1567 tmpBmp
.CopyFromIcon(ic
);
1568 wxImage img
= tmpBmp
.ConvertToImage();
1572 int id
= m_smallImageList
->GetImageCount();
1573 if (img
.GetWidth() == 16 && img
.GetHeight() == 16)
1574 m_smallImageList
->Add(wxBitmap(img
));
1577 if (img
.GetWidth() != 32 || img
.GetHeight() != 32)
1578 m_smallImageList
->Add(CreateAntialiasedBitmap(CutEmptyBorders(img
).Rescale(32, 32)));
1580 m_smallImageList
->Add(CreateAntialiasedBitmap(img
));
1582 m_HashTable
->Put(extension
, new wxFileIconEntry(id
));
1585 #else // !wxUSE_MIMETYPE
1587 if (extension
== wxT("exe"))
1591 #endif // wxUSE_MIMETYPE/!wxUSE_MIMETYPE
1594 #endif // wxUSE_DIRDLG