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 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
19 #if wxUSE_DIRDLG || wxUSE_FILEDLG
21 #include "wx/generic/dirctrlg.h"
22 #include "wx/module.h"
24 #include "wx/button.h"
25 #include "wx/layout.h"
26 #include "wx/msgdlg.h"
27 #include "wx/textctrl.h"
28 #include "wx/textdlg.h"
29 #include "wx/filefn.h"
30 #include "wx/cmndata.h"
31 #include "wx/gdicmn.h"
33 #include "wx/imaglist.h"
37 #include "wx/tokenzr.h"
39 #include "wx/settings.h"
40 #include "wx/artprov.h"
42 #include "wx/mimetype.h"
44 #include "wx/choice.h"
47 #include "wx/statline.h"
50 #if defined(__WXMAC__)
51 #include "wx/mac/private.h" // includes mac headers
56 #include "wx/msw/winundef.h"
58 // FIXME - Mingw32 1.0 has both _getdrive() and _chdrive(). For now, let's assume
59 // older releases don't, but it should be verified and the checks modified
61 #if !defined(__GNUWIN32__) || (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
62 #if !defined(__WXWINCE__)
71 #if defined(__OS2__) || defined(__DOS__)
81 extern bool wxIsDriveAvailable(const wxString
& dirName
);
84 #if defined(__WXMAC__)
85 # include "MoreFilesX.h"
92 // If compiled under Windows, this macro can cause problems
97 // ----------------------------------------------------------------------------
98 // wxGetAvailableDrives, for WINDOWS, DOS, OS2, MAC, UNIX (returns "/")
99 // ----------------------------------------------------------------------------
101 size_t wxGetAvailableDrives(wxArrayString
&paths
, wxArrayString
&names
, wxArrayInt
&icon_ids
)
103 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
106 // No logical drives; return "\"
107 paths
.Add(wxT("\\"));
108 names
.Add(wxT("\\"));
109 icon_ids
.Add(wxFileIconsTable::computer
);
110 #elif defined(__WIN32__)
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
]);
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'))
150 #elif defined(__OS2__)
152 ULONG ulDriveNum
= 0;
153 ULONG ulDriveMap
= 0;
154 rc
= ::DosQueryCurrentDisk(&ulDriveNum
, &ulDriveMap
);
160 if (ulDriveMap
& ( 1 << i
))
163 path
.Printf(wxT("%c:\\"), 'A' + i
);
164 name
.Printf(wxT("%c:"), 'A' + i
);
166 // Note: If _filesys is unsupported by some compilers,
167 // we can always replace it by DosQueryFSAttach
168 char filesysname
[20];
169 _filesys(name
.fn_str(), filesysname
, sizeof(filesysname
));
170 /* FAT, LAN, HPFS, CDFS, NFS */
172 if (path
== wxT("A:\\") || path
== wxT("B:\\"))
173 imageId
= wxFileIconsTable::floppy
;
174 else if (!strcmp(filesysname
, "CDFS"))
175 imageId
= wxFileIconsTable::cdrom
;
176 else if (!strcmp(filesysname
, "LAN") ||
177 !strcmp(filesysname
, "NFS"))
178 imageId
= wxFileIconsTable::drive
;
180 imageId
= wxFileIconsTable::drive
;
183 icon_ids
.Add(imageId
);
188 #else // !__WIN32__, !__OS2__
191 /* If we can switch to the drive, it exists. */
192 for( drive
= 1; drive
<= 26; drive
++ )
195 path
.Printf(wxT("%c:\\"), (char) (drive
+ 'a' - 1));
196 name
.Printf(wxT("%c:"), (char) (drive
+ 'A' - 1));
198 if (wxIsDriveAvailable(path
))
202 icon_ids
.Add((drive
<= 2) ? wxFileIconsTable::floppy
: wxFileIconsTable::drive
);
205 #endif // __WIN32__/!__WIN32__
207 #elif defined(__WXMAC__)
209 ItemCount volumeIndex
= 1;
212 while( noErr
== err
)
214 HFSUniStr255 volumeName
;
216 FSVolumeInfo volumeInfo
;
217 err
= FSGetVolumeInfo(0, volumeIndex
, NULL
, kFSVolInfoFlags
, &volumeInfo
, &volumeName
, &fsRef
);
220 wxString path
= wxMacFSRefToPath( &fsRef
) ;
221 wxString name
= wxMacHFSUniStrToString( &volumeName
) ;
223 if ( (volumeInfo
.flags
& kFSVolFlagSoftwareLockedMask
) || (volumeInfo
.flags
& kFSVolFlagHardwareLockedMask
) )
225 icon_ids
.Add(wxFileIconsTable::cdrom
);
229 icon_ids
.Add(wxFileIconsTable::drive
);
231 // todo other removable
239 #elif defined(__UNIX__)
242 icon_ids
.Add(wxFileIconsTable::computer
);
244 #error "Unsupported platform in wxGenericDirCtrl!"
246 wxASSERT_MSG( (paths
.GetCount() == names
.GetCount()), wxT("The number of paths and their human readable names should be equal in number."));
247 wxASSERT_MSG( (paths
.GetCount() == icon_ids
.GetCount()), wxT("Wrong number of icons for available drives."));
248 return paths
.GetCount();
251 // ----------------------------------------------------------------------------
252 // wxIsDriveAvailable
253 // ----------------------------------------------------------------------------
257 bool wxIsDriveAvailable(const wxString
& dirName
)
259 // FIXME_MGL - this method leads to hang up under Watcom for some reason
261 if ( dirName
.Len() == 3 && dirName
[1u] == wxT(':') )
263 wxString
dirNameLower(dirName
.Lower());
264 // VS: always return true for removable media, since Win95 doesn't
265 // like it when MS-DOS app accesses empty floppy drive
266 return (dirNameLower
[0u] == wxT('a') ||
267 dirNameLower
[0u] == wxT('b') ||
268 wxDirExists(dirNameLower
));
275 #elif defined(__WINDOWS__) || defined(__OS2__)
277 int setdrive(int WXUNUSED_IN_WINCE(drive
))
281 #elif defined(__GNUWIN32__) && \
282 (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
283 return _chdrive(drive
);
287 if (drive
< 1 || drive
> 31)
289 newdrive
[0] = (wxChar
)(wxT('A') + drive
- 1);
290 newdrive
[1] = wxT(':');
292 newdrive
[2] = wxT('\\');
293 newdrive
[3] = wxT('\0');
295 newdrive
[2] = wxT('\0');
297 #if defined(__WXMSW__)
298 if (::SetCurrentDirectory(newdrive
))
300 // VA doesn't know what LPSTR is and has its own set
301 if (!DosSetCurrentDir((PSZ
)newdrive
))
309 bool wxIsDriveAvailable(const wxString
& WXUNUSED_IN_WINCE(dirName
))
315 UINT errorMode
= SetErrorMode(SEM_FAILCRITICALERRORS
| SEM_NOOPENFILEERRORBOX
);
319 // Check if this is a root directory and if so,
320 // whether the drive is available.
321 if (dirName
.Len() == 3 && dirName
[(size_t)1] == wxT(':'))
323 wxString
dirNameLower(dirName
.Lower());
324 #if defined(__GNUWIN32__) && !(defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
325 success
= wxDirExists(dirNameLower
);
328 // Avoid changing to drive since no media may be inserted.
329 if (dirNameLower
[(size_t)0] == 'a' || dirNameLower
[(size_t)0] == 'b')
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
);
350 #endif // __WINDOWS__ || __OS2__
352 #endif // wxUSE_DIRDLG || wxUSE_FILEDLG
358 // Function which is called by quick sort. We want to override the default wxArrayString behaviour,
359 // and sort regardless of case.
360 static int wxCMPFUNC_CONV
wxDirCtrlStringCompareFunction(const wxString
& strFirst
, const wxString
& strSecond
)
362 return strFirst
.CmpNoCase(strSecond
);
365 //-----------------------------------------------------------------------------
367 //-----------------------------------------------------------------------------
369 wxDirItemData::wxDirItemData(const wxString
& path
, const wxString
& name
,
374 /* Insert logic to detect hidden files here
375 * In UnixLand we just check whether the first char is a dot
376 * For FileNameFromPath read LastDirNameInThisPath ;-) */
377 // m_isHidden = (bool)(wxFileNameFromPath(*m_path)[0] == '.');
379 m_isExpanded
= false;
383 void wxDirItemData::SetNewDirName(const wxString
& path
)
386 m_name
= wxFileNameFromPath(path
);
389 bool wxDirItemData::HasSubDirs() const
397 if ( !dir
.Open(m_path
) )
401 return dir
.HasSubDirs();
404 bool wxDirItemData::HasFiles(const wxString
& WXUNUSED(spec
)) const
412 if ( !dir
.Open(m_path
) )
416 return dir
.HasFiles();
419 //-----------------------------------------------------------------------------
421 //-----------------------------------------------------------------------------
424 #if wxUSE_EXTENDED_RTTI
425 WX_DEFINE_FLAGS( wxGenericDirCtrlStyle
)
427 wxBEGIN_FLAGS( wxGenericDirCtrlStyle
)
428 // new style border flags, we put them first to
429 // use them for streaming out
430 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
431 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
432 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
433 wxFLAGS_MEMBER(wxBORDER_RAISED
)
434 wxFLAGS_MEMBER(wxBORDER_STATIC
)
435 wxFLAGS_MEMBER(wxBORDER_NONE
)
437 // old style border flags
438 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
439 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
440 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
441 wxFLAGS_MEMBER(wxRAISED_BORDER
)
442 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
443 wxFLAGS_MEMBER(wxBORDER
)
445 // standard window styles
446 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
447 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
448 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
449 wxFLAGS_MEMBER(wxWANTS_CHARS
)
450 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
451 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
452 wxFLAGS_MEMBER(wxVSCROLL
)
453 wxFLAGS_MEMBER(wxHSCROLL
)
455 wxFLAGS_MEMBER(wxDIRCTRL_DIR_ONLY
)
456 wxFLAGS_MEMBER(wxDIRCTRL_3D_INTERNAL
)
457 wxFLAGS_MEMBER(wxDIRCTRL_SELECT_FIRST
)
458 wxFLAGS_MEMBER(wxDIRCTRL_SHOW_FILTERS
)
460 wxEND_FLAGS( wxGenericDirCtrlStyle
)
462 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGenericDirCtrl
, wxControl
,"wx/dirctrl.h")
464 wxBEGIN_PROPERTIES_TABLE(wxGenericDirCtrl
)
465 wxHIDE_PROPERTY( Children
)
466 wxPROPERTY( DefaultPath
, wxString
, SetDefaultPath
, GetDefaultPath
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
467 wxPROPERTY( Filter
, wxString
, SetFilter
, GetFilter
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
468 wxPROPERTY( DefaultFilter
, int , SetFilterIndex
, GetFilterIndex
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
469 wxPROPERTY_FLAGS( WindowStyle
, wxGenericDirCtrlStyle
, long, SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0, wxT("Helpstring"), wxT("group") )
470 wxEND_PROPERTIES_TABLE()
472 wxBEGIN_HANDLERS_TABLE(wxGenericDirCtrl
)
473 wxEND_HANDLERS_TABLE()
475 wxCONSTRUCTOR_8( wxGenericDirCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, DefaultPath
,
476 wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
, wxString
, Filter
, int , DefaultFilter
)
478 IMPLEMENT_DYNAMIC_CLASS(wxGenericDirCtrl
, wxControl
)
481 BEGIN_EVENT_TABLE(wxGenericDirCtrl
, wxControl
)
482 EVT_TREE_ITEM_EXPANDING (wxID_TREECTRL
, wxGenericDirCtrl::OnExpandItem
)
483 EVT_TREE_ITEM_COLLAPSED (wxID_TREECTRL
, wxGenericDirCtrl::OnCollapseItem
)
484 EVT_TREE_BEGIN_LABEL_EDIT (wxID_TREECTRL
, wxGenericDirCtrl::OnBeginEditItem
)
485 EVT_TREE_END_LABEL_EDIT (wxID_TREECTRL
, wxGenericDirCtrl::OnEndEditItem
)
486 EVT_SIZE (wxGenericDirCtrl::OnSize
)
489 wxGenericDirCtrl::wxGenericDirCtrl(void)
494 void wxGenericDirCtrl::ExpandRoot()
496 ExpandDir(m_rootId
); // automatically expand first level
498 // Expand and select the default path
499 if (!m_defaultPath
.empty())
501 ExpandPath(m_defaultPath
);
506 // On Unix, there's only one node under the (hidden) root node. It
507 // represents the / path, so the user would always have to expand it;
508 // let's do it ourselves
509 ExpandPath( wxT("/") );
514 bool wxGenericDirCtrl::Create(wxWindow
*parent
,
520 const wxString
& filter
,
522 const wxString
& name
)
524 if (!wxControl::Create(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
527 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
531 long treeStyle
= wxTR_HAS_BUTTONS
;
533 // On Windows CE, if you hide the root, you get a crash when
534 // attempting to access data for children of the root item.
536 treeStyle
|= wxTR_HIDE_ROOT
;
540 treeStyle
|= wxTR_NO_LINES
;
543 if (style
& wxDIRCTRL_EDIT_LABELS
)
544 treeStyle
|= wxTR_EDIT_LABELS
;
546 if ((style
& wxDIRCTRL_3D_INTERNAL
) == 0)
547 treeStyle
|= wxNO_BORDER
;
549 treeStyle
|= wxBORDER_SUNKEN
;
551 long filterStyle
= 0;
552 if ((style
& wxDIRCTRL_3D_INTERNAL
) == 0)
553 filterStyle
|= wxNO_BORDER
;
555 filterStyle
|= wxBORDER_SUNKEN
;
557 m_treeCtrl
= CreateTreeCtrl(this, wxID_TREECTRL
,
558 wxPoint(0,0), GetClientSize(), treeStyle
);
560 if (!filter
.empty() && (style
& wxDIRCTRL_SHOW_FILTERS
))
561 m_filterListCtrl
= new wxDirFilterListCtrl(this, wxID_FILTERLISTCTRL
, wxDefaultPosition
, wxDefaultSize
, filterStyle
);
566 if (m_filter
.empty())
570 m_filter
= wxT("*.*");
573 SetFilterIndex(defaultFilter
);
575 if (m_filterListCtrl
)
576 m_filterListCtrl
->FillFilterList(filter
, defaultFilter
);
578 m_treeCtrl
->SetImageList(wxTheFileIconsTable
->GetSmallImageList());
580 m_showHidden
= false;
581 wxDirItemData
* rootData
= new wxDirItemData(wxEmptyString
, wxEmptyString
, true);
585 #if defined(__WINDOWS__) || defined(__OS2__) || defined(__DOS__)
586 rootName
= _("Computer");
588 rootName
= _("Sections");
591 m_rootId
= m_treeCtrl
->AddRoot( rootName
, 3, -1, rootData
);
592 m_treeCtrl
->SetItemHasChildren(m_rootId
);
602 wxGenericDirCtrl::~wxGenericDirCtrl()
606 void wxGenericDirCtrl::Init()
608 m_showHidden
= false;
610 m_currentFilterStr
= wxEmptyString
; // Default: any file
612 m_filterListCtrl
= NULL
;
615 wxTreeCtrl
* wxGenericDirCtrl::CreateTreeCtrl(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
, long treeStyle
)
617 return new wxTreeCtrl(parent
, id
, pos
, size
, treeStyle
);
620 void wxGenericDirCtrl::ShowHidden( bool show
)
624 wxString path
= GetPath();
630 wxGenericDirCtrl::AddSection(const wxString
& path
, const wxString
& name
, int imageId
)
632 wxDirItemData
*dir_item
= new wxDirItemData(path
,name
,true);
634 wxTreeItemId id
= AppendItem( m_rootId
, name
, imageId
, -1, dir_item
);
636 m_treeCtrl
->SetItemHasChildren(id
);
641 void wxGenericDirCtrl::SetupSections()
643 wxArrayString paths
, names
;
646 size_t n
, count
= wxGetAvailableDrives(paths
, names
, icons
);
649 wxString home
= wxGetHomeDir();
650 AddSection( home
, _("Home directory"), 1);
651 home
+= wxT("/Desktop");
652 AddSection( home
, _("Desktop"), 1);
655 for (n
= 0; n
< count
; n
++)
656 AddSection(paths
[n
], names
[n
], icons
[n
]);
659 void wxGenericDirCtrl::OnBeginEditItem(wxTreeEvent
&event
)
661 // don't rename the main entry "Sections"
662 if (event
.GetItem() == m_rootId
)
668 // don't rename the individual sections
669 if (m_treeCtrl
->GetItemParent( event
.GetItem() ) == m_rootId
)
676 void wxGenericDirCtrl::OnEndEditItem(wxTreeEvent
&event
)
678 if ((event
.GetLabel().empty()) ||
679 (event
.GetLabel() == _(".")) ||
680 (event
.GetLabel() == _("..")) ||
681 (event
.GetLabel().Find(wxT('/')) != wxNOT_FOUND
) ||
682 (event
.GetLabel().Find(wxT('\\')) != wxNOT_FOUND
) ||
683 (event
.GetLabel().Find(wxT('|')) != wxNOT_FOUND
))
685 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
691 wxTreeItemId id
= event
.GetItem();
692 wxDirItemData
*data
= (wxDirItemData
*)m_treeCtrl
->GetItemData( id
);
695 wxString
new_name( wxPathOnly( data
->m_path
) );
696 new_name
+= wxString(wxFILE_SEP_PATH
);
697 new_name
+= event
.GetLabel();
701 if (wxFileExists(new_name
))
703 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
708 if (wxRenameFile(data
->m_path
,new_name
))
710 data
->SetNewDirName( new_name
);
714 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
720 void wxGenericDirCtrl::OnExpandItem(wxTreeEvent
&event
)
722 wxTreeItemId parentId
= event
.GetItem();
724 // VS: this is needed because the event handler is called from wxTreeCtrl
725 // ctor when wxTR_HIDE_ROOT was specified
727 if (!m_rootId
.IsOk())
729 m_rootId
= m_treeCtrl
->GetRootItem();
734 void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent
&event
)
736 CollapseDir(event
.GetItem());
739 void wxGenericDirCtrl::CollapseDir(wxTreeItemId parentId
)
743 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(parentId
);
744 if (!data
->m_isExpanded
)
747 data
->m_isExpanded
= false;
748 wxTreeItemIdValue cookie
;
749 /* Workaround because DeleteChildren has disapeared (why?) and
750 * CollapseAndReset doesn't work as advertised (deletes parent too) */
751 child
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
754 m_treeCtrl
->Delete(child
);
755 /* Not GetNextChild below, because the cookie mechanism can't
756 * handle disappearing children! */
757 child
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
759 if (parentId
!= m_treeCtrl
->GetRootItem())
760 m_treeCtrl
->Collapse(parentId
);
763 void wxGenericDirCtrl::ExpandDir(wxTreeItemId parentId
)
765 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(parentId
);
767 if (data
->m_isExpanded
)
770 data
->m_isExpanded
= true;
772 if (parentId
== m_treeCtrl
->GetRootItem())
780 wxString search
,path
,filename
;
782 wxString
dirName(data
->m_path
);
784 #if (defined(__WINDOWS__) && !defined(__WXWINCE__)) || defined(__DOS__) || defined(__OS2__)
785 // Check if this is a root directory and if so,
786 // whether the drive is avaiable.
787 if (!wxIsDriveAvailable(dirName
))
789 data
->m_isExpanded
= false;
790 //wxMessageBox(wxT("Sorry, this drive is not available."));
795 // This may take a longish time. Go to busy cursor
798 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
799 if (dirName
.Last() == ':')
800 dirName
+= wxString(wxFILE_SEP_PATH
);
804 wxArrayString filenames
;
807 wxString eachFilename
;
814 int style
= wxDIR_DIRS
;
815 if (m_showHidden
) style
|= wxDIR_HIDDEN
;
816 if (d
.GetFirst(& eachFilename
, wxEmptyString
, style
))
820 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
822 dirs
.Add(eachFilename
);
825 while (d
.GetNext(&eachFilename
));
828 dirs
.Sort(wxDirCtrlStringCompareFunction
);
830 // Now do the filenames -- but only if we're allowed to
831 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0)
839 int style
= wxDIR_FILES
;
840 if (m_showHidden
) style
|= wxDIR_HIDDEN
;
841 // Process each filter (ex: "JPEG Files (*.jpg;*.jpeg)|*.jpg;*.jpeg")
842 wxStringTokenizer strTok
;
844 strTok
.SetString(m_currentFilterStr
,wxT(";"));
845 while(strTok
.HasMoreTokens())
847 curFilter
= strTok
.GetNextToken();
848 if (d
.GetFirst(& eachFilename
, curFilter
, style
))
852 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
854 filenames
.Add(eachFilename
);
857 while (d
.GetNext(& eachFilename
));
861 filenames
.Sort(wxDirCtrlStringCompareFunction
);
864 // Add the sorted dirs
866 for (i
= 0; i
< dirs
.Count(); i
++)
868 wxString
eachFilename(dirs
[i
]);
870 if (!wxEndsWithPathSeparator(path
))
871 path
+= wxString(wxFILE_SEP_PATH
);
872 path
+= eachFilename
;
874 wxDirItemData
*dir_item
= new wxDirItemData(path
,eachFilename
,true);
875 wxTreeItemId id
= AppendItem( parentId
, eachFilename
,
876 wxFileIconsTable::folder
, -1, dir_item
);
877 m_treeCtrl
->SetItemImage( id
, wxFileIconsTable::folder_open
,
878 wxTreeItemIcon_Expanded
);
880 // Has this got any children? If so, make it expandable.
881 // (There are two situations when a dir has children: either it
882 // has subdirectories or it contains files that weren't filtered
883 // out. The latter only applies to dirctrl with files.)
884 if ( dir_item
->HasSubDirs() ||
885 (((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0) &&
886 dir_item
->HasFiles(m_currentFilterStr
)) )
888 m_treeCtrl
->SetItemHasChildren(id
);
892 // Add the sorted filenames
893 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0)
895 for (i
= 0; i
< filenames
.Count(); i
++)
897 wxString
eachFilename(filenames
[i
]);
899 if (!wxEndsWithPathSeparator(path
))
900 path
+= wxString(wxFILE_SEP_PATH
);
901 path
+= eachFilename
;
902 //path = dirName + wxString(wxT("/")) + eachFilename;
903 wxDirItemData
*dir_item
= new wxDirItemData(path
,eachFilename
,false);
904 int image_id
= wxFileIconsTable::file
;
905 if (eachFilename
.Find(wxT('.')) != wxNOT_FOUND
)
906 image_id
= wxTheFileIconsTable
->GetIconID(eachFilename
.AfterLast(wxT('.')));
907 (void) AppendItem( parentId
, eachFilename
, image_id
, -1, dir_item
);
912 void wxGenericDirCtrl::ReCreateTree()
914 CollapseDir(m_treeCtrl
->GetRootItem());
918 void wxGenericDirCtrl::CollapseTree()
920 wxTreeItemIdValue cookie
;
921 wxTreeItemId child
= m_treeCtrl
->GetFirstChild(m_rootId
, cookie
);
925 child
= m_treeCtrl
->GetNextChild(m_rootId
, cookie
);
929 // Find the child that matches the first part of 'path'.
930 // E.g. if a child path is "/usr" and 'path' is "/usr/include"
931 // then the child for /usr is returned.
932 wxTreeItemId
wxGenericDirCtrl::FindChild(wxTreeItemId parentId
, const wxString
& path
, bool& done
)
934 wxString
path2(path
);
936 // Make sure all separators are as per the current platform
937 path2
.Replace(wxT("\\"), wxString(wxFILE_SEP_PATH
));
938 path2
.Replace(wxT("/"), wxString(wxFILE_SEP_PATH
));
940 // Append a separator to foil bogus substring matching
941 path2
+= wxString(wxFILE_SEP_PATH
);
943 // In MSW or PM, case is not significant
944 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
948 wxTreeItemIdValue cookie
;
949 wxTreeItemId childId
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
950 while (childId
.IsOk())
952 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(childId
);
954 if (data
&& !data
->m_path
.empty())
956 wxString
childPath(data
->m_path
);
957 if (!wxEndsWithPathSeparator(childPath
))
958 childPath
+= wxString(wxFILE_SEP_PATH
);
960 // In MSW and PM, case is not significant
961 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
962 childPath
.MakeLower();
965 if (childPath
.Len() <= path2
.Len())
967 wxString path3
= path2
.Mid(0, childPath
.Len());
968 if (childPath
== path3
)
970 if (path3
.Len() == path2
.Len())
979 childId
= m_treeCtrl
->GetNextChild(parentId
, cookie
);
981 wxTreeItemId invalid
;
985 // Try to expand as much of the given path as possible,
986 // and select the given tree item.
987 bool wxGenericDirCtrl::ExpandPath(const wxString
& path
)
990 wxTreeItemId id
= FindChild(m_rootId
, path
, done
);
991 wxTreeItemId lastId
= id
; // The last non-zero id
992 while (id
.IsOk() && !done
)
996 id
= FindChild(id
, path
, done
);
1002 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(lastId
);
1005 m_treeCtrl
->Expand(lastId
);
1007 if ((GetWindowStyle() & wxDIRCTRL_SELECT_FIRST
) && data
->m_isDir
)
1009 // Find the first file in this directory
1010 wxTreeItemIdValue cookie
;
1011 wxTreeItemId childId
= m_treeCtrl
->GetFirstChild(lastId
, cookie
);
1012 bool selectedChild
= false;
1013 while (childId
.IsOk())
1015 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(childId
);
1017 if (data
&& data
->m_path
!= wxEmptyString
&& !data
->m_isDir
)
1019 m_treeCtrl
->SelectItem(childId
);
1020 m_treeCtrl
->EnsureVisible(childId
);
1021 selectedChild
= true;
1024 childId
= m_treeCtrl
->GetNextChild(lastId
, cookie
);
1028 m_treeCtrl
->SelectItem(lastId
);
1029 m_treeCtrl
->EnsureVisible(lastId
);
1034 m_treeCtrl
->SelectItem(lastId
);
1035 m_treeCtrl
->EnsureVisible(lastId
);
1044 wxString
wxGenericDirCtrl::GetPath() const
1046 wxTreeItemId id
= m_treeCtrl
->GetSelection();
1049 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
1050 return data
->m_path
;
1053 return wxEmptyString
;
1056 wxString
wxGenericDirCtrl::GetFilePath() const
1058 wxTreeItemId id
= m_treeCtrl
->GetSelection();
1061 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
1063 return wxEmptyString
;
1065 return data
->m_path
;
1068 return wxEmptyString
;
1071 void wxGenericDirCtrl::SetPath(const wxString
& path
)
1073 m_defaultPath
= path
;
1080 void wxGenericDirCtrl::FindChildFiles(wxTreeItemId id
, int dirFlags
, wxArrayString
& filenames
)
1082 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
1084 // This may take a longish time. Go to busy cursor
1089 wxString search
,path
,filename
;
1091 wxString
dirName(data
->m_path
);
1093 #if defined(__WXMSW__) || defined(__OS2__)
1094 if (dirName
.Last() == ':')
1095 dirName
+= wxString(wxFILE_SEP_PATH
);
1099 wxString eachFilename
;
1106 if (d
.GetFirst(& eachFilename
, m_currentFilterStr
, dirFlags
))
1110 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
1112 filenames
.Add(eachFilename
);
1115 while (d
.GetNext(& eachFilename
)) ;
1121 void wxGenericDirCtrl::SetFilterIndex(int n
)
1123 m_currentFilter
= n
;
1126 if (ExtractWildcard(m_filter
, n
, f
, d
))
1127 m_currentFilterStr
= f
;
1130 m_currentFilterStr
= wxT("*");
1132 m_currentFilterStr
= wxT("*.*");
1136 void wxGenericDirCtrl::SetFilter(const wxString
& filter
)
1141 if (ExtractWildcard(m_filter
, m_currentFilter
, f
, d
))
1142 m_currentFilterStr
= f
;
1145 m_currentFilterStr
= wxT("*");
1147 m_currentFilterStr
= wxT("*.*");
1151 // Extract description and actual filter from overall filter string
1152 bool wxGenericDirCtrl::ExtractWildcard(const wxString
& filterStr
, int n
, wxString
& filter
, wxString
& description
)
1154 wxArrayString filters
, descriptions
;
1155 int count
= wxParseCommonDialogsFilter(filterStr
, descriptions
, filters
);
1156 if (count
> 0 && n
< count
)
1158 filter
= filters
[n
];
1159 description
= descriptions
[n
];
1166 #if WXWIN_COMPATIBILITY_2_4
1167 // Parses the global filter, returning the number of filters.
1168 // Returns 0 if none or if there's a problem.
1169 // filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpg"
1170 int wxGenericDirCtrl::ParseFilter(const wxString
& filterStr
, wxArrayString
& filters
, wxArrayString
& descriptions
)
1172 return wxParseCommonDialogsFilter(filterStr
, descriptions
, filters
);
1174 #endif // WXWIN_COMPATIBILITY_2_4
1176 void wxGenericDirCtrl::DoResize()
1178 wxSize sz
= GetClientSize();
1179 int verticalSpacing
= 3;
1183 if (m_filterListCtrl
)
1186 // For some reason, this is required in order for the
1187 // correct control height to always be returned, rather
1188 // than the drop-down list height which is sometimes returned.
1189 wxSize oldSize
= m_filterListCtrl
->GetSize();
1190 m_filterListCtrl
->SetSize(wxDefaultCoord
,
1194 wxSIZE_USE_EXISTING
);
1195 m_filterListCtrl
->SetSize(wxDefaultCoord
,
1199 wxSIZE_USE_EXISTING
);
1201 filterSz
= m_filterListCtrl
->GetSize();
1202 sz
.y
-= (filterSz
.y
+ verticalSpacing
);
1204 m_treeCtrl
->SetSize(0, 0, sz
.x
, sz
.y
);
1205 if (m_filterListCtrl
)
1207 m_filterListCtrl
->SetSize(0, sz
.y
+ verticalSpacing
, sz
.x
, filterSz
.y
);
1208 // Don't know why, but this needs refreshing after a resize (wxMSW)
1209 m_filterListCtrl
->Refresh();
1215 void wxGenericDirCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
1220 wxTreeItemId
wxGenericDirCtrl::AppendItem (const wxTreeItemId
& parent
,
1221 const wxString
& text
,
1222 int image
, int selectedImage
,
1223 wxTreeItemData
* data
)
1225 wxTreeCtrl
*treeCtrl
= GetTreeCtrl ();
1227 wxASSERT (treeCtrl
);
1231 return treeCtrl
->AppendItem (parent
, text
, image
, selectedImage
, data
);
1235 return wxTreeItemId();
1240 //-----------------------------------------------------------------------------
1241 // wxDirFilterListCtrl
1242 //-----------------------------------------------------------------------------
1244 IMPLEMENT_CLASS(wxDirFilterListCtrl
, wxChoice
)
1246 BEGIN_EVENT_TABLE(wxDirFilterListCtrl
, wxChoice
)
1247 EVT_CHOICE(wxID_ANY
, wxDirFilterListCtrl::OnSelFilter
)
1250 bool wxDirFilterListCtrl::Create(wxGenericDirCtrl
* parent
, const wxWindowID id
,
1256 return wxChoice::Create(parent
, id
, pos
, size
, 0, NULL
, style
);
1259 void wxDirFilterListCtrl::Init()
1264 void wxDirFilterListCtrl::OnSelFilter(wxCommandEvent
& WXUNUSED(event
))
1266 int sel
= GetSelection();
1268 wxString currentPath
= m_dirCtrl
->GetPath();
1270 m_dirCtrl
->SetFilterIndex(sel
);
1272 // If the filter has changed, the view is out of date, so
1273 // collapse the tree.
1274 m_dirCtrl
->ReCreateTree();
1276 // Try to restore the selection, or at least the directory
1277 m_dirCtrl
->ExpandPath(currentPath
);
1280 void wxDirFilterListCtrl::FillFilterList(const wxString
& filter
, int defaultFilter
)
1283 wxArrayString descriptions
, filters
;
1284 size_t n
= (size_t) wxParseCommonDialogsFilter(filter
, descriptions
, filters
);
1286 if (n
> 0 && defaultFilter
< (int) n
)
1288 for (size_t i
= 0; i
< n
; i
++)
1289 Append(descriptions
[i
]);
1290 SetSelection(defaultFilter
);
1293 #endif // wxUSE_DIRDLG
1295 #if wxUSE_DIRDLG || wxUSE_FILEDLG
1297 // ----------------------------------------------------------------------------
1298 // wxFileIconsTable icons
1299 // ----------------------------------------------------------------------------
1302 /* Computer (c) Julian Smart */
1303 static const char * file_icons_tbl_computer_xpm
[] = {
1304 /* columns rows colors chars-per-pixel */
1366 #endif // GTK+ < 2.4
1368 // ----------------------------------------------------------------------------
1369 // wxFileIconsTable & friends
1370 // ----------------------------------------------------------------------------
1372 // global instance of a wxFileIconsTable
1373 wxFileIconsTable
* wxTheFileIconsTable
= (wxFileIconsTable
*)NULL
;
1375 // A module to allow icons table cleanup
1377 class wxFileIconsTableModule
: public wxModule
1379 DECLARE_DYNAMIC_CLASS(wxFileIconsTableModule
)
1381 wxFileIconsTableModule() {}
1382 bool OnInit() { wxTheFileIconsTable
= new wxFileIconsTable
; return true; }
1385 if (wxTheFileIconsTable
)
1387 delete wxTheFileIconsTable
;
1388 wxTheFileIconsTable
= NULL
;
1393 IMPLEMENT_DYNAMIC_CLASS(wxFileIconsTableModule
, wxModule
)
1395 class wxFileIconEntry
: public wxObject
1398 wxFileIconEntry(int i
) { id
= i
; }
1403 wxFileIconsTable::wxFileIconsTable()
1406 m_smallImageList
= NULL
;
1409 wxFileIconsTable::~wxFileIconsTable()
1413 WX_CLEAR_HASH_TABLE(*m_HashTable
);
1416 if (m_smallImageList
) delete m_smallImageList
;
1419 // delayed initialization - wait until first use (wxArtProv not created yet)
1420 void wxFileIconsTable::Create()
1422 wxCHECK_RET(!m_smallImageList
&& !m_HashTable
, wxT("creating icons twice"));
1423 m_HashTable
= new wxHashTable(wxKEY_STRING
);
1424 m_smallImageList
= new wxImageList(16, 16);
1427 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_FOLDER
,
1431 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_FOLDER_OPEN
,
1436 // GTK24 uses this icon in the file open dialog
1437 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_HARDDISK
,
1441 m_smallImageList
->Add(wxIcon(file_icons_tbl_computer_xpm
));
1444 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_HARDDISK
,
1448 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_CDROM
,
1452 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_FLOPPY
,
1456 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_REMOVABLE
,
1460 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_NORMAL_FILE
,
1464 if (GetIconID(wxEmptyString
, _T("application/x-executable")) == file
)
1466 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_EXECUTABLE_FILE
,
1469 delete m_HashTable
->Get(_T("exe"));
1470 m_HashTable
->Delete(_T("exe"));
1471 m_HashTable
->Put(_T("exe"), new wxFileIconEntry(executable
));
1473 /* else put into list by GetIconID
1474 (KDE defines application/x-executable for *.exe and has nice icon)
1478 wxImageList
*wxFileIconsTable::GetSmallImageList()
1480 if (!m_smallImageList
)
1483 return m_smallImageList
;
1486 #if wxUSE_MIMETYPE && wxUSE_IMAGE
1487 // VS: we don't need this function w/o wxMimeTypesManager because we'll only have
1488 // one icon and we won't resize it
1490 static wxBitmap
CreateAntialiasedBitmap(const wxImage
& img
)
1492 const unsigned int size
= 16;
1494 wxImage
smallimg (size
, size
);
1495 unsigned char *p1
, *p2
, *ps
;
1496 unsigned char mr
= img
.GetMaskRed(),
1497 mg
= img
.GetMaskGreen(),
1498 mb
= img
.GetMaskBlue();
1501 unsigned sr
, sg
, sb
, smask
;
1503 p1
= img
.GetData(), p2
= img
.GetData() + 3 * size
*2, ps
= smallimg
.GetData();
1504 smallimg
.SetMaskColour(mr
, mr
, mr
);
1506 for (y
= 0; y
< size
; y
++)
1508 for (x
= 0; x
< size
; x
++)
1510 sr
= sg
= sb
= smask
= 0;
1511 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
1512 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
1515 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
1516 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
1519 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
1520 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
1523 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
1524 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
1529 ps
[0] = ps
[1] = ps
[2] = mr
;
1532 ps
[0] = (unsigned char)(sr
>> 2);
1533 ps
[1] = (unsigned char)(sg
>> 2);
1534 ps
[2] = (unsigned char)(sb
>> 2);
1538 p1
+= size
*2 * 3, p2
+= size
*2 * 3;
1541 return wxBitmap(smallimg
);
1544 // This function is currently not unused anymore
1546 // finds empty borders and return non-empty area of image:
1547 static wxImage
CutEmptyBorders(const wxImage
& img
)
1549 unsigned char mr
= img
.GetMaskRed(),
1550 mg
= img
.GetMaskGreen(),
1551 mb
= img
.GetMaskBlue();
1552 unsigned char *dt
= img
.GetData(), *dttmp
;
1553 unsigned w
= img
.GetWidth(), h
= img
.GetHeight();
1555 unsigned top
, bottom
, left
, right
, i
;
1558 #define MK_DTTMP(x,y) dttmp = dt + ((x + y * w) * 3)
1559 #define NOEMPTY_PIX(empt) if (dttmp[0] != mr || dttmp[1] != mg || dttmp[2] != mb) {empt = false; break;}
1561 for (empt
= true, top
= 0; empt
&& top
< h
; top
++)
1564 for (i
= 0; i
< w
; i
++, dttmp
+=3)
1567 for (empt
= true, bottom
= h
-1; empt
&& bottom
> top
; bottom
--)
1569 MK_DTTMP(0, bottom
);
1570 for (i
= 0; i
< w
; i
++, dttmp
+=3)
1573 for (empt
= true, left
= 0; empt
&& left
< w
; left
++)
1576 for (i
= 0; i
< h
; i
++, dttmp
+=3*w
)
1579 for (empt
= true, right
= w
-1; empt
&& right
> left
; right
--)
1582 for (i
= 0; i
< h
; i
++, dttmp
+=3*w
)
1585 top
--, left
--, bottom
++, right
++;
1587 return img
.GetSubImage(wxRect(left
, top
, right
- left
+ 1, bottom
- top
+ 1));
1591 #endif // wxUSE_MIMETYPE
1593 int wxFileIconsTable::GetIconID(const wxString
& extension
, const wxString
& mime
)
1595 if (!m_smallImageList
)
1599 if (!extension
.empty())
1601 wxFileIconEntry
*entry
= (wxFileIconEntry
*) m_HashTable
->Get(extension
);
1602 if (entry
) return (entry
-> id
);
1605 wxFileType
*ft
= (mime
.empty()) ?
1606 wxTheMimeTypesManager
-> GetFileTypeFromExtension(extension
) :
1607 wxTheMimeTypesManager
-> GetFileTypeFromMimeType(mime
);
1609 wxIconLocation iconLoc
;
1614 if ( ft
&& ft
->GetIcon(&iconLoc
) )
1616 ic
= wxIcon( iconLoc
);
1625 m_HashTable
->Put(extension
, new wxFileIconEntry(newid
));
1630 bmp
.CopyFromIcon(ic
);
1635 m_HashTable
->Put(extension
, new wxFileIconEntry(newid
));
1639 const unsigned int size
= 16;
1641 int id
= m_smallImageList
->GetImageCount();
1642 if ((bmp
.GetWidth() == (int) size
) && (bmp
.GetHeight() == (int) size
))
1644 m_smallImageList
->Add(bmp
);
1649 wxImage img
= bmp
.ConvertToImage();
1651 if ((img
.GetWidth() != size
*2) || (img
.GetHeight() != size
*2))
1652 // m_smallImageList->Add(CreateAntialiasedBitmap(CutEmptyBorders(img).Rescale(size*2, size*2)));
1653 m_smallImageList
->Add(CreateAntialiasedBitmap(img
.Rescale(size
*2, size
*2)));
1655 m_smallImageList
->Add(CreateAntialiasedBitmap(img
));
1657 #endif // wxUSE_IMAGE
1659 m_HashTable
->Put(extension
, new wxFileIconEntry(id
));
1662 #else // !wxUSE_MIMETYPE
1665 if (extension
== wxT("exe"))
1669 #endif // wxUSE_MIMETYPE/!wxUSE_MIMETYPE
1672 #endif // wxUSE_DIRDLG || wxUSE_FILEDLG