1 //////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/filedlgg.cpp
3 // Purpose: wxGenericFileDialog
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 // NOTE : it probably also supports MAC, untested
22 #if !defined(__UNIX__) && !defined(__DOS__) && !defined(__WIN32__) && !defined(__OS2__)
23 #error wxGenericFileDialog currently only supports Unix, win32 and DOS
26 #include "wx/checkbox.h"
27 #include "wx/textctrl.h"
28 #include "wx/choice.h"
29 #include "wx/checkbox.h"
30 #include "wx/stattext.h"
33 #include "wx/longlong.h"
35 #include "wx/msgdlg.h"
37 #include "wx/bmpbuttn.h"
38 #include "wx/tokenzr.h"
39 #include "wx/config.h"
40 #include "wx/imaglist.h"
42 #include "wx/artprov.h"
43 #include "wx/settings.h"
44 #include "wx/filefn.h"
45 #include "wx/file.h" // for wxS_IXXX constants only
46 #include "wx/filedlg.h" // wxOPEN, wxSAVE...
47 #include "wx/generic/filedlgg.h"
48 #include "wx/generic/dirctrlg.h" // for wxFileIconsTable
51 #include "wx/tooltip.h"
55 #include <sys/types.h>
68 #include "wx/msw/wrapwin.h"
69 #include "wx/msw/mslu.h"
80 #if defined(__UNIX__) || defined(__DOS__)
84 // ----------------------------------------------------------------------------
86 // ----------------------------------------------------------------------------
89 int wxCALLBACK
wxFileDataNameCompare( long data1
, long data2
, long sortOrder
)
91 wxFileData
*fd1
= (wxFileData
*)wxUIntToPtr(data1
);
92 wxFileData
*fd2
= (wxFileData
*)wxUIntToPtr(data2
);
94 if (fd1
->GetFileName() == wxT(".."))
96 if (fd2
->GetFileName() == wxT(".."))
98 if (fd1
->IsDir() && !fd2
->IsDir())
100 if (fd2
->IsDir() && !fd1
->IsDir())
103 return sortOrder
*wxStrcmp( fd1
->GetFileName(), fd2
->GetFileName() );
107 int wxCALLBACK
wxFileDataSizeCompare(long data1
, long data2
, long sortOrder
)
109 wxFileData
*fd1
= (wxFileData
*)wxUIntToPtr(data1
);
110 wxFileData
*fd2
= (wxFileData
*)wxUIntToPtr(data2
);
112 if (fd1
->GetFileName() == wxT(".."))
114 if (fd2
->GetFileName() == wxT(".."))
116 if (fd1
->IsDir() && !fd2
->IsDir())
118 if (fd2
->IsDir() && !fd1
->IsDir())
120 if (fd1
->IsLink() && !fd2
->IsLink())
122 if (fd2
->IsLink() && !fd1
->IsLink())
125 return fd1
->GetSize() > fd2
->GetSize() ? sortOrder
: -sortOrder
;
129 int wxCALLBACK
wxFileDataTypeCompare(long data1
, long data2
, long sortOrder
)
131 wxFileData
*fd1
= (wxFileData
*)wxUIntToPtr(data1
);
132 wxFileData
*fd2
= (wxFileData
*)wxUIntToPtr(data2
);
134 if (fd1
->GetFileName() == wxT(".."))
136 if (fd2
->GetFileName() == wxT(".."))
138 if (fd1
->IsDir() && !fd2
->IsDir())
140 if (fd2
->IsDir() && !fd1
->IsDir())
142 if (fd1
->IsLink() && !fd2
->IsLink())
144 if (fd2
->IsLink() && !fd1
->IsLink())
147 return sortOrder
*wxStrcmp( fd1
->GetFileType(), fd2
->GetFileType() );
151 int wxCALLBACK
wxFileDataTimeCompare(long data1
, long data2
, long sortOrder
)
153 wxFileData
*fd1
= (wxFileData
*)wxUIntToPtr(data1
);
154 wxFileData
*fd2
= (wxFileData
*)wxUIntToPtr(data2
);
156 if (fd1
->GetFileName() == wxT(".."))
158 if (fd2
->GetFileName() == wxT(".."))
160 if (fd1
->IsDir() && !fd2
->IsDir())
162 if (fd2
->IsDir() && !fd1
->IsDir())
165 return fd1
->GetDateTime().IsLaterThan(fd2
->GetDateTime()) ? sortOrder
: -sortOrder
;
168 #if defined(__WXWINCE__)
169 #define IsTopMostDir(dir) (dir == wxT("\\") || dir == wxT("/"))
170 #elif (defined(__DOS__) || defined(__WINDOWS__) || defined (__OS2__))
171 #define IsTopMostDir(dir) (dir.empty())
173 #define IsTopMostDir(dir) (dir == wxT("/"))
176 // defined in src/generic/dirctrlg.cpp
177 extern size_t wxGetAvailableDrives(wxArrayString
&paths
, wxArrayString
&names
, wxArrayInt
&icon_ids
);
179 //-----------------------------------------------------------------------------
181 //-----------------------------------------------------------------------------
183 wxFileData::wxFileData( const wxString
&filePath
, const wxString
&fileName
, fileType type
, int image_id
)
186 m_fileName
= fileName
;
187 m_filePath
= filePath
;
194 void wxFileData::Init()
197 m_type
= wxFileData::is_file
;
198 m_image
= wxFileIconsTable::file
;
201 void wxFileData::Copy( const wxFileData
& fileData
)
203 m_fileName
= fileData
.GetFileName();
204 m_filePath
= fileData
.GetFilePath();
205 m_size
= fileData
.GetSize();
206 m_dateTime
= fileData
.GetDateTime();
207 m_permissions
= fileData
.GetPermissions();
208 m_type
= fileData
.GetType();
209 m_image
= fileData
.GetImageId();
212 void wxFileData::ReadData()
220 #if defined(__DOS__) || (defined(__WINDOWS__) && !defined(__WXWINCE__)) || defined(__OS2__)
221 // c:\.. is a drive don't stat it
222 if ((m_fileName
== wxT("..")) && (m_filePath
.length() <= 5))
228 #endif // __DOS__ || __WINDOWS__
234 DWORD fileAttribs
= GetFileAttributes(m_filePath
.fn_str());
235 m_type
|= (fileAttribs
& FILE_ATTRIBUTE_DIRECTORY
) != 0 ? is_dir
: 0;
238 wxSplitPath(m_filePath
, & p
, & f
, & ext
);
239 if (wxStricmp(ext
, wxT("exe")) == 0)
244 HANDLE fileHandle
= CreateFile(m_filePath
.fn_str(),
249 FILE_ATTRIBUTE_NORMAL
,
252 if (fileHandle
!= INVALID_HANDLE_VALUE
)
254 m_size
= GetFileSize(fileHandle
, 0);
255 CloseHandle(fileHandle
);
258 m_dateTime
= wxFileModificationTime(m_filePath
);
266 #if defined(__UNIX__) && (!defined( __OS2__ ) && !defined(__VMS))
267 lstat( m_filePath
.fn_str(), &buff
);
268 m_type
|= S_ISLNK( buff
.st_mode
) != 0 ? is_link
: 0;
270 // only translate to file charset if we don't go by our
271 // wxStat implementation
272 #ifndef wxNEED_WX_UNISTD_H
273 wxStat( m_filePath
.fn_str() , &buff
);
275 wxStat( m_filePath
, &buff
);
279 m_type
|= (buff
.st_mode
& S_IFDIR
) != 0 ? is_dir
: 0;
280 m_type
|= (buff
.st_mode
& wxS_IXUSR
) != 0 ? is_exe
: 0;
282 m_size
= buff
.st_size
;
284 m_dateTime
= buff
.st_mtime
;
288 #if defined(__UNIX__)
289 m_permissions
.Printf(_T("%c%c%c%c%c%c%c%c%c"),
290 buff
.st_mode
& wxS_IRUSR
? _T('r') : _T('-'),
291 buff
.st_mode
& wxS_IWUSR
? _T('w') : _T('-'),
292 buff
.st_mode
& wxS_IXUSR
? _T('x') : _T('-'),
293 buff
.st_mode
& wxS_IRGRP
? _T('r') : _T('-'),
294 buff
.st_mode
& wxS_IWGRP
? _T('w') : _T('-'),
295 buff
.st_mode
& wxS_IXGRP
? _T('x') : _T('-'),
296 buff
.st_mode
& wxS_IROTH
? _T('r') : _T('-'),
297 buff
.st_mode
& wxS_IWOTH
? _T('w') : _T('-'),
298 buff
.st_mode
& wxS_IXOTH
? _T('x') : _T('-'));
299 #elif defined(__WIN32__)
300 DWORD attribs
= ::GetFileAttributes(m_filePath
.c_str());
301 if (attribs
!= (DWORD
)-1)
303 m_permissions
.Printf(_T("%c%c%c%c"),
304 attribs
& FILE_ATTRIBUTE_ARCHIVE
? _T('A') : _T(' '),
305 attribs
& FILE_ATTRIBUTE_READONLY
? _T('R') : _T(' '),
306 attribs
& FILE_ATTRIBUTE_HIDDEN
? _T('H') : _T(' '),
307 attribs
& FILE_ATTRIBUTE_SYSTEM
? _T('S') : _T(' '));
311 // try to get a better icon
312 if (m_image
== wxFileIconsTable::file
)
314 if (m_fileName
.Find(wxT('.'), true) != wxNOT_FOUND
)
316 m_image
= wxTheFileIconsTable
->GetIconID( m_fileName
.AfterLast(wxT('.')));
319 m_image
= wxFileIconsTable::executable
;
324 wxString
wxFileData::GetFileType() const
332 else if (m_fileName
.Find(wxT('.'), true) != wxNOT_FOUND
)
333 return m_fileName
.AfterLast(wxT('.'));
335 return wxEmptyString
;
338 wxString
wxFileData::GetModificationTime() const
340 // want time as 01:02 so they line up nicely, no %r in WIN32
341 return m_dateTime
.FormatDate() + wxT(" ") + m_dateTime
.Format(wxT("%I:%M:%S %p"));
344 wxString
wxFileData::GetHint() const
346 wxString s
= m_filePath
;
356 s
+= wxString::Format(_("%ld bytes"),
357 wxLongLong(m_size
).ToString().c_str());
363 s
<< GetModificationTime()
371 wxString
wxFileData::GetEntry( fileListFieldType num
) const
381 if (!IsDir() && !IsLink() && !IsDrive())
382 s
= wxLongLong(m_size
).ToString();
391 s
= GetModificationTime();
394 #if defined(__UNIX__) || defined(__WIN32__)
398 #endif // defined(__UNIX__) || defined(__WIN32__)
401 wxFAIL_MSG( _T("unexpected field in wxFileData::GetEntry()") );
407 void wxFileData::SetNewName( const wxString
&filePath
, const wxString
&fileName
)
409 m_fileName
= fileName
;
410 m_filePath
= filePath
;
413 void wxFileData::MakeItem( wxListItem
&item
)
415 item
.m_text
= m_fileName
;
416 item
.ClearAttributes();
418 item
.SetTextColour(*wxRED
);
420 item
.SetTextColour(*wxBLUE
);
422 item
.m_image
= m_image
;
426 wxColour dg
= wxTheColourDatabase
->Find( _T("MEDIUM GREY") );
428 item
.SetTextColour(dg
);
430 item
.m_data
= wxPtrToUInt(this);
433 //-----------------------------------------------------------------------------
435 //-----------------------------------------------------------------------------
437 static bool ignoreChanges
= false;
439 IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl
,wxListCtrl
)
441 BEGIN_EVENT_TABLE(wxFileCtrl
,wxListCtrl
)
442 EVT_LIST_DELETE_ITEM(wxID_ANY
, wxFileCtrl::OnListDeleteItem
)
443 EVT_LIST_DELETE_ALL_ITEMS(wxID_ANY
, wxFileCtrl::OnListDeleteAllItems
)
444 EVT_LIST_END_LABEL_EDIT(wxID_ANY
, wxFileCtrl::OnListEndLabelEdit
)
445 EVT_LIST_COL_CLICK(wxID_ANY
, wxFileCtrl::OnListColClick
)
449 wxFileCtrl::wxFileCtrl()
451 m_showHidden
= false;
453 m_sort_field
= wxFileData::FileList_Name
;
456 wxFileCtrl::wxFileCtrl(wxWindow
*win
,
458 const wxString
& wild
,
463 const wxValidator
&validator
,
464 const wxString
&name
)
465 : wxListCtrl(win
, id
, pos
, size
, style
, validator
, name
),
468 wxImageList
*imageList
= wxTheFileIconsTable
->GetSmallImageList();
470 SetImageList( imageList
, wxIMAGE_LIST_SMALL
);
472 m_showHidden
= showHidden
;
475 m_sort_field
= wxFileData::FileList_Name
;
477 m_dirName
= wxT("*");
479 if (style
& wxLC_REPORT
)
480 ChangeToReportMode();
483 void wxFileCtrl::ChangeToListMode()
486 SetSingleStyle( wxLC_LIST
);
490 void wxFileCtrl::ChangeToReportMode()
493 SetSingleStyle( wxLC_REPORT
);
495 // do this since WIN32 does mm/dd/yy UNIX does mm/dd/yyyy
496 // don't hardcode since mm/dd is dd/mm elsewhere
498 wxDateTime
dt(22, wxDateTime::Dec
, 2002, 22, 22, 22);
499 wxString txt
= dt
.FormatDate() + wxT("22") + dt
.Format(wxT("%I:%M:%S %p"));
500 GetTextExtent(txt
, &w
, &h
);
502 InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT
, w
);
503 InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT
, w
/2 );
504 InsertColumn( 2, _("Type"), wxLIST_FORMAT_LEFT
, w
/2 );
505 InsertColumn( 3, _("Modified"), wxLIST_FORMAT_LEFT
, w
);
506 #if defined(__UNIX__)
507 GetTextExtent(wxT("Permissions 2"), &w
, &h
);
508 InsertColumn( 4, _("Permissions"), wxLIST_FORMAT_LEFT
, w
);
509 #elif defined(__WIN32__)
510 GetTextExtent(wxT("Attributes 2"), &w
, &h
);
511 InsertColumn( 4, _("Attributes"), wxLIST_FORMAT_LEFT
, w
);
517 void wxFileCtrl::ChangeToSmallIconMode()
520 SetSingleStyle( wxLC_SMALL_ICON
);
524 void wxFileCtrl::ShowHidden( bool show
)
530 long wxFileCtrl::Add( wxFileData
*fd
, wxListItem
&item
)
533 item
.m_mask
= wxLIST_MASK_TEXT
+ wxLIST_MASK_DATA
+ wxLIST_MASK_IMAGE
;
534 fd
->MakeItem( item
);
535 long my_style
= GetWindowStyleFlag();
536 if (my_style
& wxLC_REPORT
)
538 ret
= InsertItem( item
);
539 for (int i
= 1; i
< wxFileData::FileList_Max
; i
++)
540 SetItem( item
.m_itemId
, i
, fd
->GetEntry((wxFileData::fileListFieldType
)i
) );
542 else if ((my_style
& wxLC_LIST
) || (my_style
& wxLC_SMALL_ICON
))
544 ret
= InsertItem( item
);
549 void wxFileCtrl::UpdateItem(const wxListItem
&item
)
551 wxFileData
*fd
= (wxFileData
*)GetItemData(item
);
552 wxCHECK_RET(fd
, wxT("invalid filedata"));
556 SetItemText(item
, fd
->GetFileName());
557 SetItemImage(item
, fd
->GetImageId());
559 if (GetWindowStyleFlag() & wxLC_REPORT
)
561 for (int i
= 1; i
< wxFileData::FileList_Max
; i
++)
562 SetItem( item
.m_itemId
, i
, fd
->GetEntry((wxFileData::fileListFieldType
)i
) );
566 void wxFileCtrl::UpdateFiles()
568 // don't do anything before ShowModal() call which sets m_dirName
569 if ( m_dirName
== wxT("*") )
572 wxBusyCursor bcur
; // this may take a while...
580 #if (defined(__WINDOWS__) || defined(__DOS__) || defined(__WXMAC__) || defined(__OS2__)) && !defined(__WXWINCE__)
581 if ( IsTopMostDir(m_dirName
) )
583 wxArrayString names
, paths
;
585 size_t n
, count
= wxGetAvailableDrives(paths
, names
, icons
);
587 for (n
=0; n
<count
; n
++)
589 wxFileData
*fd
= new wxFileData(paths
[n
], names
[n
], wxFileData::is_drive
, icons
[n
]);
590 if (Add(fd
, item
) != -1)
597 #endif // defined(__DOS__) || defined(__WINDOWS__)
600 if ( !IsTopMostDir(m_dirName
) && !m_dirName
.empty() )
602 wxString
p(wxPathOnly(m_dirName
));
603 #if (defined(__UNIX__) || defined(__WXWINCE__)) && !defined(__OS2__)
604 if (p
.empty()) p
= wxT("/");
606 wxFileData
*fd
= new wxFileData(p
, wxT(".."), wxFileData::is_dir
, wxFileIconsTable::folder
);
607 if (Add(fd
, item
) != -1)
613 wxString
dirname(m_dirName
);
614 #if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
615 if (dirname
.length() == 2 && dirname
[1u] == wxT(':'))
616 dirname
<< wxT('\\');
617 #endif // defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
620 dirname
= wxFILE_SEP_PATH
;
625 if ( dir
.IsOpened() )
627 wxString
dirPrefix(dirname
);
628 if (dirPrefix
.Last() != wxFILE_SEP_PATH
)
629 dirPrefix
+= wxFILE_SEP_PATH
;
631 int hiddenFlag
= m_showHidden
? wxDIR_HIDDEN
: 0;
636 // Get the directories first (not matched against wildcards):
637 cont
= dir
.GetFirst(&f
, wxEmptyString
, wxDIR_DIRS
| hiddenFlag
);
640 wxFileData
*fd
= new wxFileData(dirPrefix
+ f
, f
, wxFileData::is_dir
, wxFileIconsTable::folder
);
641 if (Add(fd
, item
) != -1)
646 cont
= dir
.GetNext(&f
);
649 // Tokenize the wildcard string, so we can handle more than 1
650 // search pattern in a wildcard.
651 wxStringTokenizer
tokenWild(m_wild
, wxT(";"));
652 while ( tokenWild
.HasMoreTokens() )
654 cont
= dir
.GetFirst(&f
, tokenWild
.GetNextToken(),
655 wxDIR_FILES
| hiddenFlag
);
658 wxFileData
*fd
= new wxFileData(dirPrefix
+ f
, f
, wxFileData::is_file
, wxFileIconsTable::file
);
659 if (Add(fd
, item
) != -1)
664 cont
= dir
.GetNext(&f
);
670 SortItems(m_sort_field
, m_sort_foward
);
673 void wxFileCtrl::SetWild( const wxString
&wild
)
675 if (wild
.Find(wxT('|')) != wxNOT_FOUND
)
682 void wxFileCtrl::MakeDir()
684 wxString
new_name( _("NewName") );
685 wxString
path( m_dirName
);
686 path
+= wxFILE_SEP_PATH
;
688 if (wxFileExists(path
))
690 // try NewName0, NewName1 etc.
693 new_name
= _("NewName");
695 num
.Printf( wxT("%d"), i
);
699 path
+= wxFILE_SEP_PATH
;
702 } while (wxFileExists(path
));
708 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
713 wxFileData
*fd
= new wxFileData( path
, new_name
, wxFileData::is_dir
, wxFileIconsTable::folder
);
717 long id
= Add( fd
, item
);
721 SortItems(m_sort_field
, m_sort_foward
);
722 id
= FindItem( 0, wxPtrToUInt(fd
) );
730 void wxFileCtrl::GoToParentDir()
732 if (!IsTopMostDir(m_dirName
))
734 size_t len
= m_dirName
.Len();
735 if (wxEndsWithPathSeparator(m_dirName
))
736 m_dirName
.Remove( len
-1, 1 );
737 wxString
fname( wxFileNameFromPath(m_dirName
) );
738 m_dirName
= wxPathOnly( m_dirName
);
739 #if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
740 if (!m_dirName
.empty())
742 if (m_dirName
.Last() == wxT('.'))
743 m_dirName
= wxEmptyString
;
745 #elif defined(__UNIX__)
746 if (m_dirName
.empty())
747 m_dirName
= wxT("/");
750 long id
= FindItem( 0, fname
);
751 if (id
!= wxNOT_FOUND
)
753 ignoreChanges
= true;
754 SetItemState( id
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
756 ignoreChanges
= false;
761 void wxFileCtrl::GoToHomeDir()
763 wxString s
= wxGetUserHome( wxString() );
767 void wxFileCtrl::GoToDir( const wxString
&dir
)
769 if (!wxDirExists(dir
)) return;
774 ignoreChanges
= true;
775 SetItemState( 0, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
776 ignoreChanges
= false;
781 void wxFileCtrl::FreeItemData(wxListItem
& item
)
785 wxFileData
*fd
= (wxFileData
*)item
.m_data
;
792 void wxFileCtrl::OnListDeleteItem( wxListEvent
&event
)
794 FreeItemData(event
.m_item
);
797 void wxFileCtrl::OnListDeleteAllItems( wxListEvent
& WXUNUSED(event
) )
802 void wxFileCtrl::FreeAllItemsData()
805 item
.m_mask
= wxLIST_MASK_DATA
;
807 item
.m_itemId
= GetNextItem( -1, wxLIST_NEXT_ALL
);
808 while ( item
.m_itemId
!= -1 )
812 item
.m_itemId
= GetNextItem( item
.m_itemId
, wxLIST_NEXT_ALL
);
816 void wxFileCtrl::OnListEndLabelEdit( wxListEvent
&event
)
818 wxFileData
*fd
= (wxFileData
*)event
.m_item
.m_data
;
821 if ((event
.GetLabel().empty()) ||
822 (event
.GetLabel() == _(".")) ||
823 (event
.GetLabel() == _("..")) ||
824 (event
.GetLabel().First( wxFILE_SEP_PATH
) != wxNOT_FOUND
))
826 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
832 wxString
new_name( wxPathOnly( fd
->GetFilePath() ) );
833 new_name
+= wxFILE_SEP_PATH
;
834 new_name
+= event
.GetLabel();
838 if (wxFileExists(new_name
))
840 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
845 if (wxRenameFile(fd
->GetFilePath(),new_name
))
847 fd
->SetNewName( new_name
, event
.GetLabel() );
849 ignoreChanges
= true;
850 SetItemState( event
.GetItem(), wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
851 ignoreChanges
= false;
853 UpdateItem( event
.GetItem() );
854 EnsureVisible( event
.GetItem() );
858 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
864 void wxFileCtrl::OnListColClick( wxListEvent
&event
)
866 int col
= event
.GetColumn();
870 case wxFileData::FileList_Name
:
871 case wxFileData::FileList_Size
:
872 case wxFileData::FileList_Type
:
873 case wxFileData::FileList_Time
: break;
877 if ((wxFileData::fileListFieldType
)col
== m_sort_field
)
878 m_sort_foward
= !m_sort_foward
;
880 m_sort_field
= (wxFileData::fileListFieldType
)col
;
882 SortItems(m_sort_field
, m_sort_foward
);
885 void wxFileCtrl::SortItems(wxFileData::fileListFieldType field
, bool forward
)
887 m_sort_field
= field
;
888 m_sort_foward
= forward
;
889 const long sort_dir
= forward
? 1 : -1;
891 switch (m_sort_field
)
893 case wxFileData::FileList_Size
:
894 wxListCtrl::SortItems(wxFileDataSizeCompare
, sort_dir
);
897 case wxFileData::FileList_Type
:
898 wxListCtrl::SortItems(wxFileDataTypeCompare
, sort_dir
);
901 case wxFileData::FileList_Time
:
902 wxListCtrl::SortItems(wxFileDataTimeCompare
, sort_dir
);
905 case wxFileData::FileList_Name
:
907 wxListCtrl::SortItems(wxFileDataNameCompare
, sort_dir
);
912 wxFileCtrl::~wxFileCtrl()
914 // Normally the data are freed via an EVT_LIST_DELETE_ALL_ITEMS event and
915 // wxFileCtrl::OnListDeleteAllItems. But if the event is generated after
916 // the destruction of the wxFileCtrl we need to free any data here:
920 //-----------------------------------------------------------------------------
921 // wxGenericFileDialog
922 //-----------------------------------------------------------------------------
924 #define ID_LIST_MODE (wxID_FILEDLGG )
925 #define ID_REPORT_MODE (wxID_FILEDLGG + 1)
926 #define ID_UP_DIR (wxID_FILEDLGG + 5)
927 #define ID_PARENT_DIR (wxID_FILEDLGG + 6)
928 #define ID_NEW_DIR (wxID_FILEDLGG + 7)
929 #define ID_CHOICE (wxID_FILEDLGG + 8)
930 #define ID_TEXT (wxID_FILEDLGG + 9)
931 #define ID_LIST_CTRL (wxID_FILEDLGG + 10)
932 #define ID_CHECK (wxID_FILEDLGG + 12)
934 IMPLEMENT_DYNAMIC_CLASS(wxGenericFileDialog
, wxFileDialogBase
)
936 BEGIN_EVENT_TABLE(wxGenericFileDialog
,wxDialog
)
937 EVT_BUTTON(ID_LIST_MODE
, wxGenericFileDialog::OnList
)
938 EVT_BUTTON(ID_REPORT_MODE
, wxGenericFileDialog::OnReport
)
939 EVT_BUTTON(ID_UP_DIR
, wxGenericFileDialog::OnUp
)
940 EVT_BUTTON(ID_PARENT_DIR
, wxGenericFileDialog::OnHome
)
941 EVT_BUTTON(ID_NEW_DIR
, wxGenericFileDialog::OnNew
)
942 EVT_BUTTON(wxID_OK
, wxGenericFileDialog::OnListOk
)
943 EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL
, wxGenericFileDialog::OnSelected
)
944 EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL
, wxGenericFileDialog::OnActivated
)
945 EVT_CHOICE(ID_CHOICE
,wxGenericFileDialog::OnChoiceFilter
)
946 EVT_TEXT_ENTER(ID_TEXT
,wxGenericFileDialog::OnTextEnter
)
947 EVT_TEXT(ID_TEXT
,wxGenericFileDialog::OnTextChange
)
948 EVT_CHECKBOX(ID_CHECK
,wxGenericFileDialog::OnCheck
)
951 long wxGenericFileDialog::ms_lastViewStyle
= wxLC_LIST
;
952 bool wxGenericFileDialog::ms_lastShowHidden
= false;
954 void wxGenericFileDialog::Init()
956 m_bypassGenericImpl
= false;
963 m_upDirButton
= NULL
;
964 m_newDirButton
= NULL
;
967 wxGenericFileDialog::wxGenericFileDialog(wxWindow
*parent
,
968 const wxString
& message
,
969 const wxString
& defaultDir
,
970 const wxString
& defaultFile
,
971 const wxString
& wildCard
,
974 bool bypassGenericImpl
) : wxFileDialogBase()
977 Create( parent
, message
, defaultDir
, defaultFile
, wildCard
, style
, pos
, bypassGenericImpl
);
980 bool wxGenericFileDialog::Create( wxWindow
*parent
,
981 const wxString
& message
,
982 const wxString
& defaultDir
,
983 const wxString
& defaultFile
,
984 const wxString
& wildCard
,
987 bool bypassGenericImpl
)
989 m_bypassGenericImpl
= bypassGenericImpl
;
991 if (!wxFileDialogBase::Create(parent
, message
, defaultDir
, defaultFile
,
992 wildCard
, style
, pos
))
997 if (m_bypassGenericImpl
)
1000 if (!wxDialog::Create( parent
, wxID_ANY
, message
, pos
, wxDefaultSize
,
1001 wxDEFAULT_DIALOG_STYLE
1002 #if !(defined(__PDA__) || defined(__SMARTPHONE__))
1010 ignoreChanges
= true;
1012 if (wxConfig::Get(false))
1014 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ViewStyle"),
1016 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ShowHidden"),
1017 &ms_lastShowHidden
);
1020 if (m_dialogStyle
== 0)
1021 m_dialogStyle
= wxOPEN
;
1022 if ((m_dialogStyle
& wxMULTIPLE
) && !(m_dialogStyle
& wxOPEN
))
1023 m_dialogStyle
|= wxOPEN
;
1025 if ((m_dir
.empty()) || (m_dir
== wxT(".")))
1029 m_dir
= wxFILE_SEP_PATH
;
1032 size_t len
= m_dir
.Len();
1033 if ((len
> 1) && (wxEndsWithPathSeparator(m_dir
)))
1034 m_dir
.Remove( len
-1, 1 );
1037 m_path
+= wxFILE_SEP_PATH
;
1038 m_path
+= defaultFile
;
1039 m_filterExtension
= wxEmptyString
;
1043 bool is_pda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
1045 wxBoxSizer
*mainsizer
= new wxBoxSizer( wxVERTICAL
);
1047 wxBoxSizer
*buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
1049 wxBitmapButton
*but
;
1051 but
= new wxBitmapButton(this, ID_LIST_MODE
,
1052 wxArtProvider::GetBitmap(wxART_LIST_VIEW
, wxART_BUTTON
));
1054 but
->SetToolTip( _("View files as a list view") );
1056 buttonsizer
->Add( but
, 0, wxALL
, 5 );
1058 but
= new wxBitmapButton(this, ID_REPORT_MODE
,
1059 wxArtProvider::GetBitmap(wxART_REPORT_VIEW
, wxART_BUTTON
));
1061 but
->SetToolTip( _("View files as a detailed view") );
1063 buttonsizer
->Add( but
, 0, wxALL
, 5 );
1065 buttonsizer
->Add( 30, 5, 1 );
1067 m_upDirButton
= new wxBitmapButton(this, ID_UP_DIR
,
1068 wxArtProvider::GetBitmap(wxART_GO_DIR_UP
, wxART_BUTTON
));
1070 m_upDirButton
->SetToolTip( _("Go to parent directory") );
1072 buttonsizer
->Add( m_upDirButton
, 0, wxALL
, 5 );
1074 #ifndef __DOS__ // VS: Home directory is meaningless in MS-DOS...
1075 but
= new wxBitmapButton(this, ID_PARENT_DIR
,
1076 wxArtProvider::GetBitmap(wxART_GO_HOME
, wxART_BUTTON
));
1078 but
->SetToolTip( _("Go to home directory") );
1080 buttonsizer
->Add( but
, 0, wxALL
, 5);
1082 buttonsizer
->Add( 20, 20 );
1085 m_newDirButton
= new wxBitmapButton(this, ID_NEW_DIR
,
1086 wxArtProvider::GetBitmap(wxART_NEW_DIR
, wxART_BUTTON
));
1088 m_newDirButton
->SetToolTip( _("Create new directory") );
1090 buttonsizer
->Add( m_newDirButton
, 0, wxALL
, 5 );
1093 mainsizer
->Add( buttonsizer
, 0, wxALL
| wxEXPAND
, 0 );
1095 mainsizer
->Add( buttonsizer
, 0, wxALL
| wxEXPAND
, 5 );
1097 wxBoxSizer
*staticsizer
= new wxBoxSizer( wxHORIZONTAL
);
1099 staticsizer
->Add( new wxStaticText( this, wxID_ANY
, _("Current directory:") ), 0, wxRIGHT
, 10 );
1100 m_static
= new wxStaticText( this, wxID_ANY
, m_dir
);
1101 staticsizer
->Add( m_static
, 1 );
1102 mainsizer
->Add( staticsizer
, 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxBOTTOM
, 10 );
1104 long style2
= ms_lastViewStyle
;
1105 if ( !(m_dialogStyle
& wxMULTIPLE
) )
1106 style2
|= wxLC_SINGLE_SEL
;
1109 style2
|= wxSIMPLE_BORDER
;
1111 style2
|= wxSUNKEN_BORDER
;
1114 m_list
= new wxFileCtrl( this, ID_LIST_CTRL
,
1115 wxEmptyString
, ms_lastShowHidden
,
1116 wxDefaultPosition
, wxSize(540,200),
1121 // PDAs have a different screen layout
1122 mainsizer
->Add( m_list
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 5 );
1124 wxBoxSizer
*textsizer
= new wxBoxSizer( wxHORIZONTAL
);
1125 m_text
= new wxTextCtrl( this, ID_TEXT
, m_fileName
, wxDefaultPosition
, wxDefaultSize
, wxTE_PROCESS_ENTER
);
1126 textsizer
->Add( m_text
, 1, wxCENTER
| wxALL
, 5 );
1127 mainsizer
->Add( textsizer
, 0, wxEXPAND
);
1130 m_choice
= new wxChoice( this, ID_CHOICE
);
1131 textsizer
->Add( m_choice
, 1, wxCENTER
|wxALL
, 5 );
1133 wxSizer
*bsizer
= CreateButtonSizer( wxOK
|wxCANCEL
, false, 5 );
1134 if(bsizer
->GetChildren().GetCount() > 0 )
1136 mainsizer
->Add( bsizer
, 0, wxEXPAND
| wxALL
, 5 );
1145 mainsizer
->Add( m_list
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 10 );
1147 wxBoxSizer
*textsizer
= new wxBoxSizer( wxHORIZONTAL
);
1148 m_text
= new wxTextCtrl( this, ID_TEXT
, m_fileName
, wxDefaultPosition
, wxDefaultSize
, wxTE_PROCESS_ENTER
);
1149 textsizer
->Add( m_text
, 1, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
1150 textsizer
->Add( new wxButton( this, wxID_OK
), 0, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
1151 mainsizer
->Add( textsizer
, 0, wxEXPAND
);
1153 wxBoxSizer
*choicesizer
= new wxBoxSizer( wxHORIZONTAL
);
1154 m_choice
= new wxChoice( this, ID_CHOICE
);
1155 choicesizer
->Add( m_choice
, 1, wxCENTER
|wxALL
, 10 );
1156 m_check
= new wxCheckBox( this, ID_CHECK
, _("Show hidden files") );
1157 m_check
->SetValue( ms_lastShowHidden
);
1158 choicesizer
->Add( m_check
, 0, wxCENTER
|wxALL
, 10 );
1159 choicesizer
->Add( new wxButton( this, wxID_CANCEL
), 0, wxCENTER
| wxALL
, 10 );
1160 mainsizer
->Add( choicesizer
, 0, wxEXPAND
);
1163 SetWildcard(wildCard
);
1165 SetAutoLayout( true );
1166 SetSizer( mainsizer
);
1170 mainsizer
->Fit( this );
1171 mainsizer
->SetSizeHints( this );
1178 ignoreChanges
= false;
1183 wxGenericFileDialog::~wxGenericFileDialog()
1185 ignoreChanges
= true;
1187 if (!m_bypassGenericImpl
)
1189 if (wxConfig::Get(false))
1191 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ViewStyle"),
1193 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ShowHidden"),
1197 const int count
= m_choice
->GetCount();
1198 for ( int i
= 0; i
< count
; i
++ )
1200 delete (wxString
*)m_choice
->GetClientData(i
);
1205 int wxGenericFileDialog::ShowModal()
1207 ignoreChanges
= true;
1209 m_list
->GoToDir(m_dir
);
1211 m_text
->SetValue(m_fileName
);
1213 ignoreChanges
= false;
1215 return wxDialog::ShowModal();
1218 bool wxGenericFileDialog::Show( bool show
)
1220 // Called by ShowModal, so don't repeate the update
1224 m_list
->GoToDir(m_dir
);
1226 m_text
->SetValue(m_fileName
);
1230 return wxDialog::Show( show
);
1233 void wxGenericFileDialog::DoSetFilterIndex(int filterindex
)
1235 wxString
*str
= (wxString
*) m_choice
->GetClientData( filterindex
);
1236 m_list
->SetWild( *str
);
1237 m_filterIndex
= filterindex
;
1238 if ( str
->Left(2) == wxT("*.") )
1240 m_filterExtension
= str
->Mid(1);
1241 if (m_filterExtension
== _T(".*"))
1242 m_filterExtension
.clear();
1246 m_filterExtension
.clear();
1250 void wxGenericFileDialog::SetWildcard(const wxString
& wildCard
)
1252 wxFileDialogBase::SetWildcard(wildCard
);
1254 wxArrayString wildDescriptions
, wildFilters
;
1255 const size_t count
= wxParseCommonDialogsFilter(m_wildCard
,
1258 wxCHECK_RET( count
, wxT("wxFileDialog: bad wildcard string") );
1260 const size_t countOld
= m_choice
->GetCount();
1262 for ( n
= 0; n
< countOld
; n
++ )
1264 delete (wxString
*)m_choice
->GetClientData(n
);
1267 for ( n
= 0; n
< count
; n
++ )
1269 m_choice
->Append( wildDescriptions
[n
], new wxString( wildFilters
[n
] ) );
1272 SetFilterIndex( 0 );
1275 void wxGenericFileDialog::SetFilterIndex( int filterindex
)
1277 m_choice
->SetSelection( filterindex
);
1279 DoSetFilterIndex(filterindex
);
1282 void wxGenericFileDialog::OnChoiceFilter( wxCommandEvent
&event
)
1284 DoSetFilterIndex((int)event
.GetInt());
1287 void wxGenericFileDialog::OnCheck( wxCommandEvent
&event
)
1289 m_list
->ShowHidden( (ms_lastShowHidden
= event
.GetInt() != 0) );
1292 void wxGenericFileDialog::OnActivated( wxListEvent
&event
)
1294 HandleAction( event
.m_item
.m_text
);
1297 void wxGenericFileDialog::OnTextEnter( wxCommandEvent
&WXUNUSED(event
) )
1299 HandleAction( m_text
->GetValue() );
1302 void wxGenericFileDialog::OnTextChange( wxCommandEvent
&WXUNUSED(event
) )
1306 // Clear selections. Otherwise when the user types in a value they may
1307 // not get the file whose name they typed.
1308 if (m_list
->GetSelectedItemCount() > 0)
1310 long item
= m_list
->GetNextItem(-1, wxLIST_NEXT_ALL
,
1311 wxLIST_STATE_SELECTED
);
1312 while ( item
!= -1 )
1314 m_list
->SetItemState(item
,0, wxLIST_STATE_SELECTED
);
1315 item
= m_list
->GetNextItem(item
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1321 void wxGenericFileDialog::OnSelected( wxListEvent
&event
)
1323 static bool inSelected
= false;
1329 wxString
filename( event
.m_item
.m_text
);
1332 // No double-click on most WinCE devices, so do action immediately.
1333 HandleAction( filename
);
1335 if (filename
== wxT("..")) return;
1337 wxString dir
= m_list
->GetDir();
1338 if (!IsTopMostDir(dir
))
1339 dir
+= wxFILE_SEP_PATH
;
1341 if (wxDirExists(dir
)) return;
1343 ignoreChanges
= true;
1344 m_text
->SetValue( filename
);
1345 ignoreChanges
= false;
1350 void wxGenericFileDialog::HandleAction( const wxString
&fn
)
1355 wxString
filename( fn
);
1356 if (filename
.empty())
1359 EndModal(wxID_CANCEL
);
1363 if (filename
== wxT(".")) return;
1365 wxString dir
= m_list
->GetDir();
1367 // "some/place/" means they want to chdir not try to load "place"
1368 bool want_dir
= filename
.Last() == wxFILE_SEP_PATH
;
1370 filename
= filename
.RemoveLast();
1372 if (filename
== wxT(".."))
1374 ignoreChanges
= true;
1375 m_list
->GoToParentDir();
1378 ignoreChanges
= false;
1383 if (filename
== wxT("~"))
1385 ignoreChanges
= true;
1386 m_list
->GoToHomeDir();
1389 ignoreChanges
= false;
1393 if (filename
.BeforeFirst(wxT('/')) == wxT("~"))
1395 filename
= wxString(wxGetUserHome()) + filename
.Remove(0, 1);
1399 if (!(m_dialogStyle
& wxSAVE
))
1401 if ((filename
.Find(wxT('*')) != wxNOT_FOUND
) ||
1402 (filename
.Find(wxT('?')) != wxNOT_FOUND
))
1404 if (filename
.Find(wxFILE_SEP_PATH
) != wxNOT_FOUND
)
1406 wxMessageBox(_("Illegal file specification."), _("Error"), wxOK
| wxICON_ERROR
);
1409 m_list
->SetWild( filename
);
1414 if (!IsTopMostDir(dir
))
1415 dir
+= wxFILE_SEP_PATH
;
1416 if (!wxIsAbsolutePath(filename
))
1422 if (wxDirExists(filename
))
1424 ignoreChanges
= true;
1425 m_list
->GoToDir( filename
);
1427 ignoreChanges
= false;
1431 // they really wanted a dir, but it doesn't exist
1434 wxMessageBox(_("Directory doesn't exist."), _("Error"),
1435 wxOK
| wxICON_ERROR
);
1439 // append the default extension to the filename if it doesn't have any
1441 // VZ: the logic of testing for !wxFileExists() only for the open file
1442 // dialog is not entirely clear to me, why don't we allow saving to a
1443 // file without extension as well?
1444 if ( !(m_dialogStyle
& wxOPEN
) || !wxFileExists(filename
) )
1446 filename
= AppendExtension(filename
, m_filterExtension
);
1449 // check that the file [doesn't] exist if necessary
1450 if ( (m_dialogStyle
& wxSAVE
) &&
1451 (m_dialogStyle
& wxOVERWRITE_PROMPT
) &&
1452 wxFileExists( filename
) )
1455 msg
.Printf( _("File '%s' already exists, do you really want to overwrite it?"), filename
.c_str() );
1457 if (wxMessageBox(msg
, _("Confirm"), wxYES_NO
) != wxYES
)
1460 else if ( (m_dialogStyle
& wxOPEN
) &&
1461 (m_dialogStyle
& wxFILE_MUST_EXIST
) &&
1462 !wxFileExists(filename
) )
1464 wxMessageBox(_("Please choose an existing file."), _("Error"),
1465 wxOK
| wxICON_ERROR
);
1468 SetPath( filename
);
1470 // change to the directory where the user went if asked
1471 if ( m_dialogStyle
& wxCHANGE_DIR
)
1474 wxSplitPath(filename
, &cwd
, NULL
, NULL
);
1476 if ( cwd
!= wxGetCwd() )
1478 wxSetWorkingDirectory(cwd
);
1485 void wxGenericFileDialog::OnListOk( wxCommandEvent
&WXUNUSED(event
) )
1487 HandleAction( m_text
->GetValue() );
1490 void wxGenericFileDialog::OnList( wxCommandEvent
&WXUNUSED(event
) )
1492 ignoreChanges
= true;
1493 m_list
->ChangeToListMode();
1494 ms_lastViewStyle
= wxLC_LIST
;
1496 ignoreChanges
= false;
1499 void wxGenericFileDialog::OnReport( wxCommandEvent
&WXUNUSED(event
) )
1501 ignoreChanges
= true;
1502 m_list
->ChangeToReportMode();
1503 ms_lastViewStyle
= wxLC_REPORT
;
1505 ignoreChanges
= false;
1508 void wxGenericFileDialog::OnUp( wxCommandEvent
&WXUNUSED(event
) )
1510 ignoreChanges
= true;
1511 m_list
->GoToParentDir();
1514 ignoreChanges
= false;
1517 void wxGenericFileDialog::OnHome( wxCommandEvent
&WXUNUSED(event
) )
1519 ignoreChanges
= true;
1520 m_list
->GoToHomeDir();
1523 ignoreChanges
= false;
1526 void wxGenericFileDialog::OnNew( wxCommandEvent
&WXUNUSED(event
) )
1528 ignoreChanges
= true;
1532 ignoreChanges
= false;
1535 void wxGenericFileDialog::SetPath( const wxString
& path
)
1537 // not only set the full path but also update filename and dir
1542 m_path
= wxFILE_SEP_PATH
;
1545 if ( !path
.empty() )
1548 wxSplitPath(path
, &m_dir
, &m_fileName
, &ext
);
1551 m_fileName
+= wxT(".");
1557 void wxGenericFileDialog::GetPaths( wxArrayString
& paths
) const
1560 if (m_list
->GetSelectedItemCount() == 0)
1562 paths
.Add( GetPath() );
1566 paths
.Alloc( m_list
->GetSelectedItemCount() );
1568 wxString dir
= m_list
->GetDir();
1570 if (dir
!= wxT("/"))
1573 if (dir
!= wxT("/") && dir
!= wxT("\\"))
1575 dir
+= wxFILE_SEP_PATH
;
1578 item
.m_mask
= wxLIST_MASK_TEXT
;
1580 item
.m_itemId
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1581 while ( item
.m_itemId
!= -1 )
1583 m_list
->GetItem( item
);
1584 paths
.Add( dir
+ item
.m_text
);
1585 item
.m_itemId
= m_list
->GetNextItem( item
.m_itemId
,
1586 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1590 void wxGenericFileDialog::GetFilenames(wxArrayString
& files
) const
1593 if (m_list
->GetSelectedItemCount() == 0)
1595 files
.Add( GetFilename() );
1598 files
.Alloc( m_list
->GetSelectedItemCount() );
1601 item
.m_mask
= wxLIST_MASK_TEXT
;
1603 item
.m_itemId
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1604 while ( item
.m_itemId
!= -1 )
1606 m_list
->GetItem( item
);
1607 files
.Add( item
.m_text
);
1608 item
.m_itemId
= m_list
->GetNextItem( item
.m_itemId
,
1609 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1613 void wxGenericFileDialog::UpdateControls()
1615 wxString dir
= m_list
->GetDir();
1616 m_static
->SetLabel(dir
);
1618 bool enable
= !IsTopMostDir(dir
);
1619 m_upDirButton
->Enable(enable
);
1621 #if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
1622 m_newDirButton
->Enable(enable
);
1623 #endif // defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
1626 #ifdef USE_GENERIC_FILEDIALOG
1628 IMPLEMENT_DYNAMIC_CLASS(wxFileDialog
, wxGenericFileDialog
)
1630 #endif // USE_GENERIC_FILEDIALOG
1632 #endif // wxUSE_FILEDLG