1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGenericFileDialog
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "filedlgg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
25 // NOTE : it probably also supports MAC, untested
26 #if !defined(__UNIX__) && !defined(__DOS__) && !defined(__WIN32__)
27 #error wxGenericFileDialog currently only supports Unix, win32 and DOS
30 #include "wx/checkbox.h"
31 #include "wx/textctrl.h"
32 #include "wx/choice.h"
33 #include "wx/checkbox.h"
34 #include "wx/stattext.h"
38 #include "wx/msgdlg.h"
40 #include "wx/bmpbuttn.h"
41 #include "wx/tokenzr.h"
42 #include "wx/config.h"
43 #include "wx/imaglist.h"
45 #include "wx/artprov.h"
46 #include "wx/file.h" // for wxS_IXXX constants only
47 #include "wx/filedlg.h" // wxOPEN, wxSAVE...
48 #include "wx/generic/filedlgg.h"
49 #include "wx/generic/dirctrlg.h" // for wxFileIconsTable
52 #include "wx/tooltip.h"
55 #include <sys/types.h>
67 #include "wx/msw/wrapwin.h"
68 #include "wx/msw/mslu.h"
76 #if defined(__UNIX__) || defined(__DOS__)
80 // ----------------------------------------------------------------------------
82 // ----------------------------------------------------------------------------
85 int wxCALLBACK
wxFileDataNameCompare( long data1
, long data2
, long data
)
87 wxFileData
*fd1
= (wxFileData
*)data1
;
88 wxFileData
*fd2
= (wxFileData
*)data2
;
89 if (fd1
->GetFileName() == wxT("..")) return -data
;
90 if (fd2
->GetFileName() == wxT("..")) return data
;
91 if (fd1
->IsDir() && !fd2
->IsDir()) return -data
;
92 if (fd2
->IsDir() && !fd1
->IsDir()) return data
;
93 return data
*wxStrcmp( fd1
->GetFileName(), fd2
->GetFileName() );
97 int wxCALLBACK
wxFileDataSizeCompare( long data1
, long data2
, long data
)
99 wxFileData
*fd1
= (wxFileData
*)data1
;
100 wxFileData
*fd2
= (wxFileData
*)data2
;
101 if (fd1
->GetFileName() == wxT("..")) return -data
;
102 if (fd2
->GetFileName() == wxT("..")) return data
;
103 if (fd1
->IsDir() && !fd2
->IsDir()) return -data
;
104 if (fd2
->IsDir() && !fd1
->IsDir()) return data
;
105 if (fd1
->IsLink() && !fd2
->IsLink()) return -data
;
106 if (fd2
->IsLink() && !fd1
->IsLink()) return data
;
107 return data
*(fd1
->GetSize() - fd2
->GetSize());
111 int wxCALLBACK
wxFileDataTypeCompare( long data1
, long data2
, long data
)
113 wxFileData
*fd1
= (wxFileData
*)data1
;
114 wxFileData
*fd2
= (wxFileData
*)data2
;
115 if (fd1
->GetFileName() == wxT("..")) return -data
;
116 if (fd2
->GetFileName() == wxT("..")) return data
;
117 if (fd1
->IsDir() && !fd2
->IsDir()) return -data
;
118 if (fd2
->IsDir() && !fd1
->IsDir()) return data
;
119 if (fd1
->IsLink() && !fd2
->IsLink()) return -data
;
120 if (fd2
->IsLink() && !fd1
->IsLink()) return data
;
121 return data
*wxStrcmp( fd1
->GetFileType(), fd2
->GetFileType() );
125 int wxCALLBACK
wxFileDataTimeCompare( long data1
, long data2
, long data
)
127 wxFileData
*fd1
= (wxFileData
*)data1
;
128 wxFileData
*fd2
= (wxFileData
*)data2
;
129 if (fd1
->GetFileName() == wxT("..")) return -data
;
130 if (fd2
->GetFileName() == wxT("..")) return data
;
131 if (fd1
->IsDir() && !fd2
->IsDir()) return -data
;
132 if (fd2
->IsDir() && !fd1
->IsDir()) return data
;
134 return fd1
->GetDateTime().IsLaterThan(fd2
->GetDateTime()) ? int(data
) : -int(data
);
138 #define IsTopMostDir(dir) (dir == wxT("/"))
141 #if defined(__DOS__) || defined(__WINDOWS__)
142 #define IsTopMostDir(dir) (dir.IsEmpty())
145 #if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
146 // defined in src/generic/dirctrlg.cpp
147 extern bool wxIsDriveAvailable(const wxString
& dirName
);
150 // defined in src/generic/dirctrlg.cpp
151 extern size_t wxGetAvailableDrives(wxArrayString
&paths
, wxArrayString
&names
, wxArrayInt
&icon_ids
);
153 //-----------------------------------------------------------------------------
155 //-----------------------------------------------------------------------------
157 wxFileData::wxFileData( const wxFileData
& fileData
)
159 m_fileName
= fileData
.GetFileName();
160 m_filePath
= fileData
.GetFilePath();
161 m_size
= fileData
.GetSize();
162 m_dateTime
= fileData
.GetDateTime();
163 m_permissions
= fileData
.GetPermissions();
164 m_type
= fileData
.GetType();
165 m_image
= GetImageId();
168 wxFileData::wxFileData( const wxString
&filePath
, const wxString
&fileName
, fileType type
, int image_id
)
170 m_fileName
= fileName
;
171 m_filePath
= filePath
;
178 void wxFileData::ReadData()
186 #if defined(__DOS__) || defined(__WINDOWS__)
187 // c:\.. is a drive don't stat it
188 if ((m_fileName
== wxT("..")) && (m_filePath
.length() <= 5))
194 #endif // __DOS__ || __WINDOWS__
198 #if defined(__UNIX__) && (!defined( __EMX__ ) && !defined(__VMS))
199 lstat( m_filePath
.fn_str(), &buff
);
200 m_type
|= S_ISLNK( buff
.st_mode
) != 0 ? is_link
: 0;
202 wxStat( m_filePath
, &buff
);
205 m_type
|= (buff
.st_mode
& S_IFDIR
) != 0 ? is_dir
: 0;
206 m_type
|= (buff
.st_mode
& wxS_IXUSR
) != 0 ? is_exe
: 0;
208 // try to get a better icon
209 if (m_image
== wxFileIconsTable::file
)
212 m_image
= wxFileIconsTable::executable
;
213 else if (m_fileName
.Find(wxT('.'), TRUE
) != wxNOT_FOUND
)
214 m_image
= wxTheFileIconsTable
->GetIconID(m_fileName
.AfterLast(wxT('.')));
217 m_size
= buff
.st_size
;
219 m_dateTime
= buff
.st_mtime
;
221 #if defined(__UNIX__)
222 m_permissions
.Printf(_T("%c%c%c%c%c%c%c%c%c"),
223 buff
.st_mode
& wxS_IRUSR
? _T('r') : _T('-'),
224 buff
.st_mode
& wxS_IWUSR
? _T('w') : _T('-'),
225 buff
.st_mode
& wxS_IXUSR
? _T('x') : _T('-'),
226 buff
.st_mode
& wxS_IRGRP
? _T('r') : _T('-'),
227 buff
.st_mode
& wxS_IWGRP
? _T('w') : _T('-'),
228 buff
.st_mode
& wxS_IXGRP
? _T('x') : _T('-'),
229 buff
.st_mode
& wxS_IROTH
? _T('r') : _T('-'),
230 buff
.st_mode
& wxS_IWOTH
? _T('w') : _T('-'),
231 buff
.st_mode
& wxS_IXOTH
? _T('x') : _T('-'));
232 #elif defined(__WIN32__)
233 DWORD attribs
= GetFileAttributes(m_filePath
);
234 if (attribs
!= (DWORD
)-1)
236 m_permissions
.Printf(_T("%c%c%c%c"),
237 attribs
& FILE_ATTRIBUTE_ARCHIVE
? _T('A') : _T(' '),
238 attribs
& FILE_ATTRIBUTE_READONLY
? _T('R') : _T(' '),
239 attribs
& FILE_ATTRIBUTE_HIDDEN
? _T('H') : _T(' '),
240 attribs
& FILE_ATTRIBUTE_SYSTEM
? _T('S') : _T(' '));
245 wxString
wxFileData::GetFileType() const
253 else if (m_fileName
.Find(wxT('.'), TRUE
) != wxNOT_FOUND
)
254 return m_fileName
.AfterLast(wxT('.'));
256 return wxEmptyString
;
259 wxString
wxFileData::GetModificationTime() const
261 // want time as 01:02 so they line up nicely, no %r in WIN32
262 return m_dateTime
.FormatDate() + wxT(" ") + m_dateTime
.Format(wxT("%I:%M:%S %p"));
265 wxString
wxFileData::GetHint() const
267 wxString s
= m_filePath
;
277 s
+= wxString::Format( _("%ld bytes"), m_size
);
283 s
<< GetModificationTime()
291 wxString
wxFileData::GetEntry( fileListFieldType num
) const
301 if (!IsDir() && !IsLink() && !IsDrive())
302 s
.Printf(_T("%ld"), m_size
);
311 s
= GetModificationTime();
314 #if defined(__UNIX__) || defined(__WIN32__)
318 #endif // defined(__UNIX__) || defined(__WIN32__)
321 wxFAIL_MSG( _T("unexpected field in wxFileData::GetEntry()") );
327 void wxFileData::SetNewName( const wxString
&filePath
, const wxString
&fileName
)
329 m_fileName
= fileName
;
330 m_filePath
= filePath
;
333 void wxFileData::MakeItem( wxListItem
&item
)
335 item
.m_text
= m_fileName
;
336 item
.ClearAttributes();
338 item
.SetTextColour(*wxRED
);
340 item
.SetTextColour(*wxBLUE
);
342 item
.m_image
= m_image
;
346 wxColour
*dg
= wxTheColourDatabase
->FindColour( _T("MEDIUM GREY") );
347 item
.SetTextColour(*dg
);
349 item
.m_data
= (long)this;
352 //-----------------------------------------------------------------------------
354 //-----------------------------------------------------------------------------
356 IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl
,wxListCtrl
)
358 BEGIN_EVENT_TABLE(wxFileCtrl
,wxListCtrl
)
359 EVT_LIST_DELETE_ITEM(-1, wxFileCtrl::OnListDeleteItem
)
360 EVT_LIST_END_LABEL_EDIT(-1, wxFileCtrl::OnListEndLabelEdit
)
361 EVT_LIST_COL_CLICK(-1, wxFileCtrl::OnListColClick
)
365 wxFileCtrl::wxFileCtrl()
367 m_showHidden
= FALSE
;
369 m_sort_field
= wxFileData::FileList_Name
;
372 wxFileCtrl::wxFileCtrl(wxWindow
*win
,
374 const wxString
& wild
,
379 const wxValidator
&validator
,
380 const wxString
&name
)
381 : wxListCtrl(win
, id
, pos
, size
, style
, validator
, name
),
384 wxImageList
*imageList
= wxTheFileIconsTable
->GetSmallImageList();
386 SetImageList( imageList
, wxIMAGE_LIST_SMALL
);
388 m_showHidden
= showHidden
;
391 m_sort_field
= wxFileData::FileList_Name
;
393 m_dirName
= wxT("*");
395 if (style
& wxLC_REPORT
)
396 ChangeToReportMode();
399 void wxFileCtrl::ChangeToListMode()
402 SetSingleStyle( wxLC_LIST
);
406 void wxFileCtrl::ChangeToReportMode()
409 SetSingleStyle( wxLC_REPORT
);
411 // do this since WIN32 does mm/dd/yy UNIX does mm/dd/yyyy
412 // don't hardcode since mm/dd is dd/mm elsewhere
414 wxDateTime
dt(22, wxDateTime::Dec
, 2002, 22, 22, 22);
415 wxString txt
= dt
.FormatDate() + wxT("22") + dt
.Format(wxT("%I:%M:%S %p"));
416 GetTextExtent(txt
, &w
, &h
);
418 InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT
, w
);
419 InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT
, w
/2 );
420 InsertColumn( 2, _("Type"), wxLIST_FORMAT_LEFT
, w
/2 );
421 InsertColumn( 3, _("Modified"), wxLIST_FORMAT_LEFT
, w
);
422 #if defined(__UNIX__)
423 GetTextExtent(wxT("Permissions 2"), &w
, &h
);
424 InsertColumn( 4, _("Permissions"), wxLIST_FORMAT_LEFT
, w
);
425 #elif defined(__WIN32__)
426 GetTextExtent(wxT("Attributes 2"), &w
, &h
);
427 InsertColumn( 4, _("Attributes"), wxLIST_FORMAT_LEFT
, w
);
433 void wxFileCtrl::ChangeToSmallIconMode()
436 SetSingleStyle( wxLC_SMALL_ICON
);
440 void wxFileCtrl::ShowHidden( bool show
)
446 long wxFileCtrl::Add( wxFileData
*fd
, wxListItem
&item
)
449 item
.m_mask
= wxLIST_MASK_TEXT
+ wxLIST_MASK_DATA
+ wxLIST_MASK_IMAGE
;
450 fd
->MakeItem( item
);
451 long my_style
= GetWindowStyleFlag();
452 if (my_style
& wxLC_REPORT
)
454 ret
= InsertItem( item
);
455 for (int i
= 1; i
< wxFileData::FileList_Max
; i
++)
456 SetItem( item
.m_itemId
, i
, fd
->GetEntry((wxFileData::fileListFieldType
)i
) );
458 else if ((my_style
& wxLC_LIST
) || (my_style
& wxLC_SMALL_ICON
))
460 ret
= InsertItem( item
);
465 void wxFileCtrl::UpdateItem(const wxListItem
&item
)
467 wxFileData
*fd
= (wxFileData
*)GetItemData(item
);
468 wxCHECK_RET(fd
, wxT("invalid filedata"));
472 SetItemText(item
, fd
->GetFileName());
473 SetItemImage(item
, fd
->GetImageId(), fd
->GetImageId());
475 if (GetWindowStyleFlag() & wxLC_REPORT
)
477 for (int i
= 1; i
< wxFileData::FileList_Max
; i
++)
478 SetItem( item
.m_itemId
, i
, fd
->GetEntry((wxFileData::fileListFieldType
)i
) );
482 void wxFileCtrl::UpdateFiles()
484 // don't do anything before ShowModal() call which sets m_dirName
485 if ( m_dirName
== wxT("*") )
488 wxBusyCursor bcur
; // this may take a while...
497 #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXMAC__) || defined(__WXPM__)
498 if ( IsTopMostDir(m_dirName
) )
500 wxArrayString names
, paths
;
502 size_t n
, count
= wxGetAvailableDrives(paths
, names
, icons
);
504 for (n
=0; n
<count
; n
++)
506 wxFileData
*fd
= new wxFileData(paths
[n
], names
[n
], wxFileData::is_drive
, icons
[n
]);
512 #endif // defined(__DOS__) || defined(__WINDOWS__)
515 if ( !IsTopMostDir(m_dirName
) )
517 wxString
p(wxPathOnly(m_dirName
));
519 if (p
.IsEmpty()) p
= wxT("/");
521 wxFileData
*fd
= new wxFileData(p
, wxT(".."), wxFileData::is_dir
, wxFileIconsTable::folder
);
526 wxString
dirname(m_dirName
);
527 #if defined(__DOS__) || defined(__WINDOWS__)
528 if (dirname
.length() == 2 && dirname
[1u] == wxT(':'))
529 dirname
<< wxT('\\');
530 #endif // defined(__DOS__) || defined(__WINDOWS__)
533 if ( dir
.IsOpened() )
535 wxString
dirPrefix(dirname
);
536 if (dirPrefix
.Last() != wxFILE_SEP_PATH
)
537 dirPrefix
+= wxFILE_SEP_PATH
;
539 int hiddenFlag
= m_showHidden
? wxDIR_HIDDEN
: 0;
544 // Get the directories first (not matched against wildcards):
545 cont
= dir
.GetFirst(&f
, wxEmptyString
, wxDIR_DIRS
| hiddenFlag
);
548 wxFileData
*fd
= new wxFileData(dirPrefix
+ f
, f
, wxFileData::is_dir
, wxFileIconsTable::folder
);
551 cont
= dir
.GetNext(&f
);
554 // Tokenize the wildcard string, so we can handle more than 1
555 // search pattern in a wildcard.
556 wxStringTokenizer
tokenWild(m_wild
, wxT(";"));
557 while ( tokenWild
.HasMoreTokens() )
559 cont
= dir
.GetFirst(&f
, tokenWild
.GetNextToken(),
560 wxDIR_FILES
| hiddenFlag
);
563 wxFileData
*fd
= new wxFileData(dirPrefix
+ f
, f
, wxFileData::is_file
, wxFileIconsTable::file
);
566 cont
= dir
.GetNext(&f
);
572 SortItems(m_sort_field
, m_sort_foward
);
575 void wxFileCtrl::SetWild( const wxString
&wild
)
577 if (wild
.Find(wxT('|')) != wxNOT_FOUND
)
584 void wxFileCtrl::MakeDir()
586 wxString
new_name( _("NewName") );
587 wxString
path( m_dirName
);
588 path
+= wxFILE_SEP_PATH
;
590 if (wxFileExists(path
))
592 // try NewName0, NewName1 etc.
595 new_name
= _("NewName");
597 num
.Printf( wxT("%d"), i
);
601 path
+= wxFILE_SEP_PATH
;
604 } while (wxFileExists(path
));
610 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
615 wxFileData
*fd
= new wxFileData( path
, new_name
, wxFileData::is_dir
, wxFileIconsTable::folder
);
619 long id
= Add( fd
, item
);
623 SortItems(m_sort_field
, m_sort_foward
);
624 id
= FindItem( 0, (long)fd
);
630 void wxFileCtrl::GoToParentDir()
632 if (!IsTopMostDir(m_dirName
))
634 size_t len
= m_dirName
.Len();
635 if (wxEndsWithPathSeparator(m_dirName
))
636 m_dirName
.Remove( len
-1, 1 );
637 wxString
fname( wxFileNameFromPath(m_dirName
) );
638 m_dirName
= wxPathOnly( m_dirName
);
639 #if defined(__DOS__) || defined(__WINDOWS__)
640 if (!m_dirName
.IsEmpty())
642 if (m_dirName
.Last() == wxT('.'))
645 #elif defined(__UNIX__)
646 if (m_dirName
.IsEmpty())
647 m_dirName
= wxT("/");
650 long id
= FindItem( 0, fname
);
653 SetItemState( id
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
659 void wxFileCtrl::GoToHomeDir()
661 wxString s
= wxGetUserHome( wxString() );
665 void wxFileCtrl::GoToDir( const wxString
&dir
)
667 if (!wxDirExists(dir
)) return;
671 SetItemState( 0, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
675 void wxFileCtrl::FreeItemData(const wxListItem
& item
)
677 wxFileData
*fd
= (wxFileData
*)item
.m_data
;
681 void wxFileCtrl::OnListDeleteItem( wxListEvent
&event
)
683 FreeItemData(event
.m_item
);
686 void wxFileCtrl::FreeAllItemsData()
689 item
.m_mask
= wxLIST_MASK_DATA
;
691 item
.m_itemId
= GetNextItem( -1, wxLIST_NEXT_ALL
);
692 while ( item
.m_itemId
!= -1 )
696 item
.m_itemId
= GetNextItem( item
.m_itemId
, wxLIST_NEXT_ALL
);
700 void wxFileCtrl::OnListEndLabelEdit( wxListEvent
&event
)
702 wxFileData
*fd
= (wxFileData
*)event
.m_item
.m_data
;
705 if ((event
.GetLabel().IsEmpty()) ||
706 (event
.GetLabel() == _(".")) ||
707 (event
.GetLabel() == _("..")) ||
708 (event
.GetLabel().First( wxFILE_SEP_PATH
) != wxNOT_FOUND
))
710 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
716 wxString
new_name( wxPathOnly( fd
->GetFilePath() ) );
717 new_name
+= wxFILE_SEP_PATH
;
718 new_name
+= event
.GetLabel();
722 if (wxFileExists(new_name
))
724 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
729 if (wxRenameFile(fd
->GetFilePath(),new_name
))
731 fd
->SetNewName( new_name
, event
.GetLabel() );
732 SetItemState( event
.GetItem(), wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
733 UpdateItem( event
.GetItem() );
734 EnsureVisible( event
.GetItem() );
738 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
744 void wxFileCtrl::OnListColClick( wxListEvent
&event
)
746 int col
= event
.GetColumn();
750 case wxFileData::FileList_Name
:
751 case wxFileData::FileList_Size
:
752 case wxFileData::FileList_Type
:
753 case wxFileData::FileList_Time
: break;
757 if ((wxFileData::fileListFieldType
)col
== m_sort_field
)
758 m_sort_foward
= !m_sort_foward
;
760 m_sort_field
= (wxFileData::fileListFieldType
)col
;
762 SortItems(m_sort_field
, m_sort_foward
);
765 void wxFileCtrl::SortItems(wxFileData::fileListFieldType field
, bool foward
)
767 m_sort_field
= field
;
768 m_sort_foward
= foward
;
769 long sort_dir
= foward
? 1 : -1;
771 switch (m_sort_field
)
773 case wxFileData::FileList_Name
:
775 wxListCtrl::SortItems((wxListCtrlCompare
)wxFileDataNameCompare
, sort_dir
);
778 case wxFileData::FileList_Size
:
780 wxListCtrl::SortItems((wxListCtrlCompare
)wxFileDataSizeCompare
, sort_dir
);
783 case wxFileData::FileList_Type
:
785 wxListCtrl::SortItems((wxListCtrlCompare
)wxFileDataTypeCompare
, sort_dir
);
788 case wxFileData::FileList_Time
:
790 wxListCtrl::SortItems((wxListCtrlCompare
)wxFileDataTimeCompare
, sort_dir
);
797 wxFileCtrl::~wxFileCtrl()
802 //-----------------------------------------------------------------------------
803 // wxGenericFileDialog
804 //-----------------------------------------------------------------------------
806 #define ID_LIST_MODE (wxID_FILEDLGG )
807 #define ID_REPORT_MODE (wxID_FILEDLGG + 1)
808 #define ID_UP_DIR (wxID_FILEDLGG + 5)
809 #define ID_PARENT_DIR (wxID_FILEDLGG + 6)
810 #define ID_NEW_DIR (wxID_FILEDLGG + 7)
811 #define ID_CHOICE (wxID_FILEDLGG + 8)
812 #define ID_TEXT (wxID_FILEDLGG + 9)
813 #define ID_LIST_CTRL (wxID_FILEDLGG + 10)
814 #define ID_ACTIVATED (wxID_FILEDLGG + 11)
815 #define ID_CHECK (wxID_FILEDLGG + 12)
817 IMPLEMENT_DYNAMIC_CLASS(wxGenericFileDialog
, wxFileDialogBase
)
819 BEGIN_EVENT_TABLE(wxGenericFileDialog
,wxDialog
)
820 EVT_BUTTON(ID_LIST_MODE
, wxGenericFileDialog::OnList
)
821 EVT_BUTTON(ID_REPORT_MODE
, wxGenericFileDialog::OnReport
)
822 EVT_BUTTON(ID_UP_DIR
, wxGenericFileDialog::OnUp
)
823 EVT_BUTTON(ID_PARENT_DIR
, wxGenericFileDialog::OnHome
)
824 EVT_BUTTON(ID_NEW_DIR
, wxGenericFileDialog::OnNew
)
825 EVT_BUTTON(wxID_OK
, wxGenericFileDialog::OnListOk
)
826 EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL
, wxGenericFileDialog::OnSelected
)
827 EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL
, wxGenericFileDialog::OnActivated
)
828 EVT_CHOICE(ID_CHOICE
,wxGenericFileDialog::OnChoiceFilter
)
829 EVT_TEXT_ENTER(ID_TEXT
,wxGenericFileDialog::OnTextEnter
)
830 EVT_TEXT(ID_TEXT
,wxGenericFileDialog::OnTextChange
)
831 EVT_CHECKBOX(ID_CHECK
,wxGenericFileDialog::OnCheck
)
834 long wxGenericFileDialog::ms_lastViewStyle
= wxLC_LIST
;
835 bool wxGenericFileDialog::ms_lastShowHidden
= FALSE
;
837 wxGenericFileDialog::wxGenericFileDialog(wxWindow
*parent
,
838 const wxString
& message
,
839 const wxString
& defaultDir
,
840 const wxString
& defaultFile
,
841 const wxString
& wildCard
,
844 :wxFileDialogBase(parent
, message
, defaultDir
, defaultFile
, wildCard
, style
, pos
)
846 wxDialog::Create( parent
, -1, message
, pos
, wxDefaultSize
,
847 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
);
849 if (wxConfig::Get(FALSE
))
851 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ViewStyle"),
853 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ShowHidden"),
857 if (m_dialogStyle
== 0)
858 m_dialogStyle
= wxOPEN
;
859 if ((m_dialogStyle
& wxMULTIPLE
) && !(m_dialogStyle
& wxOPEN
))
860 m_dialogStyle
|= wxOPEN
;
862 if ((m_dir
.empty()) || (m_dir
== wxT(".")))
867 size_t len
= m_dir
.Len();
868 if ((len
> 1) && (wxEndsWithPathSeparator(m_dir
)))
869 m_dir
.Remove( len
-1, 1 );
872 m_path
+= wxFILE_SEP_PATH
;
873 m_path
+= defaultFile
;
874 m_filterExtension
= wxEmptyString
;
876 // interpret wildcards
877 wxArrayString wildDescriptions
, wildFilters
;
878 if ( !ParseWildcard(m_wildCard
, wildDescriptions
, wildFilters
) )
880 wxFAIL_MSG( wxT("Wrong file type description") );
885 bool is_pda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
887 wxBoxSizer
*mainsizer
= new wxBoxSizer( wxVERTICAL
);
889 wxBoxSizer
*buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
893 but
= new wxBitmapButton(this, ID_LIST_MODE
,
894 wxArtProvider::GetBitmap(wxART_LIST_VIEW
, wxART_CMN_DIALOG
));
896 but
->SetToolTip( _("View files as a list view") );
898 buttonsizer
->Add( but
, 0, wxALL
, 5 );
900 but
= new wxBitmapButton(this, ID_REPORT_MODE
,
901 wxArtProvider::GetBitmap(wxART_REPORT_VIEW
, wxART_CMN_DIALOG
));
903 but
->SetToolTip( _("View files as a detailed view") );
905 buttonsizer
->Add( but
, 0, wxALL
, 5 );
907 buttonsizer
->Add( 30, 5, 1 );
909 m_upDirButton
= new wxBitmapButton(this, ID_UP_DIR
,
910 wxArtProvider::GetBitmap(wxART_GO_DIR_UP
, wxART_CMN_DIALOG
));
912 m_upDirButton
->SetToolTip( _("Go to parent directory") );
914 buttonsizer
->Add( m_upDirButton
, 0, wxALL
, 5 );
916 #ifndef __DOS__ // VS: Home directory is meaningless in MS-DOS...
917 but
= new wxBitmapButton(this, ID_PARENT_DIR
,
918 wxArtProvider::GetBitmap(wxART_GO_HOME
, wxART_CMN_DIALOG
));
920 but
->SetToolTip( _("Go to home directory") );
922 buttonsizer
->Add( but
, 0, wxALL
, 5);
924 buttonsizer
->Add( 20, 20 );
927 m_newDirButton
= new wxBitmapButton(this, ID_NEW_DIR
,
928 wxArtProvider::GetBitmap(wxART_NEW_DIR
, wxART_CMN_DIALOG
));
930 m_newDirButton
->SetToolTip( _("Create new directory") );
932 buttonsizer
->Add( m_newDirButton
, 0, wxALL
, 5 );
935 mainsizer
->Add( buttonsizer
, 0, wxALL
| wxEXPAND
, 0 );
937 mainsizer
->Add( buttonsizer
, 0, wxALL
| wxEXPAND
, 5 );
939 wxBoxSizer
*staticsizer
= new wxBoxSizer( wxHORIZONTAL
);
941 staticsizer
->Add( new wxStaticText( this, -1, _("Current directory:") ), 0, wxRIGHT
, 10 );
942 m_static
= new wxStaticText( this, -1, m_dir
);
943 staticsizer
->Add( m_static
, 1 );
944 mainsizer
->Add( staticsizer
, 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxBOTTOM
, 10 );
946 long style2
= ms_lastViewStyle
| wxSUNKEN_BORDER
;
947 if ( !(m_dialogStyle
& wxMULTIPLE
) )
948 style2
|= wxLC_SINGLE_SEL
;
950 m_list
= new wxFileCtrl( this, ID_LIST_CTRL
,
951 wildFilters
[0], ms_lastShowHidden
,
952 wxDefaultPosition
, wxSize(540,200),
957 // PDAs have a different screen layout
958 mainsizer
->Add( m_list
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 5 );
960 wxBoxSizer
*choicesizer
= new wxBoxSizer( wxHORIZONTAL
);
961 m_choice
= new wxChoice( this, ID_CHOICE
);
962 choicesizer
->Add( m_choice
, 1, wxCENTER
|wxALL
, 5 );
963 mainsizer
->Add( choicesizer
, 0, wxEXPAND
);
965 wxBoxSizer
*textsizer
= new wxBoxSizer( wxHORIZONTAL
);
966 m_text
= new wxTextCtrl( this, ID_TEXT
, m_fileName
, wxDefaultPosition
, wxDefaultSize
, wxPROCESS_ENTER
);
967 textsizer
->Add( m_text
, 1, wxCENTER
| wxALL
, 5 );
968 mainsizer
->Add( textsizer
, 0, wxEXPAND
);
970 m_check
= new wxCheckBox( this, ID_CHECK
, _("Show hidden files") );
971 m_check
->SetValue( ms_lastShowHidden
);
972 textsizer
->Add( m_check
, 0, wxCENTER
|wxALL
, 5 );
974 buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
975 buttonsizer
->Add( new wxButton( this, wxID_OK
, _("OK") ), 0, wxCENTER
| wxALL
, 5 );
976 buttonsizer
->Add( new wxButton( this, wxID_CANCEL
, _("Cancel") ), 0, wxCENTER
| wxALL
, 5 );
977 mainsizer
->Add( buttonsizer
, 0, wxALIGN_RIGHT
);
981 mainsizer
->Add( m_list
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 10 );
983 wxBoxSizer
*textsizer
= new wxBoxSizer( wxHORIZONTAL
);
984 m_text
= new wxTextCtrl( this, ID_TEXT
, m_fileName
, wxDefaultPosition
, wxDefaultSize
, wxPROCESS_ENTER
);
985 textsizer
->Add( m_text
, 1, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
986 textsizer
->Add( new wxButton( this, wxID_OK
, _("OK") ), 0, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
987 mainsizer
->Add( textsizer
, 0, wxEXPAND
);
989 wxBoxSizer
*choicesizer
= new wxBoxSizer( wxHORIZONTAL
);
990 m_choice
= new wxChoice( this, ID_CHOICE
);
991 choicesizer
->Add( m_choice
, 1, wxCENTER
|wxALL
, 10 );
992 m_check
= new wxCheckBox( this, ID_CHECK
, _("Show hidden files") );
993 m_check
->SetValue( ms_lastShowHidden
);
994 choicesizer
->Add( m_check
, 0, wxCENTER
|wxALL
, 10 );
995 choicesizer
->Add( new wxButton( this, wxID_CANCEL
, _("Cancel") ), 0, wxCENTER
| wxALL
, 10 );
996 mainsizer
->Add( choicesizer
, 0, wxEXPAND
);
999 for (size_t n
=0; n
<wildFilters
.GetCount(); n
++)
1001 m_choice
->Append( wildDescriptions
[n
], (void*) new wxString( wildFilters
[n
] ) );
1003 SetFilterIndex( 0 );
1005 SetAutoLayout( TRUE
);
1006 SetSizer( mainsizer
);
1008 mainsizer
->Fit( this );
1009 mainsizer
->SetSizeHints( this );
1016 wxGenericFileDialog::~wxGenericFileDialog()
1018 if (wxConfig::Get(FALSE
))
1020 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ViewStyle"),
1022 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ShowHidden"),
1026 const int count
= m_choice
->GetCount();
1027 for ( int i
= 0; i
< count
; i
++ )
1029 delete (wxString
*)m_choice
->GetClientData(i
);
1033 int wxGenericFileDialog::ShowModal()
1035 m_list
->GoToDir(m_dir
);
1037 m_text
->SetValue(m_fileName
);
1039 return wxDialog::ShowModal();
1042 void wxGenericFileDialog::DoSetFilterIndex(int filterindex
)
1044 wxString
*str
= (wxString
*) m_choice
->GetClientData( filterindex
);
1045 m_list
->SetWild( *str
);
1046 m_filterIndex
= filterindex
;
1047 if ( str
->Left(2) == wxT("*.") )
1049 m_filterExtension
= str
->Mid(1);
1050 if (m_filterExtension
== _T(".*"))
1051 m_filterExtension
.clear();
1055 m_filterExtension
.clear();
1059 void wxGenericFileDialog::SetFilterIndex( int filterindex
)
1061 m_choice
->SetSelection( filterindex
);
1063 DoSetFilterIndex(filterindex
);
1066 void wxGenericFileDialog::OnChoiceFilter( wxCommandEvent
&event
)
1068 DoSetFilterIndex((int)event
.GetInt());
1071 void wxGenericFileDialog::OnCheck( wxCommandEvent
&event
)
1073 m_list
->ShowHidden( (ms_lastShowHidden
= event
.GetInt() != 0) );
1076 void wxGenericFileDialog::OnActivated( wxListEvent
&event
)
1078 HandleAction( event
.m_item
.m_text
);
1081 void wxGenericFileDialog::OnTextEnter( wxCommandEvent
&WXUNUSED(event
) )
1083 wxCommandEvent
cevent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_OK
);
1084 cevent
.SetEventObject( this );
1085 GetEventHandler()->ProcessEvent( cevent
);
1088 static bool ignoreChanges
= FALSE
;
1090 void wxGenericFileDialog::OnTextChange( wxCommandEvent
&WXUNUSED(event
) )
1094 // Clear selections. Otherwise when the user types in a value they may
1095 // not get the file whose name they typed.
1096 if (m_list
->GetSelectedItemCount() > 0)
1098 long item
= m_list
->GetNextItem(-1, wxLIST_NEXT_ALL
,
1099 wxLIST_STATE_SELECTED
);
1100 while ( item
!= -1 )
1102 m_list
->SetItemState(item
,0, wxLIST_STATE_SELECTED
);
1103 item
= m_list
->GetNextItem(item
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1109 void wxGenericFileDialog::OnSelected( wxListEvent
&event
)
1111 wxString
filename( event
.m_item
.m_text
);
1112 if (filename
== wxT("..")) return;
1114 wxString dir
= m_list
->GetDir();
1115 if (!IsTopMostDir(dir
))
1116 dir
+= wxFILE_SEP_PATH
;
1118 if (wxDirExists(dir
)) return;
1120 ignoreChanges
= TRUE
;
1121 m_text
->SetValue( filename
);
1122 ignoreChanges
= FALSE
;
1125 void wxGenericFileDialog::HandleAction( const wxString
&fn
)
1127 wxString
filename( fn
);
1128 wxString dir
= m_list
->GetDir();
1129 if (filename
.IsEmpty()) return;
1130 if (filename
== wxT(".")) return;
1132 // "some/place/" means they want to chdir not try to load "place"
1133 bool want_dir
= filename
.Last() == wxFILE_SEP_PATH
;
1135 filename
= filename
.RemoveLast();
1137 if (filename
== wxT(".."))
1139 m_list
->GoToParentDir();
1146 if (filename
== wxT("~"))
1148 m_list
->GoToHomeDir();
1154 if (filename
.BeforeFirst(wxT('/')) == wxT("~"))
1156 filename
= wxGetUserHome() + filename
.Remove(0, 1);
1160 if ((filename
.Find(wxT('*')) != wxNOT_FOUND
) ||
1161 (filename
.Find(wxT('?')) != wxNOT_FOUND
))
1163 if (filename
.Find(wxFILE_SEP_PATH
) != wxNOT_FOUND
)
1165 wxMessageBox(_("Illegal file specification."), _("Error"), wxOK
| wxICON_ERROR
);
1168 m_list
->SetWild( filename
);
1172 if (!IsTopMostDir(dir
))
1173 dir
+= wxFILE_SEP_PATH
;
1174 if (!wxIsAbsolutePath(filename
))
1180 if (wxDirExists(filename
))
1182 m_list
->GoToDir( filename
);
1187 // they really wanted a dir, but it doesn't exist
1190 wxMessageBox(_("Directory doesn't exist."), _("Error"),
1191 wxOK
| wxICON_ERROR
);
1195 // append the default extension to the filename if it doesn't have any
1197 // VZ: the logic of testing for !wxFileExists() only for the open file
1198 // dialog is not entirely clear to me, why don't we allow saving to a
1199 // file without extension as well?
1200 if ( !(m_dialogStyle
& wxOPEN
) || !wxFileExists(filename
) )
1202 filename
= AppendExtension(filename
, m_filterExtension
);
1205 // check that the file [doesn't] exist if necessary
1206 if ( (m_dialogStyle
& wxSAVE
) &&
1207 (m_dialogStyle
& wxOVERWRITE_PROMPT
) &&
1208 wxFileExists( filename
) )
1211 msg
.Printf( _("File '%s' already exists, do you really want to overwrite it?"), filename
.c_str() );
1213 if (wxMessageBox(msg
, _("Confirm"), wxYES_NO
) != wxYES
)
1216 else if ( (m_dialogStyle
& wxOPEN
) &&
1217 (m_dialogStyle
& wxFILE_MUST_EXIST
) &&
1218 !wxFileExists(filename
) )
1220 wxMessageBox(_("Please choose an existing file."), _("Error"),
1221 wxOK
| wxICON_ERROR
);
1224 SetPath( filename
);
1226 // change to the directory where the user went if asked
1227 if ( m_dialogStyle
& wxCHANGE_DIR
)
1230 wxSplitPath(filename
, &cwd
, NULL
, NULL
);
1232 if ( cwd
!= wxGetCwd() )
1234 wxSetWorkingDirectory(cwd
);
1238 wxCommandEvent event
;
1239 wxDialog::OnOK(event
);
1242 void wxGenericFileDialog::OnListOk( wxCommandEvent
&WXUNUSED(event
) )
1244 HandleAction( m_text
->GetValue() );
1247 void wxGenericFileDialog::OnList( wxCommandEvent
&WXUNUSED(event
) )
1249 m_list
->ChangeToListMode();
1250 ms_lastViewStyle
= wxLC_LIST
;
1254 void wxGenericFileDialog::OnReport( wxCommandEvent
&WXUNUSED(event
) )
1256 m_list
->ChangeToReportMode();
1257 ms_lastViewStyle
= wxLC_REPORT
;
1261 void wxGenericFileDialog::OnUp( wxCommandEvent
&WXUNUSED(event
) )
1263 m_list
->GoToParentDir();
1268 void wxGenericFileDialog::OnHome( wxCommandEvent
&WXUNUSED(event
) )
1270 m_list
->GoToHomeDir();
1275 void wxGenericFileDialog::OnNew( wxCommandEvent
&WXUNUSED(event
) )
1280 void wxGenericFileDialog::SetPath( const wxString
& path
)
1282 // not only set the full path but also update filename and dir
1284 if ( !path
.empty() )
1287 wxSplitPath(path
, &m_dir
, &m_fileName
, &ext
);
1290 m_fileName
+= wxT(".");
1296 void wxGenericFileDialog::GetPaths( wxArrayString
& paths
) const
1299 if (m_list
->GetSelectedItemCount() == 0)
1301 paths
.Add( GetPath() );
1305 paths
.Alloc( m_list
->GetSelectedItemCount() );
1307 wxString dir
= m_list
->GetDir();
1309 if (dir
!= wxT("/"))
1311 dir
+= wxFILE_SEP_PATH
;
1314 item
.m_mask
= wxLIST_MASK_TEXT
;
1316 item
.m_itemId
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1317 while ( item
.m_itemId
!= -1 )
1319 m_list
->GetItem( item
);
1320 paths
.Add( dir
+ item
.m_text
);
1321 item
.m_itemId
= m_list
->GetNextItem( item
.m_itemId
,
1322 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1326 void wxGenericFileDialog::GetFilenames(wxArrayString
& files
) const
1329 if (m_list
->GetSelectedItemCount() == 0)
1331 files
.Add( GetFilename() );
1334 files
.Alloc( m_list
->GetSelectedItemCount() );
1337 item
.m_mask
= wxLIST_MASK_TEXT
;
1339 item
.m_itemId
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1340 while ( item
.m_itemId
!= -1 )
1342 m_list
->GetItem( item
);
1343 files
.Add( item
.m_text
);
1344 item
.m_itemId
= m_list
->GetNextItem( item
.m_itemId
,
1345 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1349 void wxGenericFileDialog::UpdateControls()
1351 wxString dir
= m_list
->GetDir();
1352 m_static
->SetLabel(dir
);
1354 bool enable
= !IsTopMostDir(dir
);
1355 m_upDirButton
->Enable(enable
);
1357 #if defined(__DOS__) || defined(__WINDOWS__)
1358 m_newDirButton
->Enable(enable
);
1359 #endif // defined(__DOS__) || defined(__WINDOWS__)
1362 #ifdef USE_GENERIC_FILEDIALOG
1364 IMPLEMENT_DYNAMIC_CLASS(wxFileDialog
, wxGenericFileDialog
);
1366 #endif // USE_GENERIC_FILEDIALOG
1368 #endif // wxUSE_FILEDLG