1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/filectrlg.cpp
3 // Purpose: wxGenericFileCtrl Implementation
4 // Author: Diaa M. Sami
6 // Copyright: (c) Diaa M. Sami
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
10 #include "wx/wxprec.h"
18 #include "wx/generic/filectrlg.h"
21 #include "wx/settings.h"
23 #include "wx/stattext.h"
24 #include "wx/checkbox.h"
25 #include "wx/msgdlg.h"
27 #include "wx/filedlg.h"
30 #include "wx/clntdata.h"
31 #include "wx/file.h" // for wxS_IXXX constants only
32 #include "wx/generic/dirctrlg.h" // for wxFileIconsTable
34 #include "wx/tokenzr.h"
35 #include "wx/imaglist.h"
38 #include "wx/msw/wrapwin.h"
41 #if defined(__WXWINCE__)
42 #define IsTopMostDir(dir) (dir == wxT("\\") || dir == wxT("/"))
43 #elif (defined(__DOS__) || defined(__WINDOWS__) || defined (__OS2__))
44 #define IsTopMostDir(dir) (dir.empty())
46 #define IsTopMostDir(dir) (dir == wxT("/"))
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
55 int wxCALLBACK
wxFileDataNameCompare( wxIntPtr data1
, wxIntPtr data2
, wxIntPtr sortOrder
)
57 wxFileData
*fd1
= (wxFileData
*)wxUIntToPtr(data1
);
58 wxFileData
*fd2
= (wxFileData
*)wxUIntToPtr(data2
);
60 if (fd1
->GetFileName() == wxT(".."))
62 if (fd2
->GetFileName() == wxT(".."))
64 if (fd1
->IsDir() && !fd2
->IsDir())
66 if (fd2
->IsDir() && !fd1
->IsDir())
69 return sortOrder
*wxStrcmp( fd1
->GetFileName(), fd2
->GetFileName() );
73 int wxCALLBACK
wxFileDataSizeCompare(wxIntPtr data1
, wxIntPtr data2
, wxIntPtr sortOrder
)
75 wxFileData
*fd1
= (wxFileData
*)wxUIntToPtr(data1
);
76 wxFileData
*fd2
= (wxFileData
*)wxUIntToPtr(data2
);
78 if (fd1
->GetFileName() == wxT(".."))
80 if (fd2
->GetFileName() == wxT(".."))
82 if (fd1
->IsDir() && !fd2
->IsDir())
84 if (fd2
->IsDir() && !fd1
->IsDir())
86 if (fd1
->IsLink() && !fd2
->IsLink())
88 if (fd2
->IsLink() && !fd1
->IsLink())
91 return fd1
->GetSize() > fd2
->GetSize() ? sortOrder
: -sortOrder
;
95 int wxCALLBACK
wxFileDataTypeCompare(wxIntPtr data1
, wxIntPtr data2
, wxIntPtr sortOrder
)
97 wxFileData
*fd1
= (wxFileData
*)wxUIntToPtr(data1
);
98 wxFileData
*fd2
= (wxFileData
*)wxUIntToPtr(data2
);
100 if (fd1
->GetFileName() == wxT(".."))
102 if (fd2
->GetFileName() == wxT(".."))
104 if (fd1
->IsDir() && !fd2
->IsDir())
106 if (fd2
->IsDir() && !fd1
->IsDir())
108 if (fd1
->IsLink() && !fd2
->IsLink())
110 if (fd2
->IsLink() && !fd1
->IsLink())
113 return sortOrder
*wxStrcmp( fd1
->GetFileType(), fd2
->GetFileType() );
117 int wxCALLBACK
wxFileDataTimeCompare(wxIntPtr data1
, wxIntPtr data2
, wxIntPtr sortOrder
)
119 wxFileData
*fd1
= (wxFileData
*)wxUIntToPtr(data1
);
120 wxFileData
*fd2
= (wxFileData
*)wxUIntToPtr(data2
);
122 if (fd1
->GetFileName() == wxT(".."))
124 if (fd2
->GetFileName() == wxT(".."))
126 if (fd1
->IsDir() && !fd2
->IsDir())
128 if (fd2
->IsDir() && !fd1
->IsDir())
131 return fd1
->GetDateTime().IsLaterThan(fd2
->GetDateTime()) ? sortOrder
: -sortOrder
;
134 // defined in src/generic/dirctrlg.cpp
135 extern size_t wxGetAvailableDrives(wxArrayString
&paths
, wxArrayString
&names
, wxArrayInt
&icon_ids
);
137 //-----------------------------------------------------------------------------
139 //-----------------------------------------------------------------------------
141 wxFileData::wxFileData( const wxString
&filePath
, const wxString
&fileName
, fileType type
, int image_id
)
144 m_fileName
= fileName
;
145 m_filePath
= filePath
;
152 void wxFileData::Init()
155 m_type
= wxFileData::is_file
;
156 m_image
= wxFileIconsTable::file
;
159 void wxFileData::Copy( const wxFileData
& fileData
)
161 m_fileName
= fileData
.GetFileName();
162 m_filePath
= fileData
.GetFilePath();
163 m_size
= fileData
.GetSize();
164 m_dateTime
= fileData
.GetDateTime();
165 m_permissions
= fileData
.GetPermissions();
166 m_type
= fileData
.GetType();
167 m_image
= fileData
.GetImageId();
170 void wxFileData::ReadData()
178 #if defined(__DOS__) || (defined(__WINDOWS__) && !defined(__WXWINCE__)) || defined(__OS2__)
179 // c:\.. is a drive don't stat it
180 if ((m_fileName
== wxT("..")) && (m_filePath
.length() <= 5))
186 #endif // __DOS__ || __WINDOWS__
192 DWORD fileAttribs
= GetFileAttributes(m_filePath
.fn_str());
193 m_type
|= (fileAttribs
& FILE_ATTRIBUTE_DIRECTORY
) != 0 ? is_dir
: 0;
196 wxFileName::SplitPath(m_filePath
, & p
, & f
, & ext
);
197 if (wxStricmp(ext
, wxT("exe")) == 0)
202 HANDLE fileHandle
= CreateFile(m_filePath
.fn_str(),
207 FILE_ATTRIBUTE_NORMAL
,
210 if (fileHandle
!= INVALID_HANDLE_VALUE
)
212 m_size
= GetFileSize(fileHandle
, 0);
213 CloseHandle(fileHandle
);
216 m_dateTime
= wxFileModificationTime(m_filePath
);
224 #if defined(__UNIX__) && (!defined( __OS2__ ) && !defined(__VMS))
225 const bool hasStat
= lstat( m_filePath
.fn_str(), &buff
) == 0;
227 m_type
|= S_ISLNK(buff
.st_mode
) ? is_link
: 0;
229 const bool hasStat
= wxStat( m_filePath
, &buff
) == 0;
234 m_type
|= (buff
.st_mode
& S_IFDIR
) != 0 ? is_dir
: 0;
235 m_type
|= (buff
.st_mode
& wxS_IXUSR
) != 0 ? is_exe
: 0;
237 m_size
= buff
.st_size
;
239 m_dateTime
= buff
.st_mtime
;
244 #if defined(__UNIX__)
247 m_permissions
.Printf(wxT("%c%c%c%c%c%c%c%c%c"),
248 buff
.st_mode
& wxS_IRUSR
? wxT('r') : wxT('-'),
249 buff
.st_mode
& wxS_IWUSR
? wxT('w') : wxT('-'),
250 buff
.st_mode
& wxS_IXUSR
? wxT('x') : wxT('-'),
251 buff
.st_mode
& wxS_IRGRP
? wxT('r') : wxT('-'),
252 buff
.st_mode
& wxS_IWGRP
? wxT('w') : wxT('-'),
253 buff
.st_mode
& wxS_IXGRP
? wxT('x') : wxT('-'),
254 buff
.st_mode
& wxS_IROTH
? wxT('r') : wxT('-'),
255 buff
.st_mode
& wxS_IWOTH
? wxT('w') : wxT('-'),
256 buff
.st_mode
& wxS_IXOTH
? wxT('x') : wxT('-'));
258 #elif defined(__WIN32__)
259 DWORD attribs
= ::GetFileAttributes(m_filePath
.c_str());
260 if (attribs
!= (DWORD
)-1)
262 m_permissions
.Printf(wxT("%c%c%c%c"),
263 attribs
& FILE_ATTRIBUTE_ARCHIVE
? wxT('A') : wxT(' '),
264 attribs
& FILE_ATTRIBUTE_READONLY
? wxT('R') : wxT(' '),
265 attribs
& FILE_ATTRIBUTE_HIDDEN
? wxT('H') : wxT(' '),
266 attribs
& FILE_ATTRIBUTE_SYSTEM
? wxT('S') : wxT(' '));
270 // try to get a better icon
271 if (m_image
== wxFileIconsTable::file
)
273 if (m_fileName
.Find(wxT('.'), true) != wxNOT_FOUND
)
275 m_image
= wxTheFileIconsTable
->GetIconID( m_fileName
.AfterLast(wxT('.')));
278 m_image
= wxFileIconsTable::executable
;
283 wxString
wxFileData::GetFileType() const
291 else if (m_fileName
.Find(wxT('.'), true) != wxNOT_FOUND
)
292 return m_fileName
.AfterLast(wxT('.'));
294 return wxEmptyString
;
297 wxString
wxFileData::GetModificationTime() const
299 // want time as 01:02 so they line up nicely, no %r in WIN32
300 return m_dateTime
.FormatDate() + wxT(" ") + m_dateTime
.Format(wxT("%I:%M:%S %p"));
303 wxString
wxFileData::GetHint() const
305 wxString s
= m_filePath
;
315 s
+= wxString::Format(wxPLURAL("%ld byte", "%ld bytes", m_size
),
316 wxLongLong(m_size
).ToString().c_str());
322 s
<< GetModificationTime()
330 wxString
wxFileData::GetEntry( fileListFieldType num
) const
340 if (!IsDir() && !IsLink() && !IsDrive())
341 s
= wxLongLong(m_size
).ToString();
350 s
= GetModificationTime();
353 #if defined(__UNIX__) || defined(__WIN32__)
357 #endif // defined(__UNIX__) || defined(__WIN32__)
360 wxFAIL_MSG( wxT("unexpected field in wxFileData::GetEntry()") );
366 void wxFileData::SetNewName( const wxString
&filePath
, const wxString
&fileName
)
368 m_fileName
= fileName
;
369 m_filePath
= filePath
;
372 void wxFileData::MakeItem( wxListItem
&item
)
374 item
.m_text
= m_fileName
;
375 item
.ClearAttributes();
377 item
.SetTextColour(*wxRED
);
379 item
.SetTextColour(*wxBLUE
);
381 item
.m_image
= m_image
;
385 wxColour dg
= wxTheColourDatabase
->Find( wxT("MEDIUM GREY") );
387 item
.SetTextColour(dg
);
389 item
.m_data
= wxPtrToUInt(this);
392 //-----------------------------------------------------------------------------
394 //-----------------------------------------------------------------------------
396 IMPLEMENT_DYNAMIC_CLASS(wxFileListCtrl
,wxListCtrl
)
398 BEGIN_EVENT_TABLE(wxFileListCtrl
,wxListCtrl
)
399 EVT_LIST_DELETE_ITEM(wxID_ANY
, wxFileListCtrl::OnListDeleteItem
)
400 EVT_LIST_DELETE_ALL_ITEMS(wxID_ANY
, wxFileListCtrl::OnListDeleteAllItems
)
401 EVT_LIST_END_LABEL_EDIT(wxID_ANY
, wxFileListCtrl::OnListEndLabelEdit
)
402 EVT_LIST_COL_CLICK(wxID_ANY
, wxFileListCtrl::OnListColClick
)
406 wxFileListCtrl::wxFileListCtrl()
408 m_showHidden
= false;
409 m_sort_forward
= true;
410 m_sort_field
= wxFileData::FileList_Name
;
413 wxFileListCtrl::wxFileListCtrl(wxWindow
*win
,
415 const wxString
& wild
,
420 const wxValidator
&validator
,
421 const wxString
&name
)
422 : wxListCtrl(win
, id
, pos
, size
, style
, validator
, name
),
425 wxImageList
*imageList
= wxTheFileIconsTable
->GetSmallImageList();
427 SetImageList( imageList
, wxIMAGE_LIST_SMALL
);
429 m_showHidden
= showHidden
;
431 m_sort_forward
= true;
432 m_sort_field
= wxFileData::FileList_Name
;
434 m_dirName
= wxT("*");
436 if (style
& wxLC_REPORT
)
437 ChangeToReportMode();
440 void wxFileListCtrl::ChangeToListMode()
443 SetSingleStyle( wxLC_LIST
);
447 void wxFileListCtrl::ChangeToReportMode()
450 SetSingleStyle( wxLC_REPORT
);
452 // do this since WIN32 does mm/dd/yy UNIX does mm/dd/yyyy
453 // don't hardcode since mm/dd is dd/mm elsewhere
455 wxDateTime
dt(22, wxDateTime::Dec
, 2002, 22, 22, 22);
456 wxString txt
= dt
.FormatDate() + wxT("22") + dt
.Format(wxT("%I:%M:%S %p"));
457 GetTextExtent(txt
, &w
, &h
);
459 InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT
, w
);
460 InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT
, w
/2 );
461 InsertColumn( 2, _("Type"), wxLIST_FORMAT_LEFT
, w
/2 );
462 InsertColumn( 3, _("Modified"), wxLIST_FORMAT_LEFT
, w
);
463 #if defined(__UNIX__)
464 GetTextExtent(wxT("Permissions 2"), &w
, &h
);
465 InsertColumn( 4, _("Permissions"), wxLIST_FORMAT_LEFT
, w
);
466 #elif defined(__WIN32__)
467 GetTextExtent(wxT("Attributes 2"), &w
, &h
);
468 InsertColumn( 4, _("Attributes"), wxLIST_FORMAT_LEFT
, w
);
474 void wxFileListCtrl::ChangeToSmallIconMode()
477 SetSingleStyle( wxLC_SMALL_ICON
);
481 void wxFileListCtrl::ShowHidden( bool show
)
487 long wxFileListCtrl::Add( wxFileData
*fd
, wxListItem
&item
)
490 item
.m_mask
= wxLIST_MASK_TEXT
+ wxLIST_MASK_DATA
+ wxLIST_MASK_IMAGE
;
491 fd
->MakeItem( item
);
492 long my_style
= GetWindowStyleFlag();
493 if (my_style
& wxLC_REPORT
)
495 ret
= InsertItem( item
);
496 for (int i
= 1; i
< wxFileData::FileList_Max
; i
++)
497 SetItem( item
.m_itemId
, i
, fd
->GetEntry((wxFileData::fileListFieldType
)i
) );
499 else if ((my_style
& wxLC_LIST
) || (my_style
& wxLC_SMALL_ICON
))
501 ret
= InsertItem( item
);
506 void wxFileListCtrl::UpdateItem(const wxListItem
&item
)
508 wxFileData
*fd
= (wxFileData
*)GetItemData(item
);
509 wxCHECK_RET(fd
, wxT("invalid filedata"));
513 SetItemText(item
, fd
->GetFileName());
514 SetItemImage(item
, fd
->GetImageId());
516 if (GetWindowStyleFlag() & wxLC_REPORT
)
518 for (int i
= 1; i
< wxFileData::FileList_Max
; i
++)
519 SetItem( item
.m_itemId
, i
, fd
->GetEntry((wxFileData::fileListFieldType
)i
) );
523 void wxFileListCtrl::UpdateFiles()
525 // don't do anything before ShowModal() call which sets m_dirName
526 if ( m_dirName
== wxT("*") )
529 wxBusyCursor bcur
; // this may take a while...
537 #if (defined(__WINDOWS__) || defined(__DOS__) || defined(__WXMAC__) || defined(__OS2__)) && !defined(__WXWINCE__)
538 if ( IsTopMostDir(m_dirName
) )
540 wxArrayString names
, paths
;
542 const size_t count
= wxGetAvailableDrives(paths
, names
, icons
);
544 for ( size_t n
= 0; n
< count
; n
++ )
546 // use paths[n] as the drive name too as our HandleAction() can't
547 // deal with the drive names (of the form "System (C:)") currently
548 // as it mistakenly treats them as file names
550 // it would be preferable to show names, and not paths, in the
551 // dialog just as the native dialog does but for this we must:
552 // a) store the item type as item data and modify HandleAction()
553 // to use it instead of wxDirExists() to check whether the item
555 // b) store the drives by their drive letters and not their
556 // descriptions as otherwise it's pretty confusing to the user
557 wxFileData
*fd
= new wxFileData(paths
[n
], paths
[n
],
558 wxFileData::is_drive
, icons
[n
]);
559 if (Add(fd
, item
) != -1)
566 #endif // defined(__DOS__) || defined(__WINDOWS__)
569 if ( !IsTopMostDir(m_dirName
) && !m_dirName
.empty() )
571 wxString
p(wxPathOnly(m_dirName
));
572 #if (defined(__UNIX__) || defined(__WXWINCE__)) && !defined(__OS2__)
573 if (p
.empty()) p
= wxT("/");
575 wxFileData
*fd
= new wxFileData(p
, wxT(".."), wxFileData::is_dir
, wxFileIconsTable::folder
);
576 if (Add(fd
, item
) != -1)
582 wxString
dirname(m_dirName
);
583 #if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
584 if (dirname
.length() == 2 && dirname
[1u] == wxT(':'))
585 dirname
<< wxT('\\');
586 #endif // defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
589 dirname
= wxFILE_SEP_PATH
;
594 if ( dir
.IsOpened() )
596 wxString
dirPrefix(dirname
);
597 if (dirPrefix
.Last() != wxFILE_SEP_PATH
)
598 dirPrefix
+= wxFILE_SEP_PATH
;
600 int hiddenFlag
= m_showHidden
? wxDIR_HIDDEN
: 0;
605 // Get the directories first (not matched against wildcards):
606 cont
= dir
.GetFirst(&f
, wxEmptyString
, wxDIR_DIRS
| hiddenFlag
);
609 wxFileData
*fd
= new wxFileData(dirPrefix
+ f
, f
, wxFileData::is_dir
, wxFileIconsTable::folder
);
610 if (Add(fd
, item
) != -1)
615 cont
= dir
.GetNext(&f
);
618 // Tokenize the wildcard string, so we can handle more than 1
619 // search pattern in a wildcard.
620 wxStringTokenizer
tokenWild(m_wild
, wxT(";"));
621 while ( tokenWild
.HasMoreTokens() )
623 cont
= dir
.GetFirst(&f
, tokenWild
.GetNextToken(),
624 wxDIR_FILES
| hiddenFlag
);
627 wxFileData
*fd
= new wxFileData(dirPrefix
+ f
, f
, wxFileData::is_file
, wxFileIconsTable::file
);
628 if (Add(fd
, item
) != -1)
633 cont
= dir
.GetNext(&f
);
639 SortItems(m_sort_field
, m_sort_forward
);
642 void wxFileListCtrl::SetWild( const wxString
&wild
)
644 if (wild
.Find(wxT('|')) != wxNOT_FOUND
)
651 void wxFileListCtrl::MakeDir()
653 wxString
new_name( _("NewName") );
654 wxString
path( m_dirName
);
655 path
+= wxFILE_SEP_PATH
;
657 if (wxFileExists(path
))
659 // try NewName0, NewName1 etc.
662 new_name
= _("NewName");
664 num
.Printf( wxT("%d"), i
);
668 path
+= wxFILE_SEP_PATH
;
671 } while (wxFileExists(path
));
677 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
682 wxFileData
*fd
= new wxFileData( path
, new_name
, wxFileData::is_dir
, wxFileIconsTable::folder
);
686 long itemid
= Add( fd
, item
);
690 SortItems(m_sort_field
, m_sort_forward
);
691 itemid
= FindItem( 0, wxPtrToUInt(fd
) );
692 EnsureVisible( itemid
);
699 void wxFileListCtrl::GoToParentDir()
701 if (!IsTopMostDir(m_dirName
))
703 size_t len
= m_dirName
.length();
704 if (wxEndsWithPathSeparator(m_dirName
))
705 m_dirName
.Remove( len
-1, 1 );
706 wxString
fname( wxFileNameFromPath(m_dirName
) );
707 m_dirName
= wxPathOnly( m_dirName
);
708 #if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
709 if (!m_dirName
.empty())
711 if (m_dirName
.Last() == wxT('.'))
712 m_dirName
= wxEmptyString
;
714 #elif defined(__UNIX__)
715 if (m_dirName
.empty())
716 m_dirName
= wxT("/");
719 long id
= FindItem( 0, fname
);
720 if (id
!= wxNOT_FOUND
)
722 SetItemState( id
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
728 void wxFileListCtrl::GoToHomeDir()
730 wxString s
= wxGetUserHome( wxString() );
734 void wxFileListCtrl::GoToDir( const wxString
&dir
)
736 if (!wxDirExists(dir
)) return;
741 SetItemState( 0, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
746 void wxFileListCtrl::FreeItemData(wxListItem
& item
)
750 wxFileData
*fd
= (wxFileData
*)item
.m_data
;
757 void wxFileListCtrl::OnListDeleteItem( wxListEvent
&event
)
759 FreeItemData(event
.m_item
);
762 void wxFileListCtrl::OnListDeleteAllItems( wxListEvent
& WXUNUSED(event
) )
767 void wxFileListCtrl::FreeAllItemsData()
770 item
.m_mask
= wxLIST_MASK_DATA
;
772 item
.m_itemId
= GetNextItem( -1, wxLIST_NEXT_ALL
);
773 while ( item
.m_itemId
!= -1 )
777 item
.m_itemId
= GetNextItem( item
.m_itemId
, wxLIST_NEXT_ALL
);
781 void wxFileListCtrl::OnListEndLabelEdit( wxListEvent
&event
)
783 wxFileData
*fd
= (wxFileData
*)event
.m_item
.m_data
;
786 if ((event
.GetLabel().empty()) ||
787 (event
.GetLabel() == wxT(".")) ||
788 (event
.GetLabel() == wxT("..")) ||
789 (event
.GetLabel().First( wxFILE_SEP_PATH
) != wxNOT_FOUND
))
791 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
797 wxString
new_name( wxPathOnly( fd
->GetFilePath() ) );
798 new_name
+= wxFILE_SEP_PATH
;
799 new_name
+= event
.GetLabel();
803 if (wxFileExists(new_name
))
805 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
810 if (wxRenameFile(fd
->GetFilePath(),new_name
))
812 fd
->SetNewName( new_name
, event
.GetLabel() );
814 SetItemState( event
.GetItem(), wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
816 UpdateItem( event
.GetItem() );
817 EnsureVisible( event
.GetItem() );
821 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
827 void wxFileListCtrl::OnListColClick( wxListEvent
&event
)
829 int col
= event
.GetColumn();
833 case wxFileData::FileList_Name
:
834 case wxFileData::FileList_Size
:
835 case wxFileData::FileList_Type
:
836 case wxFileData::FileList_Time
: break;
840 if ((wxFileData::fileListFieldType
)col
== m_sort_field
)
841 m_sort_forward
= !m_sort_forward
;
843 m_sort_field
= (wxFileData::fileListFieldType
)col
;
845 SortItems(m_sort_field
, m_sort_forward
);
848 void wxFileListCtrl::SortItems(wxFileData::fileListFieldType field
, bool forward
)
850 m_sort_field
= field
;
851 m_sort_forward
= forward
;
852 const long sort_dir
= forward
? 1 : -1;
854 switch (m_sort_field
)
856 case wxFileData::FileList_Size
:
857 wxListCtrl::SortItems(wxFileDataSizeCompare
, sort_dir
);
860 case wxFileData::FileList_Type
:
861 wxListCtrl::SortItems(wxFileDataTypeCompare
, sort_dir
);
864 case wxFileData::FileList_Time
:
865 wxListCtrl::SortItems(wxFileDataTimeCompare
, sort_dir
);
868 case wxFileData::FileList_Name
:
870 wxListCtrl::SortItems(wxFileDataNameCompare
, sort_dir
);
875 wxFileListCtrl::~wxFileListCtrl()
877 // Normally the data are freed via an EVT_LIST_DELETE_ALL_ITEMS event and
878 // wxFileListCtrl::OnListDeleteAllItems. But if the event is generated after
879 // the destruction of the wxFileListCtrl we need to free any data here:
883 #define ID_CHOICE (wxID_FILECTRL + 1)
884 #define ID_TEXT (wxID_FILECTRL + 2)
885 #define ID_FILELIST_CTRL (wxID_FILECTRL + 3)
886 #define ID_CHECK (wxID_FILECTRL + 4)
888 ///////////////////////////////////////////////////////////////////////////////
889 // wxGenericFileCtrl implementation
890 ///////////////////////////////////////////////////////////////////////////////
892 IMPLEMENT_DYNAMIC_CLASS( wxGenericFileCtrl
, wxNavigationEnabled
<wxControl
> )
894 BEGIN_EVENT_TABLE( wxGenericFileCtrl
, wxNavigationEnabled
<wxControl
> )
895 EVT_LIST_ITEM_SELECTED( ID_FILELIST_CTRL
, wxGenericFileCtrl::OnSelected
)
896 EVT_LIST_ITEM_ACTIVATED( ID_FILELIST_CTRL
, wxGenericFileCtrl::OnActivated
)
897 EVT_CHOICE( ID_CHOICE
, wxGenericFileCtrl::OnChoiceFilter
)
898 EVT_TEXT_ENTER( ID_TEXT
, wxGenericFileCtrl::OnTextEnter
)
899 EVT_TEXT( ID_TEXT
, wxGenericFileCtrl::OnTextChange
)
900 EVT_CHECKBOX( ID_CHECK
, wxGenericFileCtrl::OnCheck
)
903 bool wxGenericFileCtrl::Create( wxWindow
*parent
,
905 const wxString
& defaultDirectory
,
906 const wxString
& defaultFileName
,
907 const wxString
& wildCard
,
911 const wxString
& name
)
913 this->m_style
= style
;
914 m_inSelected
= false;
915 m_noSelChgEvent
= false;
918 // check that the styles are not contradictory
919 wxASSERT_MSG( !( ( m_style
& wxFC_SAVE
) && ( m_style
& wxFC_OPEN
) ),
920 wxT( "can't specify both wxFC_SAVE and wxFC_OPEN at once" ) );
922 wxASSERT_MSG( !( ( m_style
& wxFC_SAVE
) && ( m_style
& wxFC_MULTIPLE
) ),
923 wxT( "wxFC_MULTIPLE can't be used with wxFC_SAVE" ) );
925 wxNavigationEnabled
<wxControl
>::Create( parent
, id
,
931 m_dir
= defaultDirectory
;
933 m_ignoreChanges
= true;
935 if ( ( m_dir
.empty() ) || ( m_dir
== wxT( "." ) ) )
939 m_dir
= wxFILE_SEP_PATH
;
942 const size_t len
= m_dir
.length();
943 if ( ( len
> 1 ) && ( wxEndsWithPathSeparator( m_dir
) ) )
944 m_dir
.Remove( len
- 1, 1 );
946 m_filterExtension
= wxEmptyString
;
950 const bool is_pda
= ( wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
952 wxBoxSizer
*mainsizer
= new wxBoxSizer( wxVERTICAL
);
954 wxBoxSizer
*staticsizer
= new wxBoxSizer( wxHORIZONTAL
);
956 staticsizer
->Add( new wxStaticText( this, wxID_ANY
, _( "Current directory:" ) ),
957 wxSizerFlags().DoubleBorder(wxRIGHT
) );
958 m_static
= new wxStaticText( this, wxID_ANY
, m_dir
);
959 staticsizer
->Add( m_static
, 1 );
960 mainsizer
->Add( staticsizer
, wxSizerFlags().Expand().Border());
962 long style2
= wxLC_LIST
;
963 if ( !( m_style
& wxFC_MULTIPLE
) )
964 style2
|= wxLC_SINGLE_SEL
;
967 style2
|= wxSIMPLE_BORDER
;
969 style2
|= wxSUNKEN_BORDER
;
972 m_list
= new wxFileListCtrl( this, ID_FILELIST_CTRL
,
973 wxEmptyString
, false,
974 wxDefaultPosition
, wxSize( 400, 140 ),
977 m_text
= new wxTextCtrl( this, ID_TEXT
, wxEmptyString
,
978 wxDefaultPosition
, wxDefaultSize
,
979 wxTE_PROCESS_ENTER
);
980 m_choice
= new wxChoice( this, ID_CHOICE
);
984 // PDAs have a different screen layout
985 mainsizer
->Add( m_list
, wxSizerFlags( 1 ).Expand().HorzBorder() );
987 wxBoxSizer
*textsizer
= new wxBoxSizer( wxHORIZONTAL
);
988 textsizer
->Add( m_text
, wxSizerFlags( 1 ).Centre().Border() );
989 textsizer
->Add( m_choice
, wxSizerFlags( 1 ).Centre().Border() );
990 mainsizer
->Add( textsizer
, wxSizerFlags().Expand() );
995 mainsizer
->Add( m_list
, wxSizerFlags( 1 ).Expand().Border() );
996 mainsizer
->Add( m_text
, wxSizerFlags().Expand().Border() );
998 wxBoxSizer
*choicesizer
= new wxBoxSizer( wxHORIZONTAL
);
999 choicesizer
->Add( m_choice
, wxSizerFlags( 1 ).Centre() );
1001 if ( !( m_style
& wxFC_NOSHOWHIDDEN
) )
1003 m_check
= new wxCheckBox( this, ID_CHECK
, _( "Show &hidden files" ) );
1004 choicesizer
->Add( m_check
, wxSizerFlags().Centre().DoubleBorder(wxLEFT
) );
1007 mainsizer
->Add( choicesizer
, wxSizerFlags().Expand().Border() );
1010 SetWildcard( wildCard
);
1012 SetAutoLayout( true );
1013 SetSizer( mainsizer
);
1017 mainsizer
->Fit( this );
1020 m_list
->GoToDir( m_dir
);
1022 m_text
->SetValue( m_fileName
);
1024 m_ignoreChanges
= false;
1026 // must be after m_ignoreChanges = false
1027 SetFilename( defaultFileName
);
1032 // NB: there is an unfortunate mismatch between wxFileName and wxFileDialog
1033 // method names but our GetDirectory() does correspond to wxFileName::
1034 // GetPath() while our GetPath() is wxFileName::GetFullPath()
1035 wxString
wxGenericFileCtrl::GetPath() const
1037 wxASSERT_MSG ( !(m_style
& wxFC_MULTIPLE
), "use GetPaths() instead" );
1039 return DoGetFileName().GetFullPath();
1042 wxString
wxGenericFileCtrl::GetFilename() const
1044 wxASSERT_MSG ( !(m_style
& wxFC_MULTIPLE
), "use GetFilenames() instead" );
1046 return DoGetFileName().GetFullName();
1049 wxString
wxGenericFileCtrl::GetDirectory() const
1051 // don't check for wxFC_MULTIPLE here, this one is probably safe to call in
1052 // any case as it can be always taken to mean "current directory"
1053 return DoGetFileName().GetPath();
1056 wxFileName
wxGenericFileCtrl::DoGetFileName() const
1060 wxString value
= m_text
->GetValue();
1061 if ( value
.empty() )
1063 // nothing in the text control, get the selected file from the list
1065 item
.m_itemId
= m_list
->GetNextItem(-1, wxLIST_NEXT_ALL
,
1066 wxLIST_STATE_SELECTED
);
1067 m_list
->GetItem(item
);
1069 fn
.Assign(m_list
->GetDir(), item
.m_text
);
1071 else // user entered the value
1073 // the path can be either absolute or relative
1075 if ( fn
.IsRelative() )
1076 fn
.MakeAbsolute(m_list
->GetDir());
1082 // helper used in DoGetFilenames() and needed because Borland can't compile
1083 // operator?: inline
1084 static inline wxString
GetFileNameOrPath(const wxFileName
& fn
, bool fullPath
)
1086 return fullPath
? fn
.GetFullPath() : fn
.GetFullName();
1090 wxGenericFileCtrl::DoGetFilenames(wxArrayString
& filenames
, bool fullPath
) const
1094 const wxString dir
= m_list
->GetDir();
1096 const wxString value
= m_text
->GetValue();
1097 if ( !value
.empty() )
1099 wxFileName
fn(value
);
1100 if ( fn
.IsRelative() )
1101 fn
.MakeAbsolute(dir
);
1103 filenames
.push_back(GetFileNameOrPath(fn
, fullPath
));
1107 const int numSel
= m_list
->GetSelectedItemCount();
1111 filenames
.reserve(numSel
);
1114 item
.m_mask
= wxLIST_MASK_TEXT
;
1118 item
.m_itemId
= m_list
->GetNextItem(item
.m_itemId
, wxLIST_NEXT_ALL
,
1119 wxLIST_STATE_SELECTED
);
1121 if ( item
.m_itemId
== -1 )
1124 m_list
->GetItem(item
);
1126 const wxFileName
fn(dir
, item
.m_text
);
1127 filenames
.push_back(GetFileNameOrPath(fn
, fullPath
));
1131 bool wxGenericFileCtrl::SetDirectory( const wxString
& dir
)
1133 m_ignoreChanges
= true;
1134 m_list
->GoToDir( dir
);
1136 m_ignoreChanges
= false;
1138 return wxFileName( dir
).SameAs( m_list
->GetDir() );
1141 bool wxGenericFileCtrl::SetFilename( const wxString
& name
)
1143 const long item
= m_list
->FindItem( -1, name
);
1145 if ( item
== -1 ) // file not found either because it doesn't exist or the
1146 // current filter doesn't show it.
1149 m_noSelChgEvent
= true;
1151 // Deselect selected items
1153 const int numSelectedItems
= m_list
->GetSelectedItemCount();
1155 if ( numSelectedItems
> 0 )
1157 long itemIndex
= -1;
1161 itemIndex
= m_list
->GetNextItem( itemIndex
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1162 if ( itemIndex
== -1 )
1165 m_list
->SetItemState( itemIndex
, 0, wxLIST_STATE_SELECTED
);
1170 m_list
->SetItemState( item
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
1171 m_list
->EnsureVisible( item
);
1173 m_noSelChgEvent
= false;
1178 void wxGenericFileCtrl::DoSetFilterIndex( int filterindex
)
1180 wxClientData
*pcd
= m_choice
->GetClientObject( filterindex
);
1184 const wxString
& str
= ((static_cast<wxStringClientData
*>(pcd
))->GetData());
1185 m_list
->SetWild( str
);
1186 m_filterIndex
= filterindex
;
1187 if ( str
.Left( 2 ) == wxT( "*." ) )
1189 m_filterExtension
= str
.Mid( 1 );
1190 if ( m_filterExtension
== wxT( ".*" ) )
1191 m_filterExtension
.clear();
1195 m_filterExtension
.clear();
1198 GenerateFilterChangedEvent( this, this );
1201 void wxGenericFileCtrl::SetWildcard( const wxString
& wildCard
)
1203 if ( wildCard
.empty() || wildCard
== wxFileSelectorDefaultWildcardStr
)
1205 m_wildCard
= wxString::Format( _( "All files (%s)|%s" ),
1206 wxFileSelectorDefaultWildcardStr
,
1207 wxFileSelectorDefaultWildcardStr
);
1210 m_wildCard
= wildCard
;
1212 wxArrayString wildDescriptions
, wildFilters
;
1213 const size_t count
= wxParseCommonDialogsFilter( m_wildCard
,
1216 wxCHECK_RET( count
, wxT( "wxFileDialog: bad wildcard string" ) );
1220 for ( size_t n
= 0; n
< count
; n
++ )
1222 m_choice
->Append(wildDescriptions
[n
], new wxStringClientData(wildFilters
[n
]));
1225 SetFilterIndex( 0 );
1228 void wxGenericFileCtrl::SetFilterIndex( int filterindex
)
1230 m_choice
->SetSelection( filterindex
);
1232 DoSetFilterIndex( filterindex
);
1235 void wxGenericFileCtrl::OnChoiceFilter( wxCommandEvent
&event
)
1237 DoSetFilterIndex( ( int )event
.GetInt() );
1240 void wxGenericFileCtrl::OnCheck( wxCommandEvent
&event
)
1242 m_list
->ShowHidden( event
.GetInt() != 0 );
1245 void wxGenericFileCtrl::OnActivated( wxListEvent
&event
)
1247 HandleAction( event
.m_item
.m_text
);
1250 void wxGenericFileCtrl::OnTextEnter( wxCommandEvent
&WXUNUSED( event
) )
1252 HandleAction( m_text
->GetValue() );
1255 void wxGenericFileCtrl::OnTextChange( wxCommandEvent
&WXUNUSED( event
) )
1257 if ( !m_ignoreChanges
)
1259 // Clear selections. Otherwise when the user types in a value they may
1260 // not get the file whose name they typed.
1261 if ( m_list
->GetSelectedItemCount() > 0 )
1263 long item
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
,
1264 wxLIST_STATE_SELECTED
);
1265 while ( item
!= -1 )
1267 m_list
->SetItemState( item
, 0, wxLIST_STATE_SELECTED
);
1268 item
= m_list
->GetNextItem( item
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1274 void wxGenericFileCtrl::OnSelected( wxListEvent
&event
)
1276 if ( m_ignoreChanges
)
1282 m_inSelected
= true;
1283 const wxString
filename( event
.m_item
.m_text
);
1286 // No double-click on most WinCE devices, so do action immediately.
1287 HandleAction( filename
);
1289 if ( filename
== wxT( ".." ) )
1291 m_inSelected
= false;
1295 wxString dir
= m_list
->GetDir();
1296 if ( !IsTopMostDir( dir
) )
1297 dir
+= wxFILE_SEP_PATH
;
1299 if ( wxDirExists( dir
) )
1301 m_inSelected
= false;
1307 m_ignoreChanges
= true;
1308 m_text
->SetValue( filename
);
1310 if ( m_list
->GetSelectedItemCount() > 1 )
1315 if ( !m_noSelChgEvent
)
1316 GenerateSelectionChangedEvent( this, this );
1318 m_ignoreChanges
= false;
1320 m_inSelected
= false;
1323 void wxGenericFileCtrl::HandleAction( const wxString
&fn
)
1325 if ( m_ignoreChanges
)
1328 wxString
filename( fn
);
1329 if ( filename
.empty() )
1333 if ( filename
== wxT( "." ) ) return;
1335 wxString dir
= m_list
->GetDir();
1337 // "some/place/" means they want to chdir not try to load "place"
1338 const bool want_dir
= filename
.Last() == wxFILE_SEP_PATH
;
1340 filename
= filename
.RemoveLast();
1342 if ( filename
== wxT( ".." ) )
1344 m_ignoreChanges
= true;
1345 m_list
->GoToParentDir();
1347 GenerateFolderChangedEvent( this, this );
1350 m_ignoreChanges
= false;
1355 if ( filename
== wxT( "~" ) )
1357 m_ignoreChanges
= true;
1358 m_list
->GoToHomeDir();
1360 GenerateFolderChangedEvent( this, this );
1363 m_ignoreChanges
= false;
1367 if ( filename
.BeforeFirst( wxT( '/' ) ) == wxT( "~" ) )
1369 filename
= wxString( wxGetUserHome() ) + filename
.Remove( 0, 1 );
1373 if ( !( m_style
& wxFC_SAVE
) )
1375 if ( ( filename
.Find( wxT( '*' ) ) != wxNOT_FOUND
) ||
1376 ( filename
.Find( wxT( '?' ) ) != wxNOT_FOUND
) )
1378 if ( filename
.Find( wxFILE_SEP_PATH
) != wxNOT_FOUND
)
1380 wxMessageBox( _( "Illegal file specification." ),
1381 _( "Error" ), wxOK
| wxICON_ERROR
, this );
1384 m_list
->SetWild( filename
);
1389 if ( !IsTopMostDir( dir
) )
1390 dir
+= wxFILE_SEP_PATH
;
1391 if ( !wxIsAbsolutePath( filename
) )
1397 if ( wxDirExists( filename
) )
1399 m_ignoreChanges
= true;
1400 m_list
->GoToDir( filename
);
1403 GenerateFolderChangedEvent( this, this );
1405 m_ignoreChanges
= false;
1409 // they really wanted a dir, but it doesn't exist
1412 wxMessageBox( _( "Directory doesn't exist." ), _( "Error" ),
1413 wxOK
| wxICON_ERROR
, this );
1417 // append the default extension to the filename if it doesn't have any
1419 // VZ: the logic of testing for !wxFileExists() only for the open file
1420 // dialog is not entirely clear to me, why don't we allow saving to a
1421 // file without extension as well?
1422 if ( !( m_style
& wxFC_OPEN
) || !wxFileExists( filename
) )
1424 filename
= wxFileDialogBase::AppendExtension( filename
, m_filterExtension
);
1425 GenerateFileActivatedEvent( this, this, wxFileName( filename
).GetFullName() );
1429 GenerateFileActivatedEvent( this, this );
1432 bool wxGenericFileCtrl::SetPath( const wxString
& path
)
1434 if ( !wxFileName::FileExists( ( path
) ) )
1438 wxFileName::SplitPath( path
, &m_dir
, &m_fileName
, &ext
);
1441 m_fileName
+= wxT( "." );
1445 SetDirectory( m_dir
);
1446 SetFilename( m_fileName
);
1451 void wxGenericFileCtrl::GetPaths( wxArrayString
& paths
) const
1453 DoGetFilenames( paths
, true );
1456 void wxGenericFileCtrl::GetFilenames( wxArrayString
& files
) const
1458 DoGetFilenames( files
, false );
1461 void wxGenericFileCtrl::UpdateControls()
1463 const wxString dir
= m_list
->GetDir();
1464 m_static
->SetLabel( dir
);
1467 void wxGenericFileCtrl::GoToParentDir()
1469 m_list
->GoToParentDir();
1473 void wxGenericFileCtrl::GoToHomeDir()
1475 m_list
->GoToHomeDir();
1479 #endif // wxUSE_FILECTRL