]> git.saurik.com Git - wxWidgets.git/blame - src/generic/filedlgg.cpp
Don't send dummy wxCommandEvent.
[wxWidgets.git] / src / generic / filedlgg.cpp
CommitLineData
81169710 1//////////////////////////////////////////////////////////////////////////////
812a5849 2// Name: src/generic/filedlgg.cpp
23254b13 3// Purpose: wxGenericFileDialog
8b17ba72
RR
4// Author: Robert Roebling
5// Modified by:
6// Created: 12/12/98
7// RCS-ID: $Id$
8// Copyright: (c) Robert Roebling
65571936 9// Licence: wxWindows licence
8b17ba72
RR
10/////////////////////////////////////////////////////////////////////////////
11
8b17ba72
RR
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
4e1901b7 19#if wxUSE_FILEDLG
1e6feb95 20
06cc1fb9 21// NOTE : it probably also supports MAC, untested
144cf6da 22#if !defined(__UNIX__) && !defined(__DOS__) && !defined(__WIN32__) && !defined(__OS2__)
23254b13 23#error wxGenericFileDialog currently only supports Unix, win32 and DOS
8b17ba72
RR
24#endif
25
04dbb646
VZ
26#include "wx/checkbox.h"
27#include "wx/textctrl.h"
28#include "wx/choice.h"
29#include "wx/checkbox.h"
30#include "wx/stattext.h"
8b17ba72
RR
31#include "wx/debug.h"
32#include "wx/log.h"
ec524671 33#include "wx/longlong.h"
8b17ba72
RR
34#include "wx/intl.h"
35#include "wx/msgdlg.h"
36#include "wx/sizer.h"
0b855868 37#include "wx/bmpbuttn.h"
cae5359f 38#include "wx/tokenzr.h"
eaf40b23 39#include "wx/config.h"
48fe8374 40#include "wx/imaglist.h"
5e673a6a 41#include "wx/dir.h"
60d2cc25 42#include "wx/artprov.h"
1142c837 43#include "wx/settings.h"
619111b9 44#include "wx/filefn.h"
1265e13d 45#include "wx/file.h" // for wxS_IXXX constants only
23254b13
JS
46#include "wx/filedlg.h" // wxOPEN, wxSAVE...
47#include "wx/generic/filedlgg.h"
06cc1fb9 48#include "wx/generic/dirctrlg.h" // for wxFileIconsTable
8b17ba72 49
e6daf794
RR
50#if wxUSE_TOOLTIPS
51 #include "wx/tooltip.h"
52#endif
53
619111b9 54#ifndef __WXWINCE__
ac2def68
RR
55#include <sys/types.h>
56#include <sys/stat.h>
619111b9 57#endif
4894ae18
VS
58
59#ifdef __UNIX__
60 #include <dirent.h>
61 #include <pwd.h>
62 #ifndef __VMS
63 # include <grp.h>
64 #endif
65#endif
66
6a8c7c70
VS
67#ifdef __WINDOWS__
68 #include "wx/msw/wrapwin.h"
69 #include "wx/msw/mslu.h"
70#endif
71
4894ae18
VS
72#ifdef __WATCOMC__
73 #include <direct.h>
27df579a 74#endif
4894ae18 75
619111b9 76#ifndef __WXWINCE__
7a82dabc 77#include <time.h>
619111b9
JS
78#endif
79
099d4217 80#if defined(__UNIX__) || defined(__DOS__)
ac2def68 81#include <unistd.h>
099d4217 82#endif
8b17ba72 83
655cf310 84// ----------------------------------------------------------------------------
06cc1fb9 85// private functions
655cf310
VS
86// ----------------------------------------------------------------------------
87
06cc1fb9 88static
ec524671 89int wxCALLBACK wxFileDataNameCompare( long data1, long data2, long sortOrder)
655cf310 90{
ec524671
VZ
91 wxFileData *fd1 = (wxFileData *)wxUIntToPtr(data1);
92 wxFileData *fd2 = (wxFileData *)wxUIntToPtr(data2);
93
94 if (fd1->GetFileName() == wxT(".."))
95 return -sortOrder;
96 if (fd2->GetFileName() == wxT(".."))
97 return sortOrder;
98 if (fd1->IsDir() && !fd2->IsDir())
99 return -sortOrder;
100 if (fd2->IsDir() && !fd1->IsDir())
101 return sortOrder;
102
103 return sortOrder*wxStrcmp( fd1->GetFileName(), fd2->GetFileName() );
655cf310
VS
104}
105
c8c0e54c 106static
ec524671 107int wxCALLBACK wxFileDataSizeCompare(long data1, long data2, long sortOrder)
23254b13 108{
ec524671
VZ
109 wxFileData *fd1 = (wxFileData *)wxUIntToPtr(data1);
110 wxFileData *fd2 = (wxFileData *)wxUIntToPtr(data2);
111
112 if (fd1->GetFileName() == wxT(".."))
113 return -sortOrder;
114 if (fd2->GetFileName() == wxT(".."))
115 return sortOrder;
116 if (fd1->IsDir() && !fd2->IsDir())
117 return -sortOrder;
118 if (fd2->IsDir() && !fd1->IsDir())
119 return sortOrder;
120 if (fd1->IsLink() && !fd2->IsLink())
121 return -sortOrder;
122 if (fd2->IsLink() && !fd1->IsLink())
123 return sortOrder;
124
125 return fd1->GetSize() > fd2->GetSize() ? sortOrder : -sortOrder;
23254b13
JS
126}
127
128static
ec524671 129int wxCALLBACK wxFileDataTypeCompare(long data1, long data2, long sortOrder)
23254b13 130{
ec524671
VZ
131 wxFileData *fd1 = (wxFileData *)wxUIntToPtr(data1);
132 wxFileData *fd2 = (wxFileData *)wxUIntToPtr(data2);
133
134 if (fd1->GetFileName() == wxT(".."))
135 return -sortOrder;
136 if (fd2->GetFileName() == wxT(".."))
137 return sortOrder;
138 if (fd1->IsDir() && !fd2->IsDir())
139 return -sortOrder;
140 if (fd2->IsDir() && !fd1->IsDir())
141 return sortOrder;
142 if (fd1->IsLink() && !fd2->IsLink())
143 return -sortOrder;
144 if (fd2->IsLink() && !fd1->IsLink())
145 return sortOrder;
146
147 return sortOrder*wxStrcmp( fd1->GetFileType(), fd2->GetFileType() );
23254b13
JS
148}
149
150static
ec524671 151int wxCALLBACK wxFileDataTimeCompare(long data1, long data2, long sortOrder)
23254b13 152{
ec524671
VZ
153 wxFileData *fd1 = (wxFileData *)wxUIntToPtr(data1);
154 wxFileData *fd2 = (wxFileData *)wxUIntToPtr(data2);
155
156 if (fd1->GetFileName() == wxT(".."))
157 return -sortOrder;
158 if (fd2->GetFileName() == wxT(".."))
159 return sortOrder;
160 if (fd1->IsDir() && !fd2->IsDir())
161 return -sortOrder;
162 if (fd2->IsDir() && !fd1->IsDir())
163 return sortOrder;
23254b13 164
ec524671 165 return fd1->GetDateTime().IsLaterThan(fd2->GetDateTime()) ? sortOrder : -sortOrder;
c8c0e54c
VZ
166}
167
619111b9
JS
168#if defined(__WXWINCE__)
169#define IsTopMostDir(dir) (dir == wxT("\\") || dir == wxT("/"))
170#elif (defined(__DOS__) || defined(__WINDOWS__) || defined (__OS2__))
abc2a4cc 171#define IsTopMostDir(dir) (dir.empty())
70a7eb07
MW
172#else
173#define IsTopMostDir(dir) (dir == wxT("/"))
5e673a6a
VS
174#endif
175
06cc1fb9
JS
176// defined in src/generic/dirctrlg.cpp
177extern size_t wxGetAvailableDrives(wxArrayString &paths, wxArrayString &names, wxArrayInt &icon_ids);
178
8b17ba72
RR
179//-----------------------------------------------------------------------------
180// wxFileData
181//-----------------------------------------------------------------------------
182
06cc1fb9 183wxFileData::wxFileData( const wxString &filePath, const wxString &fileName, fileType type, int image_id )
8b17ba72 184{
ca9fb418 185 Init();
06cc1fb9
JS
186 m_fileName = fileName;
187 m_filePath = filePath;
23254b13 188 m_type = type;
06cc1fb9 189 m_image = image_id;
7a82dabc 190
b600ed13
VZ
191 ReadData();
192}
193
ca9fb418
VZ
194void wxFileData::Init()
195{
196 m_size = 0;
197 m_type = wxFileData::is_file;
198 m_image = wxFileIconsTable::file;
199}
200
81169710
VZ
201void wxFileData::Copy( const wxFileData& fileData )
202{
203 m_fileName = fileData.GetFileName();
204 m_filePath = fileData.GetFilePath();
205 m_size = fileData.GetSize();
206 m_dateTime = fileData.GetDateTime();
207 m_permissions = fileData.GetPermissions();
208 m_type = fileData.GetType();
ca9fb418 209 m_image = fileData.GetImageId();
81169710
VZ
210}
211
b600ed13
VZ
212void wxFileData::ReadData()
213{
06cc1fb9 214 if (IsDrive())
37fd1c97 215 {
23254b13
JS
216 m_size = 0;
217 return;
218 }
219
619111b9 220#if defined(__DOS__) || (defined(__WINDOWS__) && !defined(__WXWINCE__)) || defined(__OS2__)
06cc1fb9 221 // c:\.. is a drive don't stat it
567be187 222 if ((m_fileName == wxT("..")) && (m_filePath.length() <= 5))
23254b13
JS
223 {
224 m_type = is_drive;
37fd1c97
VS
225 m_size = 0;
226 return;
227 }
7f04165e 228#endif // __DOS__ || __WINDOWS__
c8c0e54c 229
619111b9
JS
230#ifdef __WXWINCE__
231
232 // WinCE
233
234 DWORD fileAttribs = GetFileAttributes(m_filePath.fn_str());
235 m_type |= (fileAttribs & FILE_ATTRIBUTE_DIRECTORY) != 0 ? is_dir : 0;
236
237 wxString p, f, ext;
238 wxSplitPath(m_filePath, & p, & f, & ext);
239 if (wxStricmp(ext, wxT("exe")) == 0)
240 m_type |= is_exe;
241
242 // Find out size
243 m_size = 0;
244 HANDLE fileHandle = CreateFile(m_filePath.fn_str(),
245 GENERIC_READ,
246 FILE_SHARE_READ,
247 NULL,
248 OPEN_EXISTING,
249 FILE_ATTRIBUTE_NORMAL,
250 NULL);
251
252 if (fileHandle != INVALID_HANDLE_VALUE)
c81c9392 253 {
619111b9
JS
254 m_size = GetFileSize(fileHandle, 0);
255 CloseHandle(fileHandle);
256 }
257
258 m_dateTime = wxFileModificationTime(m_filePath);
259
260#else
261
262 // OTHER PLATFORMS
263
8115f9e7 264 wxStructStat buff;
479cd5de 265
144cf6da 266#if defined(__UNIX__) && (!defined( __OS2__ ) && !defined(__VMS))
06cc1fb9 267 lstat( m_filePath.fn_str(), &buff );
23254b13 268 m_type |= S_ISLNK( buff.st_mode ) != 0 ? is_link : 0;
7f04165e 269#else // no lstat()
f3660dcb
SC
270 // only translate to file charset if we don't go by our
271 // wxStat implementation
272#ifndef wxNEED_WX_UNISTD_H
273 wxStat( m_filePath.fn_str() , &buff );
274#else
06cc1fb9 275 wxStat( m_filePath, &buff );
f3660dcb 276#endif
9f2d09aa
RR
277#endif
278
23254b13
JS
279 m_type |= (buff.st_mode & S_IFDIR) != 0 ? is_dir : 0;
280 m_type |= (buff.st_mode & wxS_IXUSR) != 0 ? is_exe : 0;
8b17ba72 281
ec524671 282 m_size = buff.st_size;
8b17ba72 283
06cc1fb9 284 m_dateTime = buff.st_mtime;
619111b9
JS
285#endif
286 // __WXWINCE__
c81c9392 287
06cc1fb9
JS
288#if defined(__UNIX__)
289 m_permissions.Printf(_T("%c%c%c%c%c%c%c%c%c"),
7f04165e
VZ
290 buff.st_mode & wxS_IRUSR ? _T('r') : _T('-'),
291 buff.st_mode & wxS_IWUSR ? _T('w') : _T('-'),
06cc1fb9
JS
292 buff.st_mode & wxS_IXUSR ? _T('x') : _T('-'),
293 buff.st_mode & wxS_IRGRP ? _T('r') : _T('-'),
294 buff.st_mode & wxS_IWGRP ? _T('w') : _T('-'),
295 buff.st_mode & wxS_IXGRP ? _T('x') : _T('-'),
296 buff.st_mode & wxS_IROTH ? _T('r') : _T('-'),
297 buff.st_mode & wxS_IWOTH ? _T('w') : _T('-'),
298 buff.st_mode & wxS_IXOTH ? _T('x') : _T('-'));
299#elif defined(__WIN32__)
619111b9 300 DWORD attribs = GetFileAttributes(m_filePath.fn_str());
06cc1fb9
JS
301 if (attribs != (DWORD)-1)
302 {
303 m_permissions.Printf(_T("%c%c%c%c"),
304 attribs & FILE_ATTRIBUTE_ARCHIVE ? _T('A') : _T(' '),
305 attribs & FILE_ATTRIBUTE_READONLY ? _T('R') : _T(' '),
306 attribs & FILE_ATTRIBUTE_HIDDEN ? _T('H') : _T(' '),
307 attribs & FILE_ATTRIBUTE_SYSTEM ? _T('S') : _T(' '));
308 }
309#endif
619111b9
JS
310
311 // try to get a better icon
312 if (m_image == wxFileIconsTable::file)
313 {
314 if (m_fileName.Find(wxT('.'), true) != wxNOT_FOUND)
315 {
316 m_image = wxTheFileIconsTable->GetIconID( m_fileName.AfterLast(wxT('.')));
317 } else if (IsExe())
318 {
319 m_image = wxFileIconsTable::executable;
320 }
321 }
8b17ba72
RR
322}
323
b600ed13 324wxString wxFileData::GetFileType() const
8b17ba72 325{
06cc1fb9
JS
326 if (IsDir())
327 return _("<DIR>");
328 else if (IsLink())
329 return _("<LINK>");
330 else if (IsDrive())
331 return _("<DRIVE>");
7448de8d 332 else if (m_fileName.Find(wxT('.'), true) != wxNOT_FOUND)
06cc1fb9 333 return m_fileName.AfterLast(wxT('.'));
8b17ba72 334
06cc1fb9 335 return wxEmptyString;
8b17ba72
RR
336}
337
06cc1fb9 338wxString wxFileData::GetModificationTime() const
23254b13 339{
06cc1fb9
JS
340 // want time as 01:02 so they line up nicely, no %r in WIN32
341 return m_dateTime.FormatDate() + wxT(" ") + m_dateTime.Format(wxT("%I:%M:%S %p"));
23254b13
JS
342}
343
8b17ba72
RR
344wxString wxFileData::GetHint() const
345{
06cc1fb9 346 wxString s = m_filePath;
2b5f62a0 347 s += wxT(" ");
b8985048 348
23254b13 349 if (IsDir())
b8985048 350 s += _("<DIR>");
23254b13 351 else if (IsLink())
b8985048 352 s += _("<LINK>");
23254b13 353 else if (IsDrive())
b8985048
VZ
354 s += _("<DRIVE>");
355 else // plain file
ec524671
VZ
356 s += wxString::Format(_("%ld bytes"),
357 wxLongLong(m_size).ToString().c_str());
b8985048
VZ
358
359 s += wxT(' ');
360
361 if ( !IsDrive() )
23254b13 362 {
b8985048
VZ
363 s << GetModificationTime()
364 << wxT(" ")
365 << m_permissions;
8b17ba72 366 }
23254b13 367
8b17ba72 368 return s;
17a1ebd1 369}
8b17ba72 370
23254b13 371wxString wxFileData::GetEntry( fileListFieldType num ) const
8b17ba72
RR
372{
373 wxString s;
9cedab37 374 switch ( num )
8b17ba72 375 {
9cedab37 376 case FileList_Name:
06cc1fb9 377 s = m_fileName;
8b17ba72 378 break;
9cedab37 379
06cc1fb9
JS
380 case FileList_Size:
381 if (!IsDir() && !IsLink() && !IsDrive())
ec524671 382 s = wxLongLong(m_size).ToString();
8b17ba72 383 break;
9cedab37 384
06cc1fb9 385 case FileList_Type:
b600ed13 386 s = GetFileType();
8b17ba72 387 break;
8b17ba72 388
9cedab37 389 case FileList_Time:
7448de8d 390 if (!IsDrive())
06cc1fb9 391 s = GetModificationTime();
9cedab37 392 break;
8b17ba72 393
06cc1fb9 394#if defined(__UNIX__) || defined(__WIN32__)
9cedab37
VZ
395 case FileList_Perm:
396 s = m_permissions;
397 break;
06cc1fb9 398#endif // defined(__UNIX__) || defined(__WIN32__)
8b17ba72 399
9cedab37
VZ
400 default:
401 wxFAIL_MSG( _T("unexpected field in wxFileData::GetEntry()") );
402 }
8b17ba72 403
9cedab37 404 return s;
8b17ba72
RR
405}
406
06cc1fb9 407void wxFileData::SetNewName( const wxString &filePath, const wxString &fileName )
8b17ba72 408{
06cc1fb9
JS
409 m_fileName = fileName;
410 m_filePath = filePath;
8b17ba72
RR
411}
412
413void wxFileData::MakeItem( wxListItem &item )
414{
06cc1fb9 415 item.m_text = m_fileName;
9b00bb16 416 item.ClearAttributes();
9cedab37
VZ
417 if (IsExe())
418 item.SetTextColour(*wxRED);
419 if (IsDir())
420 item.SetTextColour(*wxBLUE);
48fe8374 421
06cc1fb9 422 item.m_image = m_image;
655cf310 423
8b17ba72
RR
424 if (IsLink())
425 {
564a150b
VZ
426 wxColour dg = wxTheColourDatabase->Find( _T("MEDIUM GREY") );
427 if ( dg.Ok() )
428 item.SetTextColour(dg);
8b17ba72 429 }
9f542367 430 item.m_data = wxPtrToUInt(this);
8b17ba72 431}
c8c0e54c 432
8b17ba72
RR
433//-----------------------------------------------------------------------------
434// wxFileCtrl
435//-----------------------------------------------------------------------------
436
619111b9
JS
437static bool ignoreChanges = false;
438
d84afea9 439IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl,wxListCtrl)
8b17ba72
RR
440
441BEGIN_EVENT_TABLE(wxFileCtrl,wxListCtrl)
ca65c044
WS
442 EVT_LIST_DELETE_ITEM(wxID_ANY, wxFileCtrl::OnListDeleteItem)
443 EVT_LIST_DELETE_ALL_ITEMS(wxID_ANY, wxFileCtrl::OnListDeleteAllItems)
444 EVT_LIST_END_LABEL_EDIT(wxID_ANY, wxFileCtrl::OnListEndLabelEdit)
445 EVT_LIST_COL_CLICK(wxID_ANY, wxFileCtrl::OnListColClick)
8b17ba72
RR
446END_EVENT_TABLE()
447
655cf310 448
8b17ba72
RR
449wxFileCtrl::wxFileCtrl()
450{
ca65c044 451 m_showHidden = false;
23254b13
JS
452 m_sort_foward = 1;
453 m_sort_field = wxFileData::FileList_Name;
8b17ba72
RR
454}
455
9cedab37
VZ
456wxFileCtrl::wxFileCtrl(wxWindow *win,
457 wxWindowID id,
458 const wxString& wild,
459 bool showHidden,
460 const wxPoint& pos,
461 const wxSize& size,
462 long style,
463 const wxValidator &validator,
5e673a6a 464 const wxString &name)
9cedab37
VZ
465 : wxListCtrl(win, id, pos, size, style, validator, name),
466 m_wild(wild)
8b17ba72 467{
06cc1fb9 468 wxImageList *imageList = wxTheFileIconsTable->GetSmallImageList();
655cf310 469
0b855868 470 SetImageList( imageList, wxIMAGE_LIST_SMALL );
c8c0e54c 471
9cedab37 472 m_showHidden = showHidden;
23254b13
JS
473
474 m_sort_foward = 1;
475 m_sort_field = wxFileData::FileList_Name;
476
477 m_dirName = wxT("*");
478
479 if (style & wxLC_REPORT)
480 ChangeToReportMode();
8b17ba72
RR
481}
482
483void wxFileCtrl::ChangeToListMode()
484{
23254b13 485 ClearAll();
8b17ba72 486 SetSingleStyle( wxLC_LIST );
8f4fcc4e 487 UpdateFiles();
8b17ba72
RR
488}
489
490void wxFileCtrl::ChangeToReportMode()
491{
23254b13 492 ClearAll();
8b17ba72 493 SetSingleStyle( wxLC_REPORT );
23254b13 494
06cc1fb9
JS
495 // do this since WIN32 does mm/dd/yy UNIX does mm/dd/yyyy
496 // don't hardcode since mm/dd is dd/mm elsewhere
23254b13 497 int w, h;
06cc1fb9
JS
498 wxDateTime dt(22, wxDateTime::Dec, 2002, 22, 22, 22);
499 wxString txt = dt.FormatDate() + wxT("22") + dt.Format(wxT("%I:%M:%S %p"));
500 GetTextExtent(txt, &w, &h);
501
502 InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT, w );
503 InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT, w/2 );
504 InsertColumn( 2, _("Type"), wxLIST_FORMAT_LEFT, w/2 );
505 InsertColumn( 3, _("Modified"), wxLIST_FORMAT_LEFT, w );
506#if defined(__UNIX__)
507 GetTextExtent(wxT("Permissions 2"), &w, &h);
508 InsertColumn( 4, _("Permissions"), wxLIST_FORMAT_LEFT, w );
509#elif defined(__WIN32__)
510 GetTextExtent(wxT("Attributes 2"), &w, &h);
511 InsertColumn( 4, _("Attributes"), wxLIST_FORMAT_LEFT, w );
23254b13
JS
512#endif
513
8f4fcc4e 514 UpdateFiles();
8b17ba72
RR
515}
516
06cc1fb9 517void wxFileCtrl::ChangeToSmallIconMode()
8b17ba72 518{
23254b13 519 ClearAll();
06cc1fb9 520 SetSingleStyle( wxLC_SMALL_ICON );
8f4fcc4e 521 UpdateFiles();
8b17ba72
RR
522}
523
524void wxFileCtrl::ShowHidden( bool show )
525{
526 m_showHidden = show;
8f4fcc4e 527 UpdateFiles();
8b17ba72
RR
528}
529
0b855868
RR
530long wxFileCtrl::Add( wxFileData *fd, wxListItem &item )
531{
532 long ret = -1;
533 item.m_mask = wxLIST_MASK_TEXT + wxLIST_MASK_DATA + wxLIST_MASK_IMAGE;
534 fd->MakeItem( item );
535 long my_style = GetWindowStyleFlag();
536 if (my_style & wxLC_REPORT)
537 {
538 ret = InsertItem( item );
23254b13
JS
539 for (int i = 1; i < wxFileData::FileList_Max; i++)
540 SetItem( item.m_itemId, i, fd->GetEntry((wxFileData::fileListFieldType)i) );
0b855868 541 }
06cc1fb9 542 else if ((my_style & wxLC_LIST) || (my_style & wxLC_SMALL_ICON))
0b855868
RR
543 {
544 ret = InsertItem( item );
c8c0e54c 545 }
0b855868
RR
546 return ret;
547}
548
b600ed13
VZ
549void wxFileCtrl::UpdateItem(const wxListItem &item)
550{
551 wxFileData *fd = (wxFileData*)GetItemData(item);
552 wxCHECK_RET(fd, wxT("invalid filedata"));
553
554 fd->ReadData();
555
556 SetItemText(item, fd->GetFileName());
c3627a00 557 SetItemImage(item, fd->GetImageId());
b600ed13
VZ
558
559 if (GetWindowStyleFlag() & wxLC_REPORT)
560 {
561 for (int i = 1; i < wxFileData::FileList_Max; i++)
562 SetItem( item.m_itemId, i, fd->GetEntry((wxFileData::fileListFieldType)i) );
563 }
564}
565
8f4fcc4e 566void wxFileCtrl::UpdateFiles()
c8c0e54c 567{
2b5f62a0 568 // don't do anything before ShowModal() call which sets m_dirName
23254b13 569 if ( m_dirName == wxT("*") )
2b5f62a0
VZ
570 return;
571
37fd1c97 572 wxBusyCursor bcur; // this may take a while...
7a82dabc 573
23254b13 574 DeleteAllItems();
7a82dabc 575
8b17ba72 576 wxListItem item;
8b17ba72
RR
577 item.m_itemId = 0;
578 item.m_col = 0;
0b855868 579
619111b9 580#if (defined(__WINDOWS__) || defined(__DOS__) || defined(__WXMAC__) || defined(__OS2__)) && !defined(__WXWINCE__)
37fd1c97 581 if ( IsTopMostDir(m_dirName) )
abc2a4cc 582 {
06cc1fb9
JS
583 wxArrayString names, paths;
584 wxArrayInt icons;
585 size_t n, count = wxGetAvailableDrives(paths, names, icons);
586
587 for (n=0; n<count; n++)
abc2a4cc 588 {
999836aa 589 wxFileData *fd = new wxFileData(paths[n], names[n], wxFileData::is_drive, icons[n]);
81169710 590 if (Add(fd, item) != -1)
37fd1c97 591 item.m_itemId++;
81169710
VZ
592 else
593 delete fd;
37fd1c97 594 }
abc2a4cc 595 }
5e673a6a 596 else
06cc1fb9 597#endif // defined(__DOS__) || defined(__WINDOWS__)
8b17ba72 598 {
5e673a6a 599 // Real directory...
619111b9 600 if ( !IsTopMostDir(m_dirName) && !m_dirName.empty() )
8b17ba72 601 {
5e673a6a 602 wxString p(wxPathOnly(m_dirName));
619111b9 603#if (defined(__UNIX__) || defined(__WXWINCE__)) && !defined(__OS2__)
abc2a4cc 604 if (p.empty()) p = wxT("/");
06cc1fb9 605#endif // __UNIX__
999836aa 606 wxFileData *fd = new wxFileData(p, wxT(".."), wxFileData::is_dir, wxFileIconsTable::folder);
81169710 607 if (Add(fd, item) != -1)
7448de8d 608 item.m_itemId++;
81169710
VZ
609 else
610 delete fd;
8b17ba72 611 }
c8c0e54c 612
5e673a6a 613 wxString dirname(m_dirName);
144cf6da 614#if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
5e673a6a
VS
615 if (dirname.length() == 2 && dirname[1u] == wxT(':'))
616 dirname << wxT('\\');
144cf6da 617#endif // defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
619111b9
JS
618
619 if (dirname.empty())
620 dirname = wxFILE_SEP_PATH;
621
622 wxLogNull logNull;
5e673a6a
VS
623 wxDir dir(dirname);
624
625 if ( dir.IsOpened() )
cae5359f 626 {
23254b13
JS
627 wxString dirPrefix(dirname);
628 if (dirPrefix.Last() != wxFILE_SEP_PATH)
629 dirPrefix += wxFILE_SEP_PATH;
630
5e673a6a 631 int hiddenFlag = m_showHidden ? wxDIR_HIDDEN : 0;
7a82dabc 632
5e673a6a
VS
633 bool cont;
634 wxString f;
635
636 // Get the directories first (not matched against wildcards):
637 cont = dir.GetFirst(&f, wxEmptyString, wxDIR_DIRS | hiddenFlag);
638 while (cont)
551adc4b 639 {
999836aa 640 wxFileData *fd = new wxFileData(dirPrefix + f, f, wxFileData::is_dir, wxFileIconsTable::folder);
81169710 641 if (Add(fd, item) != -1)
7448de8d 642 item.m_itemId++;
81169710
VZ
643 else
644 delete fd;
645
5e673a6a
VS
646 cont = dir.GetNext(&f);
647 }
648
7a82dabc 649 // Tokenize the wildcard string, so we can handle more than 1
5e673a6a
VS
650 // search pattern in a wildcard.
651 wxStringTokenizer tokenWild(m_wild, wxT(";"));
652 while ( tokenWild.HasMoreTokens() )
653 {
7a82dabc 654 cont = dir.GetFirst(&f, tokenWild.GetNextToken(),
5e673a6a
VS
655 wxDIR_FILES | hiddenFlag);
656 while (cont)
657 {
999836aa 658 wxFileData *fd = new wxFileData(dirPrefix + f, f, wxFileData::is_file, wxFileIconsTable::file);
81169710 659 if (Add(fd, item) != -1)
7448de8d 660 item.m_itemId++;
81169710
VZ
661 else
662 delete fd;
663
5e673a6a
VS
664 cont = dir.GetNext(&f);
665 }
551adc4b 666 }
cae5359f 667 }
cae5359f 668 }
c8c0e54c 669
06cc1fb9 670 SortItems(m_sort_field, m_sort_foward);
8b17ba72
RR
671}
672
0b855868 673void wxFileCtrl::SetWild( const wxString &wild )
8b17ba72 674{
06cc1fb9
JS
675 if (wild.Find(wxT('|')) != wxNOT_FOUND)
676 return;
677
0b855868 678 m_wild = wild;
8f4fcc4e 679 UpdateFiles();
0b855868
RR
680}
681
682void wxFileCtrl::MakeDir()
683{
5e673a6a 684 wxString new_name( _("NewName") );
0b855868 685 wxString path( m_dirName );
75ec8bd4 686 path += wxFILE_SEP_PATH;
0b855868
RR
687 path += new_name;
688 if (wxFileExists(path))
8b17ba72 689 {
0b855868
RR
690 // try NewName0, NewName1 etc.
691 int i = 0;
c8c0e54c 692 do {
0b855868 693 new_name = _("NewName");
c8c0e54c 694 wxString num;
223d09f6 695 num.Printf( wxT("%d"), i );
c8c0e54c
VZ
696 new_name += num;
697
0b855868 698 path = m_dirName;
75ec8bd4 699 path += wxFILE_SEP_PATH;
0b855868 700 path += new_name;
c8c0e54c
VZ
701 i++;
702 } while (wxFileExists(path));
8b17ba72 703 }
c8c0e54c 704
0b855868 705 wxLogNull log;
c8c0e54c 706 if (!wxMkdir(path))
8b17ba72 707 {
0b855868 708 wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
c8c0e54c 709 dialog.ShowModal();
0b855868 710 return;
8b17ba72 711 }
8b17ba72 712
06cc1fb9 713 wxFileData *fd = new wxFileData( path, new_name, wxFileData::is_dir, wxFileIconsTable::folder );
0b855868
RR
714 wxListItem item;
715 item.m_itemId = 0;
716 item.m_col = 0;
13111b2a 717 long id = Add( fd, item );
c8c0e54c 718
0b855868
RR
719 if (id != -1)
720 {
06cc1fb9 721 SortItems(m_sort_field, m_sort_foward);
9f542367 722 id = FindItem( 0, wxPtrToUInt(fd) );
0b855868
RR
723 EnsureVisible( id );
724 EditLabel( id );
725 }
81169710
VZ
726 else
727 delete fd;
8b17ba72
RR
728}
729
730void wxFileCtrl::GoToParentDir()
731{
5e673a6a 732 if (!IsTopMostDir(m_dirName))
8b17ba72 733 {
353f41cb 734 size_t len = m_dirName.Len();
083f7497 735 if (wxEndsWithPathSeparator(m_dirName))
353f41cb 736 m_dirName.Remove( len-1, 1 );
c8c0e54c 737 wxString fname( wxFileNameFromPath(m_dirName) );
0b855868 738 m_dirName = wxPathOnly( m_dirName );
144cf6da 739#if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
abc2a4cc 740 if (!m_dirName.empty())
23254b13
JS
741 {
742 if (m_dirName.Last() == wxT('.'))
ca65c044 743 m_dirName = wxEmptyString;
23254b13
JS
744 }
745#elif defined(__UNIX__)
abc2a4cc 746 if (m_dirName.empty())
5e673a6a
VS
747 m_dirName = wxT("/");
748#endif
8f4fcc4e 749 UpdateFiles();
13111b2a 750 long id = FindItem( 0, fname );
abc2a4cc 751 if (id != wxNOT_FOUND)
c8c0e54c 752 {
619111b9 753 ignoreChanges = true;
c8c0e54c
VZ
754 SetItemState( id, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
755 EnsureVisible( id );
619111b9 756 ignoreChanges = false;
c8c0e54c 757 }
8b17ba72
RR
758 }
759}
760
761void wxFileCtrl::GoToHomeDir()
762{
763 wxString s = wxGetUserHome( wxString() );
5e673a6a 764 GoToDir(s);
8b17ba72
RR
765}
766
767void wxFileCtrl::GoToDir( const wxString &dir )
768{
da865fdd 769 if (!wxDirExists(dir)) return;
06cc1fb9 770
8b17ba72 771 m_dirName = dir;
8f4fcc4e 772 UpdateFiles();
619111b9
JS
773
774 ignoreChanges = true;
e6daf794 775 SetItemState( 0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
619111b9
JS
776 ignoreChanges = false;
777
e6daf794 778 EnsureVisible( 0 );
8b17ba72
RR
779}
780
81169710 781void wxFileCtrl::FreeItemData(wxListItem& item)
8b17ba72 782{
81169710
VZ
783 if ( item.m_data )
784 {
785 wxFileData *fd = (wxFileData*)item.m_data;
786 delete fd;
787
788 item.m_data = 0;
789 }
8b17ba72
RR
790}
791
7a82dabc
VZ
792void wxFileCtrl::OnListDeleteItem( wxListEvent &event )
793{
794 FreeItemData(event.m_item);
795}
796
a3a363f6 797void wxFileCtrl::OnListDeleteAllItems( wxListEvent & WXUNUSED(event) )
81169710
VZ
798{
799 FreeAllItemsData();
800}
801
7a82dabc 802void wxFileCtrl::FreeAllItemsData()
12c1b46a
RR
803{
804 wxListItem item;
805 item.m_mask = wxLIST_MASK_DATA;
806
807 item.m_itemId = GetNextItem( -1, wxLIST_NEXT_ALL );
92da8bde 808 while ( item.m_itemId != -1 )
12c1b46a
RR
809 {
810 GetItem( item );
7a82dabc 811 FreeItemData(item);
12c1b46a
RR
812 item.m_itemId = GetNextItem( item.m_itemId, wxLIST_NEXT_ALL );
813 }
814}
815
0b855868 816void wxFileCtrl::OnListEndLabelEdit( wxListEvent &event )
8b17ba72
RR
817{
818 wxFileData *fd = (wxFileData*)event.m_item.m_data;
0b855868 819 wxASSERT( fd );
c8c0e54c 820
abc2a4cc 821 if ((event.GetLabel().empty()) ||
0b855868
RR
822 (event.GetLabel() == _(".")) ||
823 (event.GetLabel() == _("..")) ||
75ec8bd4 824 (event.GetLabel().First( wxFILE_SEP_PATH ) != wxNOT_FOUND))
8b17ba72 825 {
0b855868 826 wxMessageDialog dialog(this, _("Illegal directory name."), _("Error"), wxOK | wxICON_ERROR );
c8c0e54c 827 dialog.ShowModal();
0b855868 828 event.Veto();
c8c0e54c 829 return;
8b17ba72 830 }
c8c0e54c 831
06cc1fb9 832 wxString new_name( wxPathOnly( fd->GetFilePath() ) );
75ec8bd4 833 new_name += wxFILE_SEP_PATH;
0b855868 834 new_name += event.GetLabel();
c8c0e54c 835
0b855868 836 wxLogNull log;
c8c0e54c 837
0b855868 838 if (wxFileExists(new_name))
8b17ba72 839 {
0b855868 840 wxMessageDialog dialog(this, _("File name exists already."), _("Error"), wxOK | wxICON_ERROR );
c8c0e54c 841 dialog.ShowModal();
0b855868 842 event.Veto();
8b17ba72 843 }
c8c0e54c 844
06cc1fb9 845 if (wxRenameFile(fd->GetFilePath(),new_name))
8b17ba72 846 {
0b855868 847 fd->SetNewName( new_name, event.GetLabel() );
619111b9
JS
848
849 ignoreChanges = true;
c8c0e54c 850 SetItemState( event.GetItem(), wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
619111b9
JS
851 ignoreChanges = false;
852
b600ed13 853 UpdateItem( event.GetItem() );
0b855868 854 EnsureVisible( event.GetItem() );
8b17ba72
RR
855 }
856 else
857 {
0b855868 858 wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
c8c0e54c 859 dialog.ShowModal();
0b855868 860 event.Veto();
8b17ba72 861 }
8b17ba72
RR
862}
863
23254b13
JS
864void wxFileCtrl::OnListColClick( wxListEvent &event )
865{
866 int col = event.GetColumn();
867
868 switch (col)
869 {
870 case wxFileData::FileList_Name :
06cc1fb9 871 case wxFileData::FileList_Size :
23254b13 872 case wxFileData::FileList_Type :
23254b13
JS
873 case wxFileData::FileList_Time : break;
874 default : return;
875 }
876
877 if ((wxFileData::fileListFieldType)col == m_sort_field)
06cc1fb9 878 m_sort_foward = !m_sort_foward;
23254b13
JS
879 else
880 m_sort_field = (wxFileData::fileListFieldType)col;
881
06cc1fb9 882 SortItems(m_sort_field, m_sort_foward);
23254b13
JS
883}
884
ec524671 885void wxFileCtrl::SortItems(wxFileData::fileListFieldType field, bool forward)
23254b13
JS
886{
887 m_sort_field = field;
ec524671
VZ
888 m_sort_foward = forward;
889 const long sort_dir = forward ? 1 : -1;
23254b13
JS
890
891 switch (m_sort_field)
892 {
06cc1fb9 893 case wxFileData::FileList_Size :
ec524671 894 wxListCtrl::SortItems(wxFileDataSizeCompare, sort_dir);
23254b13 895 break;
ec524671 896
23254b13 897 case wxFileData::FileList_Type :
ec524671
VZ
898 wxListCtrl::SortItems(wxFileDataTypeCompare, sort_dir);
899 break;
900
23254b13 901 case wxFileData::FileList_Time :
ec524671
VZ
902 wxListCtrl::SortItems(wxFileDataTimeCompare, sort_dir);
903 break;
812a5849
WS
904
905 case wxFileData::FileList_Name :
906 default :
907 wxListCtrl::SortItems(wxFileDataNameCompare, sort_dir);
908 break;
23254b13
JS
909 }
910}
911
7a82dabc
VZ
912wxFileCtrl::~wxFileCtrl()
913{
118322a3
WS
914 // Normally the data are freed via an EVT_LIST_DELETE_ALL_ITEMS event and
915 // wxFileCtrl::OnListDeleteAllItems. But if the event is generated after
916 // the destruction of the wxFileCtrl we need to free any data here:
917 FreeAllItemsData();
7a82dabc
VZ
918}
919
8b17ba72 920//-----------------------------------------------------------------------------
23254b13 921// wxGenericFileDialog
8b17ba72
RR
922//-----------------------------------------------------------------------------
923
5e673a6a
VS
924#define ID_LIST_MODE (wxID_FILEDLGG )
925#define ID_REPORT_MODE (wxID_FILEDLGG + 1)
926#define ID_UP_DIR (wxID_FILEDLGG + 5)
927#define ID_PARENT_DIR (wxID_FILEDLGG + 6)
928#define ID_NEW_DIR (wxID_FILEDLGG + 7)
929#define ID_CHOICE (wxID_FILEDLGG + 8)
930#define ID_TEXT (wxID_FILEDLGG + 9)
931#define ID_LIST_CTRL (wxID_FILEDLGG + 10)
5e673a6a 932#define ID_CHECK (wxID_FILEDLGG + 12)
8b17ba72 933
f74172ab 934IMPLEMENT_DYNAMIC_CLASS(wxGenericFileDialog, wxFileDialogBase)
23254b13
JS
935
936BEGIN_EVENT_TABLE(wxGenericFileDialog,wxDialog)
937 EVT_BUTTON(ID_LIST_MODE, wxGenericFileDialog::OnList)
938 EVT_BUTTON(ID_REPORT_MODE, wxGenericFileDialog::OnReport)
939 EVT_BUTTON(ID_UP_DIR, wxGenericFileDialog::OnUp)
940 EVT_BUTTON(ID_PARENT_DIR, wxGenericFileDialog::OnHome)
941 EVT_BUTTON(ID_NEW_DIR, wxGenericFileDialog::OnNew)
942 EVT_BUTTON(wxID_OK, wxGenericFileDialog::OnListOk)
943 EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL, wxGenericFileDialog::OnSelected)
944 EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL, wxGenericFileDialog::OnActivated)
945 EVT_CHOICE(ID_CHOICE,wxGenericFileDialog::OnChoiceFilter)
946 EVT_TEXT_ENTER(ID_TEXT,wxGenericFileDialog::OnTextEnter)
947 EVT_TEXT(ID_TEXT,wxGenericFileDialog::OnTextChange)
948 EVT_CHECKBOX(ID_CHECK,wxGenericFileDialog::OnCheck)
8b17ba72
RR
949END_EVENT_TABLE()
950
23254b13 951long wxGenericFileDialog::ms_lastViewStyle = wxLC_LIST;
ca65c044 952bool wxGenericFileDialog::ms_lastShowHidden = false;
655cf310 953
fe6cf128
VZ
954void wxGenericFileDialog::Init()
955{
956 m_bypassGenericImpl = false;
957
958 m_choice = NULL;
959 m_text = NULL;
960 m_list = NULL;
961 m_check = NULL;
962 m_static = NULL;
963 m_upDirButton = NULL;
964 m_newDirButton = NULL;
965}
966
23254b13 967wxGenericFileDialog::wxGenericFileDialog(wxWindow *parent,
9cedab37
VZ
968 const wxString& message,
969 const wxString& defaultDir,
970 const wxString& defaultFile,
971 const wxString& wildCard,
fe6cf128 972 long style,
4e1901b7 973 const wxPoint& pos,
fe6cf128 974 bool bypassGenericImpl ) : wxFileDialogBase()
8b17ba72 975{
fe6cf128
VZ
976 Init();
977 Create( parent, message, defaultDir, defaultFile, wildCard, style, pos, bypassGenericImpl );
4e1901b7
RR
978}
979
980bool wxGenericFileDialog::Create( wxWindow *parent,
abc2a4cc 981 const wxString& message,
fe6cf128 982 const wxString& defaultDir,
abc2a4cc
WS
983 const wxString& defaultFile,
984 const wxString& wildCard,
fe6cf128
VZ
985 long style,
986 const wxPoint& pos,
987 bool bypassGenericImpl )
4e1901b7 988{
fe6cf128
VZ
989 m_bypassGenericImpl = bypassGenericImpl;
990
7e4fb3b8 991 if (!wxFileDialogBase::Create(parent, message, defaultDir, defaultFile,
fe6cf128
VZ
992 wildCard, style, pos))
993 {
994 return false;
995 }
996
997 if (m_bypassGenericImpl)
998 return true;
999
4e1901b7 1000 if (!wxDialog::Create( parent, wxID_ANY, message, pos, wxDefaultSize,
c81c9392 1001 wxDEFAULT_DIALOG_STYLE
b28a6678 1002#if !(defined(__PDA__) || defined(__SMARTPHONE__))
c81c9392
WS
1003 | wxRESIZE_BORDER
1004#endif
1005 ))
4e1901b7
RR
1006 {
1007 return false;
1008 }
f74172ab 1009
619111b9
JS
1010 ignoreChanges = true;
1011
ca65c044 1012 if (wxConfig::Get(false))
eaf40b23 1013 {
e7d9c398 1014 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ViewStyle"),
9cedab37 1015 &ms_lastViewStyle);
e7d9c398 1016 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ShowHidden"),
9cedab37 1017 &ms_lastShowHidden);
eaf40b23
VS
1018 }
1019
9cedab37
VZ
1020 if (m_dialogStyle == 0)
1021 m_dialogStyle = wxOPEN;
7941ba11 1022 if ((m_dialogStyle & wxMULTIPLE ) && !(m_dialogStyle & wxOPEN))
9b00bb16 1023 m_dialogStyle |= wxOPEN;
479cd5de 1024
353f41cb 1025 if ((m_dir.empty()) || (m_dir == wxT(".")))
ac2def68 1026 {
75ec8bd4 1027 m_dir = wxGetCwd();
619111b9
JS
1028 if (m_dir.empty())
1029 m_dir = wxFILE_SEP_PATH;
ac2def68 1030 }
7a82dabc 1031
353f41cb 1032 size_t len = m_dir.Len();
083f7497 1033 if ((len > 1) && (wxEndsWithPathSeparator(m_dir)))
353f41cb
RR
1034 m_dir.Remove( len-1, 1 );
1035
1036 m_path = m_dir;
75ec8bd4 1037 m_path += wxFILE_SEP_PATH;
8b17ba72 1038 m_path += defaultFile;
655cf310 1039 m_filterExtension = wxEmptyString;
c8c0e54c 1040
cae5359f 1041 // layout
4f5c180e 1042
2b5f62a0 1043 bool is_pda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA);
c8c0e54c 1044
8b17ba72 1045 wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
c8c0e54c 1046
8b17ba72 1047 wxBoxSizer *buttonsizer = new wxBoxSizer( wxHORIZONTAL );
c8c0e54c 1048
e6daf794 1049 wxBitmapButton *but;
c8c0e54c 1050
7a82dabc 1051 but = new wxBitmapButton(this, ID_LIST_MODE,
36668b35 1052 wxArtProvider::GetBitmap(wxART_LIST_VIEW, wxART_BUTTON));
e6daf794
RR
1053#if wxUSE_TOOLTIPS
1054 but->SetToolTip( _("View files as a list view") );
1055#endif
1056 buttonsizer->Add( but, 0, wxALL, 5 );
c8c0e54c 1057
60d2cc25 1058 but = new wxBitmapButton(this, ID_REPORT_MODE,
36668b35 1059 wxArtProvider::GetBitmap(wxART_REPORT_VIEW, wxART_BUTTON));
e6daf794
RR
1060#if wxUSE_TOOLTIPS
1061 but->SetToolTip( _("View files as a detailed view") );
1062#endif
1063 buttonsizer->Add( but, 0, wxALL, 5 );
c8c0e54c 1064
0b855868 1065 buttonsizer->Add( 30, 5, 1 );
e6daf794 1066
06cc1fb9 1067 m_upDirButton = new wxBitmapButton(this, ID_UP_DIR,
36668b35 1068 wxArtProvider::GetBitmap(wxART_GO_DIR_UP, wxART_BUTTON));
e6daf794 1069#if wxUSE_TOOLTIPS
06cc1fb9 1070 m_upDirButton->SetToolTip( _("Go to parent directory") );
e6daf794 1071#endif
06cc1fb9 1072 buttonsizer->Add( m_upDirButton, 0, wxALL, 5 );
c8c0e54c 1073
37fd1c97 1074#ifndef __DOS__ // VS: Home directory is meaningless in MS-DOS...
60d2cc25 1075 but = new wxBitmapButton(this, ID_PARENT_DIR,
36668b35 1076 wxArtProvider::GetBitmap(wxART_GO_HOME, wxART_BUTTON));
e6daf794
RR
1077#if wxUSE_TOOLTIPS
1078 but->SetToolTip( _("Go to home directory") );
1079#endif
1080 buttonsizer->Add( but, 0, wxALL, 5);
c8c0e54c 1081
e6daf794 1082 buttonsizer->Add( 20, 20 );
75ec8bd4 1083#endif //!__DOS__
c8c0e54c 1084
06cc1fb9 1085 m_newDirButton = new wxBitmapButton(this, ID_NEW_DIR,
36668b35 1086 wxArtProvider::GetBitmap(wxART_NEW_DIR, wxART_BUTTON));
e6daf794 1087#if wxUSE_TOOLTIPS
06cc1fb9 1088 m_newDirButton->SetToolTip( _("Create new directory") );
e6daf794 1089#endif
06cc1fb9 1090 buttonsizer->Add( m_newDirButton, 0, wxALL, 5 );
c8c0e54c 1091
2b5f62a0 1092 if (is_pda)
c15521c6
RR
1093 mainsizer->Add( buttonsizer, 0, wxALL | wxEXPAND, 0 );
1094 else
1095 mainsizer->Add( buttonsizer, 0, wxALL | wxEXPAND, 5 );
c8c0e54c 1096
9c884972 1097 wxBoxSizer *staticsizer = new wxBoxSizer( wxHORIZONTAL );
2b5f62a0 1098 if (is_pda)
ca65c044
WS
1099 staticsizer->Add( new wxStaticText( this, wxID_ANY, _("Current directory:") ), 0, wxRIGHT, 10 );
1100 m_static = new wxStaticText( this, wxID_ANY, m_dir );
9c884972
RR
1101 staticsizer->Add( m_static, 1 );
1102 mainsizer->Add( staticsizer, 0, wxEXPAND | wxLEFT|wxRIGHT|wxBOTTOM, 10 );
1103
619111b9 1104 long style2 = ms_lastViewStyle;
9cedab37 1105 if ( !(m_dialogStyle & wxMULTIPLE) )
cd6b752b 1106 style2 |= wxLC_SINGLE_SEL;
9cedab37 1107
619111b9
JS
1108#ifdef __WXWINCE__
1109 style2 |= wxSIMPLE_BORDER;
1110#else
1111 style2 |= wxSUNKEN_BORDER;
1112#endif
1113
23254b13 1114 m_list = new wxFileCtrl( this, ID_LIST_CTRL,
9548f380 1115 wxEmptyString, ms_lastShowHidden,
9cedab37 1116 wxDefaultPosition, wxSize(540,200),
cd6b752b 1117 style2);
9cedab37 1118
2b5f62a0 1119 if (is_pda)
c15521c6 1120 {
41fecb44
VS
1121 // PDAs have a different screen layout
1122 mainsizer->Add( m_list, 1, wxEXPAND | wxLEFT|wxRIGHT, 5 );
1123
41fecb44
VS
1124 wxBoxSizer *textsizer = new wxBoxSizer( wxHORIZONTAL );
1125 m_text = new wxTextCtrl( this, ID_TEXT, m_fileName, wxDefaultPosition, wxDefaultSize, wxPROCESS_ENTER );
1126 textsizer->Add( m_text, 1, wxCENTER | wxALL, 5 );
1127 mainsizer->Add( textsizer, 0, wxEXPAND );
1128
ca06ee0d
RR
1129 m_check = NULL;
1130 m_choice = new wxChoice( this, ID_CHOICE );
1131 textsizer->Add( m_choice, 1, wxCENTER|wxALL, 5 );
41fecb44 1132
c81c9392
WS
1133 wxSizer *bsizer = CreateButtonSizer( wxOK|wxCANCEL , false, 5 );
1134 if(bsizer->GetChildren().GetCount() > 0 )
1135 {
1136 mainsizer->Add( bsizer, 0, wxEXPAND | wxALL, 5 );
1137 }
1138 else
1139 {
1140 delete bsizer;
1141 }
c15521c6
RR
1142 }
1143 else
1144 {
41fecb44
VS
1145 mainsizer->Add( m_list, 1, wxEXPAND | wxLEFT|wxRIGHT, 10 );
1146
1147 wxBoxSizer *textsizer = new wxBoxSizer( wxHORIZONTAL );
1148 m_text = new wxTextCtrl( this, ID_TEXT, m_fileName, wxDefaultPosition, wxDefaultSize, wxPROCESS_ENTER );
1149 textsizer->Add( m_text, 1, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
5f7bcb48 1150 textsizer->Add( new wxButton( this, wxID_OK ), 0, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
41fecb44
VS
1151 mainsizer->Add( textsizer, 0, wxEXPAND );
1152
1153 wxBoxSizer *choicesizer = new wxBoxSizer( wxHORIZONTAL );
1154 m_choice = new wxChoice( this, ID_CHOICE );
1155 choicesizer->Add( m_choice, 1, wxCENTER|wxALL, 10 );
1156 m_check = new wxCheckBox( this, ID_CHECK, _("Show hidden files") );
9cedab37 1157 m_check->SetValue( ms_lastShowHidden );
41fecb44 1158 choicesizer->Add( m_check, 0, wxCENTER|wxALL, 10 );
5f7bcb48 1159 choicesizer->Add( new wxButton( this, wxID_CANCEL ), 0, wxCENTER | wxALL, 10 );
41fecb44 1160 mainsizer->Add( choicesizer, 0, wxEXPAND );
c15521c6 1161 }
24f932d2 1162
b4cfe261 1163 SetWildcard(wildCard);
8b17ba72 1164
ca65c044 1165 SetAutoLayout( true );
8b17ba72 1166 SetSizer( mainsizer );
c8c0e54c 1167
619111b9
JS
1168 if (!is_pda)
1169 {
1170 mainsizer->Fit( this );
1171 mainsizer->SetSizeHints( this );
ed58dbea 1172
619111b9
JS
1173 Centre( wxBOTH );
1174 }
c81c9392 1175
9cedab37 1176 m_text->SetFocus();
c81c9392 1177
619111b9 1178 ignoreChanges = false;
abc2a4cc 1179
4e1901b7 1180 return true;
8b17ba72
RR
1181}
1182
23254b13 1183wxGenericFileDialog::~wxGenericFileDialog()
cae5359f 1184{
619111b9
JS
1185 ignoreChanges = true;
1186
4e1901b7 1187 if (!m_bypassGenericImpl)
eaf40b23 1188 {
4e1901b7
RR
1189 if (wxConfig::Get(false))
1190 {
1191 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ViewStyle"),
1192 ms_lastViewStyle);
1193 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ShowHidden"),
1194 ms_lastShowHidden);
1195 }
c5ef41d3 1196
4e1901b7
RR
1197 const int count = m_choice->GetCount();
1198 for ( int i = 0; i < count; i++ )
1199 {
1200 delete (wxString *)m_choice->GetClientData(i);
1201 }
c5ef41d3 1202 }
cae5359f
RR
1203}
1204
23254b13 1205int wxGenericFileDialog::ShowModal()
9cedab37 1206{
619111b9
JS
1207 ignoreChanges = true;
1208
9cedab37 1209 m_list->GoToDir(m_dir);
06cc1fb9 1210 UpdateControls();
2b5f62a0 1211 m_text->SetValue(m_fileName);
9cedab37 1212
619111b9
JS
1213 ignoreChanges = false;
1214
9cedab37
VZ
1215 return wxDialog::ShowModal();
1216}
1217
16dce3b3
RR
1218bool wxGenericFileDialog::Show( bool show )
1219{
619111b9
JS
1220 // Called by ShowModal, so don't repeate the update
1221#ifndef __WIN32__
16dce3b3
RR
1222 if (show)
1223 {
1224 m_list->GoToDir(m_dir);
1225 UpdateControls();
1226 m_text->SetValue(m_fileName);
1227 }
619111b9 1228#endif
16dce3b3
RR
1229
1230 return wxDialog::Show( show );
1231}
1232
23254b13 1233void wxGenericFileDialog::DoSetFilterIndex(int filterindex)
2b5f62a0
VZ
1234{
1235 wxString *str = (wxString*) m_choice->GetClientData( filterindex );
1236 m_list->SetWild( *str );
1237 m_filterIndex = filterindex;
1238 if ( str->Left(2) == wxT("*.") )
1239 {
787d22ec
JS
1240 m_filterExtension = str->Mid(1);
1241 if (m_filterExtension == _T(".*"))
2b5f62a0
VZ
1242 m_filterExtension.clear();
1243 }
1244 else
1245 {
1246 m_filterExtension.clear();
1247 }
1248}
1249
b4cfe261
VZ
1250void wxGenericFileDialog::SetWildcard(const wxString& wildCard)
1251{
1252 wxFileDialogBase::SetWildcard(wildCard);
1253
1254 wxArrayString wildDescriptions, wildFilters;
1255 const size_t count = wxParseCommonDialogsFilter(m_wildCard,
1256 wildDescriptions,
1257 wildFilters);
1258 wxCHECK_RET( count, wxT("wxFileDialog: bad wildcard string") );
1259
7e4fb3b8
VZ
1260 const size_t countOld = m_choice->GetCount();
1261 size_t n;
1262 for ( n = 0; n < countOld; n++ )
fe6cf128
VZ
1263 {
1264 delete (wxString *)m_choice->GetClientData(n);
1265 }
7e4fb3b8 1266
fe6cf128 1267 for ( n = 0; n < count; n++ )
b4cfe261
VZ
1268 {
1269 m_choice->Append( wildDescriptions[n], new wxString( wildFilters[n] ) );
1270 }
1271
1272 SetFilterIndex( 0 );
1273}
1274
23254b13 1275void wxGenericFileDialog::SetFilterIndex( int filterindex )
04ea7f93
RR
1276{
1277 m_choice->SetSelection( filterindex );
2b5f62a0
VZ
1278
1279 DoSetFilterIndex(filterindex);
04ea7f93
RR
1280}
1281
23254b13 1282void wxGenericFileDialog::OnChoiceFilter( wxCommandEvent &event )
cae5359f 1283{
2b5f62a0 1284 DoSetFilterIndex((int)event.GetInt());
cae5359f
RR
1285}
1286
23254b13 1287void wxGenericFileDialog::OnCheck( wxCommandEvent &event )
bf9e3e73 1288{
9cedab37 1289 m_list->ShowHidden( (ms_lastShowHidden = event.GetInt() != 0) );
bf9e3e73
RR
1290}
1291
23254b13 1292void wxGenericFileDialog::OnActivated( wxListEvent &event )
8b17ba72 1293{
e1811a01 1294 HandleAction( event.m_item.m_text );
8b17ba72
RR
1295}
1296
23254b13 1297void wxGenericFileDialog::OnTextEnter( wxCommandEvent &WXUNUSED(event) )
cae5359f 1298{
b28a6678 1299 HandleAction( m_text->GetValue() );
cae5359f
RR
1300}
1301
23254b13 1302void wxGenericFileDialog::OnTextChange( wxCommandEvent &WXUNUSED(event) )
df413171
JS
1303{
1304 if (!ignoreChanges)
1305 {
1306 // Clear selections. Otherwise when the user types in a value they may
1307 // not get the file whose name they typed.
1308 if (m_list->GetSelectedItemCount() > 0)
1309 {
7f04165e 1310 long item = m_list->GetNextItem(-1, wxLIST_NEXT_ALL,
df413171
JS
1311 wxLIST_STATE_SELECTED);
1312 while ( item != -1 )
7f04165e 1313 {
df413171
JS
1314 m_list->SetItemState(item,0, wxLIST_STATE_SELECTED);
1315 item = m_list->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
7f04165e 1316 }
df413171
JS
1317 }
1318 }
1319}
1320
23254b13 1321void wxGenericFileDialog::OnSelected( wxListEvent &event )
8b17ba72 1322{
619111b9
JS
1323 static bool inSelected = false;
1324
1325 if (inSelected)
1326 return;
1327
1328 inSelected = true;
e1811a01 1329 wxString filename( event.m_item.m_text );
619111b9
JS
1330
1331#ifdef __WXWINCE__
1332 // No double-click on most WinCE devices, so do action immediately.
1333 HandleAction( filename );
1334#else
223d09f6 1335 if (filename == wxT("..")) return;
479cd5de 1336
06cc1fb9 1337 wxString dir = m_list->GetDir();
5e673a6a
VS
1338 if (!IsTopMostDir(dir))
1339 dir += wxFILE_SEP_PATH;
e1811a01 1340 dir += filename;
da865fdd 1341 if (wxDirExists(dir)) return;
479cd5de 1342
ca65c044 1343 ignoreChanges = true;
e1811a01 1344 m_text->SetValue( filename );
ca65c044 1345 ignoreChanges = false;
619111b9
JS
1346#endif
1347 inSelected = false;
8b17ba72
RR
1348}
1349
23254b13 1350void wxGenericFileDialog::HandleAction( const wxString &fn )
8b17ba72 1351{
619111b9
JS
1352 if (ignoreChanges)
1353 return;
1354
e1811a01 1355 wxString filename( fn );
c81c9392
WS
1356 if (filename.empty())
1357 {
1358#ifdef __WXWINCE__
b28a6678 1359 EndModal(wxID_CANCEL);
c81c9392
WS
1360#endif
1361 return;
1362 }
223d09f6 1363 if (filename == wxT(".")) return;
c8c0e54c 1364
c81c9392
WS
1365 wxString dir = m_list->GetDir();
1366
b600ed13
VZ
1367 // "some/place/" means they want to chdir not try to load "place"
1368 bool want_dir = filename.Last() == wxFILE_SEP_PATH;
1369 if (want_dir)
1370 filename = filename.RemoveLast();
1371
223d09f6 1372 if (filename == wxT(".."))
0b855868 1373 {
619111b9 1374 ignoreChanges = true;
0b855868
RR
1375 m_list->GoToParentDir();
1376 m_list->SetFocus();
06cc1fb9 1377 UpdateControls();
619111b9 1378 ignoreChanges = false;
c8c0e54c 1379 return;
0b855868
RR
1380 }
1381
75ec8bd4 1382#ifdef __UNIX__
223d09f6 1383 if (filename == wxT("~"))
ed58dbea 1384 {
619111b9 1385 ignoreChanges = true;
ed58dbea
RR
1386 m_list->GoToHomeDir();
1387 m_list->SetFocus();
06cc1fb9 1388 UpdateControls();
619111b9 1389 ignoreChanges = false;
c8c0e54c 1390 return;
ed58dbea 1391 }
c8c0e54c 1392
b600ed13 1393 if (filename.BeforeFirst(wxT('/')) == wxT("~"))
ed58dbea 1394 {
71f2fb52 1395 filename = wxString(wxGetUserHome()) + filename.Remove(0, 1);
ed58dbea 1396 }
75ec8bd4 1397#endif // __UNIX__
ed58dbea 1398
854aa1e1 1399 if (!(m_dialogStyle & wxSAVE))
cae5359f 1400 {
854aa1e1
RR
1401 if ((filename.Find(wxT('*')) != wxNOT_FOUND) ||
1402 (filename.Find(wxT('?')) != wxNOT_FOUND))
c8c0e54c 1403 {
854aa1e1
RR
1404 if (filename.Find(wxFILE_SEP_PATH) != wxNOT_FOUND)
1405 {
1406 wxMessageBox(_("Illegal file specification."), _("Error"), wxOK | wxICON_ERROR );
1407 return;
1408 }
1409 m_list->SetWild( filename );
c8c0e54c
VZ
1410 return;
1411 }
cae5359f
RR
1412 }
1413
5e673a6a
VS
1414 if (!IsTopMostDir(dir))
1415 dir += wxFILE_SEP_PATH;
1416 if (!wxIsAbsolutePath(filename))
ed58dbea
RR
1417 {
1418 dir += filename;
1419 filename = dir;
1420 }
c8c0e54c 1421
da865fdd 1422 if (wxDirExists(filename))
8b17ba72 1423 {
619111b9 1424 ignoreChanges = true;
8b17ba72 1425 m_list->GoToDir( filename );
06cc1fb9 1426 UpdateControls();
619111b9 1427 ignoreChanges = false;
c8c0e54c 1428 return;
8b17ba72 1429 }
c8c0e54c 1430
b600ed13
VZ
1431 // they really wanted a dir, but it doesn't exist
1432 if (want_dir)
1433 {
1434 wxMessageBox(_("Directory doesn't exist."), _("Error"),
1435 wxOK | wxICON_ERROR );
1436 return;
1437 }
1438
2b5f62a0
VZ
1439 // append the default extension to the filename if it doesn't have any
1440 //
1441 // VZ: the logic of testing for !wxFileExists() only for the open file
1442 // dialog is not entirely clear to me, why don't we allow saving to a
1443 // file without extension as well?
1444 if ( !(m_dialogStyle & wxOPEN) || !wxFileExists(filename) )
8b17ba72 1445 {
f74172ab 1446 filename = AppendExtension(filename, m_filterExtension);
8b17ba72 1447 }
2b5f62a0
VZ
1448
1449 // check that the file [doesn't] exist if necessary
1450 if ( (m_dialogStyle & wxSAVE) &&
1451 (m_dialogStyle & wxOVERWRITE_PROMPT) &&
1452 wxFileExists( filename ) )
8b17ba72 1453 {
2b5f62a0 1454 wxString msg;
88d6c988 1455 msg.Printf( _("File '%s' already exists, do you really want to overwrite it?"), filename.c_str() );
655cf310 1456
2b5f62a0
VZ
1457 if (wxMessageBox(msg, _("Confirm"), wxYES_NO) != wxYES)
1458 return;
1459 }
1460 else if ( (m_dialogStyle & wxOPEN) &&
1461 (m_dialogStyle & wxFILE_MUST_EXIST) &&
1462 !wxFileExists(filename) )
1463 {
1464 wxMessageBox(_("Please choose an existing file."), _("Error"),
1465 wxOK | wxICON_ERROR );
8b17ba72
RR
1466 }
1467
1468 SetPath( filename );
479cd5de 1469
3f6638b8 1470 // change to the directory where the user went if asked
fda09b3f 1471 if ( m_dialogStyle & wxCHANGE_DIR )
3f6638b8
VZ
1472 {
1473 wxString cwd;
1474 wxSplitPath(filename, &cwd, NULL, NULL);
1475
0b98a252 1476 if ( cwd != wxGetCwd() )
3f6638b8
VZ
1477 {
1478 wxSetWorkingDirectory(cwd);
1479 }
1480 }
1481
b28a6678 1482 EndModal(wxID_OK);
e1811a01
RR
1483}
1484
23254b13 1485void wxGenericFileDialog::OnListOk( wxCommandEvent &WXUNUSED(event) )
e1811a01
RR
1486{
1487 HandleAction( m_text->GetValue() );
8b17ba72
RR
1488}
1489
23254b13 1490void wxGenericFileDialog::OnList( wxCommandEvent &WXUNUSED(event) )
8b17ba72 1491{
619111b9 1492 ignoreChanges = true;
8b17ba72 1493 m_list->ChangeToListMode();
9cedab37 1494 ms_lastViewStyle = wxLC_LIST;
0b855868 1495 m_list->SetFocus();
619111b9 1496 ignoreChanges = false;
8b17ba72
RR
1497}
1498
23254b13 1499void wxGenericFileDialog::OnReport( wxCommandEvent &WXUNUSED(event) )
8b17ba72 1500{
619111b9 1501 ignoreChanges = true;
8b17ba72 1502 m_list->ChangeToReportMode();
9cedab37 1503 ms_lastViewStyle = wxLC_REPORT;
0b855868 1504 m_list->SetFocus();
619111b9 1505 ignoreChanges = false;
8b17ba72
RR
1506}
1507
23254b13 1508void wxGenericFileDialog::OnUp( wxCommandEvent &WXUNUSED(event) )
8b17ba72 1509{
619111b9 1510 ignoreChanges = true;
8b17ba72 1511 m_list->GoToParentDir();
0b855868 1512 m_list->SetFocus();
06cc1fb9 1513 UpdateControls();
619111b9 1514 ignoreChanges = false;
8b17ba72
RR
1515}
1516
23254b13 1517void wxGenericFileDialog::OnHome( wxCommandEvent &WXUNUSED(event) )
8b17ba72 1518{
619111b9 1519 ignoreChanges = true;
8b17ba72 1520 m_list->GoToHomeDir();
0b855868 1521 m_list->SetFocus();
06cc1fb9 1522 UpdateControls();
619111b9 1523 ignoreChanges = false;
0b855868
RR
1524}
1525
23254b13 1526void wxGenericFileDialog::OnNew( wxCommandEvent &WXUNUSED(event) )
0b855868 1527{
619111b9
JS
1528 ignoreChanges = true;
1529
0b855868 1530 m_list->MakeDir();
619111b9
JS
1531
1532 ignoreChanges = false;
8b17ba72
RR
1533}
1534
23254b13 1535void wxGenericFileDialog::SetPath( const wxString& path )
8b17ba72
RR
1536{
1537 // not only set the full path but also update filename and dir
1538 m_path = path;
619111b9
JS
1539
1540#ifdef __WXWINCE__
1541 if (m_path.empty())
1542 m_path = wxFILE_SEP_PATH;
1543#endif
1544
9cedab37 1545 if ( !path.empty() )
8b17ba72
RR
1546 {
1547 wxString ext;
1548 wxSplitPath(path, &m_dir, &m_fileName, &ext);
9cedab37 1549 if (!ext.empty())
c8c0e54c 1550 {
223d09f6 1551 m_fileName += wxT(".");
8b17ba72 1552 m_fileName += ext;
c8c0e54c 1553 }
8b17ba72
RR
1554 }
1555}
c8c0e54c 1556
23254b13 1557void wxGenericFileDialog::GetPaths( wxArrayString& paths ) const
7941ba11
RR
1558{
1559 paths.Empty();
28c9c76e
RR
1560 if (m_list->GetSelectedItemCount() == 0)
1561 {
1562 paths.Add( GetPath() );
1563 return;
1564 }
479cd5de 1565
7941ba11
RR
1566 paths.Alloc( m_list->GetSelectedItemCount() );
1567
06cc1fb9 1568 wxString dir = m_list->GetDir();
5e673a6a 1569#ifdef __UNIX__
7a82dabc 1570 if (dir != wxT("/"))
619111b9
JS
1571#endif
1572#ifdef __WXWINCE__
1573 if (dir != wxT("/") && dir != wxT("\\"))
5e673a6a
VS
1574#endif
1575 dir += wxFILE_SEP_PATH;
7941ba11
RR
1576
1577 wxListItem item;
1578 item.m_mask = wxLIST_MASK_TEXT;
1579
1580 item.m_itemId = m_list->GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
92da8bde 1581 while ( item.m_itemId != -1 )
68df5777 1582 {
7941ba11
RR
1583 m_list->GetItem( item );
1584 paths.Add( dir + item.m_text );
68df5777 1585 item.m_itemId = m_list->GetNextItem( item.m_itemId,
7941ba11
RR
1586 wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
1587 }
1588}
1589
23254b13 1590void wxGenericFileDialog::GetFilenames(wxArrayString& files) const
7941ba11
RR
1591{
1592 files.Empty();
28c9c76e
RR
1593 if (m_list->GetSelectedItemCount() == 0)
1594 {
1595 files.Add( GetFilename() );
1596 return;
1597 }
7941ba11
RR
1598 files.Alloc( m_list->GetSelectedItemCount() );
1599
1600 wxListItem item;
1601 item.m_mask = wxLIST_MASK_TEXT;
1602
1603 item.m_itemId = m_list->GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
92da8bde 1604 while ( item.m_itemId != -1 )
68df5777 1605 {
7941ba11
RR
1606 m_list->GetItem( item );
1607 files.Add( item.m_text );
68df5777 1608 item.m_itemId = m_list->GetNextItem( item.m_itemId,
7941ba11
RR
1609 wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
1610 }
1611}
1612
06cc1fb9
JS
1613void wxGenericFileDialog::UpdateControls()
1614{
1615 wxString dir = m_list->GetDir();
1616 m_static->SetLabel(dir);
1617
1618 bool enable = !IsTopMostDir(dir);
1619 m_upDirButton->Enable(enable);
1620
144cf6da 1621#if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
06cc1fb9 1622 m_newDirButton->Enable(enable);
144cf6da 1623#endif // defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
06cc1fb9
JS
1624}
1625
23254b13 1626#ifdef USE_GENERIC_FILEDIALOG
655cf310 1627
412e0d47 1628IMPLEMENT_DYNAMIC_CLASS(wxFileDialog, wxGenericFileDialog)
655cf310 1629
23254b13
JS
1630#endif // USE_GENERIC_FILEDIALOG
1631
4e1901b7 1632#endif // wxUSE_FILEDLG