1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGenericFileDialog
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "filedlgg.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #if !defined(__UNIX__) && !defined(__DOS__) && !defined(__WIN32__)
34 #error wxGenericFileDialog currently only supports Unix, win32 and DOS
37 #include "wx/checkbox.h"
38 #include "wx/textctrl.h"
39 #include "wx/choice.h"
40 #include "wx/checkbox.h"
41 #include "wx/stattext.h"
45 #include "wx/msgdlg.h"
47 #include "wx/bmpbuttn.h"
48 #include "wx/tokenzr.h"
49 #include "wx/mimetype.h"
51 #include "wx/module.h"
52 #include "wx/config.h"
53 #include "wx/imaglist.h"
55 #include "wx/artprov.h"
57 #include "wx/file.h" // for wxS_IXXX constants only
58 #include "wx/filedlg.h" // wxOPEN, wxSAVE...
59 #include "wx/generic/filedlgg.h"
62 #include "wx/tooltip.h"
65 #include <sys/types.h>
81 #if defined(__UNIX__) || defined(__DOS__)
85 // ----------------------------------------------------------------------------
86 // private classes - icons list management
87 // ----------------------------------------------------------------------------
89 class wxFileIconEntry
: public wxObject
92 wxFileIconEntry(int i
) { id
= i
; }
98 class wxFileIconsTable
103 int GetIconID(const wxString
& extension
, const wxString
& mime
= wxEmptyString
);
104 wxImageList
*GetImageList() { return &m_ImageList
; }
107 wxImageList m_ImageList
;
108 wxHashTable m_HashTable
;
111 static wxFileIconsTable
*g_IconsTable
= NULL
;
115 #define FI_EXECUTABLE 2
117 wxFileIconsTable::wxFileIconsTable() :
119 m_HashTable(wxKEY_STRING
)
121 m_HashTable
.DeleteContents(TRUE
);
123 m_ImageList
.Add(wxArtProvider::GetBitmap(wxART_FOLDER
, wxART_CMN_DIALOG
));
125 m_ImageList
.Add(wxArtProvider::GetBitmap(wxART_NORMAL_FILE
, wxART_CMN_DIALOG
));
127 if (GetIconID(wxEmptyString
, _T("application/x-executable")) == FI_UNKNOWN
)
129 m_ImageList
.Add(wxArtProvider::GetBitmap(wxART_EXECUTABLE_FILE
, wxART_CMN_DIALOG
));
130 m_HashTable
.Delete(_T("exe"));
131 m_HashTable
.Put(_T("exe"), new wxFileIconEntry(FI_EXECUTABLE
));
133 /* else put into list by GetIconID
134 (KDE defines application/x-executable for *.exe and has nice icon)
141 // VS: we don't need this function w/o wxMimeTypesManager because we'll only have
142 // one icon and we won't resize it
144 static wxBitmap
CreateAntialiasedBitmap(const wxImage
& img
)
146 wxImage
smallimg (16, 16);
147 unsigned char *p1
, *p2
, *ps
;
148 unsigned char mr
= img
.GetMaskRed(),
149 mg
= img
.GetMaskGreen(),
150 mb
= img
.GetMaskBlue();
153 unsigned sr
, sg
, sb
, smask
;
155 p1
= img
.GetData(), p2
= img
.GetData() + 3 * 32, ps
= smallimg
.GetData();
156 smallimg
.SetMaskColour(mr
, mr
, mr
);
158 for (y
= 0; y
< 16; y
++)
160 for (x
= 0; x
< 16; x
++)
162 sr
= sg
= sb
= smask
= 0;
163 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
164 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
167 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
168 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
171 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
172 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
175 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
176 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
181 ps
[0] = ps
[1] = ps
[2] = mr
;
183 ps
[0] = sr
>> 2, ps
[1] = sg
>> 2, ps
[2] = sb
>> 2;
186 p1
+= 32 * 3, p2
+= 32 * 3;
189 return wxBitmap(smallimg
);
192 // finds empty borders and return non-empty area of image:
193 static wxImage
CutEmptyBorders(const wxImage
& img
)
195 unsigned char mr
= img
.GetMaskRed(),
196 mg
= img
.GetMaskGreen(),
197 mb
= img
.GetMaskBlue();
198 unsigned char *dt
= img
.GetData(), *dttmp
;
199 unsigned w
= img
.GetWidth(), h
= img
.GetHeight();
201 unsigned top
, bottom
, left
, right
, i
;
204 #define MK_DTTMP(x,y) dttmp = dt + ((x + y * w) * 3)
205 #define NOEMPTY_PIX(empt) if (dttmp[0] != mr || dttmp[1] != mg || dttmp[2] != mb) {empt = FALSE; break;}
207 for (empt
= TRUE
, top
= 0; empt
&& top
< h
; top
++)
210 for (i
= 0; i
< w
; i
++, dttmp
+=3)
213 for (empt
= TRUE
, bottom
= h
-1; empt
&& bottom
> top
; bottom
--)
216 for (i
= 0; i
< w
; i
++, dttmp
+=3)
219 for (empt
= TRUE
, left
= 0; empt
&& left
< w
; left
++)
222 for (i
= 0; i
< h
; i
++, dttmp
+=3*w
)
225 for (empt
= TRUE
, right
= w
-1; empt
&& right
> left
; right
--)
228 for (i
= 0; i
< h
; i
++, dttmp
+=3*w
)
231 top
--, left
--, bottom
++, right
++;
233 return img
.GetSubImage(wxRect(left
, top
, right
- left
+ 1, bottom
- top
+ 1));
235 #endif // wxUSE_MIMETYPE
239 int wxFileIconsTable::GetIconID(const wxString
& extension
, const wxString
& mime
)
242 if (!extension
.IsEmpty())
244 wxFileIconEntry
*entry
= (wxFileIconEntry
*) m_HashTable
.Get(extension
);
245 if (entry
) return (entry
-> id
);
248 wxFileType
*ft
= (mime
.IsEmpty()) ?
249 wxTheMimeTypesManager
-> GetFileTypeFromExtension(extension
) :
250 wxTheMimeTypesManager
-> GetFileTypeFromMimeType(mime
);
252 if (ft
== NULL
|| (!ft
-> GetIcon(&ic
)) || (!ic
.Ok()))
254 int newid
= FI_UNKNOWN
;
255 m_HashTable
.Put(extension
, new wxFileIconEntry(newid
));
260 tmpBmp
.CopyFromIcon(ic
);
261 wxImage img
= tmpBmp
.ConvertToImage();
265 int id
= m_ImageList
.GetImageCount();
266 if (img
.GetWidth() == 16 && img
.GetHeight() == 16)
267 m_ImageList
.Add(wxBitmap(img
));
270 if (img
.GetWidth() != 32 || img
.GetHeight() != 32)
271 m_ImageList
.Add(CreateAntialiasedBitmap(CutEmptyBorders(img
).Rescale(32, 32)));
273 m_ImageList
.Add(CreateAntialiasedBitmap(img
));
275 m_HashTable
.Put(extension
, new wxFileIconEntry(id
));
278 #else // !wxUSE_MIMETYPE
280 if (extension
== wxT("exe"))
281 return FI_EXECUTABLE
;
284 #endif // wxUSE_MIMETYPE/!wxUSE_MIMETYPE
289 // ----------------------------------------------------------------------------
291 // ----------------------------------------------------------------------------
294 int wxFileDataNameCompare( long data1
, long data2
, long data
)
296 wxFileData
*fd1
= (wxFileData
*)data1
;
297 wxFileData
*fd2
= (wxFileData
*)data2
;
298 if (fd1
->GetName() == wxT("..")) return -data
;
299 if (fd2
->GetName() == wxT("..")) return data
;
300 if (fd1
->IsDir() && !fd2
->IsDir()) return -data
;
301 if (fd2
->IsDir() && !fd1
->IsDir()) return data
;
302 return data
*wxStrcmp( fd1
->GetName(), fd2
->GetName() );
306 int wxFileDataTypeCompare( long data1
, long data2
, long data
)
308 wxFileData
*fd1
= (wxFileData
*)data1
;
309 wxFileData
*fd2
= (wxFileData
*)data2
;
310 if (fd1
->GetName() == wxT("..")) return -data
;
311 if (fd2
->GetName() == wxT("..")) return data
;
312 if (fd1
->IsDir() && !fd2
->IsDir()) return -data
;
313 if (fd2
->IsDir() && !fd1
->IsDir()) return data
;
314 if (fd1
->IsLink() && !fd2
->IsLink()) return -data
;
315 if (fd2
->IsLink() && !fd1
->IsLink()) return data
;
316 return data
*(fd1
->GetSize() - fd2
->GetSize());
320 int wxFileDataTimeCompare( long data1
, long data2
, long data
)
322 wxFileData
*fd1
= (wxFileData
*)data1
;
323 wxFileData
*fd2
= (wxFileData
*)data2
;
324 if (fd1
->GetName() == wxT("..")) return -data
;
325 if (fd2
->GetName() == wxT("..")) return data
;
326 if (fd1
->IsDir() && !fd2
->IsDir()) return -data
;
327 if (fd2
->IsDir() && !fd1
->IsDir()) return data
;
329 int val
= fd1
->GetYear() - fd2
->GetYear();
330 if (val
) return data
*val
;
331 val
= fd1
->GetMonth() - fd2
->GetMonth();
332 if (val
) return data
*val
;
333 val
= fd1
->GetDay() - fd2
->GetDay();
334 if (val
) return data
*val
;
335 val
= fd1
->GetHour() - fd2
->GetHour();
336 if (val
) return data
*val
;
337 val
= fd1
->GetMinute() - fd2
->GetMinute();
342 #define IsTopMostDir(dir) (dir == wxT("/"))
345 #if defined(__DOS__) || defined(__WINDOWS__)
346 #define IsTopMostDir(dir) (dir.IsEmpty())
349 #if defined(__DOS__) || defined(__WINDOWS__)
350 extern bool wxIsDriveAvailable(const wxString
& dirName
);
353 //-----------------------------------------------------------------------------
355 //-----------------------------------------------------------------------------
357 wxFileData::wxFileData( const wxString
&name
, const wxString
&fname
, fileType type
)
363 #if defined(__DOS__) || defined(__WINDOWS__)
364 // VS: In case the file is root directory of a volume (e.g. "C:"),
365 // we don't want it stat()ed, since the drive may not be in:
366 if (name
.length() == 2 && name
[1u] == wxT(':'))
373 // This is a drive, even if MSW thinks c:\.. is a file
374 if ((name
== wxT("..")) && (fname
.length() <= 5))
380 #endif // __DOS__ || __WINDOWS__
384 #if defined(__UNIX__) && (!defined( __EMX__ ) && !defined(__VMS))
385 lstat( m_fileName
.fn_str(), &buff
);
386 m_type
|= S_ISLNK( buff
.st_mode
) != 0 ? is_link
: 0;
388 wxStat( m_fileName
, &buff
);
391 m_type
|= (buff
.st_mode
& S_IFDIR
) != 0 ? is_dir
: 0;
392 m_type
|= (buff
.st_mode
& wxS_IXUSR
) != 0 ? is_exe
: 0;
394 m_size
= buff
.st_size
;
396 const struct tm
* const t
= localtime( &buff
.st_mtime
);
398 m_minute
= t
->tm_min
;
399 m_month
= t
->tm_mon
+1;
404 m_permissions
.Printf(_T("%c%c%c"),
405 buff
.st_mode
& wxS_IRUSR
? _T('r') : _T('-'),
406 buff
.st_mode
& wxS_IWUSR
? _T('w') : _T('-'),
407 buff
.st_mode
& wxS_IXUSR
? _T('x') : _T('-'));
410 wxString
wxFileData::GetName() const
415 wxString
wxFileData::GetFullName() const
420 bool wxFileData::IsDir() const
422 return (m_type
& is_dir
) != 0;
424 bool wxFileData::IsLink() const
426 return (m_type
& is_link
) != 0;
428 bool wxFileData::IsExe() const
430 return (m_type
& is_exe
) != 0;
432 bool wxFileData::IsDrive() const
434 return (m_type
& is_drive
) != 0;
437 wxString
wxFileData::GetHint() const
439 wxString s
= m_fileName
;
447 s
+= wxT("<DRIVE> ");
452 s
+= LongToString( m_size
);
456 s
+= IntToString( m_day
);
458 s
+= IntToString( m_month
);
460 s
+= IntToString( m_year
);
462 s
+= IntToString( m_hour
);
464 s
+= IntToString( m_minute
);
470 wxString
wxFileData::GetEntry( fileListFieldType num
) const
487 s
.Printf(_T("%ld"), m_size
);
492 s
.Printf(_T("%02d.%02d.%d"), m_day
, m_month
, m_year
);
497 s
.Printf(_T("%02d:%02d"), m_hour
, m_minute
);
507 wxFAIL_MSG( _T("unexpected field in wxFileData::GetEntry()") );
513 void wxFileData::SetNewName( const wxString
&name
, const wxString
&fname
)
519 void wxFileData::MakeItem( wxListItem
&item
)
521 item
.m_text
= m_name
;
522 item
.ClearAttributes();
524 item
.SetTextColour(*wxRED
);
526 item
.SetTextColour(*wxBLUE
);
529 item
.m_image
= FI_FOLDER
;
530 if (IsDrive()) // FIXME - add icons for drives, see wxDirCtrl
531 item
.m_image
= FI_FOLDER
;
533 item
.m_image
= FI_EXECUTABLE
;
534 else if (m_name
.Find(wxT('.')) != wxNOT_FOUND
)
535 item
.m_image
= g_IconsTable
->GetIconID(m_name
.AfterLast(wxT('.')));
537 item
.m_image
= FI_UNKNOWN
;
541 wxColour
*dg
= wxTheColourDatabase
->FindColour( _T("MEDIUM GREY") );
542 item
.SetTextColour(*dg
);
544 item
.m_data
= (long)this;
547 //-----------------------------------------------------------------------------
549 //-----------------------------------------------------------------------------
551 IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl
,wxListCtrl
)
553 BEGIN_EVENT_TABLE(wxFileCtrl
,wxListCtrl
)
554 EVT_LIST_DELETE_ITEM(-1, wxFileCtrl::OnListDeleteItem
)
555 EVT_LIST_END_LABEL_EDIT(-1, wxFileCtrl::OnListEndLabelEdit
)
556 EVT_LIST_COL_CLICK(-1, wxFileCtrl::OnListColClick
)
560 wxFileCtrl::wxFileCtrl()
562 m_showHidden
= FALSE
;
563 m_goToParentControl
= NULL
;
564 m_newDirControl
= NULL
;
566 m_sort_field
= wxFileData::FileList_Name
;
569 wxFileCtrl::wxFileCtrl(wxWindow
*win
,
571 const wxString
& wild
,
576 const wxValidator
&validator
,
577 const wxString
&name
)
578 : wxListCtrl(win
, id
, pos
, size
, style
, validator
, name
),
582 g_IconsTable
= new wxFileIconsTable
;
583 wxImageList
*imageList
= g_IconsTable
->GetImageList();
585 SetImageList( imageList
, wxIMAGE_LIST_SMALL
);
587 m_goToParentControl
=
588 m_newDirControl
= NULL
;
590 m_showHidden
= showHidden
;
593 m_sort_field
= wxFileData::FileList_Name
;
595 m_dirName
= wxT("*");
597 if (style
& wxLC_REPORT
)
598 ChangeToReportMode();
601 void wxFileCtrl::ChangeToListMode()
604 SetSingleStyle( wxLC_LIST
);
608 void wxFileCtrl::ChangeToReportMode()
611 SetSingleStyle( wxLC_REPORT
);
614 GetTextExtent(wxT("CCCCCCCCC"), &w
, &h
);
616 InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT
, w
*2 );
617 InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT
, w
);
618 InsertColumn( 2, _("Date"), wxLIST_FORMAT_LEFT
, w
);
619 InsertColumn( 3, _("Time"), wxLIST_FORMAT_LEFT
, w
/2 );
621 InsertColumn( 4, _("Permissions"), wxLIST_FORMAT_LEFT
, (w
*12)/9 );
627 void wxFileCtrl::ChangeToIconMode()
630 SetSingleStyle( wxLC_ICON
);
634 void wxFileCtrl::ShowHidden( bool show
)
640 long wxFileCtrl::Add( wxFileData
*fd
, wxListItem
&item
)
643 item
.m_mask
= wxLIST_MASK_TEXT
+ wxLIST_MASK_DATA
+ wxLIST_MASK_IMAGE
;
644 fd
->MakeItem( item
);
645 long my_style
= GetWindowStyleFlag();
646 if (my_style
& wxLC_REPORT
)
648 ret
= InsertItem( item
);
649 for (int i
= 1; i
< wxFileData::FileList_Max
; i
++)
650 SetItem( item
.m_itemId
, i
, fd
->GetEntry((wxFileData::fileListFieldType
)i
) );
652 else if (my_style
& wxLC_LIST
)
654 ret
= InsertItem( item
);
659 void wxFileCtrl::UpdateFiles()
661 // don't do anything before ShowModal() call which sets m_dirName
662 if ( m_dirName
== wxT("*") )
665 wxBusyCursor bcur
; // this may take a while...
670 wxFileData
*fd
= (wxFileData
*) NULL
;
675 #if defined(__DOS__) || defined(__WINDOWS__)
676 if ( IsTopMostDir(m_dirName
) )
678 // Pseudo-directory with all available drives listed...
679 for (int drive
= 1; drive
<= 26; drive
++)
682 path
.Printf(wxT("%c:\\"), (char)(drive
+ 'A' - 1));
683 if ( wxIsDriveAvailable(path
) )
686 fd
= new wxFileData(path
, path
, wxFileData::is_drive
);
696 if ( !IsTopMostDir(m_dirName
) )
698 wxString
p(wxPathOnly(m_dirName
));
700 if (p
.IsEmpty()) p
= wxT("/");
702 fd
= new wxFileData( wxT(".."), p
, wxFileData::is_dir
);
707 wxString
dirname(m_dirName
);
708 #if defined(__DOS__) || defined(__WINDOWS__)
709 if (dirname
.length() == 2 && dirname
[1u] == wxT(':'))
710 dirname
<< wxT('\\');
714 if ( dir
.IsOpened() )
716 wxString
dirPrefix(dirname
);
717 if (dirPrefix
.Last() != wxFILE_SEP_PATH
)
718 dirPrefix
+= wxFILE_SEP_PATH
;
720 int hiddenFlag
= m_showHidden
? wxDIR_HIDDEN
: 0;
725 // Get the directories first (not matched against wildcards):
726 cont
= dir
.GetFirst(&f
, wxEmptyString
, wxDIR_DIRS
| hiddenFlag
);
729 fd
= new wxFileData(f
, dirPrefix
+ f
, wxFileData::is_dir
);
732 cont
= dir
.GetNext(&f
);
735 // Tokenize the wildcard string, so we can handle more than 1
736 // search pattern in a wildcard.
737 wxStringTokenizer
tokenWild(m_wild
, wxT(";"));
738 while ( tokenWild
.HasMoreTokens() )
740 cont
= dir
.GetFirst(&f
, tokenWild
.GetNextToken(),
741 wxDIR_FILES
| hiddenFlag
);
744 fd
= new wxFileData(f
, dirPrefix
+ f
, wxFileData::is_file
);
747 cont
= dir
.GetNext(&f
);
753 SortItems(m_sort_field
, m_sort_foward
> 0);
755 // Finally, enable/disable context-dependent controls:
756 if ( m_goToParentControl
)
757 m_goToParentControl
->Enable(!IsTopMostDir(m_dirName
));
758 #if defined(__DOS__) || defined(__WINDOWS__)
759 if ( m_newDirControl
)
760 m_newDirControl
->Enable(!IsTopMostDir(m_dirName
));
764 void wxFileCtrl::SetWild( const wxString
&wild
)
770 void wxFileCtrl::MakeDir()
772 wxString
new_name( _("NewName") );
773 wxString
path( m_dirName
);
774 path
+= wxFILE_SEP_PATH
;
776 if (wxFileExists(path
))
778 // try NewName0, NewName1 etc.
781 new_name
= _("NewName");
783 num
.Printf( wxT("%d"), i
);
787 path
+= wxFILE_SEP_PATH
;
790 } while (wxFileExists(path
));
796 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
801 wxFileData
*fd
= new wxFileData( new_name
, path
, wxFileData::is_dir
);
805 long id
= Add( fd
, item
);
809 SortItems(m_sort_field
, m_sort_foward
> 0);
810 id
= FindItem( 0, (long)fd
);
816 void wxFileCtrl::GoToParentDir()
818 if (!IsTopMostDir(m_dirName
))
820 size_t len
= m_dirName
.Len();
821 if (wxEndsWithPathSeparator(m_dirName
))
822 m_dirName
.Remove( len
-1, 1 );
823 wxString
fname( wxFileNameFromPath(m_dirName
) );
824 m_dirName
= wxPathOnly( m_dirName
);
825 #if defined(__DOS__) || defined(__WINDOWS__)
826 if (!m_dirName
.IsEmpty())
828 if (m_dirName
.Last() == wxT('.'))
831 #elif defined(__UNIX__)
832 if (m_dirName
.IsEmpty())
833 m_dirName
= wxT("/");
836 long id
= FindItem( 0, fname
);
839 SetItemState( id
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
845 void wxFileCtrl::GoToHomeDir()
847 wxString s
= wxGetUserHome( wxString() );
851 void wxFileCtrl::GoToDir( const wxString
&dir
)
855 SetItemState( 0, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
859 void wxFileCtrl::GetDir( wxString
&dir
)
864 void wxFileCtrl::FreeItemData(const wxListItem
& item
)
866 wxFileData
*fd
= (wxFileData
*)item
.m_data
;
870 void wxFileCtrl::OnListDeleteItem( wxListEvent
&event
)
872 FreeItemData(event
.m_item
);
875 void wxFileCtrl::FreeAllItemsData()
878 item
.m_mask
= wxLIST_MASK_DATA
;
880 item
.m_itemId
= GetNextItem( -1, wxLIST_NEXT_ALL
);
881 while ( item
.m_itemId
!= -1 )
885 item
.m_itemId
= GetNextItem( item
.m_itemId
, wxLIST_NEXT_ALL
);
889 void wxFileCtrl::OnListEndLabelEdit( wxListEvent
&event
)
891 wxFileData
*fd
= (wxFileData
*)event
.m_item
.m_data
;
894 if ((event
.GetLabel().IsEmpty()) ||
895 (event
.GetLabel() == _(".")) ||
896 (event
.GetLabel() == _("..")) ||
897 (event
.GetLabel().First( wxFILE_SEP_PATH
) != wxNOT_FOUND
))
899 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
905 wxString
new_name( wxPathOnly( fd
->GetFullName() ) );
906 new_name
+= wxFILE_SEP_PATH
;
907 new_name
+= event
.GetLabel();
911 if (wxFileExists(new_name
))
913 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
918 if (wxRenameFile(fd
->GetFullName(),new_name
))
920 fd
->SetNewName( new_name
, event
.GetLabel() );
921 SetItemState( event
.GetItem(), wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
922 EnsureVisible( event
.GetItem() );
926 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
932 void wxFileCtrl::OnListColClick( wxListEvent
&event
)
934 int col
= event
.GetColumn();
938 case wxFileData::FileList_Name
:
939 case wxFileData::FileList_Type
:
940 case wxFileData::FileList_Date
:
941 case wxFileData::FileList_Time
: break;
945 if ((wxFileData::fileListFieldType
)col
== m_sort_field
)
946 m_sort_foward
= -m_sort_foward
;
948 m_sort_field
= (wxFileData::fileListFieldType
)col
;
950 SortItems(m_sort_field
, m_sort_foward
> 0);
953 void wxFileCtrl::SortItems(wxFileData::fileListFieldType field
, bool foward
)
955 m_sort_field
= field
;
956 m_sort_foward
= foward
? 1 : -1;
958 switch (m_sort_field
)
960 case wxFileData::FileList_Name
:
962 wxListCtrl::SortItems((wxListCtrlCompare
)wxFileDataNameCompare
, m_sort_foward
);
965 case wxFileData::FileList_Type
:
967 wxListCtrl::SortItems((wxListCtrlCompare
)wxFileDataTypeCompare
, m_sort_foward
);
970 case wxFileData::FileList_Date
:
971 case wxFileData::FileList_Time
:
973 wxListCtrl::SortItems((wxListCtrlCompare
)wxFileDataTimeCompare
, m_sort_foward
);
980 wxFileCtrl::~wxFileCtrl()
985 //-----------------------------------------------------------------------------
986 // wxGenericFileDialog
987 //-----------------------------------------------------------------------------
989 #define ID_LIST_MODE (wxID_FILEDLGG )
990 #define ID_REPORT_MODE (wxID_FILEDLGG + 1)
991 #define ID_UP_DIR (wxID_FILEDLGG + 5)
992 #define ID_PARENT_DIR (wxID_FILEDLGG + 6)
993 #define ID_NEW_DIR (wxID_FILEDLGG + 7)
994 #define ID_CHOICE (wxID_FILEDLGG + 8)
995 #define ID_TEXT (wxID_FILEDLGG + 9)
996 #define ID_LIST_CTRL (wxID_FILEDLGG + 10)
997 #define ID_ACTIVATED (wxID_FILEDLGG + 11)
998 #define ID_CHECK (wxID_FILEDLGG + 12)
1000 IMPLEMENT_DYNAMIC_CLASS(wxGenericFileDialog
,wxDialog
)
1002 BEGIN_EVENT_TABLE(wxGenericFileDialog
,wxDialog
)
1003 EVT_BUTTON(ID_LIST_MODE
, wxGenericFileDialog::OnList
)
1004 EVT_BUTTON(ID_REPORT_MODE
, wxGenericFileDialog::OnReport
)
1005 EVT_BUTTON(ID_UP_DIR
, wxGenericFileDialog::OnUp
)
1006 EVT_BUTTON(ID_PARENT_DIR
, wxGenericFileDialog::OnHome
)
1007 EVT_BUTTON(ID_NEW_DIR
, wxGenericFileDialog::OnNew
)
1008 EVT_BUTTON(wxID_OK
, wxGenericFileDialog::OnListOk
)
1009 EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL
, wxGenericFileDialog::OnSelected
)
1010 EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL
, wxGenericFileDialog::OnActivated
)
1011 EVT_CHOICE(ID_CHOICE
,wxGenericFileDialog::OnChoiceFilter
)
1012 EVT_TEXT_ENTER(ID_TEXT
,wxGenericFileDialog::OnTextEnter
)
1013 EVT_TEXT(ID_TEXT
,wxGenericFileDialog::OnTextChange
)
1014 EVT_CHECKBOX(ID_CHECK
,wxGenericFileDialog::OnCheck
)
1017 long wxGenericFileDialog::ms_lastViewStyle
= wxLC_LIST
;
1018 bool wxGenericFileDialog::ms_lastShowHidden
= FALSE
;
1020 wxGenericFileDialog::wxGenericFileDialog(wxWindow
*parent
,
1021 const wxString
& message
,
1022 const wxString
& defaultDir
,
1023 const wxString
& defaultFile
,
1024 const wxString
& wildCard
,
1026 const wxPoint
& pos
)
1027 : wxDialog( parent
, -1, message
, pos
, wxDefaultSize
,
1028 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
1030 if (wxConfig::Get(FALSE
))
1032 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ViewStyle"),
1034 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ShowHidden"),
1035 &ms_lastShowHidden
);
1038 m_message
= message
;
1039 m_dialogStyle
= style
;
1041 if (m_dialogStyle
== 0)
1042 m_dialogStyle
= wxOPEN
;
1043 if ((m_dialogStyle
& wxMULTIPLE
) && !(m_dialogStyle
& wxOPEN
))
1044 m_dialogStyle
|= wxOPEN
;
1047 if ((m_dir
.empty()) || (m_dir
== wxT(".")))
1052 size_t len
= m_dir
.Len();
1053 if ((len
> 1) && (wxEndsWithPathSeparator(m_dir
)))
1054 m_dir
.Remove( len
-1, 1 );
1057 m_path
+= wxFILE_SEP_PATH
;
1058 m_path
+= defaultFile
;
1059 m_fileName
= defaultFile
;
1060 m_wildCard
= wildCard
;
1062 m_filterExtension
= wxEmptyString
;
1064 // interpret wildcards
1066 if (m_wildCard
.IsEmpty())
1067 m_wildCard
= _("All files (*)|*");
1069 wxStringTokenizer
tokens( m_wildCard
, wxT("|") );
1071 wxString firstWildText
;
1072 if (tokens
.CountTokens() == 1)
1074 firstWildText
= tokens
.GetNextToken();
1075 firstWild
= firstWildText
;
1079 wxASSERT_MSG( tokens
.CountTokens() % 2 == 0, wxT("Wrong file type descripition") );
1080 firstWildText
= tokens
.GetNextToken();
1081 firstWild
= tokens
.GetNextToken();
1083 if ( firstWild
.Left( 2 ) == wxT("*.") )
1084 m_filterExtension
= firstWild
.Mid( 1 );
1085 if ( m_filterExtension
== wxT(".*") )
1086 m_filterExtension
= wxEmptyString
;
1090 bool is_pda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
1092 wxBoxSizer
*mainsizer
= new wxBoxSizer( wxVERTICAL
);
1094 wxBoxSizer
*buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
1096 wxBitmapButton
*but
;
1098 but
= new wxBitmapButton(this, ID_LIST_MODE
,
1099 wxArtProvider::GetBitmap(wxART_LIST_VIEW
, wxART_CMN_DIALOG
));
1101 but
->SetToolTip( _("View files as a list view") );
1103 buttonsizer
->Add( but
, 0, wxALL
, 5 );
1105 but
= new wxBitmapButton(this, ID_REPORT_MODE
,
1106 wxArtProvider::GetBitmap(wxART_REPORT_VIEW
, wxART_CMN_DIALOG
));
1108 but
->SetToolTip( _("View files as a detailed view") );
1110 buttonsizer
->Add( but
, 0, wxALL
, 5 );
1112 buttonsizer
->Add( 30, 5, 1 );
1114 wxWindow
*butDirUp
=
1115 new wxBitmapButton(this, ID_UP_DIR
,
1116 wxArtProvider::GetBitmap(wxART_GO_DIR_UP
, wxART_CMN_DIALOG
));
1118 butDirUp
->SetToolTip( _("Go to parent directory") );
1120 buttonsizer
->Add( butDirUp
, 0, wxALL
, 5 );
1122 #ifndef __DOS__ // VS: Home directory is meaningless in MS-DOS...
1123 but
= new wxBitmapButton(this, ID_PARENT_DIR
,
1124 wxArtProvider::GetBitmap(wxART_GO_HOME
, wxART_CMN_DIALOG
));
1126 but
->SetToolTip( _("Go to home directory") );
1128 buttonsizer
->Add( but
, 0, wxALL
, 5);
1130 buttonsizer
->Add( 20, 20 );
1133 wxWindow
*butNewDir
=
1134 new wxBitmapButton(this, ID_NEW_DIR
,
1135 wxArtProvider::GetBitmap(wxART_NEW_DIR
, wxART_CMN_DIALOG
));
1137 butNewDir
->SetToolTip( _("Create new directory") );
1139 buttonsizer
->Add( butNewDir
, 0, wxALL
, 5 );
1142 mainsizer
->Add( buttonsizer
, 0, wxALL
| wxEXPAND
, 0 );
1144 mainsizer
->Add( buttonsizer
, 0, wxALL
| wxEXPAND
, 5 );
1146 wxBoxSizer
*staticsizer
= new wxBoxSizer( wxHORIZONTAL
);
1148 staticsizer
->Add( new wxStaticText( this, -1, _("Current directory:") ), 0, wxRIGHT
, 10 );
1149 m_static
= new wxStaticText( this, -1, m_dir
);
1150 staticsizer
->Add( m_static
, 1 );
1151 mainsizer
->Add( staticsizer
, 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxBOTTOM
, 10 );
1153 long style2
= ms_lastViewStyle
| wxSUNKEN_BORDER
;
1154 if ( !(m_dialogStyle
& wxMULTIPLE
) )
1155 style2
|= wxLC_SINGLE_SEL
;
1157 m_list
= new wxFileCtrl( this, ID_LIST_CTRL
,
1158 firstWild
, ms_lastShowHidden
,
1159 wxDefaultPosition
, wxSize(540,200),
1162 m_list
->SetNewDirControl(butNewDir
);
1163 m_list
->SetGoToParentControl(butDirUp
);
1167 // PDAs have a different screen layout
1168 mainsizer
->Add( m_list
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 5 );
1170 wxBoxSizer
*choicesizer
= new wxBoxSizer( wxHORIZONTAL
);
1171 m_choice
= new wxChoice( this, ID_CHOICE
);
1172 choicesizer
->Add( m_choice
, 1, wxCENTER
|wxALL
, 5 );
1173 mainsizer
->Add( choicesizer
, 0, wxEXPAND
);
1175 wxBoxSizer
*textsizer
= new wxBoxSizer( wxHORIZONTAL
);
1176 m_text
= new wxTextCtrl( this, ID_TEXT
, m_fileName
, wxDefaultPosition
, wxDefaultSize
, wxPROCESS_ENTER
);
1177 textsizer
->Add( m_text
, 1, wxCENTER
| wxALL
, 5 );
1178 mainsizer
->Add( textsizer
, 0, wxEXPAND
);
1180 m_check
= new wxCheckBox( this, ID_CHECK
, _("Show hidden files") );
1181 m_check
->SetValue( ms_lastShowHidden
);
1182 textsizer
->Add( m_check
, 0, wxCENTER
|wxALL
, 5 );
1184 buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
1185 buttonsizer
->Add( new wxButton( this, wxID_OK
, _("OK") ), 0, wxCENTER
| wxALL
, 5 );
1186 buttonsizer
->Add( new wxButton( this, wxID_CANCEL
, _("Cancel") ), 0, wxCENTER
| wxALL
, 5 );
1187 mainsizer
->Add( buttonsizer
, 0, wxALIGN_RIGHT
);
1191 mainsizer
->Add( m_list
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 10 );
1193 wxBoxSizer
*textsizer
= new wxBoxSizer( wxHORIZONTAL
);
1194 m_text
= new wxTextCtrl( this, ID_TEXT
, m_fileName
, wxDefaultPosition
, wxDefaultSize
, wxPROCESS_ENTER
);
1195 textsizer
->Add( m_text
, 1, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
1196 textsizer
->Add( new wxButton( this, wxID_OK
, _("OK") ), 0, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
1197 mainsizer
->Add( textsizer
, 0, wxEXPAND
);
1199 wxBoxSizer
*choicesizer
= new wxBoxSizer( wxHORIZONTAL
);
1200 m_choice
= new wxChoice( this, ID_CHOICE
);
1201 choicesizer
->Add( m_choice
, 1, wxCENTER
|wxALL
, 10 );
1202 m_check
= new wxCheckBox( this, ID_CHECK
, _("Show hidden files") );
1203 m_check
->SetValue( ms_lastShowHidden
);
1204 choicesizer
->Add( m_check
, 0, wxCENTER
|wxALL
, 10 );
1205 choicesizer
->Add( new wxButton( this, wxID_CANCEL
, _("Cancel") ), 0, wxCENTER
| wxALL
, 10 );
1206 mainsizer
->Add( choicesizer
, 0, wxEXPAND
);
1209 m_choice
->Append( firstWildText
, (void*) new wxString( firstWild
) );
1210 while (tokens
.HasMoreTokens())
1212 firstWildText
= tokens
.GetNextToken();
1213 firstWild
= tokens
.GetNextToken();
1214 m_choice
->Append( firstWildText
, (void*) new wxString( firstWild
) );
1216 m_choice
->SetSelection( 0 );
1218 SetAutoLayout( TRUE
);
1219 SetSizer( mainsizer
);
1221 mainsizer
->Fit( this );
1222 mainsizer
->SetSizeHints( this );
1229 wxGenericFileDialog::~wxGenericFileDialog()
1231 if (wxConfig::Get(FALSE
))
1233 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ViewStyle"),
1235 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ShowHidden"),
1239 const int count
= m_choice
->GetCount();
1240 for ( int i
= 0; i
< count
; i
++ )
1242 delete (wxString
*)m_choice
->GetClientData(i
);
1246 int wxGenericFileDialog::ShowModal()
1248 m_list
->GoToDir(m_dir
);
1249 m_static
->SetLabel(m_list
->GetDir());
1250 m_text
->SetValue(m_fileName
);
1252 return wxDialog::ShowModal();
1255 void wxGenericFileDialog::DoSetFilterIndex(int filterindex
)
1257 wxString
*str
= (wxString
*) m_choice
->GetClientData( filterindex
);
1258 m_list
->SetWild( *str
);
1259 m_filterIndex
= filterindex
;
1260 if ( str
->Left(2) == wxT("*.") )
1262 m_filterExtension
= str
->Mid(1);
1263 if (m_filterExtension
== _T(".*"))
1264 m_filterExtension
.clear();
1268 m_filterExtension
.clear();
1272 void wxGenericFileDialog::SetFilterIndex( int filterindex
)
1274 m_choice
->SetSelection( filterindex
);
1276 DoSetFilterIndex(filterindex
);
1279 void wxGenericFileDialog::OnChoiceFilter( wxCommandEvent
&event
)
1281 DoSetFilterIndex((int)event
.GetInt());
1284 void wxGenericFileDialog::OnCheck( wxCommandEvent
&event
)
1286 m_list
->ShowHidden( (ms_lastShowHidden
= event
.GetInt() != 0) );
1289 void wxGenericFileDialog::OnActivated( wxListEvent
&event
)
1291 HandleAction( event
.m_item
.m_text
);
1294 void wxGenericFileDialog::OnTextEnter( wxCommandEvent
&WXUNUSED(event
) )
1296 wxCommandEvent
cevent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_OK
);
1297 cevent
.SetEventObject( this );
1298 GetEventHandler()->ProcessEvent( cevent
);
1301 static bool ignoreChanges
= FALSE
;
1303 void wxGenericFileDialog::OnTextChange( wxCommandEvent
&WXUNUSED(event
) )
1307 // Clear selections. Otherwise when the user types in a value they may
1308 // not get the file whose name they typed.
1309 if (m_list
->GetSelectedItemCount() > 0)
1311 long item
= m_list
->GetNextItem(-1, wxLIST_NEXT_ALL
,
1312 wxLIST_STATE_SELECTED
);
1313 while ( item
!= -1 )
1315 m_list
->SetItemState(item
,0, wxLIST_STATE_SELECTED
);
1316 item
= m_list
->GetNextItem(item
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1322 void wxGenericFileDialog::OnSelected( wxListEvent
&event
)
1324 wxString
filename( event
.m_item
.m_text
);
1325 if (filename
== wxT("..")) return;
1328 m_list
->GetDir( dir
);
1329 if (!IsTopMostDir(dir
))
1330 dir
+= wxFILE_SEP_PATH
;
1332 if (wxDirExists(dir
)) return;
1334 ignoreChanges
= TRUE
;
1335 m_text
->SetValue( filename
);
1336 ignoreChanges
= FALSE
;
1339 void wxGenericFileDialog::HandleAction( const wxString
&fn
)
1341 wxString
filename( fn
);
1343 m_list
->GetDir( dir
);
1344 if (filename
.IsEmpty()) return;
1345 if (filename
== wxT(".")) return;
1347 if (filename
== wxT(".."))
1349 m_list
->GoToParentDir();
1351 m_static
->SetLabel(m_list
->GetDir());
1356 if (filename
== wxT("~"))
1358 m_list
->GoToHomeDir();
1360 m_static
->SetLabel(m_list
->GetDir());
1364 if (filename
[0u] == wxT('~'))
1366 filename
.Remove( 0, 1 );
1367 wxString
tmp( wxGetUserHome() );
1374 if ((filename
.Find(wxT('*')) != wxNOT_FOUND
) ||
1375 (filename
.Find(wxT('?')) != wxNOT_FOUND
))
1377 if (filename
.Find(wxFILE_SEP_PATH
) != wxNOT_FOUND
)
1379 wxMessageBox(_("Illegal file specification."), _("Error"), wxOK
| wxICON_ERROR
);
1382 m_list
->SetWild( filename
);
1386 if (!IsTopMostDir(dir
))
1387 dir
+= wxFILE_SEP_PATH
;
1388 if (!wxIsAbsolutePath(filename
))
1394 if (wxDirExists(filename
))
1396 m_list
->GoToDir( filename
);
1397 m_static
->SetLabel(m_list
->GetDir());
1401 // append the default extension to the filename if it doesn't have any
1403 // VZ: the logic of testing for !wxFileExists() only for the open file
1404 // dialog is not entirely clear to me, why don't we allow saving to a
1405 // file without extension as well?
1406 if ( !(m_dialogStyle
& wxOPEN
) || !wxFileExists(filename
) )
1409 wxSplitPath(filename
, NULL
, NULL
, &ext
);
1412 // append the first extension of the filter string
1413 filename
+= m_filterExtension
.BeforeFirst(_T(';'));
1417 // check that the file [doesn't] exist if necessary
1418 if ( (m_dialogStyle
& wxSAVE
) &&
1419 (m_dialogStyle
& wxOVERWRITE_PROMPT
) &&
1420 wxFileExists( filename
) )
1423 msg
.Printf( _("File '%s' already exists, do you really want to "
1424 "overwrite it?"), filename
.c_str() );
1426 if (wxMessageBox(msg
, _("Confirm"), wxYES_NO
) != wxYES
)
1429 else if ( (m_dialogStyle
& wxOPEN
) &&
1430 (m_dialogStyle
& wxFILE_MUST_EXIST
) &&
1431 !wxFileExists(filename
) )
1433 wxMessageBox(_("Please choose an existing file."), _("Error"),
1434 wxOK
| wxICON_ERROR
);
1437 SetPath( filename
);
1439 // change to the directory where the user went if asked
1440 if ( m_dialogStyle
& wxCHANGE_DIR
)
1443 wxSplitPath(filename
, &cwd
, NULL
, NULL
);
1445 if ( cwd
!= wxGetWorkingDirectory() )
1447 wxSetWorkingDirectory(cwd
);
1451 wxCommandEvent event
;
1452 wxDialog::OnOK(event
);
1455 void wxGenericFileDialog::OnListOk( wxCommandEvent
&WXUNUSED(event
) )
1457 HandleAction( m_text
->GetValue() );
1460 void wxGenericFileDialog::OnList( wxCommandEvent
&WXUNUSED(event
) )
1462 m_list
->ChangeToListMode();
1463 ms_lastViewStyle
= wxLC_LIST
;
1467 void wxGenericFileDialog::OnReport( wxCommandEvent
&WXUNUSED(event
) )
1469 m_list
->ChangeToReportMode();
1470 ms_lastViewStyle
= wxLC_REPORT
;
1474 void wxGenericFileDialog::OnUp( wxCommandEvent
&WXUNUSED(event
) )
1476 m_list
->GoToParentDir();
1478 m_static
->SetLabel(m_list
->GetDir());
1481 void wxGenericFileDialog::OnHome( wxCommandEvent
&WXUNUSED(event
) )
1483 m_list
->GoToHomeDir();
1485 m_static
->SetLabel(m_list
->GetDir());
1488 void wxGenericFileDialog::OnNew( wxCommandEvent
&WXUNUSED(event
) )
1493 void wxGenericFileDialog::SetPath( const wxString
& path
)
1495 // not only set the full path but also update filename and dir
1497 if ( !path
.empty() )
1500 wxSplitPath(path
, &m_dir
, &m_fileName
, &ext
);
1503 m_fileName
+= wxT(".");
1509 void wxGenericFileDialog::GetPaths( wxArrayString
& paths
) const
1512 if (m_list
->GetSelectedItemCount() == 0)
1514 paths
.Add( GetPath() );
1518 paths
.Alloc( m_list
->GetSelectedItemCount() );
1521 m_list
->GetDir( dir
);
1523 if (dir
!= wxT("/"))
1525 dir
+= wxFILE_SEP_PATH
;
1528 item
.m_mask
= wxLIST_MASK_TEXT
;
1530 item
.m_itemId
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1531 while ( item
.m_itemId
!= -1 )
1533 m_list
->GetItem( item
);
1534 paths
.Add( dir
+ item
.m_text
);
1535 item
.m_itemId
= m_list
->GetNextItem( item
.m_itemId
,
1536 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1540 void wxGenericFileDialog::GetFilenames(wxArrayString
& files
) const
1543 if (m_list
->GetSelectedItemCount() == 0)
1545 files
.Add( GetFilename() );
1548 files
.Alloc( m_list
->GetSelectedItemCount() );
1551 item
.m_mask
= wxLIST_MASK_TEXT
;
1553 item
.m_itemId
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1554 while ( item
.m_itemId
!= -1 )
1556 m_list
->GetItem( item
);
1557 files
.Add( item
.m_text
);
1558 item
.m_itemId
= m_list
->GetNextItem( item
.m_itemId
,
1559 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1563 #ifdef USE_GENERIC_FILEDIALOG
1565 IMPLEMENT_DYNAMIC_CLASS(wxFileDialog
, wxGenericFileDialog
);
1567 // ----------------------------------------------------------------------------
1569 // ----------------------------------------------------------------------------
1571 // common part of both wxFileSelectorEx() and wxFileSelector()
1573 DoSelectFile(const wxChar
*title
,
1574 const wxChar
*defaultDir
,
1575 const wxChar
*defaultFileName
,
1576 const wxChar
*defaultExtension
,
1577 int *indexDefaultExtension
,
1578 const wxChar
*filter
,
1584 // the filter may be either given explicitly or created automatically from
1585 // the default extension
1586 wxString filterReal
;
1589 // the user has specified the filter explicitly, use it
1590 filterReal
= filter
;
1592 else if ( !wxIsEmpty(defaultExtension
) )
1594 // create the filter to match the given extension
1595 filterReal
<< wxT("*.") << defaultExtension
;
1598 wxFileDialog
fileDialog(parent
,
1607 if ( fileDialog
.ShowModal() == wxID_OK
)
1609 path
= fileDialog
.GetPath();
1610 if ( indexDefaultExtension
)
1612 *indexDefaultExtension
= fileDialog
.GetFilterIndex();
1620 wxFileSelectorEx(const wxChar
*title
,
1621 const wxChar
*defaultDir
,
1622 const wxChar
*defaultFileName
,
1623 int *indexDefaultExtension
,
1624 const wxChar
*filter
,
1630 return DoSelectFile(title
,
1633 wxT(""), // def ext determined by index
1634 indexDefaultExtension
,
1643 wxFileSelector(const wxChar
*title
,
1644 const wxChar
*defaultDir
,
1645 const wxChar
*defaultFileName
,
1646 const wxChar
*defaultExtension
,
1647 const wxChar
*filter
,
1653 return DoSelectFile(title
,
1657 NULL
, // not interested in filter index
1665 static wxString
GetWildcardString(const wxChar
*ext
)
1670 if ( *ext
== wxT('.') )
1673 wild
<< _T("*.") << ext
;
1675 else // no extension specified
1677 wild
= wxFileSelectorDefaultWildcardStr
;
1683 wxString
wxLoadFileSelector(const wxChar
*what
,
1685 const wxChar
*nameDef
,
1689 if ( what
&& *what
)
1690 prompt
= wxString::Format(_("Load %s file"), what
);
1692 prompt
= _("Load file");
1694 return wxFileSelector(prompt
, NULL
, nameDef
, ext
,
1695 GetWildcardString(ext
), 0, parent
);
1698 wxString
wxSaveFileSelector(const wxChar
*what
,
1700 const wxChar
*nameDef
,
1704 if ( what
&& *what
)
1705 prompt
= wxString::Format(_("Save %s file"), what
);
1707 prompt
= _("Save file");
1709 return wxFileSelector(prompt
, NULL
, nameDef
, ext
,
1710 GetWildcardString(ext
), 0, parent
);
1713 // A module to allow icons table cleanup
1715 class wxFileDialogGenericModule
: public wxModule
1717 DECLARE_DYNAMIC_CLASS(wxFileDialogGenericModule
)
1719 wxFileDialogGenericModule() {}
1720 bool OnInit() { return TRUE
; }
1721 void OnExit() { if (g_IconsTable
) {delete g_IconsTable
; g_IconsTable
= NULL
;} }
1724 IMPLEMENT_DYNAMIC_CLASS(wxFileDialogGenericModule
, wxModule
)
1726 #endif // USE_GENERIC_FILEDIALOG
1728 #endif // wxUSE_FILEDLG