]> git.saurik.com Git - wxWidgets.git/blame - src/generic/filedlgg.cpp
fixed compilation warnings with GTK+ 2.0
[wxWidgets.git] / src / generic / filedlgg.cpp
CommitLineData
8b17ba72
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: filedlgg.cpp
3// Purpose: wxFileDialog
4// Author: Robert Roebling
5// Modified by:
6// Created: 12/12/98
7// RCS-ID: $Id$
8// Copyright: (c) Robert Roebling
c8c0e54c 9// Licence: wxWindows licence
8b17ba72
RR
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "filedlgg.h"
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
1e6feb95
VZ
23#if wxUSE_FILEDLG
24
4894ae18
VS
25#if !defined(__UNIX__) && !defined(__DOS__)
26#error wxFileDialog currently only supports Unix and DOS
8b17ba72
RR
27#endif
28
04dbb646
VZ
29#include "wx/checkbox.h"
30#include "wx/textctrl.h"
31#include "wx/choice.h"
32#include "wx/checkbox.h"
33#include "wx/stattext.h"
8b17ba72 34#include "wx/filedlg.h"
8b17ba72
RR
35#include "wx/debug.h"
36#include "wx/log.h"
37#include "wx/intl.h"
04dbb646 38#include "wx/listctrl.h"
8b17ba72
RR
39#include "wx/msgdlg.h"
40#include "wx/sizer.h"
0b855868 41#include "wx/bmpbuttn.h"
cae5359f 42#include "wx/tokenzr.h"
655cf310
VS
43#include "wx/mimetype.h"
44#include "wx/image.h"
45#include "wx/module.h"
eaf40b23 46#include "wx/config.h"
48fe8374 47#include "wx/imaglist.h"
5e673a6a 48#include "wx/dir.h"
60d2cc25 49#include "wx/artprov.h"
8b17ba72 50
e6daf794
RR
51#if wxUSE_TOOLTIPS
52 #include "wx/tooltip.h"
53#endif
54
ac2def68
RR
55#include <sys/types.h>
56#include <sys/stat.h>
4894ae18
VS
57
58#ifdef __UNIX__
59 #include <dirent.h>
60 #include <pwd.h>
61 #ifndef __VMS
62 # include <grp.h>
63 #endif
64#endif
65
66#ifdef __WATCOMC__
67 #include <direct.h>
27df579a 68#endif
4894ae18 69
27df579a 70# include <time.h>
ac2def68 71#include <unistd.h>
8b17ba72 72
04dbb646
VZ
73//-----------------------------------------------------------------------------
74// wxFileData
75//-----------------------------------------------------------------------------
76
77class wxFileData : public wxObject
78{
04dbb646
VZ
79public:
80 wxFileData() { }
81 wxFileData( const wxString &name, const wxString &fname );
82 wxString GetName() const;
83 wxString GetFullName() const;
84 wxString GetHint() const;
85 wxString GetEntry( int num );
86 bool IsDir();
87 bool IsLink();
88 bool IsExe();
89 long GetSize();
90 void MakeItem( wxListItem &item );
91 void SetNewName( const wxString &name, const wxString &fname );
92
93private:
37fd1c97
VS
94 wxString m_name;
95 wxString m_fileName;
96 long m_size;
97 int m_hour;
98 int m_minute;
99 int m_year;
100 int m_month;
101 int m_day;
102 wxString m_permissions;
103 bool m_isDir;
104 bool m_isLink;
105 bool m_isExe;
106
04dbb646
VZ
107 DECLARE_DYNAMIC_CLASS(wxFileData);
108};
109
110//-----------------------------------------------------------------------------
111// wxFileCtrl
112//-----------------------------------------------------------------------------
113
114class wxFileCtrl : public wxListCtrl
115{
04dbb646
VZ
116public:
117 wxFileCtrl();
118 wxFileCtrl( wxWindow *win,
119 wxWindowID id,
120 const wxString &dirName,
121 const wxString &wild,
122 const wxPoint &pos = wxDefaultPosition,
123 const wxSize &size = wxDefaultSize,
124 long style = wxLC_LIST,
125 const wxValidator &validator = wxDefaultValidator,
126 const wxString &name = wxT("filelist") );
127 void ChangeToListMode();
128 void ChangeToReportMode();
129 void ChangeToIconMode();
130 void ShowHidden( bool show = TRUE );
131 long Add( wxFileData *fd, wxListItem &item );
8f4fcc4e 132 void UpdateFiles();
04dbb646
VZ
133 virtual void StatusbarText( wxChar *WXUNUSED(text) ) {};
134 void MakeDir();
135 void GoToParentDir();
136 void GoToHomeDir();
137 void GoToDir( const wxString &dir );
138 void SetWild( const wxString &wild );
139 void GetDir( wxString &dir );
140 void OnListDeleteItem( wxListEvent &event );
141 void OnListDeleteAllItems( wxListEvent &event );
142 void OnListEndLabelEdit( wxListEvent &event );
37fd1c97
VS
143
144 // Associate commonly used UI controls with wxFileCtrl so that they can be
145 // disabled when they cannot be used (e.g. can't go to parent directory
146 // if wxFileCtrl already is in the root dir):
147 void SetGoToParentControl(wxWindow *ctrl) { m_goToParentControl = ctrl; }
148 void SetNewDirControl(wxWindow *ctrl) { m_newDirControl = ctrl; }
04dbb646
VZ
149
150private:
37fd1c97
VS
151 wxString m_dirName;
152 bool m_showHidden;
153 wxString m_wild;
154
155 wxWindow *m_goToParentControl;
156 wxWindow *m_newDirControl;
157
04dbb646
VZ
158 DECLARE_DYNAMIC_CLASS(wxFileCtrl);
159 DECLARE_EVENT_TABLE()
160};
161
655cf310
VS
162// ----------------------------------------------------------------------------
163// private classes - icons list management
164// ----------------------------------------------------------------------------
165
166class wxFileIconEntry : public wxObject
167{
473d087e
RR
168public:
169 wxFileIconEntry(int i) { id = i; }
48fe8374 170
473d087e 171 int id;
655cf310
VS
172};
173
174
175class wxFileIconsTable
176{
473d087e
RR
177public:
178 wxFileIconsTable();
655cf310 179
473d087e
RR
180 int GetIconID(const wxString& extension, const wxString& mime = wxEmptyString);
181 wxImageList *GetImageList() { return &m_ImageList; }
48fe8374 182
473d087e
RR
183protected:
184 wxImageList m_ImageList;
185 wxHashTable m_HashTable;
655cf310
VS
186};
187
188static wxFileIconsTable *g_IconsTable = NULL;
189
b0c5c421
VS
190#define FI_FOLDER 0
191#define FI_UNKNOWN 1
192#define FI_EXECUTABLE 2
655cf310
VS
193
194wxFileIconsTable::wxFileIconsTable() :
195 m_ImageList(16, 16),
73725567 196 m_HashTable(wxKEY_STRING)
655cf310
VS
197{
198 m_HashTable.DeleteContents(TRUE);
60d2cc25
VS
199 // FI_FOLDER:
200 m_ImageList.Add(wxArtProvider::GetBitmap(wxART_FOLDER, wxART_CMN_DIALOG));
201 // FI_UNKNOWN:
202 m_ImageList.Add(wxArtProvider::GetBitmap(wxART_NORMAL_FILE, wxART_CMN_DIALOG));
203 // FI_EXECUTABLE:
48fe8374 204 if (GetIconID(wxEmptyString, _T("application/x-executable")) == FI_UNKNOWN)
60d2cc25
VS
205 {
206 m_ImageList.Add(wxArtProvider::GetBitmap(wxART_EXECUTABLE_FILE, wxART_CMN_DIALOG));
b0c5c421
VS
207 m_HashTable.Delete(_T("exe"));
208 m_HashTable.Put(_T("exe"), new wxFileIconEntry(FI_EXECUTABLE));
209 }
210 /* else put into list by GetIconID
211 (KDE defines application/x-executable for *.exe and has nice icon)
212 */
655cf310
VS
213}
214
215
216
75ec8bd4
VS
217#if wxUSE_MIMETYPE
218// VS: we don't need this function w/o wxMimeTypesManager because we'll only have
219// one icon and we won't resize it
220
655cf310
VS
221static wxBitmap CreateAntialiasedBitmap(const wxImage& img)
222{
223 wxImage small(16, 16);
224 unsigned char *p1, *p2, *ps;
48fe8374
VZ
225 unsigned char mr = img.GetMaskRed(),
226 mg = img.GetMaskGreen(),
b0c5c421 227 mb = img.GetMaskBlue();
48fe8374 228
655cf310
VS
229 unsigned x, y;
230 unsigned sr, sg, sb, smask;
48fe8374 231
655cf310
VS
232 p1 = img.GetData(), p2 = img.GetData() + 3 * 32, ps = small.GetData();
233 small.SetMaskColour(mr, mr, mr);
48fe8374 234
655cf310
VS
235 for (y = 0; y < 16; y++)
236 {
237 for (x = 0; x < 16; x++)
238 {
239 sr = sg = sb = smask = 0;
240 if (p1[0] != mr || p1[1] != mg || p1[2] != mb)
241 sr += p1[0], sg += p1[1], sb += p1[2];
242 else smask++;
243 p1 += 3;
244 if (p1[0] != mr || p1[1] != mg || p1[2] != mb)
245 sr += p1[0], sg += p1[1], sb += p1[2];
246 else smask++;
247 p1 += 3;
248 if (p2[0] != mr || p2[1] != mg || p2[2] != mb)
249 sr += p2[0], sg += p2[1], sb += p2[2];
250 else smask++;
251 p2 += 3;
252 if (p2[0] != mr || p2[1] != mg || p2[2] != mb)
253 sr += p2[0], sg += p2[1], sb += p2[2];
254 else smask++;
255 p2 += 3;
48fe8374
VZ
256
257 if (smask > 2)
655cf310
VS
258 ps[0] = ps[1] = ps[2] = mr;
259 else
260 ps[0] = sr >> 2, ps[1] = sg >> 2, ps[2] = sb >> 2;
261 ps += 3;
262 }
263 p1 += 32 * 3, p2 += 32 * 3;
264 }
78316bbe 265
368d59f0 266 return wxBitmap(small);
655cf310
VS
267}
268
78316bbe
VS
269// finds empty borders and return non-empty area of image:
270static wxImage CutEmptyBorders(const wxImage& img)
271{
48fe8374
VZ
272 unsigned char mr = img.GetMaskRed(),
273 mg = img.GetMaskGreen(),
78316bbe
VS
274 mb = img.GetMaskBlue();
275 unsigned char *dt = img.GetData(), *dttmp;
276 unsigned w = img.GetWidth(), h = img.GetHeight();
48fe8374 277
78316bbe
VS
278 unsigned top, bottom, left, right, i;
279 bool empt;
280
281#define MK_DTTMP(x,y) dttmp = dt + ((x + y * w) * 3)
282#define NOEMPTY_PIX(empt) if (dttmp[0] != mr || dttmp[1] != mg || dttmp[2] != mb) {empt = FALSE; break;}
48fe8374 283
78316bbe
VS
284 for (empt = TRUE, top = 0; empt && top < h; top++)
285 {
286 MK_DTTMP(0, top);
287 for (i = 0; i < w; i++, dttmp+=3)
288 NOEMPTY_PIX(empt)
289 }
290 for (empt = TRUE, bottom = h-1; empt && bottom > top; bottom--)
291 {
292 MK_DTTMP(0, bottom);
293 for (i = 0; i < w; i++, dttmp+=3)
294 NOEMPTY_PIX(empt)
295 }
296 for (empt = TRUE, left = 0; empt && left < w; left++)
297 {
298 MK_DTTMP(left, 0);
299 for (i = 0; i < h; i++, dttmp+=3*w)
300 NOEMPTY_PIX(empt)
301 }
302 for (empt = TRUE, right = w-1; empt && right > left; right--)
303 {
304 MK_DTTMP(right, 0);
305 for (i = 0; i < h; i++, dttmp+=3*w)
306 NOEMPTY_PIX(empt)
307 }
308 top--, left--, bottom++, right++;
309
310 return img.GetSubImage(wxRect(left, top, right - left + 1, bottom - top + 1));
311}
75ec8bd4 312#endif // wxUSE_MIMETYPE
78316bbe
VS
313
314
315
b0c5c421 316int wxFileIconsTable::GetIconID(const wxString& extension, const wxString& mime)
655cf310 317{
4894ae18 318#if wxUSE_MIMETYPE
b0c5c421
VS
319 if (!extension.IsEmpty())
320 {
321 wxFileIconEntry *entry = (wxFileIconEntry*) m_HashTable.Get(extension);
322 if (entry) return (entry -> id);
323 }
324
48fe8374 325 wxFileType *ft = (mime.IsEmpty()) ?
73725567
VS
326 wxTheMimeTypesManager -> GetFileTypeFromExtension(extension) :
327 wxTheMimeTypesManager -> GetFileTypeFromMimeType(mime);
655cf310 328 wxIcon ic;
26065a88 329 if (ft == NULL || (!ft -> GetIcon(&ic)) || (!ic.Ok()))
655cf310 330 {
b0c5c421 331 int newid = FI_UNKNOWN;
655cf310
VS
332 m_HashTable.Put(extension, new wxFileIconEntry(newid));
333 return newid;
334 }
368d59f0 335 wxImage img = ic.ConvertToImage();
655cf310 336 delete ft;
48fe8374 337
655cf310
VS
338 int id = m_ImageList.GetImageCount();
339 if (img.GetWidth() == 16 && img.GetHeight() == 16)
368d59f0 340 m_ImageList.Add(wxBitmap(img));
655cf310 341 else
b4b58c41
VS
342 {
343 if (img.GetWidth() != 32 || img.GetHeight() != 32)
78316bbe
VS
344 m_ImageList.Add(CreateAntialiasedBitmap(CutEmptyBorders(img).Rescale(32, 32)));
345 else
346 m_ImageList.Add(CreateAntialiasedBitmap(img));
b4b58c41 347 }
655cf310
VS
348 m_HashTable.Put(extension, new wxFileIconEntry(id));
349 return id;
4894ae18
VS
350
351#else // !wxUSE_MIMETYPE
352
353 if (extension == wxT("exe"))
354 return FI_EXECUTABLE;
355 else
356 return FI_UNKNOWN;
357#endif // wxUSE_MIMETYPE/!wxUSE_MIMETYPE
655cf310
VS
358}
359
360
361
c8c0e54c
VZ
362// ----------------------------------------------------------------------------
363// private functions
364// ----------------------------------------------------------------------------
365
366static
367int ListCompare( long data1, long data2, long WXUNUSED(data) )
368{
369 wxFileData *fd1 = (wxFileData*)data1 ;
370 wxFileData *fd2 = (wxFileData*)data2 ;
223d09f6
KB
371 if (fd1->GetName() == wxT("..")) return -1;
372 if (fd2->GetName() == wxT("..")) return 1;
c8c0e54c
VZ
373 if (fd1->IsDir() && !fd2->IsDir()) return -1;
374 if (fd2->IsDir() && !fd1->IsDir()) return 1;
6eec2bee 375 return wxStrcmp( fd1->GetName(), fd2->GetName() );
c8c0e54c
VZ
376}
377
5e673a6a
VS
378#ifdef __UNIX__
379#define IsTopMostDir(dir) (dir == wxT("/"))
380#endif
381
382#if defined(__DOS__) || defined(__WINDOWS__)
383#define IsTopMostDir(dir) (dir.IsEmpty())
384#endif
385
37fd1c97
VS
386#if defined(__DOS__) || defined(__WINDOWS__)
387extern bool wxIsDriveAvailable(const wxString& dirName);
388#endif
389
8b17ba72
RR
390//-----------------------------------------------------------------------------
391// wxFileData
392//-----------------------------------------------------------------------------
393
394IMPLEMENT_DYNAMIC_CLASS(wxFileData,wxObject);
395
396wxFileData::wxFileData( const wxString &name, const wxString &fname )
397{
398 m_name = name;
399 m_fileName = fname;
37fd1c97
VS
400
401#if defined(__DOS__) || defined(__WINDOWS__)
402 // VS: In case the file is root directory of a volume (e.g. "C:"),
403 // we don't want it stat()ed, since the drive may not be in:
404 if (name.length() == 2 && name[1u] == wxT(':'))
405 {
406 m_isDir = TRUE;
407 m_isExe = m_isLink = FALSE;
408 m_size = 0;
409 return;
410 }
411#endif
c8c0e54c 412
8b17ba72 413 struct stat buff;
37fd1c97 414 wxStat( m_fileName.fn_str(), &buff );
479cd5de 415
4894ae18 416#if defined(__UNIX__) && (!defined( __EMX__ ) && !defined(__VMS))
8b17ba72 417 struct stat lbuff;
6eec2bee 418 lstat( m_fileName.fn_str(), &lbuff );
9f2d09aa 419 m_isLink = S_ISLNK( lbuff.st_mode );
8b17ba72 420 struct tm *t = localtime( &lbuff.st_mtime );
9f2d09aa
RR
421#else
422 m_isLink = FALSE;
423 struct tm *t = localtime( &buff.st_mtime );
424#endif
425
8b17ba72
RR
426// struct passwd *user = getpwuid( buff.st_uid );
427// struct group *grp = getgrgid( buff.st_gid );
428
429 m_isDir = S_ISDIR( buff.st_mode );
8b17ba72
RR
430 m_isExe = ((buff.st_mode & S_IXUSR ) == S_IXUSR );
431
432 m_size = buff.st_size;
433
434 m_hour = t->tm_hour;
435 m_minute = t->tm_min;
436 m_month = t->tm_mon+1;
437 m_day = t->tm_mday;
438 m_year = t->tm_year;
d3e90957 439 m_year += 1900;
8b17ba72 440
6eec2bee
OK
441 m_permissions.sprintf( wxT("%c%c%c"),
442 ((( buff.st_mode & S_IRUSR ) == S_IRUSR ) ? wxT('r') : wxT('-')),
443 ((( buff.st_mode & S_IWUSR ) == S_IWUSR ) ? wxT('w') : wxT('-')),
444 ((( buff.st_mode & S_IXUSR ) == S_IXUSR ) ? wxT('x') : wxT('-')) );
8b17ba72
RR
445}
446
447wxString wxFileData::GetName() const
448{
449 return m_name;
450}
451
452wxString wxFileData::GetFullName() const
453{
454 return m_fileName;
455}
456
457wxString wxFileData::GetHint() const
458{
459 wxString s = m_fileName;
460 s += " ";
461 if (m_isDir) s += _("<DIR> ");
462 else if (m_isLink) s += _("<LINK> ");
463 else
464 {
465 s += LongToString( m_size );
466 s += _(" bytes ");
467 }
468 s += IntToString( m_day );
223d09f6 469 s += wxT(".");
8b17ba72 470 s += IntToString( m_month );
223d09f6 471 s += wxT(".");
8b17ba72 472 s += IntToString( m_year );
223d09f6 473 s += wxT(" ");
8b17ba72 474 s += IntToString( m_hour );
223d09f6 475 s += wxT(":");
8b17ba72 476 s += IntToString( m_minute );
223d09f6 477 s += wxT(" ");
8b17ba72
RR
478 s += m_permissions;
479 return s;
480};
481
c8c0e54c 482wxString wxFileData::GetEntry( int num )
8b17ba72
RR
483{
484 wxString s;
485 switch (num)
486 {
487 case 0:
d3e90957 488 {
8b17ba72 489 s = m_name;
d3e90957
RR
490 }
491 break;
8b17ba72 492 case 1:
479cd5de 493 {
8b17ba72
RR
494 if (m_isDir) s = _("<DIR>");
495 else if (m_isLink) s = _("<LINK>");
496 else s = LongToString( m_size );
d3e90957
RR
497 }
498 break;
8b17ba72 499 case 2:
d3e90957 500 {
223d09f6 501 if (m_day < 10) s = wxT("0"); else s = wxT("");
8b17ba72 502 s += IntToString( m_day );
223d09f6
KB
503 s += wxT(".");
504 if (m_month < 10) s += wxT("0");
8b17ba72 505 s += IntToString( m_month );
223d09f6 506 s += wxT(".");
8b17ba72 507 s += IntToString( m_year );
d3e90957
RR
508 }
509 break;
8b17ba72 510 case 3:
d3e90957 511 {
223d09f6 512 if (m_hour < 10) s = wxT("0"); else s = wxT("");
8b17ba72 513 s += IntToString( m_hour );
223d09f6
KB
514 s += wxT(":");
515 if (m_minute < 10) s += wxT("0");
8b17ba72
RR
516 s += IntToString( m_minute );
517 break;
d3e90957 518 }
8b17ba72
RR
519 case 4:
520 s = m_permissions;
521 break;
522 default:
223d09f6 523 s = wxT("No entry");
8b17ba72
RR
524 break;
525 }
526 return s;
527}
528
529bool wxFileData::IsDir()
530{
531 return m_isDir;
532}
533
534bool wxFileData::IsExe()
535{
536 return m_isExe;
537}
538
539bool wxFileData::IsLink()
540{
541 return m_isLink;
542}
543
544long wxFileData::GetSize()
545{
546 return m_size;
547}
548
0b855868 549void wxFileData::SetNewName( const wxString &name, const wxString &fname )
8b17ba72 550{
0b855868
RR
551 m_name = name;
552 m_fileName = fname;
8b17ba72
RR
553}
554
555void wxFileData::MakeItem( wxListItem &item )
556{
557 item.m_text = m_name;
9b00bb16 558 item.ClearAttributes();
aaa37c0d
VZ
559 if (IsExe()) item.SetTextColour(*wxRED);
560 if (IsDir()) item.SetTextColour(*wxBLUE);
48fe8374 561
655cf310 562 if (IsDir())
b0c5c421 563 item.m_image = FI_FOLDER;
48fe8374 564 else if (IsExe())
b0c5c421 565 item.m_image = FI_EXECUTABLE;
655cf310 566 else if (m_name.Find(wxT('.')) != wxNOT_FOUND)
37fd1c97 567 item.m_image = g_IconsTable->GetIconID(m_name.AfterLast(wxT('.')));
655cf310 568 else
b0c5c421 569 item.m_image = FI_UNKNOWN;
655cf310 570
8b17ba72
RR
571 if (IsLink())
572 {
573 wxColour *dg = wxTheColourDatabase->FindColour( "MEDIUM GREY" );
aaa37c0d 574 item.SetTextColour(*dg);
8b17ba72
RR
575 }
576 item.m_data = (long)this;
577}
c8c0e54c 578
8b17ba72
RR
579//-----------------------------------------------------------------------------
580// wxFileCtrl
581//-----------------------------------------------------------------------------
582
583IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl,wxListCtrl);
584
585BEGIN_EVENT_TABLE(wxFileCtrl,wxListCtrl)
0b855868 586 EVT_LIST_DELETE_ITEM(-1, wxFileCtrl::OnListDeleteItem)
12c1b46a 587 EVT_LIST_DELETE_ALL_ITEMS(-1, wxFileCtrl::OnListDeleteAllItems)
0b855868 588 EVT_LIST_END_LABEL_EDIT(-1, wxFileCtrl::OnListEndLabelEdit)
8b17ba72
RR
589END_EVENT_TABLE()
590
655cf310 591
8b17ba72
RR
592wxFileCtrl::wxFileCtrl()
593{
75ec8bd4 594#if defined(__UNIX__)
223d09f6 595 m_dirName = wxT("/");
75ec8bd4 596#elif defined(__DOS__)
5e673a6a 597 m_dirName = wxT("");
75ec8bd4 598#endif
8b17ba72
RR
599 m_showHidden = FALSE;
600}
601
5e673a6a
VS
602wxFileCtrl::wxFileCtrl(wxWindow *win, wxWindowID id,
603 const wxString &dirName, const wxString &wild,
604 const wxPoint &pos, const wxSize &size,
605 long style, const wxValidator &validator,
606 const wxString &name)
607 : wxListCtrl(win, id, pos, size, style, validator, name)
8b17ba72 608{
5e673a6a
VS
609 if (! g_IconsTable)
610 g_IconsTable = new wxFileIconsTable;
37fd1c97 611 wxImageList *imageList = g_IconsTable->GetImageList();
655cf310 612
0b855868 613 SetImageList( imageList, wxIMAGE_LIST_SMALL );
c8c0e54c 614
37fd1c97
VS
615 m_goToParentControl = m_newDirControl = NULL;
616
8b17ba72 617 m_dirName = dirName;
0b855868 618 m_wild = wild;
8b17ba72 619 m_showHidden = FALSE;
8f4fcc4e 620 UpdateFiles();
8b17ba72
RR
621}
622
623void wxFileCtrl::ChangeToListMode()
624{
625 SetSingleStyle( wxLC_LIST );
8f4fcc4e 626 UpdateFiles();
8b17ba72
RR
627}
628
629void wxFileCtrl::ChangeToReportMode()
630{
631 SetSingleStyle( wxLC_REPORT );
8f4fcc4e 632 UpdateFiles();
8b17ba72
RR
633}
634
635void wxFileCtrl::ChangeToIconMode()
636{
637 SetSingleStyle( wxLC_ICON );
8f4fcc4e 638 UpdateFiles();
8b17ba72
RR
639}
640
641void wxFileCtrl::ShowHidden( bool show )
642{
643 m_showHidden = show;
8f4fcc4e 644 UpdateFiles();
8b17ba72
RR
645}
646
0b855868
RR
647long wxFileCtrl::Add( wxFileData *fd, wxListItem &item )
648{
649 long ret = -1;
650 item.m_mask = wxLIST_MASK_TEXT + wxLIST_MASK_DATA + wxLIST_MASK_IMAGE;
651 fd->MakeItem( item );
652 long my_style = GetWindowStyleFlag();
653 if (my_style & wxLC_REPORT)
654 {
75ec8bd4
VS
655#ifdef __UNIX__
656 const int noEntries = 5;
657#else
658 const int noEntries = 4;
659#endif
0b855868 660 ret = InsertItem( item );
75ec8bd4
VS
661 for (int i = 1; i < noEntries; i++)
662 SetItem( item.m_itemId, i, fd->GetEntry( i) );
0b855868
RR
663 }
664 else if (my_style & wxLC_LIST)
665 {
666 ret = InsertItem( item );
c8c0e54c 667 }
0b855868
RR
668 return ret;
669}
670
8f4fcc4e 671void wxFileCtrl::UpdateFiles()
c8c0e54c 672{
37fd1c97
VS
673 wxBusyCursor bcur; // this may take a while...
674
8b17ba72 675 long my_style = GetWindowStyleFlag();
1317fd58
RR
676 int name_col_width = 0;
677 if (my_style & wxLC_REPORT)
678 {
679 if (GetColumnCount() > 0)
680 name_col_width = GetColumnWidth( 0 );
681 }
48fe8374 682
1317fd58 683 ClearAll();
8b17ba72
RR
684 if (my_style & wxLC_REPORT)
685 {
1317fd58
RR
686 if (name_col_width < 140) name_col_width = 140;
687 InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT, name_col_width );
8b17ba72 688 InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT, 60 );
e6527f9d 689 InsertColumn( 2, _("Date"), wxLIST_FORMAT_LEFT, 65 );
8b17ba72 690 InsertColumn( 3, _("Time"), wxLIST_FORMAT_LEFT, 50 );
75ec8bd4 691#ifdef __UNIX__
8b17ba72 692 InsertColumn( 4, _("Permissions"), wxLIST_FORMAT_LEFT, 120 );
75ec8bd4 693#endif
8b17ba72
RR
694 }
695 wxFileData *fd = (wxFileData *) NULL;
696 wxListItem item;
8b17ba72
RR
697 item.m_itemId = 0;
698 item.m_col = 0;
0b855868 699
5e673a6a 700#if defined(__DOS__) || defined(__WINDOWS__)
37fd1c97 701 if ( IsTopMostDir(m_dirName) )
5e673a6a
VS
702 {
703 // Pseudo-directory with all available drives listed...
37fd1c97
VS
704 for (int drive = 1; drive <= 26; drive++)
705 {
706 wxString path;
707 path.Printf(wxT("%c:\\"), (char)(drive + 'A' - 1));
708 if ( wxIsDriveAvailable(path) )
709 {
710 path.RemoveLast();
711 fd = new wxFileData(path, path);
712 Add(fd, item);
713 item.m_itemId++;
714 }
715 }
0b855868 716 }
5e673a6a 717 else
75ec8bd4 718#endif
8b17ba72 719 {
5e673a6a
VS
720 // Real directory...
721 if ( !IsTopMostDir(m_dirName) )
8b17ba72 722 {
5e673a6a
VS
723 wxString p(wxPathOnly(m_dirName));
724#ifdef __UNIX__
725 if (p.IsEmpty()) p = wxT("/");
726#endif
727 fd = new wxFileData( wxT(".."), p );
728 Add(fd, item);
8b17ba72
RR
729 item.m_itemId++;
730 }
c8c0e54c 731
5e673a6a
VS
732 wxString dirname(m_dirName);
733#if defined(__DOS__) || defined(__WINDOWS__)
734 if (dirname.length() == 2 && dirname[1u] == wxT(':'))
735 dirname << wxT('\\');
736#endif
737 wxDir dir(dirname);
738
739 if ( dir.IsOpened() )
cae5359f 740 {
5e673a6a
VS
741 wxString dirPrefix(dirname + wxFILE_SEP_PATH);
742 int hiddenFlag = m_showHidden ? wxDIR_HIDDEN : 0;
743
744 bool cont;
745 wxString f;
746
747 // Get the directories first (not matched against wildcards):
748 cont = dir.GetFirst(&f, wxEmptyString, wxDIR_DIRS | hiddenFlag);
749 while (cont)
551adc4b 750 {
5e673a6a
VS
751 fd = new wxFileData(f, dirPrefix + f);
752 Add(fd, item);
551adc4b 753 item.m_itemId++;
5e673a6a
VS
754 cont = dir.GetNext(&f);
755 }
756
757 // Tokenize the wildcard string, so we can handle more than 1
758 // search pattern in a wildcard.
759 wxStringTokenizer tokenWild(m_wild, wxT(";"));
760 while ( tokenWild.HasMoreTokens() )
761 {
762 cont = dir.GetFirst(&f, tokenWild.GetNextToken(),
763 wxDIR_FILES | hiddenFlag);
764 while (cont)
765 {
766 fd = new wxFileData(f, dirPrefix + f);
767 Add(fd, item);
768 item.m_itemId++;
769 cont = dir.GetNext(&f);
770 }
551adc4b 771 }
cae5359f 772 }
cae5359f 773 }
c8c0e54c 774
5e673a6a 775 SortItems(ListCompare, 0);
479cd5de 776
5e673a6a 777 if ( my_style & wxLC_REPORT )
f6bcfd97 778 {
5e673a6a
VS
779 SetColumnWidth(1, wxLIST_AUTOSIZE);
780 SetColumnWidth(2, wxLIST_AUTOSIZE);
781 SetColumnWidth(3, wxLIST_AUTOSIZE);
f6bcfd97 782 }
37fd1c97
VS
783
784 // Finally, enable/disable context-dependent controls:
785 if ( m_goToParentControl )
786 m_goToParentControl->Enable(!IsTopMostDir(m_dirName));
787#if defined(__DOS__) || defined(__WINDOWS__)
788 if ( m_newDirControl )
789 m_newDirControl->Enable(!IsTopMostDir(m_dirName));
790#endif
8b17ba72
RR
791}
792
0b855868 793void wxFileCtrl::SetWild( const wxString &wild )
8b17ba72 794{
0b855868 795 m_wild = wild;
8f4fcc4e 796 UpdateFiles();
0b855868
RR
797}
798
799void wxFileCtrl::MakeDir()
800{
5e673a6a 801 wxString new_name( _("NewName") );
0b855868 802 wxString path( m_dirName );
75ec8bd4 803 path += wxFILE_SEP_PATH;
0b855868
RR
804 path += new_name;
805 if (wxFileExists(path))
8b17ba72 806 {
0b855868
RR
807 // try NewName0, NewName1 etc.
808 int i = 0;
c8c0e54c 809 do {
0b855868 810 new_name = _("NewName");
c8c0e54c 811 wxString num;
223d09f6 812 num.Printf( wxT("%d"), i );
c8c0e54c
VZ
813 new_name += num;
814
0b855868 815 path = m_dirName;
75ec8bd4 816 path += wxFILE_SEP_PATH;
0b855868 817 path += new_name;
c8c0e54c
VZ
818 i++;
819 } while (wxFileExists(path));
8b17ba72 820 }
c8c0e54c 821
0b855868 822 wxLogNull log;
c8c0e54c 823 if (!wxMkdir(path))
8b17ba72 824 {
0b855868 825 wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
c8c0e54c 826 dialog.ShowModal();
0b855868 827 return;
8b17ba72 828 }
8b17ba72 829
0b855868
RR
830 wxFileData *fd = new wxFileData( new_name, path );
831 wxListItem item;
832 item.m_itemId = 0;
833 item.m_col = 0;
13111b2a 834 long id = Add( fd, item );
c8c0e54c 835
0b855868
RR
836 if (id != -1)
837 {
838 SortItems( ListCompare, 0 );
c8c0e54c 839 id = FindItem( 0, (long)fd );
0b855868
RR
840 EnsureVisible( id );
841 EditLabel( id );
842 }
8b17ba72
RR
843}
844
845void wxFileCtrl::GoToParentDir()
846{
5e673a6a 847 if (!IsTopMostDir(m_dirName))
8b17ba72 848 {
353f41cb 849 size_t len = m_dirName.Len();
75ec8bd4 850 if (m_dirName[len-1] == wxFILE_SEP_PATH)
353f41cb 851 m_dirName.Remove( len-1, 1 );
c8c0e54c 852 wxString fname( wxFileNameFromPath(m_dirName) );
0b855868 853 m_dirName = wxPathOnly( m_dirName );
5e673a6a
VS
854#ifdef __UNIX__
855 if (m_dirName.IsEmpty())
856 m_dirName = wxT("/");
857#endif
8f4fcc4e 858 UpdateFiles();
13111b2a 859 long id = FindItem( 0, fname );
c8c0e54c
VZ
860 if (id != -1)
861 {
862 SetItemState( id, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
863 EnsureVisible( id );
864 }
8b17ba72
RR
865 }
866}
867
868void wxFileCtrl::GoToHomeDir()
869{
870 wxString s = wxGetUserHome( wxString() );
5e673a6a 871 GoToDir(s);
8b17ba72
RR
872}
873
874void wxFileCtrl::GoToDir( const wxString &dir )
875{
876 m_dirName = dir;
8f4fcc4e 877 UpdateFiles();
e6daf794
RR
878 SetItemState( 0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
879 EnsureVisible( 0 );
8b17ba72
RR
880}
881
882void wxFileCtrl::GetDir( wxString &dir )
883{
884 dir = m_dirName;
885}
886
8b17ba72
RR
887void wxFileCtrl::OnListDeleteItem( wxListEvent &event )
888{
889 wxFileData *fd = (wxFileData*)event.m_item.m_data;
890 delete fd;
891}
892
12c1b46a
RR
893void wxFileCtrl::OnListDeleteAllItems( wxListEvent &WXUNUSED(event) )
894{
895 wxListItem item;
896 item.m_mask = wxLIST_MASK_DATA;
897
898 item.m_itemId = GetNextItem( -1, wxLIST_NEXT_ALL );
92da8bde 899 while ( item.m_itemId != -1 )
12c1b46a
RR
900 {
901 GetItem( item );
902 wxFileData *fd = (wxFileData*)item.m_data;
903 delete fd;
92da8bde 904 item.m_data = 0;
12c1b46a
RR
905 SetItem( item );
906 item.m_itemId = GetNextItem( item.m_itemId, wxLIST_NEXT_ALL );
907 }
908}
909
0b855868 910void wxFileCtrl::OnListEndLabelEdit( wxListEvent &event )
8b17ba72
RR
911{
912 wxFileData *fd = (wxFileData*)event.m_item.m_data;
0b855868 913 wxASSERT( fd );
c8c0e54c 914
0b855868
RR
915 if ((event.GetLabel().IsEmpty()) ||
916 (event.GetLabel() == _(".")) ||
917 (event.GetLabel() == _("..")) ||
75ec8bd4 918 (event.GetLabel().First( wxFILE_SEP_PATH ) != wxNOT_FOUND))
8b17ba72 919 {
0b855868 920 wxMessageDialog dialog(this, _("Illegal directory name."), _("Error"), wxOK | wxICON_ERROR );
c8c0e54c 921 dialog.ShowModal();
0b855868 922 event.Veto();
c8c0e54c 923 return;
8b17ba72 924 }
c8c0e54c 925
0b855868 926 wxString new_name( wxPathOnly( fd->GetFullName() ) );
75ec8bd4 927 new_name += wxFILE_SEP_PATH;
0b855868 928 new_name += event.GetLabel();
c8c0e54c 929
0b855868 930 wxLogNull log;
c8c0e54c 931
0b855868 932 if (wxFileExists(new_name))
8b17ba72 933 {
0b855868 934 wxMessageDialog dialog(this, _("File name exists already."), _("Error"), wxOK | wxICON_ERROR );
c8c0e54c 935 dialog.ShowModal();
0b855868 936 event.Veto();
8b17ba72 937 }
c8c0e54c 938
0b855868 939 if (wxRenameFile(fd->GetFullName(),new_name))
8b17ba72 940 {
0b855868 941 fd->SetNewName( new_name, event.GetLabel() );
c8c0e54c 942 SetItemState( event.GetItem(), wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
0b855868 943 EnsureVisible( event.GetItem() );
8b17ba72
RR
944 }
945 else
946 {
0b855868 947 wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
c8c0e54c 948 dialog.ShowModal();
0b855868 949 event.Veto();
8b17ba72 950 }
8b17ba72
RR
951}
952
953//-----------------------------------------------------------------------------
954// wxFileDialog
955//-----------------------------------------------------------------------------
956
5e673a6a
VS
957#define ID_LIST_MODE (wxID_FILEDLGG )
958#define ID_REPORT_MODE (wxID_FILEDLGG + 1)
959#define ID_UP_DIR (wxID_FILEDLGG + 5)
960#define ID_PARENT_DIR (wxID_FILEDLGG + 6)
961#define ID_NEW_DIR (wxID_FILEDLGG + 7)
962#define ID_CHOICE (wxID_FILEDLGG + 8)
963#define ID_TEXT (wxID_FILEDLGG + 9)
964#define ID_LIST_CTRL (wxID_FILEDLGG + 10)
965#define ID_ACTIVATED (wxID_FILEDLGG + 11)
966#define ID_CHECK (wxID_FILEDLGG + 12)
8b17ba72
RR
967
968IMPLEMENT_DYNAMIC_CLASS(wxFileDialog,wxDialog)
969
970BEGIN_EVENT_TABLE(wxFileDialog,wxDialog)
971 EVT_BUTTON(ID_LIST_MODE, wxFileDialog::OnList)
972 EVT_BUTTON(ID_REPORT_MODE, wxFileDialog::OnReport)
8b17ba72
RR
973 EVT_BUTTON(ID_UP_DIR, wxFileDialog::OnUp)
974 EVT_BUTTON(ID_PARENT_DIR, wxFileDialog::OnHome)
0b855868 975 EVT_BUTTON(ID_NEW_DIR, wxFileDialog::OnNew)
8b17ba72
RR
976 EVT_BUTTON(wxID_OK, wxFileDialog::OnListOk)
977 EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL, wxFileDialog::OnSelected)
c8c0e54c
VZ
978 EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL, wxFileDialog::OnActivated)
979 EVT_CHOICE(ID_CHOICE,wxFileDialog::OnChoice)
980 EVT_TEXT_ENTER(ID_TEXT,wxFileDialog::OnTextEnter)
bf9e3e73 981 EVT_CHECKBOX(ID_CHECK,wxFileDialog::OnCheck)
8b17ba72
RR
982END_EVENT_TABLE()
983
eaf40b23
VS
984long wxFileDialog::s_lastViewStyle = wxLC_LIST;
985bool wxFileDialog::s_lastShowHidden = FALSE;
655cf310 986
8b17ba72
RR
987wxFileDialog::wxFileDialog(wxWindow *parent,
988 const wxString& message,
989 const wxString& defaultDir,
990 const wxString& defaultFile,
991 const wxString& wildCard,
992 long style,
993 const wxPoint& pos ) :
9c884972 994 wxDialog( parent, -1, message, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER )
8b17ba72 995{
37fd1c97 996 wxBusyCursor bcur;
c8c0e54c 997
eaf40b23
VS
998 if (wxConfig::Get(FALSE))
999 {
5e673a6a
VS
1000 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ViewStyle"),
1001 &s_lastViewStyle);
1002 wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ShowHidden"),
1003 &s_lastShowHidden);
eaf40b23
VS
1004 }
1005
8b17ba72
RR
1006 m_message = message;
1007 m_dialogStyle = style;
479cd5de 1008
655cf310 1009 if (m_dialogStyle == 0) m_dialogStyle = wxOPEN;
7941ba11 1010 if ((m_dialogStyle & wxMULTIPLE ) && !(m_dialogStyle & wxOPEN))
9b00bb16 1011 m_dialogStyle |= wxOPEN;
479cd5de 1012
8b17ba72 1013 m_dir = defaultDir;
353f41cb 1014 if ((m_dir.empty()) || (m_dir == wxT(".")))
ac2def68 1015 {
75ec8bd4 1016 m_dir = wxGetCwd();
ac2def68 1017 }
353f41cb
RR
1018
1019 size_t len = m_dir.Len();
75ec8bd4 1020 if ((len > 1) && (m_dir[len-1] == wxFILE_SEP_PATH))
353f41cb
RR
1021 m_dir.Remove( len-1, 1 );
1022
1023 m_path = m_dir;
75ec8bd4 1024 m_path += wxFILE_SEP_PATH;
8b17ba72
RR
1025 m_path += defaultFile;
1026 m_fileName = defaultFile;
1027 m_wildCard = wildCard;
1028 m_filterIndex = 0;
655cf310 1029 m_filterExtension = wxEmptyString;
c8c0e54c 1030
cae5359f 1031 // interpret wildcards
c8c0e54c 1032
cae5359f
RR
1033 if (m_wildCard.IsEmpty())
1034 m_wildCard = _("All files (*)|*");
c8c0e54c 1035
223d09f6 1036 wxStringTokenizer tokens( m_wildCard, wxT("|") );
cae5359f
RR
1037 wxString firstWild;
1038 wxString firstWildText;
1039 if (tokens.CountTokens() == 1)
1040 {
1041 firstWildText = tokens.GetNextToken();
1042 firstWild = firstWildText;
1043 }
1044 else
1045 {
223d09f6 1046 wxASSERT_MSG( tokens.CountTokens() % 2 == 0, wxT("Wrong file type descripition") );
cae5359f
RR
1047 firstWildText = tokens.GetNextToken();
1048 firstWild = tokens.GetNextToken();
1049 }
655cf310
VS
1050 if ( firstWild.Left( 2 ) == wxT("*.") )
1051 m_filterExtension = firstWild.Mid( 1 );
1052 if ( m_filterExtension == ".*" ) m_filterExtension = wxEmptyString;
cae5359f
RR
1053
1054 // layout
c8c0e54c 1055
8b17ba72 1056 wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
c8c0e54c 1057
8b17ba72 1058 wxBoxSizer *buttonsizer = new wxBoxSizer( wxHORIZONTAL );
c8c0e54c 1059
e6daf794 1060 wxBitmapButton *but;
c8c0e54c 1061
60d2cc25
VS
1062 but = new wxBitmapButton(this, ID_LIST_MODE,
1063 wxArtProvider::GetBitmap(wxART_LIST_VIEW, wxART_CMN_DIALOG));
e6daf794
RR
1064#if wxUSE_TOOLTIPS
1065 but->SetToolTip( _("View files as a list view") );
1066#endif
1067 buttonsizer->Add( but, 0, wxALL, 5 );
c8c0e54c 1068
60d2cc25
VS
1069 but = new wxBitmapButton(this, ID_REPORT_MODE,
1070 wxArtProvider::GetBitmap(wxART_REPORT_VIEW, wxART_CMN_DIALOG));
e6daf794
RR
1071#if wxUSE_TOOLTIPS
1072 but->SetToolTip( _("View files as a detailed view") );
1073#endif
1074 buttonsizer->Add( but, 0, wxALL, 5 );
c8c0e54c 1075
0b855868 1076 buttonsizer->Add( 30, 5, 1 );
e6daf794 1077
37fd1c97 1078 wxWindow *butDirUp =
60d2cc25
VS
1079 new wxBitmapButton(this, ID_UP_DIR,
1080 wxArtProvider::GetBitmap(wxART_GO_DIR_UP, wxART_CMN_DIALOG));
e6daf794 1081#if wxUSE_TOOLTIPS
37fd1c97 1082 butDirUp->SetToolTip( _("Go to parent directory") );
e6daf794 1083#endif
37fd1c97 1084 buttonsizer->Add( butDirUp, 0, wxALL, 5 );
c8c0e54c 1085
37fd1c97 1086#ifndef __DOS__ // VS: Home directory is meaningless in MS-DOS...
60d2cc25
VS
1087 but = new wxBitmapButton(this, ID_PARENT_DIR,
1088 wxArtProvider::GetBitmap(wxART_GO_HOME, wxART_CMN_DIALOG));
e6daf794
RR
1089#if wxUSE_TOOLTIPS
1090 but->SetToolTip( _("Go to home directory") );
1091#endif
1092 buttonsizer->Add( but, 0, wxALL, 5);
c8c0e54c 1093
e6daf794 1094 buttonsizer->Add( 20, 20 );
75ec8bd4 1095#endif //!__DOS__
c8c0e54c 1096
37fd1c97 1097 wxWindow *butNewDir =
60d2cc25
VS
1098 new wxBitmapButton(this, ID_NEW_DIR,
1099 wxArtProvider::GetBitmap(wxART_NEW_DIR, wxART_CMN_DIALOG));
e6daf794 1100#if wxUSE_TOOLTIPS
37fd1c97 1101 butNewDir->SetToolTip( _("Create new directory") );
e6daf794 1102#endif
37fd1c97 1103 buttonsizer->Add( butNewDir, 0, wxALL, 5 );
c8c0e54c 1104
0b855868 1105 mainsizer->Add( buttonsizer, 0, wxALL | wxEXPAND, 5 );
c8c0e54c 1106
9c884972
RR
1107 wxBoxSizer *staticsizer = new wxBoxSizer( wxHORIZONTAL );
1108 staticsizer->Add( new wxStaticText( this, -1, _("Current directory:") ), 0, wxRIGHT, 10 );
1109 m_static = new wxStaticText( this, -1, m_dir );
1110 staticsizer->Add( m_static, 1 );
1111 mainsizer->Add( staticsizer, 0, wxEXPAND | wxLEFT|wxRIGHT|wxBOTTOM, 10 );
1112
7941ba11 1113 if (m_dialogStyle & wxMULTIPLE)
479cd5de 1114 m_list = new wxFileCtrl( this, ID_LIST_CTRL, m_dir, firstWild, wxDefaultPosition,
01ec8f96 1115 wxSize(540,200), s_lastViewStyle | wxSUNKEN_BORDER );
7941ba11 1116 else
479cd5de 1117 m_list = new wxFileCtrl( this, ID_LIST_CTRL, m_dir, firstWild, wxDefaultPosition,
01ec8f96 1118 wxSize(540,200), s_lastViewStyle | wxSUNKEN_BORDER | wxLC_SINGLE_SEL );
37fd1c97
VS
1119 m_list->ShowHidden(s_lastShowHidden);
1120 m_list->SetNewDirControl(butNewDir);
1121 m_list->SetGoToParentControl(butDirUp);
1122
0b855868 1123 mainsizer->Add( m_list, 1, wxEXPAND | wxLEFT|wxRIGHT, 10 );
c8c0e54c 1124
8b17ba72 1125 wxBoxSizer *textsizer = new wxBoxSizer( wxHORIZONTAL );
cae5359f 1126 m_text = new wxTextCtrl( this, ID_TEXT, m_fileName, wxDefaultPosition, wxDefaultSize, wxPROCESS_ENTER );
0b855868 1127 textsizer->Add( m_text, 1, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
8b17ba72
RR
1128 textsizer->Add( new wxButton( this, wxID_OK, _("OK") ), 0, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
1129 mainsizer->Add( textsizer, 0, wxEXPAND );
1130
1131 wxBoxSizer *choicesizer = new wxBoxSizer( wxHORIZONTAL );
cae5359f 1132 m_choice = new wxChoice( this, ID_CHOICE );
8b17ba72 1133 choicesizer->Add( m_choice, 1, wxCENTER|wxALL, 10 );
bf9e3e73 1134 m_check = new wxCheckBox( this, ID_CHECK, _("Show hidden files") );
eaf40b23 1135 m_check->SetValue( s_lastShowHidden );
bf9e3e73 1136 choicesizer->Add( m_check, 0, wxCENTER|wxALL, 10 );
8b17ba72
RR
1137 choicesizer->Add( new wxButton( this, wxID_CANCEL, _("Cancel") ), 0, wxCENTER | wxALL, 10 );
1138 mainsizer->Add( choicesizer, 0, wxEXPAND );
c8c0e54c 1139
cae5359f
RR
1140 m_choice->Append( firstWildText, (void*) new wxString( firstWild ) );
1141 while (tokens.HasMoreTokens())
1142 {
1143 firstWildText = tokens.GetNextToken();
1144 firstWild = tokens.GetNextToken();
1145 m_choice->Append( firstWildText, (void*) new wxString( firstWild ) );
1146 }
1147 m_choice->SetSelection( 0 );
8b17ba72
RR
1148
1149 SetAutoLayout( TRUE );
1150 SetSizer( mainsizer );
c8c0e54c 1151
8b17ba72
RR
1152 mainsizer->Fit( this );
1153 mainsizer->SetSizeHints( this );
48fe8374 1154
8b17ba72 1155 Centre( wxBOTH );
ed58dbea 1156
b6fa52db 1157/*
ed58dbea
RR
1158 if (m_fileName.IsEmpty())
1159 m_list->SetFocus();
1160 else
b6fa52db 1161*/
ed58dbea 1162 m_text->SetFocus();
8b17ba72
RR
1163}
1164
cae5359f
RR
1165wxFileDialog::~wxFileDialog()
1166{
eaf40b23
VS
1167 if (wxConfig::Get(FALSE))
1168 {
5e673a6a
VS
1169 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ViewStyle"),
1170 s_lastViewStyle);
1171 wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ShowHidden"),
1172 s_lastShowHidden);
eaf40b23 1173 }
cae5359f
RR
1174}
1175
1176void wxFileDialog::OnChoice( wxCommandEvent &event )
1177{
13111b2a
VZ
1178 int index = (int)event.GetInt();
1179 wxString *str = (wxString*) m_choice->GetClientData( index );
cae5359f 1180 m_list->SetWild( *str );
13111b2a 1181 m_filterIndex = index;
655cf310
VS
1182 if ( str -> Left( 2 ) == wxT("*.") )
1183 {
1184 m_filterExtension = str -> Mid( 1 );
1185 if (m_filterExtension == ".*") m_filterExtension = wxEmptyString;
1186 }
1187 else
1188 m_filterExtension = wxEmptyString;
cae5359f
RR
1189}
1190
bf9e3e73
RR
1191void wxFileDialog::OnCheck( wxCommandEvent &event )
1192{
eaf40b23 1193 m_list->ShowHidden( (s_lastShowHidden = event.GetInt() != 0) );
bf9e3e73
RR
1194}
1195
e1811a01 1196void wxFileDialog::OnActivated( wxListEvent &event )
8b17ba72 1197{
e1811a01 1198 HandleAction( event.m_item.m_text );
8b17ba72
RR
1199}
1200
cae5359f
RR
1201void wxFileDialog::OnTextEnter( wxCommandEvent &WXUNUSED(event) )
1202{
1203 wxCommandEvent cevent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK);
1204 cevent.SetEventObject( this );
1205 GetEventHandler()->ProcessEvent( cevent );
1206}
1207
8b17ba72
RR
1208void wxFileDialog::OnSelected( wxListEvent &event )
1209{
e1811a01 1210 wxString filename( event.m_item.m_text );
223d09f6 1211 if (filename == wxT("..")) return;
479cd5de 1212
e1811a01
RR
1213 wxString dir;
1214 m_list->GetDir( dir );
5e673a6a
VS
1215 if (!IsTopMostDir(dir))
1216 dir += wxFILE_SEP_PATH;
e1811a01
RR
1217 dir += filename;
1218 if (wxDirExists(dir)) return;
479cd5de 1219
e1811a01 1220 m_text->SetValue( filename );
8b17ba72
RR
1221}
1222
e1811a01 1223void wxFileDialog::HandleAction( const wxString &fn )
8b17ba72 1224{
e1811a01 1225 wxString filename( fn );
8b17ba72
RR
1226 wxString dir;
1227 m_list->GetDir( dir );
1228 if (filename.IsEmpty()) return;
223d09f6 1229 if (filename == wxT(".")) return;
c8c0e54c 1230
223d09f6 1231 if (filename == wxT(".."))
0b855868
RR
1232 {
1233 m_list->GoToParentDir();
1234 m_list->SetFocus();
9c884972
RR
1235 m_list->GetDir( dir );
1236 m_static->SetLabel( dir );
c8c0e54c 1237 return;
0b855868
RR
1238 }
1239
75ec8bd4 1240#ifdef __UNIX__
223d09f6 1241 if (filename == wxT("~"))
ed58dbea
RR
1242 {
1243 m_list->GoToHomeDir();
1244 m_list->SetFocus();
1245 m_list->GetDir( dir );
1246 m_static->SetLabel( dir );
c8c0e54c 1247 return;
ed58dbea 1248 }
c8c0e54c 1249
f6bcfd97 1250 if (filename[0u] == wxT('~'))
ed58dbea
RR
1251 {
1252 filename.Remove( 0, 1 );
c8c0e54c 1253 wxString tmp( wxGetUserHome() );
223d09f6 1254 tmp += wxT('/');
c8c0e54c
VZ
1255 tmp += filename;
1256 filename = tmp;
ed58dbea 1257 }
75ec8bd4 1258#endif // __UNIX__
ed58dbea 1259
223d09f6
KB
1260 if ((filename.Find(wxT('*')) != wxNOT_FOUND) ||
1261 (filename.Find(wxT('?')) != wxNOT_FOUND))
cae5359f 1262 {
75ec8bd4 1263 if (filename.Find(wxFILE_SEP_PATH) != wxNOT_FOUND)
c8c0e54c
VZ
1264 {
1265 wxMessageBox(_("Illegal file specification."), _("Error"), wxOK | wxICON_ERROR );
1266 return;
1267 }
1268 m_list->SetWild( filename );
1269 return;
cae5359f
RR
1270 }
1271
5e673a6a
VS
1272 if (!IsTopMostDir(dir))
1273 dir += wxFILE_SEP_PATH;
1274 if (!wxIsAbsolutePath(filename))
ed58dbea
RR
1275 {
1276 dir += filename;
1277 filename = dir;
1278 }
c8c0e54c 1279
8b17ba72
RR
1280 if (wxDirExists(filename))
1281 {
1282 m_list->GoToDir( filename );
9c884972
RR
1283 m_list->GetDir( dir );
1284 m_static->SetLabel( dir );
c8c0e54c 1285 return;
8b17ba72 1286 }
c8c0e54c 1287
655cf310 1288
8b17ba72
RR
1289 if ( (m_dialogStyle & wxSAVE) && (m_dialogStyle & wxOVERWRITE_PROMPT) )
1290 {
655cf310 1291 if (filename.Find( wxT('.') ) == wxNOT_FOUND ||
75ec8bd4 1292 filename.AfterLast( wxT('.') ).Find( wxFILE_SEP_PATH ) != wxNOT_FOUND)
655cf310 1293 filename << m_filterExtension;
8b17ba72
RR
1294 if (wxFileExists( filename ))
1295 {
1296 wxString msg;
1297 msg.Printf( _("File '%s' already exists, do you really want to "
1298 "overwrite it?"), filename.c_str() );
1299
1300 if (wxMessageBox(msg, _("Confirm"), wxYES_NO) != wxYES)
1301 return;
1302 }
1303 }
655cf310 1304 else if ( m_dialogStyle & wxOPEN )
8b17ba72
RR
1305 {
1306 if ( !wxFileExists( filename ) )
655cf310 1307 if (filename.Find( wxT('.') ) == wxNOT_FOUND ||
75ec8bd4 1308 filename.AfterLast( wxT('.') ).Find( wxFILE_SEP_PATH ) != wxNOT_FOUND)
655cf310
VS
1309 filename << m_filterExtension;
1310
1311 if ( m_dialogStyle & wxFILE_MUST_EXIST )
8b17ba72 1312 {
655cf310
VS
1313 if ( !wxFileExists( filename ) )
1314 {
1315 wxMessageBox(_("Please choose an existing file."), _("Error"), wxOK | wxICON_ERROR );
1316 return;
1317 }
8b17ba72
RR
1318 }
1319 }
1320
1321 SetPath( filename );
479cd5de 1322
3f6638b8 1323 // change to the directory where the user went if asked
fda09b3f 1324 if ( m_dialogStyle & wxCHANGE_DIR )
3f6638b8
VZ
1325 {
1326 wxString cwd;
1327 wxSplitPath(filename, &cwd, NULL, NULL);
1328
1329 if ( cwd != wxGetWorkingDirectory() )
1330 {
1331 wxSetWorkingDirectory(cwd);
1332 }
1333 }
1334
9b7e522a
RR
1335 wxCommandEvent event;
1336 wxDialog::OnOK(event);
e1811a01
RR
1337}
1338
5e0201ea 1339void wxFileDialog::OnListOk( wxCommandEvent &WXUNUSED(event) )
e1811a01
RR
1340{
1341 HandleAction( m_text->GetValue() );
8b17ba72
RR
1342}
1343
1344void wxFileDialog::OnList( wxCommandEvent &WXUNUSED(event) )
1345{
1346 m_list->ChangeToListMode();
eaf40b23 1347 s_lastViewStyle = wxLC_LIST;
0b855868 1348 m_list->SetFocus();
8b17ba72
RR
1349}
1350
1351void wxFileDialog::OnReport( wxCommandEvent &WXUNUSED(event) )
1352{
1353 m_list->ChangeToReportMode();
eaf40b23 1354 s_lastViewStyle = wxLC_REPORT;
0b855868 1355 m_list->SetFocus();
8b17ba72
RR
1356}
1357
1358void wxFileDialog::OnUp( wxCommandEvent &WXUNUSED(event) )
1359{
1360 m_list->GoToParentDir();
0b855868 1361 m_list->SetFocus();
9c884972
RR
1362 wxString dir;
1363 m_list->GetDir( dir );
1364 m_static->SetLabel( dir );
8b17ba72
RR
1365}
1366
1367void wxFileDialog::OnHome( wxCommandEvent &WXUNUSED(event) )
1368{
1369 m_list->GoToHomeDir();
0b855868 1370 m_list->SetFocus();
9c884972
RR
1371 wxString dir;
1372 m_list->GetDir( dir );
1373 m_static->SetLabel( dir );
0b855868
RR
1374}
1375
1376void wxFileDialog::OnNew( wxCommandEvent &WXUNUSED(event) )
1377{
1378 m_list->MakeDir();
8b17ba72
RR
1379}
1380
1381void wxFileDialog::SetPath( const wxString& path )
1382{
1383 // not only set the full path but also update filename and dir
1384 m_path = path;
1385 if ( !!path )
1386 {
1387 wxString ext;
1388 wxSplitPath(path, &m_dir, &m_fileName, &ext);
c8c0e54c
VZ
1389 if (!ext.IsEmpty())
1390 {
223d09f6 1391 m_fileName += wxT(".");
8b17ba72 1392 m_fileName += ext;
c8c0e54c 1393 }
8b17ba72
RR
1394 }
1395}
c8c0e54c 1396
7941ba11
RR
1397void wxFileDialog::GetPaths( wxArrayString& paths ) const
1398{
1399 paths.Empty();
28c9c76e
RR
1400 if (m_list->GetSelectedItemCount() == 0)
1401 {
1402 paths.Add( GetPath() );
1403 return;
1404 }
479cd5de 1405
7941ba11
RR
1406 paths.Alloc( m_list->GetSelectedItemCount() );
1407
1408 wxString dir;
1409 m_list->GetDir( dir );
5e673a6a
VS
1410#ifdef __UNIX__
1411 if (dir != wxT("/"))
1412#endif
1413 dir += wxFILE_SEP_PATH;
7941ba11
RR
1414
1415 wxListItem item;
1416 item.m_mask = wxLIST_MASK_TEXT;
1417
1418 item.m_itemId = m_list->GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
92da8bde 1419 while ( item.m_itemId != -1 )
68df5777 1420 {
7941ba11
RR
1421 m_list->GetItem( item );
1422 paths.Add( dir + item.m_text );
68df5777 1423 item.m_itemId = m_list->GetNextItem( item.m_itemId,
7941ba11
RR
1424 wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
1425 }
1426}
1427
1428void wxFileDialog::GetFilenames(wxArrayString& files) const
1429{
1430 files.Empty();
28c9c76e
RR
1431 if (m_list->GetSelectedItemCount() == 0)
1432 {
1433 files.Add( GetFilename() );
1434 return;
1435 }
7941ba11
RR
1436 files.Alloc( m_list->GetSelectedItemCount() );
1437
1438 wxListItem item;
1439 item.m_mask = wxLIST_MASK_TEXT;
1440
1441 item.m_itemId = m_list->GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
92da8bde 1442 while ( item.m_itemId != -1 )
68df5777 1443 {
7941ba11
RR
1444 m_list->GetItem( item );
1445 files.Add( item.m_text );
68df5777 1446 item.m_itemId = m_list->GetNextItem( item.m_itemId,
7941ba11
RR
1447 wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
1448 }
1449}
1450
655cf310
VS
1451
1452
8b17ba72
RR
1453// ----------------------------------------------------------------------------
1454// global functions
1455// ----------------------------------------------------------------------------
1456
1457wxString
1458wxFileSelectorEx(const wxChar *message,
1459 const wxChar *default_path,
1460 const wxChar *default_filename,
5e0201ea 1461 int *WXUNUSED(indexDefaultExtension),
8b17ba72
RR
1462 const wxChar *wildcard,
1463 int flags,
1464 wxWindow *parent,
1465 int x, int y)
1466{
1467 // TODO: implement this somehow
223d09f6 1468 return wxFileSelector(message, default_path, default_filename, wxT(""),
8b17ba72
RR
1469 wildcard, flags, parent, x, y);
1470}
1471
1472wxString wxFileSelector( const wxChar *title,
1473 const wxChar *defaultDir, const wxChar *defaultFileName,
1474 const wxChar *defaultExtension, const wxChar *filter, int flags,
1475 wxWindow *parent, int x, int y )
1476{
1477 wxString filter2;
1478 if ( defaultExtension && !filter )
223d09f6 1479 filter2 = wxString(wxT("*.")) + wxString(defaultExtension) ;
8b17ba72
RR
1480 else if ( filter )
1481 filter2 = filter;
1482
1483 wxString defaultDirString;
1484 if (defaultDir)
1485 defaultDirString = defaultDir;
1486
1487 wxString defaultFilenameString;
1488 if (defaultFileName)
1489 defaultFilenameString = defaultFileName;
1490
1491 wxFileDialog fileDialog( parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y) );
1492
1493 if ( fileDialog.ShowModal() == wxID_OK )
1494 {
1495 return fileDialog.GetPath();
1496 }
1497 else
1498 {
1499 return wxEmptyString;
1500 }
1501}
1502
3f6638b8 1503wxString wxLoadFileSelector( const wxChar *what, const wxChar *ext, const wxChar *default_name, wxWindow *parent )
8b17ba72 1504{
3f6638b8 1505 wxString prompt = wxString::Format(_("Load %s file"), what);
8b17ba72 1506
3f6638b8
VZ
1507 if (*ext == wxT('.'))
1508 ext++;
8b17ba72 1509
3f6638b8 1510 wxString wild = wxString::Format(_T("*.%s"), ext);
8b17ba72 1511
3f6638b8
VZ
1512 return wxFileSelector(prompt, (const wxChar *) NULL, default_name,
1513 ext, wild, 0, parent);
8b17ba72
RR
1514}
1515
1516wxString wxSaveFileSelector(const wxChar *what, const wxChar *extension, const wxChar *default_name,
1517 wxWindow *parent )
1518{
1519 wxChar *ext = (wxChar *)extension;
1520
3f6638b8
VZ
1521 wxString prompt = wxString::Format(_("Save %s file"), what);
1522
1523 if (*ext == wxT('.'))
1524 ext++;
8b17ba72 1525
3f6638b8 1526 wxString wild = wxString::Format(_T("*.%s"), ext);
8b17ba72 1527
3f6638b8
VZ
1528 return wxFileSelector(prompt, (const wxChar *) NULL, default_name,
1529 ext, wild, 0, parent);
8b17ba72
RR
1530}
1531
655cf310
VS
1532
1533
1534
1535
1536
1537// A module to allow icons table cleanup
1538
1539class wxFileDialogGenericModule: public wxModule
1540{
1541DECLARE_DYNAMIC_CLASS(wxFileDialogGenericModule)
1542public:
1543 wxFileDialogGenericModule() {}
1544 bool OnInit() { return TRUE; }
1545 void OnExit() { if (g_IconsTable) {delete g_IconsTable; g_IconsTable = NULL;} }
1546};
1547
1548IMPLEMENT_DYNAMIC_CLASS(wxFileDialogGenericModule, wxModule)
1e6feb95
VZ
1549
1550#endif // wxUSE_FILEDLG