1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFileDialog
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "filedlgg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
24 #error wxFileDialog currently only supports unix
27 #include "wx/filedlg.h"
31 #include "wx/msgdlg.h"
33 #include "wx/bmpbuttn.h"
34 #include "wx/tokenzr.h"
35 #include "wx/mimetype.h"
37 #include "wx/module.h"
41 #include "wx/tooltip.h"
44 #include <sys/types.h>
52 #include "wx/generic/home.xpm"
53 #include "wx/generic/listview.xpm"
54 #include "wx/generic/repview.xpm"
55 #include "wx/generic/new_dir.xpm"
56 #include "wx/generic/dir_up.xpm"
59 static char * folder_xpm
[] = {
60 /* width height ncolors chars_per_pixel */
88 // ----------------------------------------------------------------------------
89 // private classes - icons list management
90 // ----------------------------------------------------------------------------
92 class wxFileIconEntry
: public wxObject
95 wxFileIconEntry(int i
) { id
= i
; }
101 class wxFileIconsTable
107 int GetIconID(const wxString
& extension
);
108 wxImageList
*GetImageList() { return &m_ImageList
; }
111 wxImageList m_ImageList
;
112 wxHashTable m_HashTable
;
113 wxMimeTypesManager m_Mime
;
116 static wxFileIconsTable
*g_IconsTable
= NULL
;
119 wxFileIconsTable::wxFileIconsTable() :
121 m_HashTable(wxKEY_STRING
),
124 m_HashTable
.DeleteContents(TRUE
);
125 m_ImageList
.Add(wxBitmap(folder_xpm
));
130 static wxBitmap
CreateAntialiasedBitmap(const wxImage
& img
)
132 wxImage
small(16, 16);
133 unsigned char *p1
, *p2
, *ps
;
134 unsigned char mr
= img
.GetMaskRed(), mg
= img
.GetMaskGreen(), mb
= img
.GetMaskBlue();
137 unsigned sr
, sg
, sb
, smask
;
139 p1
= img
.GetData(), p2
= img
.GetData() + 3 * 32, ps
= small
.GetData();
140 small
.SetMaskColour(mr
, mr
, mr
);
142 for (y
= 0; y
< 16; y
++)
144 for (x
= 0; x
< 16; x
++)
146 sr
= sg
= sb
= smask
= 0;
147 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
148 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
151 if (p1
[0] != mr
|| p1
[1] != mg
|| p1
[2] != mb
)
152 sr
+= p1
[0], sg
+= p1
[1], sb
+= p1
[2];
155 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
156 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
159 if (p2
[0] != mr
|| p2
[1] != mg
|| p2
[2] != mb
)
160 sr
+= p2
[0], sg
+= p2
[1], sb
+= p2
[2];
165 ps
[0] = ps
[1] = ps
[2] = mr
;
167 ps
[0] = sr
>> 2, ps
[1] = sg
>> 2, ps
[2] = sb
>> 2;
170 p1
+= 32 * 3, p2
+= 32 * 3;
173 return small
.ConvertToBitmap();
177 int wxFileIconsTable::GetIconID(const wxString
& extension
)
179 wxFileIconEntry
*entry
= (wxFileIconEntry
*) m_HashTable
.Get(extension
);
181 if (entry
) return (entry
-> id
);
183 wxFileType
*ft
= m_Mime
.GetFileTypeFromExtension(extension
);
185 if (ft
== NULL
|| (!ft
-> GetIcon(&ic
)))
187 int newid
= GetIconID(wxT("txt"));
188 m_HashTable
.Put(extension
, new wxFileIconEntry(newid
));
194 int id
= m_ImageList
.GetImageCount();
195 if (img
.GetWidth() == 16 && img
.GetHeight() == 16)
196 m_ImageList
.Add(img
.ConvertToBitmap());
198 m_ImageList
.Add(CreateAntialiasedBitmap(img
.Scale(32, 32)));
199 m_HashTable
.Put(extension
, new wxFileIconEntry(id
));
205 // ----------------------------------------------------------------------------
207 // ----------------------------------------------------------------------------
210 int ListCompare( long data1
, long data2
, long WXUNUSED(data
) )
212 wxFileData
*fd1
= (wxFileData
*)data1
;
213 wxFileData
*fd2
= (wxFileData
*)data2
;
214 if (fd1
->GetName() == wxT("..")) return -1;
215 if (fd2
->GetName() == wxT("..")) return 1;
216 if (fd1
->IsDir() && !fd2
->IsDir()) return -1;
217 if (fd2
->IsDir() && !fd1
->IsDir()) return 1;
218 return wxStrcmp( fd1
->GetName(), fd2
->GetName() );
221 //-----------------------------------------------------------------------------
223 //-----------------------------------------------------------------------------
225 IMPLEMENT_DYNAMIC_CLASS(wxFileData
,wxObject
);
227 wxFileData::wxFileData( const wxString
&name
, const wxString
&fname
)
233 stat( m_fileName
.fn_str(), &buff
);
237 lstat( m_fileName
.fn_str(), &lbuff
);
238 m_isLink
= S_ISLNK( lbuff
.st_mode
);
239 struct tm
*t
= localtime( &lbuff
.st_mtime
);
242 struct tm
*t
= localtime( &buff
.st_mtime
);
245 // struct passwd *user = getpwuid( buff.st_uid );
246 // struct group *grp = getgrgid( buff.st_gid );
248 m_isDir
= S_ISDIR( buff
.st_mode
);
249 m_isExe
= ((buff
.st_mode
& S_IXUSR
) == S_IXUSR
);
251 m_size
= buff
.st_size
;
254 m_minute
= t
->tm_min
;
255 m_month
= t
->tm_mon
+1;
260 m_permissions
.sprintf( wxT("%c%c%c"),
261 ((( buff
.st_mode
& S_IRUSR
) == S_IRUSR
) ? wxT('r') : wxT('-')),
262 ((( buff
.st_mode
& S_IWUSR
) == S_IWUSR
) ? wxT('w') : wxT('-')),
263 ((( buff
.st_mode
& S_IXUSR
) == S_IXUSR
) ? wxT('x') : wxT('-')) );
266 wxString
wxFileData::GetName() const
271 wxString
wxFileData::GetFullName() const
276 wxString
wxFileData::GetHint() const
278 wxString s
= m_fileName
;
280 if (m_isDir
) s
+= _("<DIR> ");
281 else if (m_isLink
) s
+= _("<LINK> ");
284 s
+= LongToString( m_size
);
287 s
+= IntToString( m_day
);
289 s
+= IntToString( m_month
);
291 s
+= IntToString( m_year
);
293 s
+= IntToString( m_hour
);
295 s
+= IntToString( m_minute
);
301 wxString
wxFileData::GetEntry( int num
)
313 if (m_isDir
) s
= _("<DIR>");
314 else if (m_isLink
) s
= _("<LINK>");
315 else s
= LongToString( m_size
);
320 if (m_day
< 10) s
= wxT("0"); else s
= wxT("");
321 s
+= IntToString( m_day
);
323 if (m_month
< 10) s
+= wxT("0");
324 s
+= IntToString( m_month
);
326 s
+= IntToString( m_year
);
331 if (m_hour
< 10) s
= wxT("0"); else s
= wxT("");
332 s
+= IntToString( m_hour
);
334 if (m_minute
< 10) s
+= wxT("0");
335 s
+= IntToString( m_minute
);
348 bool wxFileData::IsDir()
353 bool wxFileData::IsExe()
358 bool wxFileData::IsLink()
363 long wxFileData::GetSize()
368 void wxFileData::SetNewName( const wxString
&name
, const wxString
&fname
)
374 void wxFileData::MakeItem( wxListItem
&item
)
376 item
.m_text
= m_name
;
377 item
.ClearAttributes();
378 if (IsExe()) item
.SetTextColour(*wxRED
);
379 if (IsDir()) item
.SetTextColour(*wxBLUE
);
383 else if (m_name
.Find(wxT('.')) != wxNOT_FOUND
)
384 item
.m_image
= g_IconsTable
-> GetIconID(m_name
.AfterLast(wxT('.')));
390 wxColour
*dg
= wxTheColourDatabase
->FindColour( "MEDIUM GREY" );
391 item
.SetTextColour(*dg
);
393 item
.m_data
= (long)this;
396 //-----------------------------------------------------------------------------
398 //-----------------------------------------------------------------------------
400 IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl
,wxListCtrl
);
402 BEGIN_EVENT_TABLE(wxFileCtrl
,wxListCtrl
)
403 EVT_LIST_DELETE_ITEM(-1, wxFileCtrl::OnListDeleteItem
)
404 EVT_LIST_END_LABEL_EDIT(-1, wxFileCtrl::OnListEndLabelEdit
)
409 wxFileCtrl::wxFileCtrl()
411 m_dirName
= wxT("/");
412 m_showHidden
= FALSE
;
415 wxFileCtrl::wxFileCtrl( wxWindow
*win
, wxWindowID id
,
416 const wxString
&dirName
, const wxString
&wild
,
417 const wxPoint
&pos
, const wxSize
&size
,
418 long style
, const wxValidator
&validator
, const wxString
&name
) :
419 wxListCtrl( win
, id
, pos
, size
, style
, validator
, name
)
421 if (! g_IconsTable
) g_IconsTable
= new wxFileIconsTable
;
422 wxImageList
*imageList
= g_IconsTable
-> GetImageList();
424 SetImageList( imageList
, wxIMAGE_LIST_SMALL
);
428 m_showHidden
= FALSE
;
432 void wxFileCtrl::ChangeToListMode()
434 SetSingleStyle( wxLC_LIST
);
438 void wxFileCtrl::ChangeToReportMode()
440 SetSingleStyle( wxLC_REPORT
);
444 void wxFileCtrl::ChangeToIconMode()
446 SetSingleStyle( wxLC_ICON
);
450 void wxFileCtrl::ShowHidden( bool show
)
456 long wxFileCtrl::Add( wxFileData
*fd
, wxListItem
&item
)
459 item
.m_mask
= wxLIST_MASK_TEXT
+ wxLIST_MASK_DATA
+ wxLIST_MASK_IMAGE
;
460 fd
->MakeItem( item
);
461 long my_style
= GetWindowStyleFlag();
462 if (my_style
& wxLC_REPORT
)
464 ret
= InsertItem( item
);
465 for (int i
= 1; i
< 5; i
++) SetItem( item
.m_itemId
, i
, fd
->GetEntry( i
) );
467 else if (my_style
& wxLC_LIST
)
469 ret
= InsertItem( item
);
474 void wxFileCtrl::Update()
476 long my_style
= GetWindowStyleFlag();
477 int name_col_width
= 0;
478 if (my_style
& wxLC_REPORT
)
480 if (GetColumnCount() > 0)
481 name_col_width
= GetColumnWidth( 0 );
485 if (my_style
& wxLC_REPORT
)
487 if (name_col_width
< 140) name_col_width
= 140;
488 InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT
, name_col_width
);
489 InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT
, 60 );
490 InsertColumn( 2, _("Date"), wxLIST_FORMAT_LEFT
, 65 );
491 InsertColumn( 3, _("Time"), wxLIST_FORMAT_LEFT
, 50 );
492 InsertColumn( 4, _("Permissions"), wxLIST_FORMAT_LEFT
, 120 );
494 wxFileData
*fd
= (wxFileData
*) NULL
;
499 if (m_dirName
!= wxT("/"))
501 wxString
p( wxPathOnly(m_dirName
) );
502 if (p
.IsEmpty()) p
= wxT("/");
503 fd
= new wxFileData( wxT(".."), p
);
508 wxString res
= m_dirName
+ wxT("/*");
509 wxString
f( wxFindFirstFile( res
.GetData(), wxDIR
) );
512 res
= wxFileNameFromPath( f
);
513 fd
= new wxFileData( res
, f
);
514 wxString s
= fd
->GetName();
515 if (m_showHidden
|| (s
[0] != wxT('.')))
520 f
= wxFindNextFile();
523 res
= m_dirName
+ wxT("/") + m_wild
;
524 f
= wxFindFirstFile( res
.GetData(), wxFILE
);
527 res
= wxFileNameFromPath( f
);
528 fd
= new wxFileData( res
, f
);
529 wxString s
= fd
->GetName();
530 if (m_showHidden
|| (s
[0] != wxT('.')))
535 f
= wxFindNextFile();
538 SortItems( ListCompare
, 0 );
540 SetColumnWidth( 1, wxLIST_AUTOSIZE
);
541 SetColumnWidth( 2, wxLIST_AUTOSIZE
);
542 SetColumnWidth( 3, wxLIST_AUTOSIZE
);
545 void wxFileCtrl::SetWild( const wxString
&wild
)
551 void wxFileCtrl::MakeDir()
553 wxString
new_name( wxT("NewName") );
554 wxString
path( m_dirName
);
557 if (wxFileExists(path
))
559 // try NewName0, NewName1 etc.
562 new_name
= _("NewName");
564 num
.Printf( wxT("%d"), i
);
571 } while (wxFileExists(path
));
577 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
582 wxFileData
*fd
= new wxFileData( new_name
, path
);
586 long id
= Add( fd
, item
);
590 SortItems( ListCompare
, 0 );
591 id
= FindItem( 0, (long)fd
);
597 void wxFileCtrl::GoToParentDir()
599 if (m_dirName
!= wxT("/"))
601 wxString
fname( wxFileNameFromPath(m_dirName
) );
602 m_dirName
= wxPathOnly( m_dirName
);
603 if (m_dirName
.IsEmpty()) m_dirName
= wxT("/");
605 long id
= FindItem( 0, fname
);
608 SetItemState( id
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
614 void wxFileCtrl::GoToHomeDir()
616 wxString s
= wxGetUserHome( wxString() );
619 SetItemState( 0, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
623 void wxFileCtrl::GoToDir( const wxString
&dir
)
627 SetItemState( 0, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
631 void wxFileCtrl::GetDir( wxString
&dir
)
636 void wxFileCtrl::OnListDeleteItem( wxListEvent
&event
)
638 wxFileData
*fd
= (wxFileData
*)event
.m_item
.m_data
;
642 void wxFileCtrl::OnListEndLabelEdit( wxListEvent
&event
)
644 wxFileData
*fd
= (wxFileData
*)event
.m_item
.m_data
;
647 if ((event
.GetLabel().IsEmpty()) ||
648 (event
.GetLabel() == _(".")) ||
649 (event
.GetLabel() == _("..")) ||
650 (event
.GetLabel().First( wxT("/") ) != wxNOT_FOUND
))
652 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
658 wxString
new_name( wxPathOnly( fd
->GetFullName() ) );
659 new_name
+= wxT("/");
660 new_name
+= event
.GetLabel();
664 if (wxFileExists(new_name
))
666 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
671 if (wxRenameFile(fd
->GetFullName(),new_name
))
673 fd
->SetNewName( new_name
, event
.GetLabel() );
674 SetItemState( event
.GetItem(), wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
675 EnsureVisible( event
.GetItem() );
679 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
685 //-----------------------------------------------------------------------------
687 //-----------------------------------------------------------------------------
689 #define ID_LIST_MODE wxID_FILEDLGG
690 #define ID_REPORT_MODE wxID_FILEDLGG + 1
691 #define ID_UP_DIR wxID_FILEDLGG + 5
692 #define ID_PARENT_DIR wxID_FILEDLGG + 6
693 #define ID_NEW_DIR wxID_FILEDLGG + 7
694 #define ID_CHOICE wxID_FILEDLGG + 8
695 #define ID_TEXT wxID_FILEDLGG + 9
696 #define ID_LIST_CTRL wxID_FILEDLGG + 10
697 #define ID_ACTIVATED wxID_FILEDLGG + 11
698 #define ID_CHECK wxID_FILEDLGG + 12
700 IMPLEMENT_DYNAMIC_CLASS(wxFileDialog
,wxDialog
)
702 BEGIN_EVENT_TABLE(wxFileDialog
,wxDialog
)
703 EVT_BUTTON(ID_LIST_MODE
, wxFileDialog::OnList
)
704 EVT_BUTTON(ID_REPORT_MODE
, wxFileDialog::OnReport
)
705 EVT_BUTTON(ID_UP_DIR
, wxFileDialog::OnUp
)
706 EVT_BUTTON(ID_PARENT_DIR
, wxFileDialog::OnHome
)
707 EVT_BUTTON(ID_NEW_DIR
, wxFileDialog::OnNew
)
708 EVT_BUTTON(wxID_OK
, wxFileDialog::OnListOk
)
709 EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL
, wxFileDialog::OnSelected
)
710 EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL
, wxFileDialog::OnActivated
)
711 EVT_CHOICE(ID_CHOICE
,wxFileDialog::OnChoice
)
712 EVT_TEXT_ENTER(ID_TEXT
,wxFileDialog::OnTextEnter
)
713 EVT_CHECKBOX(ID_CHECK
,wxFileDialog::OnCheck
)
716 long wxFileDialog::m_lastViewStyle
= wxLC_LIST
;
717 bool wxFileDialog::m_lastShowHidden
= FALSE
;
719 wxFileDialog::wxFileDialog(wxWindow
*parent
,
720 const wxString
& message
,
721 const wxString
& defaultDir
,
722 const wxString
& defaultFile
,
723 const wxString
& wildCard
,
725 const wxPoint
& pos
) :
726 wxDialog( parent
, -1, message
, pos
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
731 m_dialogStyle
= style
;
733 if (m_dialogStyle
== 0) m_dialogStyle
= wxOPEN
;
734 if ((m_dialogStyle
& wxMULTIPLE
) && !(m_dialogStyle
& wxOPEN
))
735 m_dialogStyle
|= wxOPEN
;
738 if ((m_dir
.IsEmpty()) || (m_dir
== wxT(".")))
741 m_dir
= getcwd( buf
, sizeof(buf
) );
745 m_path
+= defaultFile
;
746 m_fileName
= defaultFile
;
747 m_wildCard
= wildCard
;
749 m_filterExtension
= wxEmptyString
;
751 // interpret wildcards
753 if (m_wildCard
.IsEmpty())
754 m_wildCard
= _("All files (*)|*");
756 wxStringTokenizer
tokens( m_wildCard
, wxT("|") );
758 wxString firstWildText
;
759 if (tokens
.CountTokens() == 1)
761 firstWildText
= tokens
.GetNextToken();
762 firstWild
= firstWildText
;
766 wxASSERT_MSG( tokens
.CountTokens() % 2 == 0, wxT("Wrong file type descripition") );
767 firstWildText
= tokens
.GetNextToken();
768 firstWild
= tokens
.GetNextToken();
770 if ( firstWild
.Left( 2 ) == wxT("*.") )
771 m_filterExtension
= firstWild
.Mid( 1 );
772 if ( m_filterExtension
== ".*" ) m_filterExtension
= wxEmptyString
;
776 wxBoxSizer
*mainsizer
= new wxBoxSizer( wxVERTICAL
);
778 wxBoxSizer
*buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
782 but
= new wxBitmapButton( this, ID_LIST_MODE
, wxBitmap( listview_xpm
) );
784 but
->SetToolTip( _("View files as a list view") );
786 buttonsizer
->Add( but
, 0, wxALL
, 5 );
788 but
= new wxBitmapButton( this, ID_REPORT_MODE
, wxBitmap( repview_xpm
) );
790 but
->SetToolTip( _("View files as a detailed view") );
792 buttonsizer
->Add( but
, 0, wxALL
, 5 );
794 buttonsizer
->Add( 30, 5, 1 );
796 but
= new wxBitmapButton( this, ID_UP_DIR
, wxBitmap( dir_up_xpm
) );
798 but
->SetToolTip( _("Go to parent directory") );
800 buttonsizer
->Add( but
, 0, wxALL
, 5 );
802 but
= new wxBitmapButton( this, ID_PARENT_DIR
, wxBitmap(home_xpm
) );
804 but
->SetToolTip( _("Go to home directory") );
806 buttonsizer
->Add( but
, 0, wxALL
, 5);
808 buttonsizer
->Add( 20, 20 );
810 but
= new wxBitmapButton( this, ID_NEW_DIR
, wxBitmap(new_dir_xpm
) );
812 but
->SetToolTip( _("Create new directory") );
814 buttonsizer
->Add( but
, 0, wxALL
, 5 );
816 mainsizer
->Add( buttonsizer
, 0, wxALL
| wxEXPAND
, 5 );
818 wxBoxSizer
*staticsizer
= new wxBoxSizer( wxHORIZONTAL
);
819 staticsizer
->Add( new wxStaticText( this, -1, _("Current directory:") ), 0, wxRIGHT
, 10 );
820 m_static
= new wxStaticText( this, -1, m_dir
);
821 staticsizer
->Add( m_static
, 1 );
822 mainsizer
->Add( staticsizer
, 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxBOTTOM
, 10 );
824 if (m_dialogStyle
& wxMULTIPLE
)
825 m_list
= new wxFileCtrl( this, ID_LIST_CTRL
, m_dir
, firstWild
, wxDefaultPosition
,
826 wxSize(440,180), m_lastViewStyle
| wxSUNKEN_BORDER
);
828 m_list
= new wxFileCtrl( this, ID_LIST_CTRL
, m_dir
, firstWild
, wxDefaultPosition
,
829 wxSize(440,180), m_lastViewStyle
| wxSUNKEN_BORDER
| wxLC_SINGLE_SEL
);
830 m_list
-> ShowHidden(m_lastShowHidden
);
831 mainsizer
->Add( m_list
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 10 );
833 wxBoxSizer
*textsizer
= new wxBoxSizer( wxHORIZONTAL
);
834 m_text
= new wxTextCtrl( this, ID_TEXT
, m_fileName
, wxDefaultPosition
, wxDefaultSize
, wxPROCESS_ENTER
);
835 textsizer
->Add( m_text
, 1, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
836 textsizer
->Add( new wxButton( this, wxID_OK
, _("OK") ), 0, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
837 mainsizer
->Add( textsizer
, 0, wxEXPAND
);
839 wxBoxSizer
*choicesizer
= new wxBoxSizer( wxHORIZONTAL
);
840 m_choice
= new wxChoice( this, ID_CHOICE
);
841 choicesizer
->Add( m_choice
, 1, wxCENTER
|wxALL
, 10 );
842 m_check
= new wxCheckBox( this, ID_CHECK
, _("Show hidden files") );
843 m_check
->SetValue( m_lastShowHidden
);
844 choicesizer
->Add( m_check
, 0, wxCENTER
|wxALL
, 10 );
845 choicesizer
->Add( new wxButton( this, wxID_CANCEL
, _("Cancel") ), 0, wxCENTER
| wxALL
, 10 );
846 mainsizer
->Add( choicesizer
, 0, wxEXPAND
);
848 m_choice
->Append( firstWildText
, (void*) new wxString( firstWild
) );
849 while (tokens
.HasMoreTokens())
851 firstWildText
= tokens
.GetNextToken();
852 firstWild
= tokens
.GetNextToken();
853 m_choice
->Append( firstWildText
, (void*) new wxString( firstWild
) );
855 m_choice
->SetSelection( 0 );
857 SetAutoLayout( TRUE
);
858 SetSizer( mainsizer
);
860 mainsizer
->Fit( this );
861 mainsizer
->SetSizeHints( this );
865 if (m_fileName
.IsEmpty())
873 wxFileDialog::~wxFileDialog()
877 void wxFileDialog::OnChoice( wxCommandEvent
&event
)
879 int index
= (int)event
.GetInt();
880 wxString
*str
= (wxString
*) m_choice
->GetClientData( index
);
881 m_list
->SetWild( *str
);
882 m_filterIndex
= index
;
883 if ( str
-> Left( 2 ) == wxT("*.") )
885 m_filterExtension
= str
-> Mid( 1 );
886 if (m_filterExtension
== ".*") m_filterExtension
= wxEmptyString
;
889 m_filterExtension
= wxEmptyString
;
892 void wxFileDialog::OnCheck( wxCommandEvent
&event
)
894 m_list
->ShowHidden( (m_lastShowHidden
= event
.GetInt() != 0) );
897 void wxFileDialog::OnActivated( wxListEvent
&event
)
899 HandleAction( event
.m_item
.m_text
);
902 void wxFileDialog::OnTextEnter( wxCommandEvent
&WXUNUSED(event
) )
904 wxCommandEvent
cevent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_OK
);
905 cevent
.SetEventObject( this );
906 GetEventHandler()->ProcessEvent( cevent
);
909 void wxFileDialog::OnSelected( wxListEvent
&event
)
911 if (FindFocus() != m_list
) return;
913 wxString
filename( event
.m_item
.m_text
);
914 if (filename
== wxT("..")) return;
917 m_list
->GetDir( dir
);
918 if (dir
!= wxT("/")) dir
+= wxT("/");
920 if (wxDirExists(dir
)) return;
922 m_text
->SetValue( filename
);
925 void wxFileDialog::HandleAction( const wxString
&fn
)
927 wxString
filename( fn
);
929 m_list
->GetDir( dir
);
930 if (filename
.IsEmpty()) return;
931 if (filename
== wxT(".")) return;
933 if (filename
== wxT(".."))
935 m_list
->GoToParentDir();
937 m_list
->GetDir( dir
);
938 m_static
->SetLabel( dir
);
942 if (filename
== wxT("~"))
944 m_list
->GoToHomeDir();
946 m_list
->GetDir( dir
);
947 m_static
->SetLabel( dir
);
951 if (filename
[0] == wxT('~'))
953 filename
.Remove( 0, 1 );
954 wxString
tmp( wxGetUserHome() );
960 if ((filename
.Find(wxT('*')) != wxNOT_FOUND
) ||
961 (filename
.Find(wxT('?')) != wxNOT_FOUND
))
963 if (filename
.Find(wxT('/')) != wxNOT_FOUND
)
965 wxMessageBox(_("Illegal file specification."), _("Error"), wxOK
| wxICON_ERROR
);
968 m_list
->SetWild( filename
);
972 if (dir
!= wxT("/")) dir
+= wxT("/");
973 if (filename
[0] != wxT('/'))
979 if (wxDirExists(filename
))
981 m_list
->GoToDir( filename
);
982 m_list
->GetDir( dir
);
983 m_static
->SetLabel( dir
);
988 if ( (m_dialogStyle
& wxSAVE
) && (m_dialogStyle
& wxOVERWRITE_PROMPT
) )
990 if (filename
.Find( wxT('.') ) == wxNOT_FOUND
||
991 filename
.AfterLast( wxT('.') ).Find( wxT('/') ) != wxNOT_FOUND
)
992 filename
<< m_filterExtension
;
993 if (wxFileExists( filename
))
996 msg
.Printf( _("File '%s' already exists, do you really want to "
997 "overwrite it?"), filename
.c_str() );
999 if (wxMessageBox(msg
, _("Confirm"), wxYES_NO
) != wxYES
)
1003 else if ( m_dialogStyle
& wxOPEN
)
1005 if ( !wxFileExists( filename
) )
1006 if (filename
.Find( wxT('.') ) == wxNOT_FOUND
||
1007 filename
.AfterLast( wxT('.') ).Find( wxT('/') ) != wxNOT_FOUND
)
1008 filename
<< m_filterExtension
;
1010 if ( m_dialogStyle
& wxFILE_MUST_EXIST
)
1012 if ( !wxFileExists( filename
) )
1014 wxMessageBox(_("Please choose an existing file."), _("Error"), wxOK
| wxICON_ERROR
);
1020 SetPath( filename
);
1022 wxCommandEvent event
;
1023 wxDialog::OnOK(event
);
1026 void wxFileDialog::OnListOk( wxCommandEvent
&WXUNUSED(event
) )
1028 HandleAction( m_text
->GetValue() );
1031 void wxFileDialog::OnList( wxCommandEvent
&WXUNUSED(event
) )
1033 m_list
->ChangeToListMode();
1034 m_lastViewStyle
= wxLC_LIST
;
1038 void wxFileDialog::OnReport( wxCommandEvent
&WXUNUSED(event
) )
1040 m_list
->ChangeToReportMode();
1041 m_lastViewStyle
= wxLC_REPORT
;
1045 void wxFileDialog::OnUp( wxCommandEvent
&WXUNUSED(event
) )
1047 m_list
->GoToParentDir();
1050 m_list
->GetDir( dir
);
1051 m_static
->SetLabel( dir
);
1054 void wxFileDialog::OnHome( wxCommandEvent
&WXUNUSED(event
) )
1056 m_list
->GoToHomeDir();
1059 m_list
->GetDir( dir
);
1060 m_static
->SetLabel( dir
);
1063 void wxFileDialog::OnNew( wxCommandEvent
&WXUNUSED(event
) )
1068 void wxFileDialog::SetPath( const wxString
& path
)
1070 // not only set the full path but also update filename and dir
1075 wxSplitPath(path
, &m_dir
, &m_fileName
, &ext
);
1078 m_fileName
+= wxT(".");
1084 void wxFileDialog::GetPaths( wxArrayString
& paths
) const
1087 if (m_list
->GetSelectedItemCount() == 0)
1089 paths
.Add( GetPath() );
1093 paths
.Alloc( m_list
->GetSelectedItemCount() );
1096 m_list
->GetDir( dir
);
1097 if (dir
!= wxT("/")) dir
+= wxT("/");
1100 item
.m_mask
= wxLIST_MASK_TEXT
;
1102 item
.m_itemId
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1103 while ( item
.m_itemId
!= -1 ) {
1104 m_list
->GetItem( item
);
1105 paths
.Add( dir
+ item
.m_text
);
1106 item
.m_itemId
= m_list
->GetNextItem( item
.m_itemId
+ 1,
1107 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1111 void wxFileDialog::GetFilenames(wxArrayString
& files
) const
1114 if (m_list
->GetSelectedItemCount() == 0)
1116 files
.Add( GetFilename() );
1119 files
.Alloc( m_list
->GetSelectedItemCount() );
1122 item
.m_mask
= wxLIST_MASK_TEXT
;
1124 item
.m_itemId
= m_list
->GetNextItem( -1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1125 while ( item
.m_itemId
!= -1 ) {
1126 m_list
->GetItem( item
);
1127 files
.Add( item
.m_text
);
1128 item
.m_itemId
= m_list
->GetNextItem( item
.m_itemId
+ 1,
1129 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1135 // ----------------------------------------------------------------------------
1137 // ----------------------------------------------------------------------------
1140 wxFileSelectorEx(const wxChar
*message
,
1141 const wxChar
*default_path
,
1142 const wxChar
*default_filename
,
1143 int *WXUNUSED(indexDefaultExtension
),
1144 const wxChar
*wildcard
,
1149 // TODO: implement this somehow
1150 return wxFileSelector(message
, default_path
, default_filename
, wxT(""),
1151 wildcard
, flags
, parent
, x
, y
);
1154 wxString
wxFileSelector( const wxChar
*title
,
1155 const wxChar
*defaultDir
, const wxChar
*defaultFileName
,
1156 const wxChar
*defaultExtension
, const wxChar
*filter
, int flags
,
1157 wxWindow
*parent
, int x
, int y
)
1160 if ( defaultExtension
&& !filter
)
1161 filter2
= wxString(wxT("*.")) + wxString(defaultExtension
) ;
1165 wxString defaultDirString
;
1167 defaultDirString
= defaultDir
;
1169 wxString defaultFilenameString
;
1170 if (defaultFileName
)
1171 defaultFilenameString
= defaultFileName
;
1173 wxFileDialog
fileDialog( parent
, title
, defaultDirString
, defaultFilenameString
, filter2
, flags
, wxPoint(x
, y
) );
1175 if ( fileDialog
.ShowModal() == wxID_OK
)
1177 return fileDialog
.GetPath();
1181 return wxEmptyString
;
1185 wxString
wxLoadFileSelector( const wxChar
*what
, const wxChar
*extension
, const wxChar
*default_name
, wxWindow
*parent
)
1187 wxChar
*ext
= (wxChar
*)extension
;
1190 wxString str
= _("Load %s file");
1191 wxSprintf(prompt
, str
, what
);
1193 if (*ext
== wxT('.')) ext
++;
1195 wxSprintf(wild
, wxT("*.%s"), ext
);
1197 return wxFileSelector (prompt
, (const wxChar
*) NULL
, default_name
, ext
, wild
, 0, parent
);
1200 wxString
wxSaveFileSelector(const wxChar
*what
, const wxChar
*extension
, const wxChar
*default_name
,
1203 wxChar
*ext
= (wxChar
*)extension
;
1206 wxString str
= _("Save %s file");
1207 wxSprintf(prompt
, str
, what
);
1209 if (*ext
== wxT('.')) ext
++;
1211 wxSprintf(wild
, wxT("*.%s"), ext
);
1213 return wxFileSelector (prompt
, (const wxChar
*) NULL
, default_name
, ext
, wild
, 0, parent
);
1221 // A module to allow icons table cleanup
1223 class wxFileDialogGenericModule
: public wxModule
1225 DECLARE_DYNAMIC_CLASS(wxFileDialogGenericModule
)
1227 wxFileDialogGenericModule() {}
1228 bool OnInit() { return TRUE
; }
1229 void OnExit() { if (g_IconsTable
) {delete g_IconsTable
; g_IconsTable
= NULL
;} }
1232 IMPLEMENT_DYNAMIC_CLASS(wxFileDialogGenericModule
, wxModule
)