]> git.saurik.com Git - wxWidgets.git/blame - src/generic/dirctrlg.cpp
for built-in dialogs, there is no m_peer instance, and still we might have a Refresh...
[wxWidgets.git] / src / generic / dirctrlg.cpp
CommitLineData
51a58d8b
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: dirctrlg.cpp
3// Purpose: wxGenericDirCtrl
4// Author: Harm van der Heijden, Robert Roebling, Julian Smart
5// Modified by:
6// Created: 12/12/98
7// RCS-ID: $Id$
8// Copyright: (c) Harm van der Heijden, Robert Roebling and Julian Smart
65571936 9// Licence: wxWindows licence
51a58d8b
JS
10/////////////////////////////////////////////////////////////////////////////
11
14f355c2 12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
3fa4bd0e 13#pragma implementation "dirctrlg.h"
51a58d8b
JS
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
13de0c8c 23#if wxUSE_DIRDLG || wxUSE_FILEDLG
51a58d8b 24
06cc1fb9 25#include "wx/generic/dirctrlg.h"
e624f5ba 26#include "wx/module.h"
51a58d8b 27#include "wx/utils.h"
51a58d8b
JS
28#include "wx/button.h"
29#include "wx/layout.h"
30#include "wx/msgdlg.h"
618a5e38 31#include "wx/textctrl.h"
51a58d8b
JS
32#include "wx/textdlg.h"
33#include "wx/filefn.h"
34#include "wx/cmndata.h"
35#include "wx/gdicmn.h"
36#include "wx/intl.h"
37#include "wx/imaglist.h"
38#include "wx/icon.h"
39#include "wx/log.h"
40#include "wx/sizer.h"
41#include "wx/tokenzr.h"
42#include "wx/dir.h"
3fa4bd0e 43#include "wx/settings.h"
06cc1fb9
JS
44#include "wx/artprov.h"
45#include "wx/hash.h"
46#include "wx/mimetype.h"
47#include "wx/image.h"
48#include "wx/choice.h"
51a58d8b
JS
49
50#if wxUSE_STATLINE
51 #include "wx/statline.h"
52#endif
53
76a5e5d2
SC
54#if defined(__WXMAC__)
55 #include "wx/mac/private.h" // includes mac headers
56#endif
57
51a58d8b 58#ifdef __WXMSW__
2736b3ce 59#include <windows.h>
7328394a 60
c9ecda60
VS
61// FIXME - Mingw32 1.0 has both _getdrive() and _chdrive(). For now, let's assume
62// older releases don't, but it should be verified and the checks modified
63// accordingly.
b4da152e 64#if !defined(__GNUWIN32__) || (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
1c193821 65#if !defined(__WXWINCE__)
c9ecda60 66 #include <direct.h>
1c193821 67#endif
c9ecda60
VS
68 #include <stdlib.h>
69 #include <ctype.h>
51a58d8b
JS
70#endif
71
7328394a
JS
72#endif
73
1c53456f
VS
74#if defined(__OS2__) || defined(__DOS__)
75 #ifdef __OS2__
76 #define INCL_BASE
77 #include <os2.h>
78 #ifndef __EMX__
79 #include <direct.h>
80 #endif
81 #include <stdlib.h>
82 #include <ctype.h>
83 #endif
84 extern bool wxIsDriveAvailable(const wxString& dirName);
0d853c54 85#endif // __OS2__
ec1b28a3 86
f4ac0693 87#if defined(__WXMAC__)
2d4e4f80
GD
88# ifdef __DARWIN__
89# include "MoreFilesX.h"
90# else
91# include "MoreFilesExtras.h"
92# endif
bedaf53e
SC
93#endif
94
267a7108
JS
95#ifdef __BORLANDC__
96#include "dos.h"
97#endif
98
51a58d8b
JS
99// If compiled under Windows, this macro can cause problems
100#ifdef GetFirstChild
101#undef GetFirstChild
102#endif
103
06cc1fb9 104// ----------------------------------------------------------------------------
0d853c54 105// wxGetAvailableDrives, for WINDOWS, DOS, OS2, MAC, UNIX (returns "/")
06cc1fb9 106// ----------------------------------------------------------------------------
51a58d8b 107
06cc1fb9
JS
108size_t wxGetAvailableDrives(wxArrayString &paths, wxArrayString &names, wxArrayInt &icon_ids)
109{
0d853c54 110#if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
51a58d8b 111
4676948b
JS
112#ifdef __WXWINCE__
113 // No logical drives; return "\"
114 paths.Add(wxT("\\"));
115 names.Add(wxT("\\"));
1ab36908 116 icon_ids.Add(wxFileIconsTable::computer);
4676948b 117#elif defined(__WIN32__)
06cc1fb9
JS
118 wxChar driveBuffer[256];
119 size_t n = (size_t) GetLogicalDriveStrings(255, driveBuffer);
120 size_t i = 0;
121 while (i < n)
122 {
123 wxString path, name;
124 path.Printf(wxT("%c:\\"), driveBuffer[i]);
125 name.Printf(wxT("%c:"), driveBuffer[i]);
51a58d8b 126
999836aa 127 int imageId;
06cc1fb9
JS
128 int driveType = ::GetDriveType(path);
129 switch (driveType)
130 {
131 case DRIVE_REMOVABLE:
132 if (path == wxT("a:\\") || path == wxT("b:\\"))
133 imageId = wxFileIconsTable::floppy;
134 else
135 imageId = wxFileIconsTable::removeable;
136 break;
137 case DRIVE_CDROM:
138 imageId = wxFileIconsTable::cdrom;
139 break;
140 case DRIVE_REMOTE:
141 case DRIVE_FIXED:
142 default:
143 imageId = wxFileIconsTable::drive;
144 break;
145 }
51a58d8b 146
06cc1fb9
JS
147 paths.Add(path);
148 names.Add(name);
149 icon_ids.Add(imageId);
51a58d8b 150
06cc1fb9
JS
151 while (driveBuffer[i] != wxT('\0'))
152 i ++;
153 i ++;
154 if (driveBuffer[i] == wxT('\0'))
155 break;
156 }
0d853c54
SN
157#elif defined(__OS2__)
158 APIRET rc;
159 ULONG ulDriveNum = 0;
160 ULONG ulDriveMap = 0;
161 rc = ::DosQueryCurrentDisk(&ulDriveNum, &ulDriveMap);
ca65c044
WS
162 if ( rc == 0)
163 {
0d853c54
SN
164 size_t i = 0;
165 while (i < 26)
166 {
ca65c044
WS
167 if (ulDriveMap & ( 1 << i ))
168 {
169 wxString path, name;
170 path.Printf(wxT("%c:\\"), 'A' + i);
171 name.Printf(wxT("%c:"), 'A' + i);
172
173 int imageId;
174 if (path == wxT("A:\\") || path == wxT("B:\\"))
175 imageId = wxFileIconsTable::floppy;
176 else
177 imageId = wxFileIconsTable::drive;
178 paths.Add(path);
179 names.Add(name);
180 icon_ids.Add(imageId);
181 }
0d853c54 182 i ++;
ca65c044
WS
183 }
184 }
0d853c54 185#else // !__WIN32__, !__OS2__
06cc1fb9 186 int drive;
51a58d8b 187
06cc1fb9
JS
188 /* If we can switch to the drive, it exists. */
189 for( drive = 1; drive <= 26; drive++ )
190 {
191 wxString path, name;
192 path.Printf(wxT("%c:\\"), (char) (drive + 'a' - 1));
193 name.Printf(wxT("%c:"), (char) (drive + 'A' - 1));
51a58d8b 194
06cc1fb9
JS
195 if (wxIsDriveAvailable(path))
196 {
197 paths.Add(path);
198 names.Add(name);
199 icon_ids.Add((drive <= 2) ? wxFileIconsTable::floppy : wxFileIconsTable::drive);
200 }
201 }
202#endif // __WIN32__/!__WIN32__
203
204#elif defined(__WXMAC__)
205#ifdef __DARWIN__
206 FSRef **theVolRefs;
207 ItemCount theVolCount;
208 char thePath[FILENAME_MAX];
209
210 if (FSGetMountedVolumes(&theVolRefs, &theVolCount) == noErr) {
211 ItemCount index;
212 ::HLock( (Handle)theVolRefs ) ;
213 for (index = 0; index < theVolCount; ++index) {
214 // get the POSIX path associated with the FSRef
215 if ( FSRefMakePath(&((*theVolRefs)[index]),
216 (UInt8 *)thePath, sizeof(thePath)) != noErr ) {
217 continue;
218 }
219 // add path separator at end if necessary
1d42ad9a 220 wxString path( thePath , wxConvLocal) ;
06cc1fb9
JS
221 if (path.Last() != wxFILE_SEP_PATH) {
222 path += wxFILE_SEP_PATH;
223 }
224 // get Mac volume name for display
225 FSVolumeRefNum vRefNum ;
226 HFSUniStr255 volumeName ;
227
228 if ( FSGetVRefNum(&((*theVolRefs)[index]), &vRefNum) != noErr ) {
229 continue;
230 }
231 if ( FSGetVInfo(vRefNum, &volumeName, NULL, NULL) != noErr ) {
232 continue;
233 }
234 // get C string from Unicode HFS name
235 // see: http://developer.apple.com/carbon/tipsandtricks.html
236 CFStringRef cfstr = CFStringCreateWithCharacters( kCFAllocatorDefault,
237 volumeName.unicode,
238 volumeName.length );
ca65c044 239 // Do something with str
06cc1fb9
JS
240 char *cstr = NewPtr(CFStringGetLength(cfstr) + 1);
241 if (( cstr == NULL ) ||
242 !CFStringGetCString(cfstr, cstr, CFStringGetLength(cfstr) + 1,
243 kCFStringEncodingMacRoman))
244 {
547841f7 245 CFRelease( cfstr );
06cc1fb9
JS
246 continue;
247 }
1d42ad9a 248 wxString name( cstr , wxConvLocal );
06cc1fb9
JS
249 DisposePtr( cstr );
250 CFRelease( cfstr );
251
252 GetVolParmsInfoBuffer volParmsInfo;
253 UInt32 actualSize;
254 if ( FSGetVolParms(vRefNum, sizeof(volParmsInfo), &volParmsInfo, &actualSize) != noErr ) {
255 continue;
256 }
257
258 paths.Add(path);
259 names.Add(name);
260
261 if ( VolIsEjectable(&volParmsInfo) )
262 icon_ids.Add(wxFileIconsTable::cdrom);
263 else
264 icon_ids.Add(wxFileIconsTable::drive);
265 }
266 ::HUnlock( (Handle)theVolRefs );
267 ::DisposeHandle( (Handle)theVolRefs );
268 }
269#else // !__DARWIN__
270 FSSpec volume;
271 short index = 1;
272 while(1)
273 {
274 short actualCount = 0 ;
275 if (OnLine(&volume, 1, &actualCount, &index ) != noErr || actualCount==0)
276 {
277 break;
278 }
279
280 wxString name = wxMacFSSpec2MacFilename( &volume );
281 paths.Add(name + wxFILE_SEP_PATH);
282 names.Add(name);
283 icon_ids.Add(wxFileIconsTable::drive);
284 }
285#endif // __DARWIN__
286
287#elif defined(__UNIX__)
288 paths.Add(wxT("/"));
289 names.Add(wxT("/"));
290 icon_ids.Add(wxFileIconsTable::computer);
291#else
292 #error "Unsupported platform in wxGenericDirCtrl!"
293#endif
e9890600
WS
294 wxASSERT_MSG( (paths.GetCount() == names.GetCount()), wxT("The number of paths and their human readable names should be equal in number."));
295 wxASSERT_MSG( (paths.GetCount() == icon_ids.GetCount()), wxT("Wrong number of icons for available drives."));
06cc1fb9
JS
296 return paths.GetCount();
297}
51a58d8b 298
06cc1fb9
JS
299// ----------------------------------------------------------------------------
300// wxIsDriveAvailable
301// ----------------------------------------------------------------------------
748fcded 302
748fcded 303#if defined(__DOS__)
db5333a5 304
37fd1c97 305bool wxIsDriveAvailable(const wxString& dirName)
db5333a5 306{
6157794c
VS
307 // FIXME_MGL - this method leads to hang up under Watcom for some reason
308#ifndef __WATCOMC__
db5333a5
VS
309 if ( dirName.Len() == 3 && dirName[1u] == wxT(':') )
310 {
311 wxString dirNameLower(dirName.Lower());
ca65c044 312 // VS: always return true for removable media, since Win95 doesn't
db5333a5
VS
313 // like it when MS-DOS app accesses empty floppy drive
314 return (dirNameLower[0u] == wxT('a') ||
315 dirNameLower[0u] == wxT('b') ||
316 wxPathExists(dirNameLower));
317 }
318 else
6157794c 319#endif
ca65c044 320 return true;
db5333a5
VS
321}
322
0d853c54 323#elif defined(__WINDOWS__) || defined(__OS2__)
db5333a5 324
33ac7e6f
KB
325int setdrive(int drive)
326{
4676948b 327#ifdef __WXWINCE__
1ab36908 328 wxUnusedVar(drive);
4676948b
JS
329 return 0;
330#elif defined(__GNUWIN32__) && \
c9ecda60
VS
331 (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
332 return _chdrive(drive);
333#else
ca65c044 334 wxChar newdrive[4];
33ac7e6f 335
ca65c044
WS
336 if (drive < 1 || drive > 31)
337 return -1;
338 newdrive[0] = (wxChar)(wxT('A') + drive - 1);
339 newdrive[1] = wxT(':');
0d853c54 340#ifdef __OS2__
ca65c044
WS
341 newdrive[2] = wxT('\\');
342 newdrive[3] = wxT('\0');
0d853c54 343#else
ca65c044 344 newdrive[2] = wxT('\0');
0d853c54 345#endif
50c76ce1 346#if defined(__WXMSW__)
ca65c044 347 if (::SetCurrentDirectory(newdrive))
50c76ce1
DW
348#else
349 // VA doesn't know what LPSTR is and has its own set
ca65c044 350 if (!DosSetCurrentDir((PSZ)newdrive))
50c76ce1 351#endif
ca65c044
WS
352 return 0;
353 else
354 return -1;
c9ecda60 355#endif // !GNUWIN32
33ac7e6f
KB
356}
357
37fd1c97 358bool wxIsDriveAvailable(const wxString& dirName)
ad9cd15c 359{
4676948b 360#ifdef __WXWINCE__
1ab36908 361 wxUnusedVar(dirName);
ca65c044 362 return false;
4676948b 363#else
ad9cd15c 364#ifdef __WIN32__
33fed835 365 UINT errorMode = SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
ad9cd15c 366#endif
ca65c044 367 bool success = true;
ad9cd15c
JS
368
369 // Check if this is a root directory and if so,
2d4e4f80 370 // whether the drive is available.
33fed835 371 if (dirName.Len() == 3 && dirName[(size_t)1] == wxT(':'))
ad9cd15c 372 {
33fed835 373 wxString dirNameLower(dirName.Lower());
b4da152e 374#if defined(__GNUWIN32__) && !(defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)
7328394a
JS
375 success = wxPathExists(dirNameLower);
376#else
0d853c54
SN
377 #if defined(__OS2__)
378 // Avoid changing to drive since no media may be inserted.
379 if (dirNameLower[(size_t)0] == 'a' || dirNameLower[(size_t)0] == 'b')
380 return success;
381 #endif
ad9cd15c 382 int currentDrive = _getdrive();
33fed835 383 int thisDrive = (int) (dirNameLower[(size_t)0] - 'a' + 1) ;
33ac7e6f
KB
384 int err = setdrive( thisDrive ) ;
385 setdrive( currentDrive );
ad9cd15c
JS
386
387 if (err == -1)
388 {
ca65c044 389 success = false;
ad9cd15c 390 }
7328394a 391#endif
ad9cd15c
JS
392 }
393#ifdef __WIN32__
33fed835 394 (void) SetErrorMode(errorMode);
ad9cd15c
JS
395#endif
396
33fed835 397 return success;
4676948b 398#endif
ad9cd15c 399}
0d853c54 400#endif // __WINDOWS__ || __OS2__
ad9cd15c 401
13de0c8c
WS
402#endif // wxUSE_DIRDLG || wxUSE_FILEDLG
403
404
405
406#if wxUSE_DIRDLG
b600ed13 407
57e26a09
JS
408// Function which is called by quick sort. We want to override the default wxArrayString behaviour,
409// and sort regardless of case.
eae4425d 410static int wxCMPFUNC_CONV wxDirCtrlStringCompareFunction(wxString* strFirst, wxString* strSecond)
57e26a09 411{
57e26a09
JS
412 return strFirst->CmpNoCase(*strSecond);
413}
414
51a58d8b 415//-----------------------------------------------------------------------------
748fcded 416// wxDirItemData
51a58d8b
JS
417//-----------------------------------------------------------------------------
418
748fcded
VS
419wxDirItemData::wxDirItemData(const wxString& path, const wxString& name,
420 bool isDir)
51a58d8b
JS
421{
422 m_path = path;
423 m_name = name;
424 /* Insert logic to detect hidden files here
425 * In UnixLand we just check whether the first char is a dot
426 * For FileNameFromPath read LastDirNameInThisPath ;-) */
427 // m_isHidden = (bool)(wxFileNameFromPath(*m_path)[0] == '.');
ca65c044
WS
428 m_isHidden = false;
429 m_isExpanded = false;
51a58d8b
JS
430 m_isDir = isDir;
431}
432
748fcded 433wxDirItemData::~wxDirItemData()
51a58d8b
JS
434{
435}
436
748fcded 437void wxDirItemData::SetNewDirName(const wxString& path)
51a58d8b
JS
438{
439 m_path = path;
748fcded
VS
440 m_name = wxFileNameFromPath(path);
441}
442
443bool wxDirItemData::HasSubDirs() const
444{
445 if (m_path.IsEmpty())
ca65c044 446 return false;
748fcded
VS
447
448 wxDir dir;
449 {
450 wxLogNull nolog;
451 if ( !dir.Open(m_path) )
ca65c044 452 return false;
748fcded
VS
453 }
454
455 return dir.HasSubDirs();
456}
457
574c939e 458bool wxDirItemData::HasFiles(const wxString& WXUNUSED(spec)) const
748fcded
VS
459{
460 if (m_path.IsEmpty())
ca65c044 461 return false;
748fcded
VS
462
463 wxDir dir;
464 {
465 wxLogNull nolog;
466 if ( !dir.Open(m_path) )
ca65c044 467 return false;
748fcded
VS
468 }
469
470 return dir.HasFiles();
51a58d8b
JS
471}
472
51a58d8b
JS
473//-----------------------------------------------------------------------------
474// wxGenericDirCtrl
475//-----------------------------------------------------------------------------
476
51a58d8b 477
b0a877ec 478#if wxUSE_EXTENDED_RTTI
73c36334
JS
479WX_DEFINE_FLAGS( wxGenericDirCtrlStyle )
480
3ff066a4 481wxBEGIN_FLAGS( wxGenericDirCtrlStyle )
73c36334
JS
482 // new style border flags, we put them first to
483 // use them for streaming out
3ff066a4
SC
484 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
485 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
486 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
487 wxFLAGS_MEMBER(wxBORDER_RAISED)
488 wxFLAGS_MEMBER(wxBORDER_STATIC)
489 wxFLAGS_MEMBER(wxBORDER_NONE)
ca65c044 490
73c36334 491 // old style border flags
3ff066a4
SC
492 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
493 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
494 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
495 wxFLAGS_MEMBER(wxRAISED_BORDER)
496 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 497 wxFLAGS_MEMBER(wxBORDER)
73c36334
JS
498
499 // standard window styles
3ff066a4
SC
500 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
501 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
502 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
503 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 504 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
505 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
506 wxFLAGS_MEMBER(wxVSCROLL)
507 wxFLAGS_MEMBER(wxHSCROLL)
508
509 wxFLAGS_MEMBER(wxDIRCTRL_DIR_ONLY)
510 wxFLAGS_MEMBER(wxDIRCTRL_3D_INTERNAL)
511 wxFLAGS_MEMBER(wxDIRCTRL_SELECT_FIRST)
512 wxFLAGS_MEMBER(wxDIRCTRL_SHOW_FILTERS)
513
514wxEND_FLAGS( wxGenericDirCtrlStyle )
73c36334 515
b0a877ec
SC
516IMPLEMENT_DYNAMIC_CLASS_XTI(wxGenericDirCtrl, wxControl,"wx/dirctrl.h")
517
3ff066a4
SC
518wxBEGIN_PROPERTIES_TABLE(wxGenericDirCtrl)
519 wxHIDE_PROPERTY( Children )
ca65c044
WS
520 wxPROPERTY( DefaultPath , wxString , SetDefaultPath , GetDefaultPath , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
521 wxPROPERTY( Filter , wxString , SetFilter , GetFilter , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
522 wxPROPERTY( DefaultFilter , int , SetFilterIndex, GetFilterIndex, EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
af498247 523 wxPROPERTY_FLAGS( WindowStyle, wxGenericDirCtrlStyle, long, SetWindowStyleFlag, GetWindowStyleFlag, EMPTY_MACROVALUE , 0, wxT("Helpstring"), wxT("group") )
3ff066a4 524wxEND_PROPERTIES_TABLE()
b0a877ec 525
3ff066a4
SC
526wxBEGIN_HANDLERS_TABLE(wxGenericDirCtrl)
527wxEND_HANDLERS_TABLE()
b0a877ec 528
ca65c044
WS
529wxCONSTRUCTOR_8( wxGenericDirCtrl , wxWindow* , Parent , wxWindowID , Id , wxString , DefaultPath ,
530 wxPoint , Position , wxSize , Size , long , WindowStyle , wxString , Filter , int , DefaultFilter )
b0a877ec
SC
531#else
532IMPLEMENT_DYNAMIC_CLASS(wxGenericDirCtrl, wxControl)
533#endif
066f1b7a 534
51a58d8b 535BEGIN_EVENT_TABLE(wxGenericDirCtrl, wxControl)
6b707fc3
JS
536 EVT_TREE_ITEM_EXPANDING (wxID_TREECTRL, wxGenericDirCtrl::OnExpandItem)
537 EVT_TREE_ITEM_COLLAPSED (wxID_TREECTRL, wxGenericDirCtrl::OnCollapseItem)
538 EVT_TREE_BEGIN_LABEL_EDIT (wxID_TREECTRL, wxGenericDirCtrl::OnBeginEditItem)
539 EVT_TREE_END_LABEL_EDIT (wxID_TREECTRL, wxGenericDirCtrl::OnEndEditItem)
51a58d8b
JS
540 EVT_SIZE (wxGenericDirCtrl::OnSize)
541END_EVENT_TABLE()
542
543wxGenericDirCtrl::wxGenericDirCtrl(void)
544{
545 Init();
546}
547
548bool wxGenericDirCtrl::Create(wxWindow *parent,
748fcded
VS
549 const wxWindowID id,
550 const wxString& dir,
551 const wxPoint& pos,
552 const wxSize& size,
553 long style,
554 const wxString& filter,
555 int defaultFilter,
556 const wxString& name)
51a58d8b
JS
557{
558 if (!wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name))
ca65c044 559 return false;
51a58d8b 560
db5333a5 561 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
51a58d8b
JS
562
563 Init();
564
08887820 565 long treeStyle = wxTR_HAS_BUTTONS | wxTR_HIDE_ROOT;
fd775aae 566
dabd1377 567 if (style & wxDIRCTRL_EDIT_LABELS)
fd775aae
JS
568 treeStyle |= wxTR_EDIT_LABELS;
569
51a58d8b
JS
570 if ((style & wxDIRCTRL_3D_INTERNAL) == 0)
571 treeStyle |= wxNO_BORDER;
27c73976
JS
572 else
573 treeStyle |= wxBORDER_SUNKEN;
51a58d8b
JS
574
575 long filterStyle = 0;
576 if ((style & wxDIRCTRL_3D_INTERNAL) == 0)
577 filterStyle |= wxNO_BORDER;
27c73976
JS
578 else
579 filterStyle |= wxBORDER_SUNKEN;
51a58d8b 580
cdfd8b1e
VS
581 m_treeCtrl = new wxTreeCtrl(this, wxID_TREECTRL,
582 wxPoint(0,0), GetClientSize(), treeStyle);
51a58d8b
JS
583
584 if (!filter.IsEmpty() && (style & wxDIRCTRL_SHOW_FILTERS))
585 m_filterListCtrl = new wxDirFilterListCtrl(this, wxID_FILTERLISTCTRL, wxDefaultPosition, wxDefaultSize, filterStyle);
586
587 m_defaultPath = dir;
588 m_filter = filter;
589
590 SetFilterIndex(defaultFilter);
591
592 if (m_filterListCtrl)
593 m_filterListCtrl->FillFilterList(filter, defaultFilter);
594
06cc1fb9 595 m_treeCtrl->SetImageList(wxTheFileIconsTable->GetSmallImageList());
51a58d8b 596
ca65c044
WS
597 m_showHidden = false;
598 wxDirItemData* rootData = new wxDirItemData(wxEmptyString, wxEmptyString, true);
51a58d8b
JS
599
600 wxString rootName;
601
0d853c54 602#if defined(__WINDOWS__) || defined(__OS2__) || defined(__DOS__)
51a58d8b
JS
603 rootName = _("Computer");
604#else
605 rootName = _("Sections");
606#endif
607
608 m_rootId = m_treeCtrl->AddRoot( rootName, 3, -1, rootData);
609 m_treeCtrl->SetItemHasChildren(m_rootId);
08887820 610 ExpandDir(m_rootId); // automatically expand first level
51a58d8b
JS
611
612 // Expand and select the default path
613 if (!m_defaultPath.IsEmpty())
614 ExpandPath(m_defaultPath);
615
19d8dd12 616 SetBestSize(size);
51a58d8b
JS
617 DoResize();
618
ca65c044 619 return true;
51a58d8b
JS
620}
621
622wxGenericDirCtrl::~wxGenericDirCtrl()
623{
51a58d8b
JS
624}
625
626void wxGenericDirCtrl::Init()
627{
ca65c044 628 m_showHidden = false;
51a58d8b
JS
629 m_currentFilter = 0;
630 m_currentFilterStr = wxEmptyString; // Default: any file
631 m_treeCtrl = NULL;
632 m_filterListCtrl = NULL;
633}
634
42dcacf0
RR
635void wxGenericDirCtrl::ShowHidden( bool show )
636{
637 m_showHidden = show;
574c939e 638
3b423cdd 639 wxString path = GetPath();
08887820 640 ReCreateTree();
3b423cdd 641 SetPath(path);
42dcacf0
RR
642}
643
22328fa4
JS
644const wxTreeItemId
645wxGenericDirCtrl::AddSection(const wxString& path, const wxString& name, int imageId)
51a58d8b 646{
ca65c044 647 wxDirItemData *dir_item = new wxDirItemData(path,name,true);
51a58d8b 648
22328fa4 649 wxTreeItemId id = AppendItem( m_rootId, name, imageId, -1, dir_item);
4f5c180e 650
06cc1fb9 651 m_treeCtrl->SetItemHasChildren(id);
22328fa4
JS
652
653 return id;
06cc1fb9 654}
51a58d8b 655
06cc1fb9
JS
656void wxGenericDirCtrl::SetupSections()
657{
658 wxArrayString paths, names;
659 wxArrayInt icons;
2d4e4f80 660
06cc1fb9 661 size_t n, count = wxGetAvailableDrives(paths, names, icons);
4f5c180e 662
06cc1fb9
JS
663 for (n = 0; n < count; n++)
664 {
665 AddSection(paths[n], names[n], icons[n]);
bedaf53e 666 }
51a58d8b
JS
667}
668
669void wxGenericDirCtrl::OnBeginEditItem(wxTreeEvent &event)
670{
671 // don't rename the main entry "Sections"
672 if (event.GetItem() == m_rootId)
673 {
674 event.Veto();
675 return;
676 }
677
678 // don't rename the individual sections
99006e44 679 if (m_treeCtrl->GetItemParent( event.GetItem() ) == m_rootId)
51a58d8b
JS
680 {
681 event.Veto();
682 return;
683 }
684}
685
686void wxGenericDirCtrl::OnEndEditItem(wxTreeEvent &event)
687{
688 if ((event.GetLabel().IsEmpty()) ||
689 (event.GetLabel() == _(".")) ||
690 (event.GetLabel() == _("..")) ||
06cc1fb9
JS
691 (event.GetLabel().Find(wxT('/')) != wxNOT_FOUND) ||
692 (event.GetLabel().Find(wxT('\\')) != wxNOT_FOUND) ||
693 (event.GetLabel().Find(wxT('|')) != wxNOT_FOUND))
51a58d8b
JS
694 {
695 wxMessageDialog dialog(this, _("Illegal directory name."), _("Error"), wxOK | wxICON_ERROR );
696 dialog.ShowModal();
697 event.Veto();
698 return;
699 }
700
701 wxTreeItemId id = event.GetItem();
748fcded 702 wxDirItemData *data = (wxDirItemData*)m_treeCtrl->GetItemData( id );
51a58d8b
JS
703 wxASSERT( data );
704
705 wxString new_name( wxPathOnly( data->m_path ) );
ad9cd15c 706 new_name += wxString(wxFILE_SEP_PATH);
51a58d8b
JS
707 new_name += event.GetLabel();
708
709 wxLogNull log;
710
711 if (wxFileExists(new_name))
712 {
713 wxMessageDialog dialog(this, _("File name exists already."), _("Error"), wxOK | wxICON_ERROR );
714 dialog.ShowModal();
715 event.Veto();
716 }
717
718 if (wxRenameFile(data->m_path,new_name))
719 {
720 data->SetNewDirName( new_name );
721 }
722 else
723 {
724 wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
725 dialog.ShowModal();
726 event.Veto();
727 }
728}
729
730void wxGenericDirCtrl::OnExpandItem(wxTreeEvent &event)
731{
732 wxTreeItemId parentId = event.GetItem();
733
748fcded
VS
734 // VS: this is needed because the event handler is called from wxTreeCtrl
735 // ctor when wxTR_HIDE_ROOT was specified
4ded51f2
CE
736
737 if (!m_rootId.IsOk())
738
748fcded
VS
739 m_rootId = m_treeCtrl->GetRootItem();
740
51a58d8b
JS
741 ExpandDir(parentId);
742}
743
744void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent &event )
745{
08887820
VS
746 CollapseDir(event.GetItem());
747}
748
749void wxGenericDirCtrl::CollapseDir(wxTreeItemId parentId)
750{
751 wxTreeItemId child;
51a58d8b 752
08887820 753 wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(parentId);
51a58d8b
JS
754 if (!data->m_isExpanded)
755 return;
756
ca65c044 757 data->m_isExpanded = false;
2d75caaa 758 wxTreeItemIdValue cookie;
51a58d8b
JS
759 /* Workaround because DeleteChildren has disapeared (why?) and
760 * CollapseAndReset doesn't work as advertised (deletes parent too) */
08887820 761 child = m_treeCtrl->GetFirstChild(parentId, cookie);
51a58d8b
JS
762 while (child.IsOk())
763 {
764 m_treeCtrl->Delete(child);
765 /* Not GetNextChild below, because the cookie mechanism can't
766 * handle disappearing children! */
08887820 767 child = m_treeCtrl->GetFirstChild(parentId, cookie);
51a58d8b
JS
768 }
769}
770
771void wxGenericDirCtrl::ExpandDir(wxTreeItemId parentId)
772{
748fcded 773 wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(parentId);
51a58d8b
JS
774
775 if (data->m_isExpanded)
776 return;
777
ca65c044 778 data->m_isExpanded = true;
51a58d8b 779
748fcded 780 if (parentId == m_treeCtrl->GetRootItem())
51a58d8b
JS
781 {
782 SetupSections();
783 return;
784 }
785
786 wxASSERT(data);
787
788 wxString search,path,filename;
789
790 wxString dirName(data->m_path);
791
0d853c54 792#if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
51a58d8b
JS
793 // Check if this is a root directory and if so,
794 // whether the drive is avaiable.
33fed835
MB
795 if (!wxIsDriveAvailable(dirName))
796 {
ca65c044 797 data->m_isExpanded = false;
7328394a
JS
798 //wxMessageBox(wxT("Sorry, this drive is not available."));
799 return;
33fed835 800 }
51a58d8b
JS
801#endif
802
803 // This may take a longish time. Go to busy cursor
804 wxBusyCursor busy;
805
0d853c54 806#if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
51a58d8b
JS
807 if (dirName.Last() == ':')
808 dirName += wxString(wxFILE_SEP_PATH);
809#endif
810
811 wxArrayString dirs;
812 wxArrayString filenames;
813
814 wxDir d;
815 wxString eachFilename;
816
f9c165b1 817 wxLogNull log;
51a58d8b
JS
818 d.Open(dirName);
819
820 if (d.IsOpened())
821 {
42dcacf0
RR
822 int style = wxDIR_DIRS;
823 if (m_showHidden) style |= wxDIR_HIDDEN;
824 if (d.GetFirst(& eachFilename, wxEmptyString, style))
51a58d8b
JS
825 {
826 do
827 {
828 if ((eachFilename != wxT(".")) && (eachFilename != wxT("..")))
829 {
830 dirs.Add(eachFilename);
831 }
832 }
2b0a7c09 833 while (d.GetNext(&eachFilename));
51a58d8b
JS
834 }
835 }
222ed1d6 836 dirs.Sort(wxDirCtrlStringCompareFunction);
51a58d8b
JS
837
838 // Now do the filenames -- but only if we're allowed to
839 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY) == 0)
840 {
f9c165b1
JS
841 wxLogNull log;
842
51a58d8b 843 d.Open(dirName);
ec1b28a3 844
51a58d8b
JS
845 if (d.IsOpened())
846 {
2b0a7c09
RN
847 int style = wxDIR_FILES;
848 if (m_showHidden) style |= wxDIR_HIDDEN;
3da4e4bd
JS
849 // Process each filter (ex: "JPEG Files (*.jpg;*.jpeg)|*.jpg;*.jpeg")
850 wxStringTokenizer strTok;
851 wxString curFilter;
852 strTok.SetString(m_currentFilterStr,wxT(";"));
853 while(strTok.HasMoreTokens())
51a58d8b 854 {
3da4e4bd
JS
855 curFilter = strTok.GetNextToken();
856 if (d.GetFirst(& eachFilename, m_currentFilterStr, style))
51a58d8b 857 {
3da4e4bd 858 do
51a58d8b 859 {
3da4e4bd
JS
860 if ((eachFilename != wxT(".")) && (eachFilename != wxT("..")))
861 {
862 filenames.Add(eachFilename);
863 }
51a58d8b 864 }
3da4e4bd 865 while (d.GetNext(& eachFilename));
51a58d8b 866 }
51a58d8b
JS
867 }
868 }
222ed1d6 869 filenames.Sort(wxDirCtrlStringCompareFunction);
51a58d8b
JS
870 }
871
872 // Add the sorted dirs
873 size_t i;
874 for (i = 0; i < dirs.Count(); i++)
875 {
876 wxString eachFilename(dirs[i]);
877 path = dirName;
083f7497 878 if (!wxEndsWithPathSeparator(path))
51a58d8b
JS
879 path += wxString(wxFILE_SEP_PATH);
880 path += eachFilename;
881
ca65c044 882 wxDirItemData *dir_item = new wxDirItemData(path,eachFilename,true);
22328fa4 883 wxTreeItemId id = AppendItem( parentId, eachFilename,
06cc1fb9
JS
884 wxFileIconsTable::folder, -1, dir_item);
885 m_treeCtrl->SetItemImage( id, wxFileIconsTable::folder_open,
886 wxTreeItemIcon_Expanded );
ec1b28a3 887
51a58d8b 888 // Has this got any children? If so, make it expandable.
748fcded
VS
889 // (There are two situations when a dir has children: either it
890 // has subdirectories or it contains files that weren't filtered
891 // out. The latter only applies to dirctrl with files.)
892 if ( dir_item->HasSubDirs() ||
893 (((GetWindowStyle() & wxDIRCTRL_DIR_ONLY) == 0) &&
894 dir_item->HasFiles(m_currentFilterStr)) )
51a58d8b 895 {
748fcded 896 m_treeCtrl->SetItemHasChildren(id);
51a58d8b 897 }
51a58d8b
JS
898 }
899
900 // Add the sorted filenames
901 if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY) == 0)
902 {
903 for (i = 0; i < filenames.Count(); i++)
904 {
905 wxString eachFilename(filenames[i]);
906 path = dirName;
083f7497 907 if (!wxEndsWithPathSeparator(path))
51a58d8b
JS
908 path += wxString(wxFILE_SEP_PATH);
909 path += eachFilename;
910 //path = dirName + wxString(wxT("/")) + eachFilename;
ca65c044 911 wxDirItemData *dir_item = new wxDirItemData(path,eachFilename,false);
06cc1fb9
JS
912 int image_id = wxFileIconsTable::file;
913 if (eachFilename.Find(wxT('.')) != wxNOT_FOUND)
914 image_id = wxTheFileIconsTable->GetIconID(eachFilename.AfterLast(wxT('.')));
22328fa4 915 (void) AppendItem( parentId, eachFilename, image_id, -1, dir_item);
51a58d8b
JS
916 }
917 }
918}
919
08887820
VS
920void wxGenericDirCtrl::ReCreateTree()
921{
922 CollapseDir(m_treeCtrl->GetRootItem());
923 ExpandDir(m_treeCtrl->GetRootItem());
924}
925
51a58d8b
JS
926// Find the child that matches the first part of 'path'.
927// E.g. if a child path is "/usr" and 'path' is "/usr/include"
928// then the child for /usr is returned.
929wxTreeItemId wxGenericDirCtrl::FindChild(wxTreeItemId parentId, const wxString& path, bool& done)
930{
931 wxString path2(path);
ec1b28a3 932
51a58d8b
JS
933 // Make sure all separators are as per the current platform
934 path2.Replace(wxT("\\"), wxString(wxFILE_SEP_PATH));
935 path2.Replace(wxT("/"), wxString(wxFILE_SEP_PATH));
ec1b28a3 936
51a58d8b
JS
937 // Append a separator to foil bogus substring matching
938 path2 += wxString(wxFILE_SEP_PATH);
ec1b28a3
DW
939
940 // In MSW or PM, case is not significant
0d853c54 941#if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
51a58d8b
JS
942 path2.MakeLower();
943#endif
ec1b28a3 944
2d75caaa 945 wxTreeItemIdValue cookie;
51a58d8b 946 wxTreeItemId childId = m_treeCtrl->GetFirstChild(parentId, cookie);
53ccf1c0 947 while (childId.IsOk())
51a58d8b 948 {
748fcded 949 wxDirItemData* data = (wxDirItemData*) m_treeCtrl->GetItemData(childId);
ec1b28a3 950
748fcded 951 if (data && !data->m_path.IsEmpty())
51a58d8b
JS
952 {
953 wxString childPath(data->m_path);
083f7497 954 if (!wxEndsWithPathSeparator(childPath))
51a58d8b 955 childPath += wxString(wxFILE_SEP_PATH);
ec1b28a3
DW
956
957 // In MSW and PM, case is not significant
0d853c54 958#if defined(__WINDOWS__) || defined(__DOS__) || defined(__OS2__)
51a58d8b
JS
959 childPath.MakeLower();
960#endif
ec1b28a3 961
51a58d8b
JS
962 if (childPath.Len() <= path2.Len())
963 {
964 wxString path3 = path2.Mid(0, childPath.Len());
965 if (childPath == path3)
966 {
967 if (path3.Len() == path2.Len())
ca65c044 968 done = true;
51a58d8b 969 else
ca65c044 970 done = false;
51a58d8b
JS
971 return childId;
972 }
973 }
974 }
ec1b28a3 975
748fcded 976 childId = m_treeCtrl->GetNextChild(parentId, cookie);
51a58d8b 977 }
3fa4bd0e
VS
978 wxTreeItemId invalid;
979 return invalid;
51a58d8b
JS
980}
981
982// Try to expand as much of the given path as possible,
983// and select the given tree item.
984bool wxGenericDirCtrl::ExpandPath(const wxString& path)
985{
ca65c044 986 bool done = false;
51a58d8b
JS
987 wxTreeItemId id = FindChild(m_rootId, path, done);
988 wxTreeItemId lastId = id; // The last non-zero id
237387ad 989 while (id.IsOk() && !done)
51a58d8b
JS
990 {
991 ExpandDir(id);
992
993 id = FindChild(id, path, done);
53ccf1c0 994 if (id.IsOk())
51a58d8b
JS
995 lastId = id;
996 }
53ccf1c0 997 if (lastId.IsOk())
51a58d8b 998 {
748fcded 999 wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(lastId);
51a58d8b
JS
1000 if (data->m_isDir)
1001 {
1002 m_treeCtrl->Expand(lastId);
1003 }
1004 if ((GetWindowStyle() & wxDIRCTRL_SELECT_FIRST) && data->m_isDir)
1005 {
1006 // Find the first file in this directory
2d75caaa 1007 wxTreeItemIdValue cookie;
51a58d8b 1008 wxTreeItemId childId = m_treeCtrl->GetFirstChild(lastId, cookie);
ca65c044 1009 bool selectedChild = false;
53ccf1c0 1010 while (childId.IsOk())
51a58d8b 1011 {
748fcded 1012 wxDirItemData* data = (wxDirItemData*) m_treeCtrl->GetItemData(childId);
ec1b28a3 1013
ca65c044 1014 if (data && data->m_path != wxEmptyString && !data->m_isDir)
51a58d8b
JS
1015 {
1016 m_treeCtrl->SelectItem(childId);
1017 m_treeCtrl->EnsureVisible(childId);
ca65c044 1018 selectedChild = true;
51a58d8b
JS
1019 break;
1020 }
1021 childId = m_treeCtrl->GetNextChild(lastId, cookie);
1022 }
1023 if (!selectedChild)
1024 {
1025 m_treeCtrl->SelectItem(lastId);
1026 m_treeCtrl->EnsureVisible(lastId);
1027 }
1028 }
1029 else
1030 {
1031 m_treeCtrl->SelectItem(lastId);
1032 m_treeCtrl->EnsureVisible(lastId);
1033 }
1034
ca65c044 1035 return true;
51a58d8b
JS
1036 }
1037 else
ca65c044 1038 return false;
51a58d8b
JS
1039}
1040
1041wxString wxGenericDirCtrl::GetPath() const
1042{
1043 wxTreeItemId id = m_treeCtrl->GetSelection();
1044 if (id)
1045 {
748fcded 1046 wxDirItemData* data = (wxDirItemData*) m_treeCtrl->GetItemData(id);
51a58d8b
JS
1047 return data->m_path;
1048 }
1049 else
1050 return wxEmptyString;
1051}
1052
1053wxString wxGenericDirCtrl::GetFilePath() const
1054{
1055 wxTreeItemId id = m_treeCtrl->GetSelection();
1056 if (id)
1057 {
748fcded 1058 wxDirItemData* data = (wxDirItemData*) m_treeCtrl->GetItemData(id);
51a58d8b
JS
1059 if (data->m_isDir)
1060 return wxEmptyString;
1061 else
1062 return data->m_path;
1063 }
1064 else
1065 return wxEmptyString;
1066}
1067
1068void wxGenericDirCtrl::SetPath(const wxString& path)
1069{
1070 m_defaultPath = path;
1071 if (m_rootId)
1072 ExpandPath(path);
1073}
1074
1075// Not used
1076#if 0
1077void wxGenericDirCtrl::FindChildFiles(wxTreeItemId id, int dirFlags, wxArrayString& filenames)
1078{
748fcded 1079 wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(id);
51a58d8b
JS
1080
1081 // This may take a longish time. Go to busy cursor
1082 wxBusyCursor busy;
1083
1084 wxASSERT(data);
1085
1086 wxString search,path,filename;
1087
1088 wxString dirName(data->m_path);
1089
0d853c54 1090#if defined(__WXMSW__) || defined(__OS2__)
51a58d8b
JS
1091 if (dirName.Last() == ':')
1092 dirName += wxString(wxFILE_SEP_PATH);
1093#endif
1094
1095 wxDir d;
1096 wxString eachFilename;
1097
f9c165b1 1098 wxLogNull log;
51a58d8b
JS
1099 d.Open(dirName);
1100
1101 if (d.IsOpened())
1102 {
1103 if (d.GetFirst(& eachFilename, m_currentFilterStr, dirFlags))
1104 {
1105 do
1106 {
1107 if ((eachFilename != wxT(".")) && (eachFilename != wxT("..")))
1108 {
1109 filenames.Add(eachFilename);
1110 }
1111 }
1112 while (d.GetNext(& eachFilename)) ;
1113 }
1114 }
1115}
1116#endif
1117
1118void wxGenericDirCtrl::SetFilterIndex(int n)
1119{
1120 m_currentFilter = n;
1121
1122 wxString f, d;
1123 if (ExtractWildcard(m_filter, n, f, d))
1124 m_currentFilterStr = f;
1125 else
1126 m_currentFilterStr = wxT("*.*");
1127}
1128
1129void wxGenericDirCtrl::SetFilter(const wxString& filter)
1130{
1131 m_filter = filter;
1132
1133 wxString f, d;
1134 if (ExtractWildcard(m_filter, m_currentFilter, f, d))
1135 m_currentFilterStr = f;
1136 else
1137 m_currentFilterStr = wxT("*.*");
1138}
1139
1140// Extract description and actual filter from overall filter string
1141bool wxGenericDirCtrl::ExtractWildcard(const wxString& filterStr, int n, wxString& filter, wxString& description)
1142{
1143 wxArrayString filters, descriptions;
daf32463 1144 int count = wxParseCommonDialogsFilter(filterStr, descriptions, filters);
51a58d8b
JS
1145 if (count > 0 && n < count)
1146 {
1147 filter = filters[n];
1148 description = descriptions[n];
ca65c044 1149 return true;
51a58d8b 1150 }
5716a1ab 1151
ca65c044 1152 return false;
51a58d8b
JS
1153}
1154
9e152a55 1155#if WXWIN_COMPATIBILITY_2_4
51a58d8b
JS
1156// Parses the global filter, returning the number of filters.
1157// Returns 0 if none or if there's a problem.
b600ed13 1158// filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpg"
51a58d8b
JS
1159int wxGenericDirCtrl::ParseFilter(const wxString& filterStr, wxArrayString& filters, wxArrayString& descriptions)
1160{
daf32463 1161 return wxParseCommonDialogsFilter(filterStr, descriptions, filters );
51a58d8b 1162}
9e152a55 1163#endif // WXWIN_COMPATIBILITY_2_4
51a58d8b
JS
1164
1165void wxGenericDirCtrl::DoResize()
1166{
1167 wxSize sz = GetClientSize();
1168 int verticalSpacing = 3;
1169 if (m_treeCtrl)
1170 {
1171 wxSize filterSz ;
1172 if (m_filterListCtrl)
1173 {
232f35cb
JS
1174#ifdef __WXMSW__
1175 // For some reason, this is required in order for the
1176 // correct control height to always be returned, rather
1177 // than the drop-down list height which is sometimes returned.
1178 wxSize oldSize = m_filterListCtrl->GetSize();
422d0ff0
WS
1179 m_filterListCtrl->SetSize(wxDefaultCoord,
1180 wxDefaultCoord,
ca65c044 1181 oldSize.x+10,
422d0ff0 1182 wxDefaultCoord,
ca65c044 1183 wxSIZE_USE_EXISTING);
422d0ff0
WS
1184 m_filterListCtrl->SetSize(wxDefaultCoord,
1185 wxDefaultCoord,
ca65c044 1186 oldSize.x,
422d0ff0 1187 wxDefaultCoord,
ca65c044 1188 wxSIZE_USE_EXISTING);
232f35cb 1189#endif
51a58d8b
JS
1190 filterSz = m_filterListCtrl->GetSize();
1191 sz.y -= (filterSz.y + verticalSpacing);
1192 }
1193 m_treeCtrl->SetSize(0, 0, sz.x, sz.y);
1194 if (m_filterListCtrl)
1195 {
1196 m_filterListCtrl->SetSize(0, sz.y + verticalSpacing, sz.x, filterSz.y);
1197 // Don't know why, but this needs refreshing after a resize (wxMSW)
1198 m_filterListCtrl->Refresh();
1199 }
1200 }
1201}
1202
1203
33ac7e6f 1204void wxGenericDirCtrl::OnSize(wxSizeEvent& WXUNUSED(event))
51a58d8b
JS
1205{
1206 DoResize();
1207}
1208
22328fa4 1209wxTreeItemId wxGenericDirCtrl::AppendItem (const wxTreeItemId & parent,
ca65c044
WS
1210 const wxString & text,
1211 int image, int selectedImage,
1212 wxTreeItemData * data)
22328fa4
JS
1213{
1214 wxTreeCtrl *treeCtrl = GetTreeCtrl ();
1215
1216 wxASSERT (treeCtrl);
1217
1218 if (treeCtrl)
1219 {
1220 return treeCtrl->AppendItem (parent, text, image, selectedImage, data);
1221 }
1222 else
1223 {
1224 return wxTreeItemId();
1225 }
1226}
1227
1228
51a58d8b
JS
1229//-----------------------------------------------------------------------------
1230// wxDirFilterListCtrl
1231//-----------------------------------------------------------------------------
1232
1233IMPLEMENT_CLASS(wxDirFilterListCtrl, wxChoice)
1234
1235BEGIN_EVENT_TABLE(wxDirFilterListCtrl, wxChoice)
ca65c044 1236 EVT_CHOICE(wxID_ANY, wxDirFilterListCtrl::OnSelFilter)
51a58d8b
JS
1237END_EVENT_TABLE()
1238
1239bool wxDirFilterListCtrl::Create(wxGenericDirCtrl* parent, const wxWindowID id,
1240 const wxPoint& pos,
1241 const wxSize& size,
1242 long style)
1243{
1244 m_dirCtrl = parent;
1245 return wxChoice::Create(parent, id, pos, size, 0, NULL, style);
1246}
1247
1248void wxDirFilterListCtrl::Init()
1249{
1250 m_dirCtrl = NULL;
1251}
1252
33ac7e6f 1253void wxDirFilterListCtrl::OnSelFilter(wxCommandEvent& WXUNUSED(event))
51a58d8b
JS
1254{
1255 int sel = GetSelection();
1256
1257 wxString currentPath = m_dirCtrl->GetPath();
ec1b28a3 1258
51a58d8b
JS
1259 m_dirCtrl->SetFilterIndex(sel);
1260
1261 // If the filter has changed, the view is out of date, so
1262 // collapse the tree.
08887820 1263 m_dirCtrl->ReCreateTree();
51a58d8b
JS
1264
1265 // Try to restore the selection, or at least the directory
1266 m_dirCtrl->ExpandPath(currentPath);
1267}
1268
1269void wxDirFilterListCtrl::FillFilterList(const wxString& filter, int defaultFilter)
1270{
1271 Clear();
1272 wxArrayString descriptions, filters;
daf32463 1273 size_t n = (size_t) wxParseCommonDialogsFilter(filter, filters, descriptions);
51a58d8b
JS
1274
1275 if (n > 0 && defaultFilter < (int) n)
1276 {
999836aa 1277 for (size_t i = 0; i < n; i++)
51a58d8b
JS
1278 Append(descriptions[i]);
1279 SetSelection(defaultFilter);
1280 }
1281}
13de0c8c 1282#endif // wxUSE_DIRDLG
51a58d8b 1283
13de0c8c 1284#if wxUSE_DIRDLG || wxUSE_FILEDLG
22328fa4 1285
06cc1fb9
JS
1286// ----------------------------------------------------------------------------
1287// wxFileIconsTable icons
1288// ----------------------------------------------------------------------------
1289
1290/* Open folder */
1291static const char * file_icons_tbl_folder_open_xpm[] = {
1292/* width height ncolors chars_per_pixel */
1293"16 16 6 1",
1294/* colors */
1295" s None c None",
1296". c #000000",
1297"+ c #c0c0c0",
1298"@ c #808080",
1299"# c #ffff00",
1300"$ c #ffffff",
1301/* pixels */
1302" ",
1303" @@@@@ ",
1304" @$$$$$@ ",
1305" @$#+#+#$@@@@@@ ",
1306" @$+#+#+$$$$$$@.",
1307" @$#+#+#+#+#+#@.",
1308"@@@@@@@@@@@@@#@.",
1309"@$$$$$$$$$$@@+@.",
1310"@$#+#+#+#+##.@@.",
1311" @$#+#+#+#+#+.@.",
1312" @$+#+#+#+#+#.@.",
1313" @$+#+#+#+##@..",
1314" @@@@@@@@@@@@@.",
1315" .............",
1316" ",
1317" "};
1318
1319/* Computer */
1320static const char * file_icons_tbl_computer_xpm[] = {
1321"16 16 7 1",
1322" s None c None",
1323". c #808080",
1324"X c #c0c0c0",
1325"o c Black",
1326"O c Gray100",
1327"+ c #008080",
1328"@ c Blue",
1329" ........... ",
1330" .XXXXXXXXXX.o",
1331" .OOOOOOOOO..o",
1332" .OoooooooX..o",
1333" .Oo+...@+X..o",
1334" .Oo+XXX.+X..o",
1335" .Oo+....+X..o",
1336" .Oo++++++X..o",
1337" .OXXXXXXXX.oo",
1338" ..........o.o",
1339" ...........Xo",
1340" .XXXXXXXXXX.o",
1341" .o.o.o.o.o...o",
1342" .oXoXoXoXoXo.o ",
1343".XOXXXXXXXXX.o ",
1344"............o "};
1345
1346/* Drive */
1347static const char * file_icons_tbl_drive_xpm[] = {
1348"16 16 7 1",
1349" s None c None",
1350". c #808080",
1351"X c #c0c0c0",
1352"o c Black",
1353"O c Gray100",
1354"+ c Green",
1355"@ c #008000",
1356" ",
1357" ",
1358" ",
1359" ",
1360" ............. ",
1361" .XXXXXXXXXXXX.o",
1362".OOOOOOOOOOOO..o",
1363".XXXXXXXXX+@X..o",
1364".XXXXXXXXXXXX..o",
1365".X..........X..o",
1366".XOOOOOOOOOOX..o",
1367"..............o ",
1368" ooooooooooooo ",
1369" ",
1370" ",
1371" "};
1372
1373/* CD-ROM */
1374static const char *file_icons_tbl_cdrom_xpm[] = {
1375"16 16 10 1",
1376" s None c None",
1377". c #808080",
1378"X c #c0c0c0",
1379"o c Yellow",
1380"O c Blue",
1381"+ c Black",
1382"@ c Gray100",
1383"# c #008080",
1384"$ c Green",
1385"% c #008000",
1386" ... ",
1387" ..XoX.. ",
1388" .O.XoXXX+ ",
1389" ...O.oXXXX+ ",
1390" .O..X.XXXX+ ",
1391" ....X.+..XXX+",
1392" .XXX.+@+.XXX+",
1393" .X@XX.+.X@@X+",
1394" .....X...#XX@+ ",
1395".@@@...XXo.O@X+ ",
1396".@XXX..XXoXOO+ ",
1397".@++++..XoX+++ ",
1398".@$%@@XX+++X.+ ",
1399".............+ ",
1400" ++++++++++++ ",
1401" "};
1402
1403/* Floppy */
1404static const char * file_icons_tbl_floppy_xpm[] = {
1405"16 16 7 1",
1406" s None c None",
1407". c #808080",
1408"X c Gray100",
1409"o c #c0c0c0",
1410"O c Black",
1411"+ c Cyan",
1412"@ c Red",
1413" ......X",
1414" .ooooooO",
1415" .+++++OO",
1416" .++++++O",
1417" .++++++O",
1418" .ooooooO",
1419" .......o....oO",
1420" .oooooo.o.O.XoO",
1421".XXXXXXXXOOOOOO ",
1422".ooooooooo@o..O ",
1423".ooo....oooo..O ",
1424".o..OOOO...o..O ",
1425".oooXXXXoooo..O ",
1426".............O ",
1427" OOOOOOOOOOOO ",
1428" "};
1429
1430/* Removeable */
1431static const char * file_icons_tbl_removeable_xpm[] = {
1432"16 16 7 1",
1433" s None c None",
1434". c #808080",
1435"X c #c0c0c0",
1436"o c Black",
1437"O c Gray100",
1438"+ c Red",
1439"@ c #800000",
1440" ",
1441" ",
1442" ",
1443" ............. ",
1444" .XXXXXXXXXXXX.o",
1445".OOOOOOOOOOOO..o",
1446".OXXXXXXXXXXX..o",
1447".O+@.oooooo.X..o",
1448".OXXOooooooOX..o",
1449".OXXXOOOOOOXX..o",
1450".OXXXXXXXXXXX..o",
1451".O............o ",
1452" ooooooooooooo ",
1453" ",
1454" ",
1455" "};
1456
1457// ----------------------------------------------------------------------------
1458// wxFileIconsTable & friends
1459// ----------------------------------------------------------------------------
1460
1461// global instance of a wxFileIconsTable
1462wxFileIconsTable* wxTheFileIconsTable = (wxFileIconsTable *)NULL;
1463
1464// A module to allow icons table cleanup
1465
1466class wxFileIconsTableModule: public wxModule
1467{
1468DECLARE_DYNAMIC_CLASS(wxFileIconsTableModule)
1469public:
1470 wxFileIconsTableModule() {}
ca65c044 1471 bool OnInit() { wxTheFileIconsTable = new wxFileIconsTable; return true; }
06cc1fb9
JS
1472 void OnExit()
1473 {
1474 if (wxTheFileIconsTable)
1475 {
1476 delete wxTheFileIconsTable;
1477 wxTheFileIconsTable = NULL;
1478 }
1479 }
1480};
1481
1482IMPLEMENT_DYNAMIC_CLASS(wxFileIconsTableModule, wxModule)
1483
1484class wxFileIconEntry : public wxObject
1485{
1486public:
1487 wxFileIconEntry(int i) { id = i; }
1488
1489 int id;
1490};
1491
1492wxFileIconsTable::wxFileIconsTable()
1493{
1494 m_HashTable = NULL;
1495 m_smallImageList = NULL;
1496}
1497
1498wxFileIconsTable::~wxFileIconsTable()
1499{
222ed1d6
MB
1500 if (m_HashTable)
1501 {
1502 WX_CLEAR_HASH_TABLE(*m_HashTable);
1503 delete m_HashTable;
1504 }
06cc1fb9
JS
1505 if (m_smallImageList) delete m_smallImageList;
1506}
1507
1508// delayed initialization - wait until first use (wxArtProv not created yet)
1509void wxFileIconsTable::Create()
1510{
1511 wxCHECK_RET(!m_smallImageList && !m_HashTable, wxT("creating icons twice"));
06cc1fb9
JS
1512 m_HashTable = new wxHashTable(wxKEY_STRING);
1513 m_smallImageList = new wxImageList(16, 16);
1514
06cc1fb9
JS
1515 // folder:
1516 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_FOLDER, wxART_CMN_DIALOG));
1517 // folder_open
1518 m_smallImageList->Add(wxIcon(file_icons_tbl_folder_open_xpm));
1519 // computer
1520 m_smallImageList->Add(wxIcon(file_icons_tbl_computer_xpm));
1521 // drive
1522 m_smallImageList->Add(wxIcon(file_icons_tbl_drive_xpm));
1523 // cdrom
1524 m_smallImageList->Add(wxIcon(file_icons_tbl_cdrom_xpm));
1525 // floppy
1526 m_smallImageList->Add(wxIcon(file_icons_tbl_floppy_xpm));
1527 // removeable
1528 m_smallImageList->Add(wxIcon(file_icons_tbl_removeable_xpm));
1529 // file
1530 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_NORMAL_FILE, wxART_CMN_DIALOG));
1531 // executable
1532 if (GetIconID(wxEmptyString, _T("application/x-executable")) == file)
1533 {
1534 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_EXECUTABLE_FILE, wxART_CMN_DIALOG));
222ed1d6 1535 delete m_HashTable->Get(_T("exe"));
06cc1fb9
JS
1536 m_HashTable->Delete(_T("exe"));
1537 m_HashTable->Put(_T("exe"), new wxFileIconEntry(executable));
1538 }
1539 /* else put into list by GetIconID
1540 (KDE defines application/x-executable for *.exe and has nice icon)
1541 */
1542}
1543
1544wxImageList *wxFileIconsTable::GetSmallImageList()
1545{
1546 if (!m_smallImageList)
1547 Create();
1548
1549 return m_smallImageList;
1550}
1551
1904aa72 1552#if wxUSE_MIMETYPE && wxUSE_IMAGE
06cc1fb9
JS
1553// VS: we don't need this function w/o wxMimeTypesManager because we'll only have
1554// one icon and we won't resize it
1555
1556static wxBitmap CreateAntialiasedBitmap(const wxImage& img)
1557{
1d529ef7 1558 const unsigned int size = 16;
ca65c044 1559
1d529ef7 1560 wxImage smallimg (size, size);
06cc1fb9
JS
1561 unsigned char *p1, *p2, *ps;
1562 unsigned char mr = img.GetMaskRed(),
1563 mg = img.GetMaskGreen(),
1564 mb = img.GetMaskBlue();
1565
1566 unsigned x, y;
1567 unsigned sr, sg, sb, smask;
1568
1d529ef7 1569 p1 = img.GetData(), p2 = img.GetData() + 3 * size*2, ps = smallimg.GetData();
06cc1fb9
JS
1570 smallimg.SetMaskColour(mr, mr, mr);
1571
1d529ef7 1572 for (y = 0; y < size; y++)
06cc1fb9 1573 {
1d529ef7 1574 for (x = 0; x < size; x++)
06cc1fb9
JS
1575 {
1576 sr = sg = sb = smask = 0;
1577 if (p1[0] != mr || p1[1] != mg || p1[2] != mb)
1578 sr += p1[0], sg += p1[1], sb += p1[2];
1579 else smask++;
1580 p1 += 3;
1581 if (p1[0] != mr || p1[1] != mg || p1[2] != mb)
1582 sr += p1[0], sg += p1[1], sb += p1[2];
1583 else smask++;
1584 p1 += 3;
1585 if (p2[0] != mr || p2[1] != mg || p2[2] != mb)
1586 sr += p2[0], sg += p2[1], sb += p2[2];
1587 else smask++;
1588 p2 += 3;
1589 if (p2[0] != mr || p2[1] != mg || p2[2] != mb)
1590 sr += p2[0], sg += p2[1], sb += p2[2];
1591 else smask++;
1592 p2 += 3;
1593
1594 if (smask > 2)
1595 ps[0] = ps[1] = ps[2] = mr;
1596 else
1597 ps[0] = sr >> 2, ps[1] = sg >> 2, ps[2] = sb >> 2;
1598 ps += 3;
1599 }
1d529ef7 1600 p1 += size*2 * 3, p2 += size*2 * 3;
06cc1fb9 1601 }
ca65c044 1602
06cc1fb9
JS
1603 return wxBitmap(smallimg);
1604}
1605
b126fe3a
DS
1606// This function is currently not unused anymore
1607#if 0
06cc1fb9
JS
1608// finds empty borders and return non-empty area of image:
1609static wxImage CutEmptyBorders(const wxImage& img)
1610{
1611 unsigned char mr = img.GetMaskRed(),
1612 mg = img.GetMaskGreen(),
1613 mb = img.GetMaskBlue();
1614 unsigned char *dt = img.GetData(), *dttmp;
1615 unsigned w = img.GetWidth(), h = img.GetHeight();
1616
1617 unsigned top, bottom, left, right, i;
1618 bool empt;
1619
1620#define MK_DTTMP(x,y) dttmp = dt + ((x + y * w) * 3)
ca65c044 1621#define NOEMPTY_PIX(empt) if (dttmp[0] != mr || dttmp[1] != mg || dttmp[2] != mb) {empt = false; break;}
06cc1fb9 1622
ca65c044 1623 for (empt = true, top = 0; empt && top < h; top++)
06cc1fb9
JS
1624 {
1625 MK_DTTMP(0, top);
1626 for (i = 0; i < w; i++, dttmp+=3)
1627 NOEMPTY_PIX(empt)
1628 }
ca65c044 1629 for (empt = true, bottom = h-1; empt && bottom > top; bottom--)
06cc1fb9
JS
1630 {
1631 MK_DTTMP(0, bottom);
1632 for (i = 0; i < w; i++, dttmp+=3)
1633 NOEMPTY_PIX(empt)
1634 }
ca65c044 1635 for (empt = true, left = 0; empt && left < w; left++)
06cc1fb9
JS
1636 {
1637 MK_DTTMP(left, 0);
1638 for (i = 0; i < h; i++, dttmp+=3*w)
1639 NOEMPTY_PIX(empt)
1640 }
ca65c044 1641 for (empt = true, right = w-1; empt && right > left; right--)
06cc1fb9
JS
1642 {
1643 MK_DTTMP(right, 0);
1644 for (i = 0; i < h; i++, dttmp+=3*w)
1645 NOEMPTY_PIX(empt)
1646 }
1647 top--, left--, bottom++, right++;
1648
1649 return img.GetSubImage(wxRect(left, top, right - left + 1, bottom - top + 1));
1650}
b126fe3a
DS
1651#endif // #if 0
1652
06cc1fb9
JS
1653#endif // wxUSE_MIMETYPE
1654
1655int wxFileIconsTable::GetIconID(const wxString& extension, const wxString& mime)
1656{
1657 if (!m_smallImageList)
1658 Create();
1659
1660#if wxUSE_MIMETYPE
1661 if (!extension.IsEmpty())
1662 {
1663 wxFileIconEntry *entry = (wxFileIconEntry*) m_HashTable->Get(extension);
1664 if (entry) return (entry -> id);
1665 }
1666
1667 wxFileType *ft = (mime.IsEmpty()) ?
1668 wxTheMimeTypesManager -> GetFileTypeFromExtension(extension) :
1669 wxTheMimeTypesManager -> GetFileTypeFromMimeType(mime);
55d0aaa3
VZ
1670
1671 wxIconLocation iconLoc;
06cc1fb9 1672 wxIcon ic;
02dd0487 1673
55d0aaa3 1674 {
02dd0487
JS
1675 wxLogNull logNull;
1676 if ( ft && ft->GetIcon(&iconLoc) )
1677 {
1d529ef7 1678 ic = wxIcon( iconLoc.GetFileName() );
02dd0487 1679 }
55d0aaa3 1680 }
ca65c044 1681
55d0aaa3
VZ
1682 delete ft;
1683
1684 if ( !ic.Ok() )
06cc1fb9
JS
1685 {
1686 int newid = file;
1687 m_HashTable->Put(extension, new wxFileIconEntry(newid));
1688 return newid;
1689 }
1690
3fc93ebd
JS
1691 wxBitmap bmp;
1692 bmp.CopyFromIcon(ic);
06cc1fb9 1693
b6668c25
JS
1694 if ( !bmp.Ok() )
1695 {
1696 int newid = file;
1697 m_HashTable->Put(extension, new wxFileIconEntry(newid));
1698 return newid;
1699 }
1700
1d529ef7 1701 const unsigned int size = 16;
ca65c044 1702
06cc1fb9 1703 int id = m_smallImageList->GetImageCount();
1aa81b17 1704 if ((bmp.GetWidth() == (int) size) && (bmp.GetHeight() == (int) size))
1d529ef7 1705 {
3fc93ebd 1706 m_smallImageList->Add(bmp);
1d529ef7 1707 }
1904aa72 1708#if wxUSE_IMAGE
06cc1fb9
JS
1709 else
1710 {
3fc93ebd
JS
1711 wxImage img = bmp.ConvertToImage();
1712
1d529ef7
RR
1713 if ((img.GetWidth() != size*2) || (img.GetHeight() != size*2))
1714// m_smallImageList->Add(CreateAntialiasedBitmap(CutEmptyBorders(img).Rescale(size*2, size*2)));
1715 m_smallImageList->Add(CreateAntialiasedBitmap(img.Rescale(size*2, size*2)));
06cc1fb9
JS
1716 else
1717 m_smallImageList->Add(CreateAntialiasedBitmap(img));
1718 }
1904aa72
DS
1719#endif // wxUSE_IMAGE
1720
06cc1fb9
JS
1721 m_HashTable->Put(extension, new wxFileIconEntry(id));
1722 return id;
1723
1724#else // !wxUSE_MIMETYPE
1725
1726 if (extension == wxT("exe"))
1727 return executable;
1728 else
1729 return file;
1730#endif // wxUSE_MIMETYPE/!wxUSE_MIMETYPE
1731}
1732
13de0c8c 1733#endif // wxUSE_DIRDLG || wxUSE_FILEDLG