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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "dirctrlg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #if wxUSE_DIRDLG || wxUSE_FILEDLG
25 #include "wx/generic/dirctrlg.h"
26 #include "wx/module.h"
28 #include "wx/button.h"
29 #include "wx/layout.h"
30 #include "wx/msgdlg.h"
31 #include "wx/textctrl.h"
32 #include "wx/textdlg.h"
33 #include "wx/filefn.h"
34 #include "wx/cmndata.h"
35 #include "wx/gdicmn.h"
37 #include "wx/imaglist.h"
41 #include "wx/tokenzr.h"
43 #include "wx/settings.h"
44 #include "wx/artprov.h"
46 #include "wx/mimetype.h"
48 #include "wx/choice.h"
51 #include "wx/statline.h"
54 #if defined(__WXMAC__)
55 #include "wx/mac/private.h" // includes mac headers
61 // FIXME - Mingw32 1.0 has both _getdrive() and _chdrive(). For now, let's assume
62 // older releases don't, but it should be verified and the checks modified
64 #if !defined(__GNUWIN32__) || (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
65 #if !defined(__WXWINCE__)
74 #if defined(__OS2__) || defined(__DOS__)
84 extern bool wxIsDriveAvailable(const wxString
& dirName
);
87 #if defined(__WXMAC__)
88 # include "MoreFilesX.h"
95 // If compiled under Windows, this macro can cause problems
100 // ----------------------------------------------------------------------------
101 // wxGetAvailableDrives, for WINDOWS, DOS, OS2, MAC, UNIX (returns "/")
102 // ----------------------------------------------------------------------------
104 size_t wxGetAvailableDrives(wxArrayString
&paths
, wxArrayString
&names
, wxArrayInt
&icon_ids
)
106 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
109 // No logical drives; return "\"
110 paths
.Add(wxT("\\"));
111 names
.Add(wxT("\\"));
112 icon_ids
.Add(wxFileIconsTable::computer
);
113 #elif defined(__WIN32__)
114 wxChar driveBuffer
[256];
115 size_t n
= (size_t) GetLogicalDriveStrings(255, driveBuffer
);
120 path
.Printf(wxT("%c:\\"), driveBuffer
[i
]);
121 name
.Printf(wxT("%c:"), driveBuffer
[i
]);
124 int driveType
= ::GetDriveType(path
);
127 case DRIVE_REMOVABLE
:
128 if (path
== wxT("a:\\") || path
== wxT("b:\\"))
129 imageId
= wxFileIconsTable::floppy
;
131 imageId
= wxFileIconsTable::removeable
;
134 imageId
= wxFileIconsTable::cdrom
;
139 imageId
= wxFileIconsTable::drive
;
145 icon_ids
.Add(imageId
);
147 while (driveBuffer
[i
] != wxT('\0'))
150 if (driveBuffer
[i
] == wxT('\0'))
153 #elif defined(__OS2__)
155 ULONG ulDriveNum
= 0;
156 ULONG ulDriveMap
= 0;
157 rc
= ::DosQueryCurrentDisk(&ulDriveNum
, &ulDriveMap
);
163 if (ulDriveMap
& ( 1 << i
))
166 path
.Printf(wxT("%c:\\"), 'A' + i
);
167 name
.Printf(wxT("%c:"), 'A' + i
);
170 if (path
== wxT("A:\\") || path
== wxT("B:\\"))
171 imageId
= wxFileIconsTable::floppy
;
173 imageId
= wxFileIconsTable::drive
;
176 icon_ids
.Add(imageId
);
181 #else // !__WIN32__, !__OS2__
184 /* If we can switch to the drive, it exists. */
185 for( drive
= 1; drive
<= 26; drive
++ )
188 path
.Printf(wxT("%c:\\"), (char) (drive
+ 'a' - 1));
189 name
.Printf(wxT("%c:"), (char) (drive
+ 'A' - 1));
191 if (wxIsDriveAvailable(path
))
195 icon_ids
.Add((drive
<= 2) ? wxFileIconsTable::floppy
: wxFileIconsTable::drive
);
198 #endif // __WIN32__/!__WIN32__
200 #elif defined(__WXMAC__)
202 ItemCount volumeIndex
= 1;
205 while( noErr
== err
)
207 HFSUniStr255 volumeName
;
209 FSVolumeInfo volumeInfo
;
210 err
= FSGetVolumeInfo(0, volumeIndex
, NULL
, kFSVolInfoFlags
, &volumeInfo
, &volumeName
, &fsRef
);
213 wxString path
= wxMacFSRefToPath( &fsRef
) ;
214 wxString name
= wxMacHFSUniStrToString( &volumeName
) ;
216 if ( (volumeInfo
.flags
& kFSVolFlagSoftwareLockedMask
) || (volumeInfo
.flags
& kFSVolFlagHardwareLockedMask
) )
218 icon_ids
.Add(wxFileIconsTable::cdrom
);
222 icon_ids
.Add(wxFileIconsTable::drive
);
224 // todo other removable
232 #elif defined(__UNIX__)
235 icon_ids
.Add(wxFileIconsTable::computer
);
237 #error "Unsupported platform in wxGenericDirCtrl!"
239 wxASSERT_MSG( (paths
.GetCount() == names
.GetCount()), wxT("The number of paths and their human readable names should be equal in number."));
240 wxASSERT_MSG( (paths
.GetCount() == icon_ids
.GetCount()), wxT("Wrong number of icons for available drives."));
241 return paths
.GetCount();
244 // ----------------------------------------------------------------------------
245 // wxIsDriveAvailable
246 // ----------------------------------------------------------------------------
250 bool wxIsDriveAvailable(const wxString
& dirName
)
252 // FIXME_MGL - this method leads to hang up under Watcom for some reason
254 if ( dirName
.Len() == 3 && dirName
[1u] == wxT(':') )
256 wxString
dirNameLower(dirName
.Lower());
257 // VS: always return true for removable media, since Win95 doesn't
258 // like it when MS-DOS app accesses empty floppy drive
259 return (dirNameLower
[0u] == wxT('a') ||
260 dirNameLower
[0u] == wxT('b') ||
261 wxPathExists(dirNameLower
));
268 #elif defined(__WINDOWS__) || defined(__OS2__)
270 int setdrive(int drive
)
275 #elif defined(__GNUWIN32__) && \
276 (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
277 return _chdrive(drive
);
281 if (drive
< 1 || drive
> 31)
283 newdrive
[0] = (wxChar
)(wxT('A') + drive
- 1);
284 newdrive
[1] = wxT(':');
286 newdrive
[2] = wxT('\\');
287 newdrive
[3] = wxT('\0');
289 newdrive
[2] = wxT('\0');
291 #if defined(__WXMSW__)
292 if (::SetCurrentDirectory(newdrive
))
294 // VA doesn't know what LPSTR is and has its own set
295 if (!DosSetCurrentDir((PSZ
)newdrive
))
303 bool wxIsDriveAvailable(const wxString
& dirName
)
306 wxUnusedVar(dirName
);
310 UINT errorMode
= SetErrorMode(SEM_FAILCRITICALERRORS
| SEM_NOOPENFILEERRORBOX
);
314 // Check if this is a root directory and if so,
315 // whether the drive is available.
316 if (dirName
.Len() == 3 && dirName
[(size_t)1] == wxT(':'))
318 wxString
dirNameLower(dirName
.Lower());
319 #if defined(__GNUWIN32__) && !(defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
320 success
= wxPathExists(dirNameLower
);
323 // Avoid changing to drive since no media may be inserted.
324 if (dirNameLower
[(size_t)0] == 'a' || dirNameLower
[(size_t)0] == 'b')
327 int currentDrive
= _getdrive();
328 int thisDrive
= (int) (dirNameLower
[(size_t)0] - 'a' + 1) ;
329 int err
= setdrive( thisDrive
) ;
330 setdrive( currentDrive
);
339 (void) SetErrorMode(errorMode
);
345 #endif // __WINDOWS__ || __OS2__
347 #endif // wxUSE_DIRDLG || wxUSE_FILEDLG
353 // Function which is called by quick sort. We want to override the default wxArrayString behaviour,
354 // and sort regardless of case.
355 static int wxCMPFUNC_CONV
wxDirCtrlStringCompareFunction(const wxString
& strFirst
, const wxString
& strSecond
)
357 return strFirst
.CmpNoCase(strSecond
);
360 //-----------------------------------------------------------------------------
362 //-----------------------------------------------------------------------------
364 wxDirItemData::wxDirItemData(const wxString
& path
, const wxString
& name
,
369 /* Insert logic to detect hidden files here
370 * In UnixLand we just check whether the first char is a dot
371 * For FileNameFromPath read LastDirNameInThisPath ;-) */
372 // m_isHidden = (bool)(wxFileNameFromPath(*m_path)[0] == '.');
374 m_isExpanded
= false;
378 wxDirItemData::~wxDirItemData()
382 void wxDirItemData::SetNewDirName(const wxString
& path
)
385 m_name
= wxFileNameFromPath(path
);
388 bool wxDirItemData::HasSubDirs() const
390 if (m_path
.IsEmpty())
396 if ( !dir
.Open(m_path
) )
400 return dir
.HasSubDirs();
403 bool wxDirItemData::HasFiles(const wxString
& WXUNUSED(spec
)) const
405 if (m_path
.IsEmpty())
411 if ( !dir
.Open(m_path
) )
415 return dir
.HasFiles();
418 //-----------------------------------------------------------------------------
420 //-----------------------------------------------------------------------------
423 #if wxUSE_EXTENDED_RTTI
424 WX_DEFINE_FLAGS( wxGenericDirCtrlStyle
)
426 wxBEGIN_FLAGS( wxGenericDirCtrlStyle
)
427 // new style border flags, we put them first to
428 // use them for streaming out
429 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
430 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
431 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
432 wxFLAGS_MEMBER(wxBORDER_RAISED
)
433 wxFLAGS_MEMBER(wxBORDER_STATIC
)
434 wxFLAGS_MEMBER(wxBORDER_NONE
)
436 // old style border flags
437 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
438 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
439 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
440 wxFLAGS_MEMBER(wxRAISED_BORDER
)
441 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
442 wxFLAGS_MEMBER(wxBORDER
)
444 // standard window styles
445 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
446 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
447 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
448 wxFLAGS_MEMBER(wxWANTS_CHARS
)
449 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
450 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
451 wxFLAGS_MEMBER(wxVSCROLL
)
452 wxFLAGS_MEMBER(wxHSCROLL
)
454 wxFLAGS_MEMBER(wxDIRCTRL_DIR_ONLY
)
455 wxFLAGS_MEMBER(wxDIRCTRL_3D_INTERNAL
)
456 wxFLAGS_MEMBER(wxDIRCTRL_SELECT_FIRST
)
457 wxFLAGS_MEMBER(wxDIRCTRL_SHOW_FILTERS
)
459 wxEND_FLAGS( wxGenericDirCtrlStyle
)
461 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGenericDirCtrl
, wxControl
,"wx/dirctrl.h")
463 wxBEGIN_PROPERTIES_TABLE(wxGenericDirCtrl
)
464 wxHIDE_PROPERTY( Children
)
465 wxPROPERTY( DefaultPath
, wxString
, SetDefaultPath
, GetDefaultPath
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
466 wxPROPERTY( Filter
, wxString
, SetFilter
, GetFilter
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
467 wxPROPERTY( DefaultFilter
, int , SetFilterIndex
, GetFilterIndex
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
468 wxPROPERTY_FLAGS( WindowStyle
, wxGenericDirCtrlStyle
, long, SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0, wxT("Helpstring"), wxT("group") )
469 wxEND_PROPERTIES_TABLE()
471 wxBEGIN_HANDLERS_TABLE(wxGenericDirCtrl
)
472 wxEND_HANDLERS_TABLE()
474 wxCONSTRUCTOR_8( wxGenericDirCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, DefaultPath
,
475 wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
, wxString
, Filter
, int , DefaultFilter
)
477 IMPLEMENT_DYNAMIC_CLASS(wxGenericDirCtrl
, wxControl
)
480 BEGIN_EVENT_TABLE(wxGenericDirCtrl
, wxControl
)
481 EVT_TREE_ITEM_EXPANDING (wxID_TREECTRL
, wxGenericDirCtrl::OnExpandItem
)
482 EVT_TREE_ITEM_COLLAPSED (wxID_TREECTRL
, wxGenericDirCtrl::OnCollapseItem
)
483 EVT_TREE_BEGIN_LABEL_EDIT (wxID_TREECTRL
, wxGenericDirCtrl::OnBeginEditItem
)
484 EVT_TREE_END_LABEL_EDIT (wxID_TREECTRL
, wxGenericDirCtrl::OnEndEditItem
)
485 EVT_SIZE (wxGenericDirCtrl::OnSize
)
488 wxGenericDirCtrl::wxGenericDirCtrl(void)
493 bool wxGenericDirCtrl::Create(wxWindow
*parent
,
499 const wxString
& filter
,
501 const wxString
& name
)
503 if (!wxControl::Create(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
506 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
510 long treeStyle
= wxTR_HAS_BUTTONS
| wxTR_HIDE_ROOT
;
512 if (style
& wxDIRCTRL_EDIT_LABELS
)
513 treeStyle
|= wxTR_EDIT_LABELS
;
515 if ((style
& wxDIRCTRL_3D_INTERNAL
) == 0)
516 treeStyle
|= wxNO_BORDER
;
518 treeStyle
|= wxBORDER_SUNKEN
;
520 long filterStyle
= 0;
521 if ((style
& wxDIRCTRL_3D_INTERNAL
) == 0)
522 filterStyle
|= wxNO_BORDER
;
524 filterStyle
|= wxBORDER_SUNKEN
;
526 m_treeCtrl
= new wxTreeCtrl(this, wxID_TREECTRL
,
527 wxPoint(0,0), GetClientSize(), treeStyle
);
529 if (!filter
.IsEmpty() && (style
& wxDIRCTRL_SHOW_FILTERS
))
530 m_filterListCtrl
= new wxDirFilterListCtrl(this, wxID_FILTERLISTCTRL
, wxDefaultPosition
, wxDefaultSize
, filterStyle
);
535 SetFilterIndex(defaultFilter
);
537 if (m_filterListCtrl
)
538 m_filterListCtrl
->FillFilterList(filter
, defaultFilter
);
540 m_treeCtrl
->SetImageList(wxTheFileIconsTable
->GetSmallImageList());
542 m_showHidden
= false;
543 wxDirItemData
* rootData
= new wxDirItemData(wxEmptyString
, wxEmptyString
, true);
547 #if defined(__WINDOWS__) || defined(__OS2__) || defined(__DOS__)
548 rootName
= _("Computer");
550 rootName
= _("Sections");
553 m_rootId
= m_treeCtrl
->AddRoot( rootName
, 3, -1, rootData
);
554 m_treeCtrl
->SetItemHasChildren(m_rootId
);
555 ExpandDir(m_rootId
); // automatically expand first level
557 // Expand and select the default path
558 if (!m_defaultPath
.IsEmpty())
559 ExpandPath(m_defaultPath
);
567 wxGenericDirCtrl::~wxGenericDirCtrl()
571 void wxGenericDirCtrl::Init()
573 m_showHidden
= false;
575 m_currentFilterStr
= wxEmptyString
; // Default: any file
577 m_filterListCtrl
= NULL
;
580 void wxGenericDirCtrl::ShowHidden( bool show
)
584 wxString path
= GetPath();
590 wxGenericDirCtrl::AddSection(const wxString
& path
, const wxString
& name
, int imageId
)
592 wxDirItemData
*dir_item
= new wxDirItemData(path
,name
,true);
594 wxTreeItemId id
= AppendItem( m_rootId
, name
, imageId
, -1, dir_item
);
596 m_treeCtrl
->SetItemHasChildren(id
);
601 void wxGenericDirCtrl::SetupSections()
603 wxArrayString paths
, names
;
606 size_t n
, count
= wxGetAvailableDrives(paths
, names
, icons
);
608 for (n
= 0; n
< count
; n
++)
610 AddSection(paths
[n
], names
[n
], icons
[n
]);
614 void wxGenericDirCtrl::OnBeginEditItem(wxTreeEvent
&event
)
616 // don't rename the main entry "Sections"
617 if (event
.GetItem() == m_rootId
)
623 // don't rename the individual sections
624 if (m_treeCtrl
->GetItemParent( event
.GetItem() ) == m_rootId
)
631 void wxGenericDirCtrl::OnEndEditItem(wxTreeEvent
&event
)
633 if ((event
.GetLabel().IsEmpty()) ||
634 (event
.GetLabel() == _(".")) ||
635 (event
.GetLabel() == _("..")) ||
636 (event
.GetLabel().Find(wxT('/')) != wxNOT_FOUND
) ||
637 (event
.GetLabel().Find(wxT('\\')) != wxNOT_FOUND
) ||
638 (event
.GetLabel().Find(wxT('|')) != wxNOT_FOUND
))
640 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
646 wxTreeItemId id
= event
.GetItem();
647 wxDirItemData
*data
= (wxDirItemData
*)m_treeCtrl
->GetItemData( id
);
650 wxString
new_name( wxPathOnly( data
->m_path
) );
651 new_name
+= wxString(wxFILE_SEP_PATH
);
652 new_name
+= event
.GetLabel();
656 if (wxFileExists(new_name
))
658 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
663 if (wxRenameFile(data
->m_path
,new_name
))
665 data
->SetNewDirName( new_name
);
669 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
675 void wxGenericDirCtrl::OnExpandItem(wxTreeEvent
&event
)
677 wxTreeItemId parentId
= event
.GetItem();
679 // VS: this is needed because the event handler is called from wxTreeCtrl
680 // ctor when wxTR_HIDE_ROOT was specified
682 if (!m_rootId
.IsOk())
684 m_rootId
= m_treeCtrl
->GetRootItem();
689 void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent
&event
)
691 CollapseDir(event
.GetItem());
694 void wxGenericDirCtrl::CollapseDir(wxTreeItemId parentId
)
698 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(parentId
);
699 if (!data
->m_isExpanded
)
702 data
->m_isExpanded
= false;
703 wxTreeItemIdValue cookie
;
704 /* Workaround because DeleteChildren has disapeared (why?) and
705 * CollapseAndReset doesn't work as advertised (deletes parent too) */
706 child
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
709 m_treeCtrl
->Delete(child
);
710 /* Not GetNextChild below, because the cookie mechanism can't
711 * handle disappearing children! */
712 child
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
716 void wxGenericDirCtrl::ExpandDir(wxTreeItemId parentId
)
718 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(parentId
);
720 if (data
->m_isExpanded
)
723 data
->m_isExpanded
= true;
725 if (parentId
== m_treeCtrl
->GetRootItem())
733 wxString search
,path
,filename
;
735 wxString
dirName(data
->m_path
);
737 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
738 // Check if this is a root directory and if so,
739 // whether the drive is avaiable.
740 if (!wxIsDriveAvailable(dirName
))
742 data
->m_isExpanded
= false;
743 //wxMessageBox(wxT("Sorry, this drive is not available."));
748 // This may take a longish time. Go to busy cursor
751 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
752 if (dirName
.Last() == ':')
753 dirName
+= wxString(wxFILE_SEP_PATH
);
757 wxArrayString filenames
;
760 wxString eachFilename
;
767 int style
= wxDIR_DIRS
;
768 if (m_showHidden
) style
|= wxDIR_HIDDEN
;
769 if (d
.GetFirst(& eachFilename
, wxEmptyString
, style
))
773 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
775 dirs
.Add(eachFilename
);
778 while (d
.GetNext(&eachFilename
));
781 dirs
.Sort(wxDirCtrlStringCompareFunction
);
783 // Now do the filenames -- but only if we're allowed to
784 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0)
792 int style
= wxDIR_FILES
;
793 if (m_showHidden
) style
|= wxDIR_HIDDEN
;
794 // Process each filter (ex: "JPEG Files (*.jpg;*.jpeg)|*.jpg;*.jpeg")
795 wxStringTokenizer strTok
;
797 strTok
.SetString(m_currentFilterStr
,wxT(";"));
798 while(strTok
.HasMoreTokens())
800 curFilter
= strTok
.GetNextToken();
801 if (d
.GetFirst(& eachFilename
, m_currentFilterStr
, style
))
805 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
807 filenames
.Add(eachFilename
);
810 while (d
.GetNext(& eachFilename
));
814 filenames
.Sort(wxDirCtrlStringCompareFunction
);
817 // Add the sorted dirs
819 for (i
= 0; i
< dirs
.Count(); i
++)
821 wxString
eachFilename(dirs
[i
]);
823 if (!wxEndsWithPathSeparator(path
))
824 path
+= wxString(wxFILE_SEP_PATH
);
825 path
+= eachFilename
;
827 wxDirItemData
*dir_item
= new wxDirItemData(path
,eachFilename
,true);
828 wxTreeItemId id
= AppendItem( parentId
, eachFilename
,
829 wxFileIconsTable::folder
, -1, dir_item
);
830 m_treeCtrl
->SetItemImage( id
, wxFileIconsTable::folder_open
,
831 wxTreeItemIcon_Expanded
);
833 // Has this got any children? If so, make it expandable.
834 // (There are two situations when a dir has children: either it
835 // has subdirectories or it contains files that weren't filtered
836 // out. The latter only applies to dirctrl with files.)
837 if ( dir_item
->HasSubDirs() ||
838 (((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0) &&
839 dir_item
->HasFiles(m_currentFilterStr
)) )
841 m_treeCtrl
->SetItemHasChildren(id
);
845 // Add the sorted filenames
846 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY
) == 0)
848 for (i
= 0; i
< filenames
.Count(); i
++)
850 wxString
eachFilename(filenames
[i
]);
852 if (!wxEndsWithPathSeparator(path
))
853 path
+= wxString(wxFILE_SEP_PATH
);
854 path
+= eachFilename
;
855 //path = dirName + wxString(wxT("/")) + eachFilename;
856 wxDirItemData
*dir_item
= new wxDirItemData(path
,eachFilename
,false);
857 int image_id
= wxFileIconsTable::file
;
858 if (eachFilename
.Find(wxT('.')) != wxNOT_FOUND
)
859 image_id
= wxTheFileIconsTable
->GetIconID(eachFilename
.AfterLast(wxT('.')));
860 (void) AppendItem( parentId
, eachFilename
, image_id
, -1, dir_item
);
865 void wxGenericDirCtrl::ReCreateTree()
867 CollapseDir(m_treeCtrl
->GetRootItem());
868 ExpandDir(m_treeCtrl
->GetRootItem());
871 // Find the child that matches the first part of 'path'.
872 // E.g. if a child path is "/usr" and 'path' is "/usr/include"
873 // then the child for /usr is returned.
874 wxTreeItemId
wxGenericDirCtrl::FindChild(wxTreeItemId parentId
, const wxString
& path
, bool& done
)
876 wxString
path2(path
);
878 // Make sure all separators are as per the current platform
879 path2
.Replace(wxT("\\"), wxString(wxFILE_SEP_PATH
));
880 path2
.Replace(wxT("/"), wxString(wxFILE_SEP_PATH
));
882 // Append a separator to foil bogus substring matching
883 path2
+= wxString(wxFILE_SEP_PATH
);
885 // In MSW or PM, case is not significant
886 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
890 wxTreeItemIdValue cookie
;
891 wxTreeItemId childId
= m_treeCtrl
->GetFirstChild(parentId
, cookie
);
892 while (childId
.IsOk())
894 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(childId
);
896 if (data
&& !data
->m_path
.IsEmpty())
898 wxString
childPath(data
->m_path
);
899 if (!wxEndsWithPathSeparator(childPath
))
900 childPath
+= wxString(wxFILE_SEP_PATH
);
902 // In MSW and PM, case is not significant
903 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
904 childPath
.MakeLower();
907 if (childPath
.Len() <= path2
.Len())
909 wxString path3
= path2
.Mid(0, childPath
.Len());
910 if (childPath
== path3
)
912 if (path3
.Len() == path2
.Len())
921 childId
= m_treeCtrl
->GetNextChild(parentId
, cookie
);
923 wxTreeItemId invalid
;
927 // Try to expand as much of the given path as possible,
928 // and select the given tree item.
929 bool wxGenericDirCtrl::ExpandPath(const wxString
& path
)
932 wxTreeItemId id
= FindChild(m_rootId
, path
, done
);
933 wxTreeItemId lastId
= id
; // The last non-zero id
934 while (id
.IsOk() && !done
)
938 id
= FindChild(id
, path
, done
);
944 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(lastId
);
947 m_treeCtrl
->Expand(lastId
);
949 if ((GetWindowStyle() & wxDIRCTRL_SELECT_FIRST
) && data
->m_isDir
)
951 // Find the first file in this directory
952 wxTreeItemIdValue cookie
;
953 wxTreeItemId childId
= m_treeCtrl
->GetFirstChild(lastId
, cookie
);
954 bool selectedChild
= false;
955 while (childId
.IsOk())
957 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(childId
);
959 if (data
&& data
->m_path
!= wxEmptyString
&& !data
->m_isDir
)
961 m_treeCtrl
->SelectItem(childId
);
962 m_treeCtrl
->EnsureVisible(childId
);
963 selectedChild
= true;
966 childId
= m_treeCtrl
->GetNextChild(lastId
, cookie
);
970 m_treeCtrl
->SelectItem(lastId
);
971 m_treeCtrl
->EnsureVisible(lastId
);
976 m_treeCtrl
->SelectItem(lastId
);
977 m_treeCtrl
->EnsureVisible(lastId
);
986 wxString
wxGenericDirCtrl::GetPath() const
988 wxTreeItemId id
= m_treeCtrl
->GetSelection();
991 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
995 return wxEmptyString
;
998 wxString
wxGenericDirCtrl::GetFilePath() const
1000 wxTreeItemId id
= m_treeCtrl
->GetSelection();
1003 wxDirItemData
* data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
1005 return wxEmptyString
;
1007 return data
->m_path
;
1010 return wxEmptyString
;
1013 void wxGenericDirCtrl::SetPath(const wxString
& path
)
1015 m_defaultPath
= path
;
1022 void wxGenericDirCtrl::FindChildFiles(wxTreeItemId id
, int dirFlags
, wxArrayString
& filenames
)
1024 wxDirItemData
*data
= (wxDirItemData
*) m_treeCtrl
->GetItemData(id
);
1026 // This may take a longish time. Go to busy cursor
1031 wxString search
,path
,filename
;
1033 wxString
dirName(data
->m_path
);
1035 #if defined(__WXMSW__) || defined(__OS2__)
1036 if (dirName
.Last() == ':')
1037 dirName
+= wxString(wxFILE_SEP_PATH
);
1041 wxString eachFilename
;
1048 if (d
.GetFirst(& eachFilename
, m_currentFilterStr
, dirFlags
))
1052 if ((eachFilename
!= wxT(".")) && (eachFilename
!= wxT("..")))
1054 filenames
.Add(eachFilename
);
1057 while (d
.GetNext(& eachFilename
)) ;
1063 void wxGenericDirCtrl::SetFilterIndex(int n
)
1065 m_currentFilter
= n
;
1068 if (ExtractWildcard(m_filter
, n
, f
, d
))
1069 m_currentFilterStr
= f
;
1071 m_currentFilterStr
= wxT("*.*");
1074 void wxGenericDirCtrl::SetFilter(const wxString
& filter
)
1079 if (ExtractWildcard(m_filter
, m_currentFilter
, f
, d
))
1080 m_currentFilterStr
= f
;
1082 m_currentFilterStr
= wxT("*.*");
1085 // Extract description and actual filter from overall filter string
1086 bool wxGenericDirCtrl::ExtractWildcard(const wxString
& filterStr
, int n
, wxString
& filter
, wxString
& description
)
1088 wxArrayString filters
, descriptions
;
1089 int count
= wxParseCommonDialogsFilter(filterStr
, descriptions
, filters
);
1090 if (count
> 0 && n
< count
)
1092 filter
= filters
[n
];
1093 description
= descriptions
[n
];
1100 #if WXWIN_COMPATIBILITY_2_4
1101 // Parses the global filter, returning the number of filters.
1102 // Returns 0 if none or if there's a problem.
1103 // filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpg"
1104 int wxGenericDirCtrl::ParseFilter(const wxString
& filterStr
, wxArrayString
& filters
, wxArrayString
& descriptions
)
1106 return wxParseCommonDialogsFilter(filterStr
, descriptions
, filters
);
1108 #endif // WXWIN_COMPATIBILITY_2_4
1110 void wxGenericDirCtrl::DoResize()
1112 wxSize sz
= GetClientSize();
1113 int verticalSpacing
= 3;
1117 if (m_filterListCtrl
)
1120 // For some reason, this is required in order for the
1121 // correct control height to always be returned, rather
1122 // than the drop-down list height which is sometimes returned.
1123 wxSize oldSize
= m_filterListCtrl
->GetSize();
1124 m_filterListCtrl
->SetSize(wxDefaultCoord
,
1128 wxSIZE_USE_EXISTING
);
1129 m_filterListCtrl
->SetSize(wxDefaultCoord
,
1133 wxSIZE_USE_EXISTING
);
1135 filterSz
= m_filterListCtrl
->GetSize();
1136 sz
.y
-= (filterSz
.y
+ verticalSpacing
);
1138 m_treeCtrl
->SetSize(0, 0, sz
.x
, sz
.y
);
1139 if (m_filterListCtrl
)
1141 m_filterListCtrl
->SetSize(0, sz
.y
+ verticalSpacing
, sz
.x
, filterSz
.y
);
1142 // Don't know why, but this needs refreshing after a resize (wxMSW)
1143 m_filterListCtrl
->Refresh();
1149 void wxGenericDirCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
1154 wxTreeItemId
wxGenericDirCtrl::AppendItem (const wxTreeItemId
& parent
,
1155 const wxString
& text
,
1156 int image
, int selectedImage
,
1157 wxTreeItemData
* data
)
1159 wxTreeCtrl
*treeCtrl
= GetTreeCtrl ();
1161 wxASSERT (treeCtrl
);
1165 return treeCtrl
->AppendItem (parent
, text
, image
, selectedImage
, data
);
1169 return wxTreeItemId();
1174 //-----------------------------------------------------------------------------
1175 // wxDirFilterListCtrl
1176 //-----------------------------------------------------------------------------
1178 IMPLEMENT_CLASS(wxDirFilterListCtrl
, wxChoice
)
1180 BEGIN_EVENT_TABLE(wxDirFilterListCtrl
, wxChoice
)
1181 EVT_CHOICE(wxID_ANY
, wxDirFilterListCtrl::OnSelFilter
)
1184 bool wxDirFilterListCtrl::Create(wxGenericDirCtrl
* parent
, const wxWindowID id
,
1190 return wxChoice::Create(parent
, id
, pos
, size
, 0, NULL
, style
);
1193 void wxDirFilterListCtrl::Init()
1198 void wxDirFilterListCtrl::OnSelFilter(wxCommandEvent
& WXUNUSED(event
))
1200 int sel
= GetSelection();
1202 wxString currentPath
= m_dirCtrl
->GetPath();
1204 m_dirCtrl
->SetFilterIndex(sel
);
1206 // If the filter has changed, the view is out of date, so
1207 // collapse the tree.
1208 m_dirCtrl
->ReCreateTree();
1210 // Try to restore the selection, or at least the directory
1211 m_dirCtrl
->ExpandPath(currentPath
);
1214 void wxDirFilterListCtrl::FillFilterList(const wxString
& filter
, int defaultFilter
)
1217 wxArrayString descriptions
, filters
;
1218 size_t n
= (size_t) wxParseCommonDialogsFilter(filter
, filters
, descriptions
);
1220 if (n
> 0 && defaultFilter
< (int) n
)
1222 for (size_t i
= 0; i
< n
; i
++)
1223 Append(descriptions
[i
]);
1224 SetSelection(defaultFilter
);
1227 #endif // wxUSE_DIRDLG
1229 #if wxUSE_DIRDLG || wxUSE_FILEDLG
1231 // ----------------------------------------------------------------------------
1232 // wxFileIconsTable icons
1233 // ----------------------------------------------------------------------------
1236 static const char * file_icons_tbl_folder_open_xpm
[] = {
1237 /* width height ncolors chars_per_pixel */
1265 static const char * file_icons_tbl_computer_xpm
[] = {
1292 static const char * file_icons_tbl_drive_xpm
[] = {
1319 static const char *file_icons_tbl_cdrom_xpm
[] = {
1349 static const char * file_icons_tbl_floppy_xpm
[] = {
1376 static const char * file_icons_tbl_removeable_xpm
[] = {
1402 // ----------------------------------------------------------------------------
1403 // wxFileIconsTable & friends
1404 // ----------------------------------------------------------------------------
1406 // global instance of a wxFileIconsTable
1407 wxFileIconsTable
* wxTheFileIconsTable
= (wxFileIconsTable
*)NULL
;
1409 // A module to allow icons table cleanup
1411 class wxFileIconsTableModule
: public wxModule
1413 DECLARE_DYNAMIC_CLASS(wxFileIconsTableModule
)
1415 wxFileIconsTableModule() {}
1416 bool OnInit() { wxTheFileIconsTable
= new wxFileIconsTable
; return true; }
1419 if (wxTheFileIconsTable
)
1421 delete wxTheFileIconsTable
;
1422 wxTheFileIconsTable
= NULL
;
1427 IMPLEMENT_DYNAMIC_CLASS(wxFileIconsTableModule
, wxModule
)
1429 class wxFileIconEntry
: public wxObject
1432 wxFileIconEntry(int i
) { id
= i
; }
1437 wxFileIconsTable::wxFileIconsTable()
1440 m_smallImageList
= NULL
;
1443 wxFileIconsTable::~wxFileIconsTable()
1447 WX_CLEAR_HASH_TABLE(*m_HashTable
);
1450 if (m_smallImageList
) delete m_smallImageList
;
1453 // delayed initialization - wait until first use (wxArtProv not created yet)
1454 void wxFileIconsTable::Create()
1456 wxCHECK_RET(!m_smallImageList
&& !m_HashTable
, wxT("creating icons twice"));
1457 m_HashTable
= new wxHashTable(wxKEY_STRING
);
1458 m_smallImageList
= new wxImageList(16, 16);
1461 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_FOLDER
,
1465 m_smallImageList
->Add(wxIcon(file_icons_tbl_folder_open_xpm
));
1467 m_smallImageList
->Add(wxIcon(file_icons_tbl_computer_xpm
));
1469 m_smallImageList
->Add(wxIcon(file_icons_tbl_drive_xpm
));
1471 m_smallImageList
->Add(wxIcon(file_icons_tbl_cdrom_xpm
));
1473 m_smallImageList
->Add(wxIcon(file_icons_tbl_floppy_xpm
));
1475 m_smallImageList
->Add(wxIcon(file_icons_tbl_removeable_xpm
));
1477 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_NORMAL_FILE
,
1481 if (GetIconID(wxEmptyString
, _T("application/x-executable")) == file
)
1483 m_smallImageList
->Add(wxArtProvider::GetBitmap(wxART_EXECUTABLE_FILE
,
1486 delete m_HashTable
->Get(_T("exe"));
1487 m_HashTable
->Delete(_T("exe"));
1488 m_HashTable
->Put(_T("exe"), new wxFileIconEntry(executable
));
1490 /* else put into list by GetIconID
1491 (KDE defines application/x-executable for *.exe and has nice icon)
1495 wxImageList
*wxFileIconsTable::GetSmallImageList()
1497 if (!m_smallImageList
)
1500 return m_smallImageList
;
1503 #if wxUSE_MIMETYPE && wxUSE_IMAGE
1504 // VS: we don't need this function w/o wxMimeTypesManager because we'll only have
1505 // one icon and we won't resize it
1507 static wxBitmap
CreateAntialiasedBitmap(const wxImage
& img
)
1509 const unsigned int size
= 16;
1511 wxImage
smallimg (size
, size
);
1512 unsigned char *p1
, *p2
, *ps
;
1513 unsigned char mr
= img
.GetMaskRed(),
1514 mg
= img
.GetMaskGreen(),
1515 mb
= img
.GetMaskBlue();
1518 unsigned sr
, sg
, sb
, smask
;
1520 p1
= img
.GetData(), p2
= img
.GetData() + 3 * size
*2, ps
= smallimg
.GetData();
1521 smallimg
.SetMaskColour(mr
, mr
, mr
);
1523 for (y
= 0; y
< size
; y
++)
1525 for (x
= 0; x
< size
; x
++)
1527 sr
= sg
= sb
= smask
= 0;
1528 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
1529 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
1532 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
1533 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
1536 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
1537 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
1540 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
1541 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
1546 ps
[0] = ps
[1] = ps
[2] = mr
;
1548 ps
[0] = sr
>> 2, ps
[1] = sg
>> 2, ps
[2] = sb
>> 2;
1551 p1
+= size
*2 * 3, p2
+= size
*2 * 3;
1554 return wxBitmap(smallimg
);
1557 // This function is currently not unused anymore
1559 // finds empty borders and return non-empty area of image:
1560 static wxImage
CutEmptyBorders(const wxImage
& img
)
1562 unsigned char mr
= img
.GetMaskRed(),
1563 mg
= img
.GetMaskGreen(),
1564 mb
= img
.GetMaskBlue();
1565 unsigned char *dt
= img
.GetData(), *dttmp
;
1566 unsigned w
= img
.GetWidth(), h
= img
.GetHeight();
1568 unsigned top
, bottom
, left
, right
, i
;
1571 #define MK_DTTMP(x,y) dttmp = dt + ((x + y * w) * 3)
1572 #define NOEMPTY_PIX(empt) if (dttmp[0] != mr || dttmp[1] != mg || dttmp[2] != mb) {empt = false; break;}
1574 for (empt
= true, top
= 0; empt
&& top
< h
; top
++)
1577 for (i
= 0; i
< w
; i
++, dttmp
+=3)
1580 for (empt
= true, bottom
= h
-1; empt
&& bottom
> top
; bottom
--)
1582 MK_DTTMP(0, bottom
);
1583 for (i
= 0; i
< w
; i
++, dttmp
+=3)
1586 for (empt
= true, left
= 0; empt
&& left
< w
; left
++)
1589 for (i
= 0; i
< h
; i
++, dttmp
+=3*w
)
1592 for (empt
= true, right
= w
-1; empt
&& right
> left
; right
--)
1595 for (i
= 0; i
< h
; i
++, dttmp
+=3*w
)
1598 top
--, left
--, bottom
++, right
++;
1600 return img
.GetSubImage(wxRect(left
, top
, right
- left
+ 1, bottom
- top
+ 1));
1604 #endif // wxUSE_MIMETYPE
1606 int wxFileIconsTable::GetIconID(const wxString
& extension
, const wxString
& mime
)
1608 if (!m_smallImageList
)
1612 if (!extension
.IsEmpty())
1614 wxFileIconEntry
*entry
= (wxFileIconEntry
*) m_HashTable
->Get(extension
);
1615 if (entry
) return (entry
-> id
);
1618 wxFileType
*ft
= (mime
.IsEmpty()) ?
1619 wxTheMimeTypesManager
-> GetFileTypeFromExtension(extension
) :
1620 wxTheMimeTypesManager
-> GetFileTypeFromMimeType(mime
);
1622 wxIconLocation iconLoc
;
1627 if ( ft
&& ft
->GetIcon(&iconLoc
) )
1629 ic
= wxIcon( iconLoc
.GetFileName() );
1638 m_HashTable
->Put(extension
, new wxFileIconEntry(newid
));
1643 bmp
.CopyFromIcon(ic
);
1648 m_HashTable
->Put(extension
, new wxFileIconEntry(newid
));
1652 const unsigned int size
= 16;
1654 int id
= m_smallImageList
->GetImageCount();
1655 if ((bmp
.GetWidth() == (int) size
) && (bmp
.GetHeight() == (int) size
))
1657 m_smallImageList
->Add(bmp
);
1662 wxImage img
= bmp
.ConvertToImage();
1664 if ((img
.GetWidth() != size
*2) || (img
.GetHeight() != size
*2))
1665 // m_smallImageList->Add(CreateAntialiasedBitmap(CutEmptyBorders(img).Rescale(size*2, size*2)));
1666 m_smallImageList
->Add(CreateAntialiasedBitmap(img
.Rescale(size
*2, size
*2)));
1668 m_smallImageList
->Add(CreateAntialiasedBitmap(img
));
1670 #endif // wxUSE_IMAGE
1672 m_HashTable
->Put(extension
, new wxFileIconEntry(id
));
1675 #else // !wxUSE_MIMETYPE
1678 if (extension
== wxT("exe"))
1682 #endif // wxUSE_MIMETYPE/!wxUSE_MIMETYPE
1685 #endif // wxUSE_DIRDLG || wxUSE_FILEDLG