]>
Commit | Line | Data |
---|---|---|
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 | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
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 | ||
1e6feb95 | 23 | #if wxUSE_DIRDLG |
51a58d8b JS |
24 | |
25 | #include "wx/utils.h" | |
26 | #include "wx/dialog.h" | |
27 | #include "wx/button.h" | |
28 | #include "wx/layout.h" | |
29 | #include "wx/msgdlg.h" | |
618a5e38 | 30 | #include "wx/textctrl.h" |
51a58d8b JS |
31 | #include "wx/textdlg.h" |
32 | #include "wx/filefn.h" | |
33 | #include "wx/cmndata.h" | |
34 | #include "wx/gdicmn.h" | |
35 | #include "wx/intl.h" | |
36 | #include "wx/imaglist.h" | |
37 | #include "wx/icon.h" | |
38 | #include "wx/log.h" | |
39 | #include "wx/sizer.h" | |
40 | #include "wx/tokenzr.h" | |
41 | #include "wx/dir.h" | |
3fa4bd0e | 42 | #include "wx/settings.h" |
51a58d8b JS |
43 | |
44 | #if wxUSE_STATLINE | |
45 | #include "wx/statline.h" | |
46 | #endif | |
47 | ||
48 | #include "wx/generic/dirctrlg.h" | |
49 | ||
76a5e5d2 SC |
50 | #if defined(__WXMAC__) |
51 | #include "wx/mac/private.h" // includes mac headers | |
52 | #endif | |
53 | ||
51a58d8b | 54 | #ifdef __WXMSW__ |
2736b3ce | 55 | #include <windows.h> |
7328394a | 56 | |
c9ecda60 VS |
57 | // FIXME - Mingw32 1.0 has both _getdrive() and _chdrive(). For now, let's assume |
58 | // older releases don't, but it should be verified and the checks modified | |
59 | // accordingly. | |
3bce6687 JS |
60 | #if !defined(__WXWINE__) && (!defined(__GNUWIN32__) || \ |
61 | (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)) | |
c9ecda60 VS |
62 | #include <direct.h> |
63 | #include <stdlib.h> | |
64 | #include <ctype.h> | |
51a58d8b JS |
65 | #endif |
66 | ||
7328394a JS |
67 | #endif |
68 | ||
ec1b28a3 DW |
69 | #ifdef __WXPM__ |
70 | ||
71 | #define INCL_BASE | |
72 | #include <os2.h> | |
2b5f62a0 | 73 | #ifndef __EMX__ |
ec1b28a3 | 74 | #include <direct.h> |
2b5f62a0 | 75 | #endif |
ec1b28a3 DW |
76 | #include <stdlib.h> |
77 | #include <ctype.h> | |
78 | ||
79 | #endif // __WXPM__ | |
80 | ||
f4ac0693 GD |
81 | #if defined(__WXMAC__) |
82 | # include "MoreFilesExtras.h" | |
bedaf53e SC |
83 | #endif |
84 | ||
267a7108 JS |
85 | #ifdef __BORLANDC__ |
86 | #include "dos.h" | |
87 | #endif | |
88 | ||
51a58d8b JS |
89 | // If compiled under Windows, this macro can cause problems |
90 | #ifdef GetFirstChild | |
91 | #undef GetFirstChild | |
92 | #endif | |
93 | ||
51a58d8b | 94 | /* Closed folder */ |
90350682 | 95 | static const char * icon1_xpm[] = { |
51a58d8b JS |
96 | /* width height ncolors chars_per_pixel */ |
97 | "16 16 6 1", | |
98 | /* colors */ | |
99 | " s None c None", | |
100 | ". c #000000", | |
101 | "+ c #c0c0c0", | |
102 | "@ c #808080", | |
103 | "# c #ffff00", | |
104 | "$ c #ffffff", | |
105 | /* pixels */ | |
106 | " ", | |
107 | " @@@@@ ", | |
108 | " @#+#+#@ ", | |
109 | " @#+#+#+#@@@@@@ ", | |
110 | " @$$$$$$$$$$$$@.", | |
111 | " @$#+#+#+#+#+#@.", | |
112 | " @$+#+#+#+#+#+@.", | |
113 | " @$#+#+#+#+#+#@.", | |
114 | " @$+#+#+#+#+#+@.", | |
115 | " @$#+#+#+#+#+#@.", | |
116 | " @$+#+#+#+#+#+@.", | |
117 | " @$#+#+#+#+#+#@.", | |
118 | " @@@@@@@@@@@@@@.", | |
119 | " ..............", | |
120 | " ", | |
121 | " "}; | |
122 | ||
123 | /* Open folder */ | |
90350682 | 124 | static const char * icon2_xpm[] = { |
51a58d8b JS |
125 | /* width height ncolors chars_per_pixel */ |
126 | "16 16 6 1", | |
127 | /* colors */ | |
128 | " s None c None", | |
129 | ". c #000000", | |
130 | "+ c #c0c0c0", | |
131 | "@ c #808080", | |
132 | "# c #ffff00", | |
133 | "$ c #ffffff", | |
134 | /* pixels */ | |
135 | " ", | |
136 | " @@@@@ ", | |
137 | " @$$$$$@ ", | |
138 | " @$#+#+#$@@@@@@ ", | |
139 | " @$+#+#+$$$$$$@.", | |
140 | " @$#+#+#+#+#+#@.", | |
141 | "@@@@@@@@@@@@@#@.", | |
142 | "@$$$$$$$$$$@@+@.", | |
143 | "@$#+#+#+#+##.@@.", | |
144 | " @$#+#+#+#+#+.@.", | |
145 | " @$+#+#+#+#+#.@.", | |
146 | " @$+#+#+#+##@..", | |
147 | " @@@@@@@@@@@@@.", | |
148 | " .............", | |
149 | " ", | |
150 | " "}; | |
151 | ||
152 | /* File */ | |
90350682 | 153 | static const char * icon3_xpm[] = { |
51a58d8b JS |
154 | /* width height ncolors chars_per_pixel */ |
155 | "16 16 3 1", | |
156 | /* colors */ | |
33fed835 MB |
157 | " s None c None", |
158 | ". c #000000", | |
159 | "+ c #ffffff", | |
51a58d8b JS |
160 | /* pixels */ |
161 | " ", | |
162 | " ........ ", | |
163 | " .++++++.. ", | |
164 | " .+.+.++.+. ", | |
165 | " .++++++.... ", | |
166 | " .+.+.+++++. ", | |
167 | " .+++++++++. ", | |
168 | " .+.+.+.+.+. ", | |
169 | " .+++++++++. ", | |
170 | " .+.+.+.+.+. ", | |
171 | " .+++++++++. ", | |
172 | " .+.+.+.+.+. ", | |
173 | " .+++++++++. ", | |
174 | " ........... ", | |
175 | " ", | |
176 | " "}; | |
177 | ||
178 | /* Computer */ | |
90350682 | 179 | static const char * icon4_xpm[] = { |
51a58d8b | 180 | "16 16 7 1", |
33fed835 MB |
181 | " s None c None", |
182 | ". c #808080", | |
183 | "X c #c0c0c0", | |
184 | "o c Black", | |
185 | "O c Gray100", | |
186 | "+ c #008080", | |
187 | "@ c Blue", | |
51a58d8b JS |
188 | " ........... ", |
189 | " .XXXXXXXXXX.o", | |
190 | " .OOOOOOOOO..o", | |
191 | " .OoooooooX..o", | |
192 | " .Oo+...@+X..o", | |
193 | " .Oo+XXX.+X..o", | |
194 | " .Oo+....+X..o", | |
195 | " .Oo++++++X..o", | |
196 | " .OXXXXXXXX.oo", | |
197 | " ..........o.o", | |
198 | " ...........Xo", | |
199 | " .XXXXXXXXXX.o", | |
200 | " .o.o.o.o.o...o", | |
201 | " .oXoXoXoXoXo.o ", | |
202 | ".XOXXXXXXXXX.o ", | |
203 | "............o "}; | |
204 | ||
205 | /* Drive */ | |
90350682 | 206 | static const char * icon5_xpm[] = { |
51a58d8b | 207 | "16 16 7 1", |
33fed835 MB |
208 | " s None c None", |
209 | ". c #808080", | |
210 | "X c #c0c0c0", | |
211 | "o c Black", | |
212 | "O c Gray100", | |
213 | "+ c Green", | |
214 | "@ c #008000", | |
51a58d8b JS |
215 | " ", |
216 | " ", | |
217 | " ", | |
218 | " ", | |
219 | " ............. ", | |
220 | " .XXXXXXXXXXXX.o", | |
221 | ".OOOOOOOOOOOO..o", | |
222 | ".XXXXXXXXX+@X..o", | |
223 | ".XXXXXXXXXXXX..o", | |
224 | ".X..........X..o", | |
225 | ".XOOOOOOOOOOX..o", | |
226 | "..............o ", | |
227 | " ooooooooooooo ", | |
228 | " ", | |
229 | " ", | |
230 | " "}; | |
231 | ||
232 | /* CD-ROM */ | |
90350682 | 233 | static const char *icon6_xpm[] = { |
51a58d8b | 234 | "16 16 10 1", |
33fed835 MB |
235 | " s None c None", |
236 | ". c #808080", | |
237 | "X c #c0c0c0", | |
238 | "o c Yellow", | |
239 | "O c Blue", | |
240 | "+ c Black", | |
241 | "@ c Gray100", | |
242 | "# c #008080", | |
243 | "$ c Green", | |
244 | "% c #008000", | |
51a58d8b JS |
245 | " ... ", |
246 | " ..XoX.. ", | |
247 | " .O.XoXXX+ ", | |
248 | " ...O.oXXXX+ ", | |
249 | " .O..X.XXXX+ ", | |
250 | " ....X.+..XXX+", | |
251 | " .XXX.+@+.XXX+", | |
252 | " .X@XX.+.X@@X+", | |
253 | " .....X...#XX@+ ", | |
254 | ".@@@...XXo.O@X+ ", | |
255 | ".@XXX..XXoXOO+ ", | |
256 | ".@++++..XoX+++ ", | |
257 | ".@$%@@XX+++X.+ ", | |
258 | ".............+ ", | |
259 | " ++++++++++++ ", | |
260 | " "}; | |
261 | ||
262 | /* Floppy */ | |
90350682 | 263 | static const char * icon7_xpm[] = { |
51a58d8b | 264 | "16 16 7 1", |
33fed835 MB |
265 | " s None c None", |
266 | ". c #808080", | |
267 | "X c Gray100", | |
268 | "o c #c0c0c0", | |
269 | "O c Black", | |
270 | "+ c Cyan", | |
271 | "@ c Red", | |
51a58d8b JS |
272 | " ......X", |
273 | " .ooooooO", | |
274 | " .+++++OO", | |
275 | " .++++++O", | |
276 | " .++++++O", | |
277 | " .ooooooO", | |
278 | " .......o....oO", | |
279 | " .oooooo.o.O.XoO", | |
280 | ".XXXXXXXXOOOOOO ", | |
281 | ".ooooooooo@o..O ", | |
282 | ".ooo....oooo..O ", | |
283 | ".o..OOOO...o..O ", | |
284 | ".oooXXXXoooo..O ", | |
285 | ".............O ", | |
286 | " OOOOOOOOOOOO ", | |
287 | " "}; | |
288 | ||
289 | /* Removeable */ | |
90350682 | 290 | static const char * icon8_xpm[] = { |
51a58d8b | 291 | "16 16 7 1", |
33fed835 MB |
292 | " s None c None", |
293 | ". c #808080", | |
294 | "X c #c0c0c0", | |
295 | "o c Black", | |
296 | "O c Gray100", | |
297 | "+ c Red", | |
298 | "@ c #800000", | |
51a58d8b JS |
299 | " ", |
300 | " ", | |
301 | " ", | |
302 | " ............. ", | |
303 | " .XXXXXXXXXXXX.o", | |
304 | ".OOOOOOOOOOOO..o", | |
305 | ".OXXXXXXXXXXX..o", | |
306 | ".O+@.oooooo.X..o", | |
307 | ".OXXOooooooOX..o", | |
308 | ".OXXXOOOOOOXX..o", | |
309 | ".OXXXXXXXXXXX..o", | |
310 | ".O............o ", | |
311 | " ooooooooooooo ", | |
312 | " ", | |
313 | " ", | |
314 | " "}; | |
51a58d8b | 315 | |
748fcded | 316 | |
748fcded | 317 | #if defined(__DOS__) |
db5333a5 | 318 | |
37fd1c97 | 319 | bool wxIsDriveAvailable(const wxString& dirName) |
db5333a5 | 320 | { |
6157794c VS |
321 | // FIXME_MGL - this method leads to hang up under Watcom for some reason |
322 | #ifndef __WATCOMC__ | |
db5333a5 VS |
323 | if ( dirName.Len() == 3 && dirName[1u] == wxT(':') ) |
324 | { | |
325 | wxString dirNameLower(dirName.Lower()); | |
326 | // VS: always return TRUE for removable media, since Win95 doesn't | |
327 | // like it when MS-DOS app accesses empty floppy drive | |
328 | return (dirNameLower[0u] == wxT('a') || | |
329 | dirNameLower[0u] == wxT('b') || | |
330 | wxPathExists(dirNameLower)); | |
331 | } | |
332 | else | |
6157794c | 333 | #endif |
db5333a5 VS |
334 | return TRUE; |
335 | } | |
336 | ||
337 | #elif defined(__WINDOWS__) || defined(__WXPM__) | |
338 | ||
33ac7e6f KB |
339 | int setdrive(int drive) |
340 | { | |
c9ecda60 VS |
341 | #if defined(__GNUWIN32__) && \ |
342 | (defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1) | |
343 | return _chdrive(drive); | |
344 | #else | |
e987a489 | 345 | wxChar newdrive[3]; |
33ac7e6f KB |
346 | |
347 | if (drive < 1 || drive > 31) | |
348 | return -1; | |
e987a489 VS |
349 | newdrive[0] = (wxChar)(wxT('A') + drive - 1); |
350 | newdrive[1] = wxT(':'); | |
351 | newdrive[2] = wxT('\0'); | |
50c76ce1 | 352 | #if defined(__WXMSW__) |
788722ac JS |
353 | #ifdef __WIN16__ |
354 | if (wxSetWorkingDirectory(newdrive)) | |
355 | #else | |
e987a489 | 356 | if (::SetCurrentDirectory(newdrive)) |
788722ac | 357 | #endif |
50c76ce1 DW |
358 | #else |
359 | // VA doesn't know what LPSTR is and has its own set | |
360 | if (DosSetCurrentDir((PSZ)newdrive)) | |
361 | #endif | |
33ac7e6f KB |
362 | return 0; |
363 | else | |
364 | return -1; | |
c9ecda60 | 365 | #endif // !GNUWIN32 |
33ac7e6f KB |
366 | } |
367 | ||
37fd1c97 | 368 | bool wxIsDriveAvailable(const wxString& dirName) |
ad9cd15c JS |
369 | { |
370 | #ifdef __WIN32__ | |
33fed835 | 371 | UINT errorMode = SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX); |
ad9cd15c | 372 | #endif |
33fed835 | 373 | bool success = TRUE; |
ad9cd15c JS |
374 | |
375 | // Check if this is a root directory and if so, | |
376 | // whether the drive is avaiable. | |
33fed835 | 377 | if (dirName.Len() == 3 && dirName[(size_t)1] == wxT(':')) |
ad9cd15c | 378 | { |
33fed835 | 379 | wxString dirNameLower(dirName.Lower()); |
3bce6687 JS |
380 | #if defined(__WXWINE__) || (defined(__GNUWIN32__) && \ |
381 | !(defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 1)) | |
7328394a JS |
382 | success = wxPathExists(dirNameLower); |
383 | #else | |
ad9cd15c | 384 | int currentDrive = _getdrive(); |
33fed835 | 385 | int thisDrive = (int) (dirNameLower[(size_t)0] - 'a' + 1) ; |
33ac7e6f KB |
386 | int err = setdrive( thisDrive ) ; |
387 | setdrive( currentDrive ); | |
ad9cd15c JS |
388 | |
389 | if (err == -1) | |
390 | { | |
391 | success = FALSE; | |
392 | } | |
7328394a | 393 | #endif |
ad9cd15c JS |
394 | } |
395 | #ifdef __WIN32__ | |
33fed835 | 396 | (void) SetErrorMode(errorMode); |
ad9cd15c JS |
397 | #endif |
398 | ||
33fed835 | 399 | return success; |
ad9cd15c | 400 | } |
db5333a5 | 401 | #endif // __WINDOWS__ || __WXPM__ |
ad9cd15c | 402 | |
57e26a09 JS |
403 | // Function which is called by quick sort. We want to override the default wxArrayString behaviour, |
404 | // and sort regardless of case. | |
405 | static int LINKAGEMODE wxDirCtrlStringCompareFunction(const void *first, const void *second) | |
406 | { | |
407 | wxString *strFirst = (wxString *)first; | |
408 | wxString *strSecond = (wxString *)second; | |
574c939e | 409 | |
57e26a09 JS |
410 | return strFirst->CmpNoCase(*strSecond); |
411 | } | |
412 | ||
51a58d8b | 413 | //----------------------------------------------------------------------------- |
748fcded | 414 | // wxDirItemData |
51a58d8b JS |
415 | //----------------------------------------------------------------------------- |
416 | ||
748fcded VS |
417 | wxDirItemData::wxDirItemData(const wxString& path, const wxString& name, |
418 | bool isDir) | |
51a58d8b JS |
419 | { |
420 | m_path = path; | |
421 | m_name = name; | |
422 | /* Insert logic to detect hidden files here | |
423 | * In UnixLand we just check whether the first char is a dot | |
424 | * For FileNameFromPath read LastDirNameInThisPath ;-) */ | |
425 | // m_isHidden = (bool)(wxFileNameFromPath(*m_path)[0] == '.'); | |
426 | m_isHidden = FALSE; | |
51a58d8b JS |
427 | m_isExpanded = FALSE; |
428 | m_isDir = isDir; | |
429 | } | |
430 | ||
748fcded | 431 | wxDirItemData::~wxDirItemData() |
51a58d8b JS |
432 | { |
433 | } | |
434 | ||
748fcded | 435 | void wxDirItemData::SetNewDirName(const wxString& path) |
51a58d8b JS |
436 | { |
437 | m_path = path; | |
748fcded VS |
438 | m_name = wxFileNameFromPath(path); |
439 | } | |
440 | ||
441 | bool wxDirItemData::HasSubDirs() const | |
442 | { | |
443 | if (m_path.IsEmpty()) | |
444 | return FALSE; | |
445 | ||
446 | wxDir dir; | |
447 | { | |
448 | wxLogNull nolog; | |
449 | if ( !dir.Open(m_path) ) | |
450 | return FALSE; | |
451 | } | |
452 | ||
453 | return dir.HasSubDirs(); | |
454 | } | |
455 | ||
574c939e | 456 | bool wxDirItemData::HasFiles(const wxString& WXUNUSED(spec)) const |
748fcded VS |
457 | { |
458 | if (m_path.IsEmpty()) | |
459 | return FALSE; | |
460 | ||
461 | wxDir dir; | |
462 | { | |
463 | wxLogNull nolog; | |
464 | if ( !dir.Open(m_path) ) | |
465 | return FALSE; | |
466 | } | |
467 | ||
468 | return dir.HasFiles(); | |
51a58d8b JS |
469 | } |
470 | ||
51a58d8b JS |
471 | //----------------------------------------------------------------------------- |
472 | // wxGenericDirCtrl | |
473 | //----------------------------------------------------------------------------- | |
474 | ||
475 | IMPLEMENT_DYNAMIC_CLASS(wxGenericDirCtrl, wxControl) | |
476 | ||
477 | BEGIN_EVENT_TABLE(wxGenericDirCtrl, wxControl) | |
478 | EVT_TREE_ITEM_EXPANDING (-1, wxGenericDirCtrl::OnExpandItem) | |
479 | EVT_TREE_ITEM_COLLAPSED (-1, wxGenericDirCtrl::OnCollapseItem) | |
480 | EVT_TREE_BEGIN_LABEL_EDIT (-1, wxGenericDirCtrl::OnBeginEditItem) | |
481 | EVT_TREE_END_LABEL_EDIT (-1, wxGenericDirCtrl::OnEndEditItem) | |
482 | EVT_SIZE (wxGenericDirCtrl::OnSize) | |
483 | END_EVENT_TABLE() | |
484 | ||
485 | wxGenericDirCtrl::wxGenericDirCtrl(void) | |
486 | { | |
487 | Init(); | |
488 | } | |
489 | ||
490 | bool wxGenericDirCtrl::Create(wxWindow *parent, | |
748fcded VS |
491 | const wxWindowID id, |
492 | const wxString& dir, | |
493 | const wxPoint& pos, | |
494 | const wxSize& size, | |
495 | long style, | |
496 | const wxString& filter, | |
497 | int defaultFilter, | |
498 | const wxString& name) | |
51a58d8b JS |
499 | { |
500 | if (!wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name)) | |
501 | return FALSE; | |
502 | ||
db5333a5 | 503 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)); |
51a58d8b JS |
504 | |
505 | Init(); | |
506 | ||
08887820 | 507 | long treeStyle = wxTR_HAS_BUTTONS | wxTR_HIDE_ROOT; |
fd775aae | 508 | |
dabd1377 | 509 | if (style & wxDIRCTRL_EDIT_LABELS) |
fd775aae JS |
510 | treeStyle |= wxTR_EDIT_LABELS; |
511 | ||
51a58d8b JS |
512 | if ((style & wxDIRCTRL_3D_INTERNAL) == 0) |
513 | treeStyle |= wxNO_BORDER; | |
514 | ||
515 | long filterStyle = 0; | |
516 | if ((style & wxDIRCTRL_3D_INTERNAL) == 0) | |
517 | filterStyle |= wxNO_BORDER; | |
518 | ||
519 | m_treeCtrl = new wxTreeCtrl(this, wxID_TREECTRL, pos, size, treeStyle); | |
520 | ||
521 | if (!filter.IsEmpty() && (style & wxDIRCTRL_SHOW_FILTERS)) | |
522 | m_filterListCtrl = new wxDirFilterListCtrl(this, wxID_FILTERLISTCTRL, wxDefaultPosition, wxDefaultSize, filterStyle); | |
523 | ||
524 | m_defaultPath = dir; | |
525 | m_filter = filter; | |
526 | ||
527 | SetFilterIndex(defaultFilter); | |
528 | ||
529 | if (m_filterListCtrl) | |
530 | m_filterListCtrl->FillFilterList(filter, defaultFilter); | |
531 | ||
532 | m_imageList = new wxImageList(16, 16, TRUE); | |
51a58d8b JS |
533 | m_imageList->Add(wxIcon(icon1_xpm)); |
534 | m_imageList->Add(wxIcon(icon2_xpm)); | |
535 | m_imageList->Add(wxIcon(icon3_xpm)); | |
536 | m_imageList->Add(wxIcon(icon4_xpm)); | |
537 | m_imageList->Add(wxIcon(icon5_xpm)); | |
538 | m_imageList->Add(wxIcon(icon6_xpm)); | |
539 | m_imageList->Add(wxIcon(icon7_xpm)); | |
540 | m_imageList->Add(wxIcon(icon8_xpm)); | |
748fcded | 541 | m_treeCtrl->AssignImageList(m_imageList); |
51a58d8b JS |
542 | |
543 | m_showHidden = FALSE; | |
748fcded | 544 | wxDirItemData* rootData = new wxDirItemData(wxT(""), wxT(""), TRUE); |
51a58d8b JS |
545 | |
546 | wxString rootName; | |
547 | ||
db5333a5 | 548 | #if defined(__WINDOWS__) || defined(__WXPM__) || defined(__DOS__) |
51a58d8b JS |
549 | rootName = _("Computer"); |
550 | #else | |
551 | rootName = _("Sections"); | |
552 | #endif | |
553 | ||
554 | m_rootId = m_treeCtrl->AddRoot( rootName, 3, -1, rootData); | |
555 | m_treeCtrl->SetItemHasChildren(m_rootId); | |
08887820 | 556 | ExpandDir(m_rootId); // automatically expand first level |
51a58d8b JS |
557 | |
558 | // Expand and select the default path | |
559 | if (!m_defaultPath.IsEmpty()) | |
560 | ExpandPath(m_defaultPath); | |
561 | ||
562 | DoResize(); | |
563 | ||
564 | return TRUE; | |
565 | } | |
566 | ||
567 | wxGenericDirCtrl::~wxGenericDirCtrl() | |
568 | { | |
51a58d8b JS |
569 | } |
570 | ||
571 | void wxGenericDirCtrl::Init() | |
572 | { | |
573 | m_showHidden = FALSE; | |
574 | m_imageList = NULL; | |
51a58d8b JS |
575 | m_currentFilter = 0; |
576 | m_currentFilterStr = wxEmptyString; // Default: any file | |
577 | m_treeCtrl = NULL; | |
578 | m_filterListCtrl = NULL; | |
579 | } | |
580 | ||
42dcacf0 RR |
581 | void wxGenericDirCtrl::ShowHidden( bool show ) |
582 | { | |
583 | m_showHidden = show; | |
574c939e | 584 | |
3b423cdd | 585 | wxString path = GetPath(); |
08887820 | 586 | ReCreateTree(); |
3b423cdd | 587 | SetPath(path); |
42dcacf0 RR |
588 | } |
589 | ||
51a58d8b JS |
590 | void wxGenericDirCtrl::AddSection(const wxString& path, const wxString& name, int imageId) |
591 | { | |
748fcded | 592 | wxDirItemData *dir_item = new wxDirItemData(path,name,TRUE); |
51a58d8b | 593 | |
51a58d8b | 594 | wxTreeItemId id = m_treeCtrl->AppendItem( m_rootId, name, imageId, -1, dir_item); |
51a58d8b JS |
595 | |
596 | m_treeCtrl->SetItemHasChildren(id); | |
597 | } | |
598 | ||
599 | void wxGenericDirCtrl::SetupSections() | |
600 | { | |
db5333a5 | 601 | #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__) |
51a58d8b | 602 | |
748fcded | 603 | #ifdef __WIN32__ |
51a58d8b JS |
604 | wxChar driveBuffer[256]; |
605 | size_t n = (size_t) GetLogicalDriveStrings(255, driveBuffer); | |
606 | size_t i = 0; | |
607 | while (i < n) | |
608 | { | |
609 | wxString path, name; | |
610 | path.Printf(wxT("%c:\\"), driveBuffer[i]); | |
611 | name.Printf(wxT("(%c:)"), driveBuffer[i]); | |
612 | ||
613 | int imageId = 4; | |
614 | int driveType = ::GetDriveType(path); | |
615 | switch (driveType) | |
616 | { | |
617 | case DRIVE_REMOVABLE: | |
618 | if (path == wxT("a:\\") || path == wxT("b:\\")) | |
619 | imageId = 6; // Floppy | |
620 | else | |
621 | imageId = 7; | |
622 | break; | |
623 | case DRIVE_FIXED: | |
624 | imageId = 4; | |
625 | break; | |
626 | case DRIVE_REMOTE: | |
627 | imageId = 4; | |
628 | break; | |
629 | case DRIVE_CDROM: | |
630 | imageId = 5; | |
631 | break; | |
632 | default: | |
633 | imageId = 4; | |
634 | break; | |
635 | } | |
636 | ||
637 | AddSection(path, name, imageId); | |
638 | ||
639 | while (driveBuffer[i] != wxT('\0')) | |
640 | i ++; | |
641 | i ++; | |
642 | if (driveBuffer[i] == wxT('\0')) | |
643 | break; | |
644 | } | |
db5333a5 | 645 | #else // !__WIN32__ |
51a58d8b | 646 | int drive; |
51a58d8b | 647 | |
51a58d8b JS |
648 | /* If we can switch to the drive, it exists. */ |
649 | for( drive = 1; drive <= 26; drive++ ) | |
650 | { | |
651 | wxString path, name; | |
652 | path.Printf(wxT("%c:\\"), (char) (drive + 'a' - 1)); | |
db5333a5 | 653 | name.Printf(wxT("(%c:)"), (char) (drive + 'A' - 1)); |
51a58d8b | 654 | |
33fed835 | 655 | if (wxIsDriveAvailable(path)) |
51a58d8b | 656 | { |
db5333a5 | 657 | AddSection(path, name, (drive <= 2) ? 6/*floppy*/ : 4/*disk*/); |
51a58d8b JS |
658 | } |
659 | } | |
db5333a5 VS |
660 | #endif // __WIN32__/!__WIN32__ |
661 | ||
f4ac0693 | 662 | #elif defined(__WXMAC__) |
bedaf53e SC |
663 | FSSpec volume ; |
664 | short index = 1 ; | |
665 | while(1) { | |
666 | short actualCount = 0 ; | |
667 | if ( OnLine( &volume , 1 , &actualCount , &index ) != noErr || actualCount == 0 ) | |
668 | break ; | |
669 | ||
670 | wxString name = wxMacFSSpec2MacFilename( &volume ) ; | |
a044cb72 | 671 | AddSection(name + wxFILE_SEP_PATH, name, 0); |
bedaf53e | 672 | } |
db5333a5 | 673 | #elif defined(__UNIX__) |
748fcded | 674 | AddSection(wxT("/"), wxT("/"), 3/*computer icon*/); |
db5333a5 VS |
675 | #else |
676 | #error "Unsupported platform in wxGenericDirCtrl!" | |
51a58d8b JS |
677 | #endif |
678 | } | |
679 | ||
680 | void wxGenericDirCtrl::OnBeginEditItem(wxTreeEvent &event) | |
681 | { | |
682 | // don't rename the main entry "Sections" | |
683 | if (event.GetItem() == m_rootId) | |
684 | { | |
685 | event.Veto(); | |
686 | return; | |
687 | } | |
688 | ||
689 | // don't rename the individual sections | |
690 | if (m_treeCtrl->GetParent( event.GetItem() ) == m_rootId) | |
691 | { | |
692 | event.Veto(); | |
693 | return; | |
694 | } | |
695 | } | |
696 | ||
697 | void wxGenericDirCtrl::OnEndEditItem(wxTreeEvent &event) | |
698 | { | |
699 | if ((event.GetLabel().IsEmpty()) || | |
700 | (event.GetLabel() == _(".")) || | |
701 | (event.GetLabel() == _("..")) || | |
702 | (event.GetLabel().First( wxT("/") ) != wxNOT_FOUND)) | |
703 | { | |
704 | wxMessageDialog dialog(this, _("Illegal directory name."), _("Error"), wxOK | wxICON_ERROR ); | |
705 | dialog.ShowModal(); | |
706 | event.Veto(); | |
707 | return; | |
708 | } | |
709 | ||
710 | wxTreeItemId id = event.GetItem(); | |
748fcded | 711 | wxDirItemData *data = (wxDirItemData*)m_treeCtrl->GetItemData( id ); |
51a58d8b JS |
712 | wxASSERT( data ); |
713 | ||
714 | wxString new_name( wxPathOnly( data->m_path ) ); | |
ad9cd15c | 715 | new_name += wxString(wxFILE_SEP_PATH); |
51a58d8b JS |
716 | new_name += event.GetLabel(); |
717 | ||
718 | wxLogNull log; | |
719 | ||
720 | if (wxFileExists(new_name)) | |
721 | { | |
722 | wxMessageDialog dialog(this, _("File name exists already."), _("Error"), wxOK | wxICON_ERROR ); | |
723 | dialog.ShowModal(); | |
724 | event.Veto(); | |
725 | } | |
726 | ||
727 | if (wxRenameFile(data->m_path,new_name)) | |
728 | { | |
729 | data->SetNewDirName( new_name ); | |
730 | } | |
731 | else | |
732 | { | |
733 | wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR ); | |
734 | dialog.ShowModal(); | |
735 | event.Veto(); | |
736 | } | |
737 | } | |
738 | ||
739 | void wxGenericDirCtrl::OnExpandItem(wxTreeEvent &event) | |
740 | { | |
741 | wxTreeItemId parentId = event.GetItem(); | |
742 | ||
748fcded VS |
743 | // VS: this is needed because the event handler is called from wxTreeCtrl |
744 | // ctor when wxTR_HIDE_ROOT was specified | |
745 | if (m_rootId == 0) | |
746 | m_rootId = m_treeCtrl->GetRootItem(); | |
747 | ||
51a58d8b JS |
748 | ExpandDir(parentId); |
749 | } | |
750 | ||
751 | void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent &event ) | |
752 | { | |
08887820 VS |
753 | CollapseDir(event.GetItem()); |
754 | } | |
755 | ||
756 | void wxGenericDirCtrl::CollapseDir(wxTreeItemId parentId) | |
757 | { | |
758 | wxTreeItemId child; | |
51a58d8b | 759 | |
08887820 | 760 | wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(parentId); |
51a58d8b JS |
761 | if (!data->m_isExpanded) |
762 | return; | |
763 | ||
764 | data->m_isExpanded = FALSE; | |
765 | long cookie; | |
766 | /* Workaround because DeleteChildren has disapeared (why?) and | |
767 | * CollapseAndReset doesn't work as advertised (deletes parent too) */ | |
08887820 | 768 | child = m_treeCtrl->GetFirstChild(parentId, cookie); |
51a58d8b JS |
769 | while (child.IsOk()) |
770 | { | |
771 | m_treeCtrl->Delete(child); | |
772 | /* Not GetNextChild below, because the cookie mechanism can't | |
773 | * handle disappearing children! */ | |
08887820 | 774 | child = m_treeCtrl->GetFirstChild(parentId, cookie); |
51a58d8b JS |
775 | } |
776 | } | |
777 | ||
778 | void wxGenericDirCtrl::ExpandDir(wxTreeItemId parentId) | |
779 | { | |
748fcded | 780 | wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(parentId); |
51a58d8b JS |
781 | |
782 | if (data->m_isExpanded) | |
783 | return; | |
784 | ||
785 | data->m_isExpanded = TRUE; | |
786 | ||
748fcded | 787 | if (parentId == m_treeCtrl->GetRootItem()) |
51a58d8b JS |
788 | { |
789 | SetupSections(); | |
790 | return; | |
791 | } | |
792 | ||
793 | wxASSERT(data); | |
794 | ||
795 | wxString search,path,filename; | |
796 | ||
797 | wxString dirName(data->m_path); | |
798 | ||
db5333a5 | 799 | #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__) |
51a58d8b JS |
800 | // Check if this is a root directory and if so, |
801 | // whether the drive is avaiable. | |
33fed835 MB |
802 | if (!wxIsDriveAvailable(dirName)) |
803 | { | |
ad9cd15c | 804 | data->m_isExpanded = FALSE; |
7328394a JS |
805 | //wxMessageBox(wxT("Sorry, this drive is not available.")); |
806 | return; | |
33fed835 | 807 | } |
51a58d8b JS |
808 | #endif |
809 | ||
810 | // This may take a longish time. Go to busy cursor | |
811 | wxBusyCursor busy; | |
812 | ||
db5333a5 | 813 | #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__) |
51a58d8b JS |
814 | if (dirName.Last() == ':') |
815 | dirName += wxString(wxFILE_SEP_PATH); | |
816 | #endif | |
817 | ||
818 | wxArrayString dirs; | |
819 | wxArrayString filenames; | |
820 | ||
821 | wxDir d; | |
822 | wxString eachFilename; | |
823 | ||
f9c165b1 | 824 | wxLogNull log; |
51a58d8b JS |
825 | d.Open(dirName); |
826 | ||
827 | if (d.IsOpened()) | |
828 | { | |
42dcacf0 RR |
829 | int style = wxDIR_DIRS; |
830 | if (m_showHidden) style |= wxDIR_HIDDEN; | |
831 | if (d.GetFirst(& eachFilename, wxEmptyString, style)) | |
51a58d8b JS |
832 | { |
833 | do | |
834 | { | |
835 | if ((eachFilename != wxT(".")) && (eachFilename != wxT(".."))) | |
836 | { | |
837 | dirs.Add(eachFilename); | |
838 | } | |
839 | } | |
748fcded | 840 | while (d.GetNext(& eachFilename)); |
51a58d8b JS |
841 | } |
842 | } | |
57e26a09 | 843 | dirs.Sort((wxArrayString::CompareFunction) wxDirCtrlStringCompareFunction); |
51a58d8b JS |
844 | |
845 | // Now do the filenames -- but only if we're allowed to | |
846 | if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY) == 0) | |
847 | { | |
f9c165b1 JS |
848 | wxLogNull log; |
849 | ||
51a58d8b | 850 | d.Open(dirName); |
ec1b28a3 | 851 | |
51a58d8b JS |
852 | if (d.IsOpened()) |
853 | { | |
854 | if (d.GetFirst(& eachFilename, m_currentFilterStr, wxDIR_FILES)) | |
855 | { | |
856 | do | |
857 | { | |
858 | if ((eachFilename != wxT(".")) && (eachFilename != wxT(".."))) | |
859 | { | |
860 | filenames.Add(eachFilename); | |
861 | } | |
862 | } | |
748fcded | 863 | while (d.GetNext(& eachFilename)); |
51a58d8b JS |
864 | } |
865 | } | |
57e26a09 | 866 | filenames.Sort((wxArrayString::CompareFunction) wxDirCtrlStringCompareFunction); |
51a58d8b JS |
867 | } |
868 | ||
869 | // Add the sorted dirs | |
870 | size_t i; | |
871 | for (i = 0; i < dirs.Count(); i++) | |
872 | { | |
873 | wxString eachFilename(dirs[i]); | |
874 | path = dirName; | |
875 | if (path.Last() != wxFILE_SEP_PATH) | |
876 | path += wxString(wxFILE_SEP_PATH); | |
877 | path += eachFilename; | |
878 | ||
748fcded | 879 | wxDirItemData *dir_item = new wxDirItemData(path,eachFilename,TRUE); |
51a58d8b JS |
880 | wxTreeItemId id = m_treeCtrl->AppendItem( parentId, eachFilename, 0, -1, dir_item); |
881 | m_treeCtrl->SetItemImage( id, 1, wxTreeItemIcon_Expanded ); | |
ec1b28a3 | 882 | |
51a58d8b | 883 | // Has this got any children? If so, make it expandable. |
748fcded VS |
884 | // (There are two situations when a dir has children: either it |
885 | // has subdirectories or it contains files that weren't filtered | |
886 | // out. The latter only applies to dirctrl with files.) | |
887 | if ( dir_item->HasSubDirs() || | |
888 | (((GetWindowStyle() & wxDIRCTRL_DIR_ONLY) == 0) && | |
889 | dir_item->HasFiles(m_currentFilterStr)) ) | |
51a58d8b | 890 | { |
748fcded | 891 | m_treeCtrl->SetItemHasChildren(id); |
51a58d8b | 892 | } |
51a58d8b JS |
893 | } |
894 | ||
895 | // Add the sorted filenames | |
896 | if ((GetWindowStyle() & wxDIRCTRL_DIR_ONLY) == 0) | |
897 | { | |
898 | for (i = 0; i < filenames.Count(); i++) | |
899 | { | |
900 | wxString eachFilename(filenames[i]); | |
901 | path = dirName; | |
902 | if (path.Last() != wxFILE_SEP_PATH) | |
903 | path += wxString(wxFILE_SEP_PATH); | |
904 | path += eachFilename; | |
905 | //path = dirName + wxString(wxT("/")) + eachFilename; | |
748fcded | 906 | wxDirItemData *dir_item = new wxDirItemData(path,eachFilename,FALSE); |
3fa4bd0e | 907 | (void)m_treeCtrl->AppendItem( parentId, eachFilename, 2, -1, dir_item); |
51a58d8b JS |
908 | } |
909 | } | |
910 | } | |
911 | ||
08887820 VS |
912 | void wxGenericDirCtrl::ReCreateTree() |
913 | { | |
914 | CollapseDir(m_treeCtrl->GetRootItem()); | |
915 | ExpandDir(m_treeCtrl->GetRootItem()); | |
916 | } | |
917 | ||
51a58d8b JS |
918 | // Find the child that matches the first part of 'path'. |
919 | // E.g. if a child path is "/usr" and 'path' is "/usr/include" | |
920 | // then the child for /usr is returned. | |
921 | wxTreeItemId wxGenericDirCtrl::FindChild(wxTreeItemId parentId, const wxString& path, bool& done) | |
922 | { | |
923 | wxString path2(path); | |
ec1b28a3 | 924 | |
51a58d8b JS |
925 | // Make sure all separators are as per the current platform |
926 | path2.Replace(wxT("\\"), wxString(wxFILE_SEP_PATH)); | |
927 | path2.Replace(wxT("/"), wxString(wxFILE_SEP_PATH)); | |
ec1b28a3 | 928 | |
51a58d8b JS |
929 | // Append a separator to foil bogus substring matching |
930 | path2 += wxString(wxFILE_SEP_PATH); | |
ec1b28a3 DW |
931 | |
932 | // In MSW or PM, case is not significant | |
db5333a5 | 933 | #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__) |
51a58d8b JS |
934 | path2.MakeLower(); |
935 | #endif | |
ec1b28a3 | 936 | |
51a58d8b JS |
937 | long cookie; |
938 | wxTreeItemId childId = m_treeCtrl->GetFirstChild(parentId, cookie); | |
53ccf1c0 | 939 | while (childId.IsOk()) |
51a58d8b | 940 | { |
748fcded | 941 | wxDirItemData* data = (wxDirItemData*) m_treeCtrl->GetItemData(childId); |
ec1b28a3 | 942 | |
748fcded | 943 | if (data && !data->m_path.IsEmpty()) |
51a58d8b JS |
944 | { |
945 | wxString childPath(data->m_path); | |
946 | if (childPath.Last() != wxFILE_SEP_PATH) | |
947 | childPath += wxString(wxFILE_SEP_PATH); | |
ec1b28a3 DW |
948 | |
949 | // In MSW and PM, case is not significant | |
db5333a5 | 950 | #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXPM__) |
51a58d8b JS |
951 | childPath.MakeLower(); |
952 | #endif | |
ec1b28a3 | 953 | |
51a58d8b JS |
954 | if (childPath.Len() <= path2.Len()) |
955 | { | |
956 | wxString path3 = path2.Mid(0, childPath.Len()); | |
957 | if (childPath == path3) | |
958 | { | |
959 | if (path3.Len() == path2.Len()) | |
960 | done = TRUE; | |
961 | else | |
962 | done = FALSE; | |
963 | return childId; | |
964 | } | |
965 | } | |
966 | } | |
ec1b28a3 | 967 | |
748fcded | 968 | childId = m_treeCtrl->GetNextChild(parentId, cookie); |
51a58d8b | 969 | } |
3fa4bd0e VS |
970 | wxTreeItemId invalid; |
971 | return invalid; | |
51a58d8b JS |
972 | } |
973 | ||
974 | // Try to expand as much of the given path as possible, | |
975 | // and select the given tree item. | |
976 | bool wxGenericDirCtrl::ExpandPath(const wxString& path) | |
977 | { | |
978 | bool done = FALSE; | |
979 | wxTreeItemId id = FindChild(m_rootId, path, done); | |
980 | wxTreeItemId lastId = id; // The last non-zero id | |
237387ad | 981 | while (id.IsOk() && !done) |
51a58d8b JS |
982 | { |
983 | ExpandDir(id); | |
984 | ||
985 | id = FindChild(id, path, done); | |
53ccf1c0 | 986 | if (id.IsOk()) |
51a58d8b JS |
987 | lastId = id; |
988 | } | |
53ccf1c0 | 989 | if (lastId.IsOk()) |
51a58d8b | 990 | { |
748fcded | 991 | wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(lastId); |
51a58d8b JS |
992 | if (data->m_isDir) |
993 | { | |
994 | m_treeCtrl->Expand(lastId); | |
995 | } | |
996 | if ((GetWindowStyle() & wxDIRCTRL_SELECT_FIRST) && data->m_isDir) | |
997 | { | |
998 | // Find the first file in this directory | |
999 | long cookie; | |
1000 | wxTreeItemId childId = m_treeCtrl->GetFirstChild(lastId, cookie); | |
1001 | bool selectedChild = FALSE; | |
53ccf1c0 | 1002 | while (childId.IsOk()) |
51a58d8b | 1003 | { |
748fcded | 1004 | wxDirItemData* data = (wxDirItemData*) m_treeCtrl->GetItemData(childId); |
ec1b28a3 | 1005 | |
8dd8f875 | 1006 | if (data && data->m_path != wxT("") && !data->m_isDir) |
51a58d8b JS |
1007 | { |
1008 | m_treeCtrl->SelectItem(childId); | |
1009 | m_treeCtrl->EnsureVisible(childId); | |
1010 | selectedChild = TRUE; | |
1011 | break; | |
1012 | } | |
1013 | childId = m_treeCtrl->GetNextChild(lastId, cookie); | |
1014 | } | |
1015 | if (!selectedChild) | |
1016 | { | |
1017 | m_treeCtrl->SelectItem(lastId); | |
1018 | m_treeCtrl->EnsureVisible(lastId); | |
1019 | } | |
1020 | } | |
1021 | else | |
1022 | { | |
1023 | m_treeCtrl->SelectItem(lastId); | |
1024 | m_treeCtrl->EnsureVisible(lastId); | |
1025 | } | |
1026 | ||
1027 | return TRUE; | |
1028 | } | |
1029 | else | |
1030 | return FALSE; | |
1031 | } | |
1032 | ||
1033 | wxString wxGenericDirCtrl::GetPath() const | |
1034 | { | |
1035 | wxTreeItemId id = m_treeCtrl->GetSelection(); | |
1036 | if (id) | |
1037 | { | |
748fcded | 1038 | wxDirItemData* data = (wxDirItemData*) m_treeCtrl->GetItemData(id); |
51a58d8b JS |
1039 | return data->m_path; |
1040 | } | |
1041 | else | |
1042 | return wxEmptyString; | |
1043 | } | |
1044 | ||
1045 | wxString wxGenericDirCtrl::GetFilePath() const | |
1046 | { | |
1047 | wxTreeItemId id = m_treeCtrl->GetSelection(); | |
1048 | if (id) | |
1049 | { | |
748fcded | 1050 | wxDirItemData* data = (wxDirItemData*) m_treeCtrl->GetItemData(id); |
51a58d8b JS |
1051 | if (data->m_isDir) |
1052 | return wxEmptyString; | |
1053 | else | |
1054 | return data->m_path; | |
1055 | } | |
1056 | else | |
1057 | return wxEmptyString; | |
1058 | } | |
1059 | ||
1060 | void wxGenericDirCtrl::SetPath(const wxString& path) | |
1061 | { | |
1062 | m_defaultPath = path; | |
1063 | if (m_rootId) | |
1064 | ExpandPath(path); | |
1065 | } | |
1066 | ||
1067 | // Not used | |
1068 | #if 0 | |
1069 | void wxGenericDirCtrl::FindChildFiles(wxTreeItemId id, int dirFlags, wxArrayString& filenames) | |
1070 | { | |
748fcded | 1071 | wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(id); |
51a58d8b JS |
1072 | |
1073 | // This may take a longish time. Go to busy cursor | |
1074 | wxBusyCursor busy; | |
1075 | ||
1076 | wxASSERT(data); | |
1077 | ||
1078 | wxString search,path,filename; | |
1079 | ||
1080 | wxString dirName(data->m_path); | |
1081 | ||
ec1b28a3 | 1082 | #if defined(__WXMSW__) || defined(__WXPM__) |
51a58d8b JS |
1083 | if (dirName.Last() == ':') |
1084 | dirName += wxString(wxFILE_SEP_PATH); | |
1085 | #endif | |
1086 | ||
1087 | wxDir d; | |
1088 | wxString eachFilename; | |
1089 | ||
f9c165b1 | 1090 | wxLogNull log; |
51a58d8b JS |
1091 | d.Open(dirName); |
1092 | ||
1093 | if (d.IsOpened()) | |
1094 | { | |
1095 | if (d.GetFirst(& eachFilename, m_currentFilterStr, dirFlags)) | |
1096 | { | |
1097 | do | |
1098 | { | |
1099 | if ((eachFilename != wxT(".")) && (eachFilename != wxT(".."))) | |
1100 | { | |
1101 | filenames.Add(eachFilename); | |
1102 | } | |
1103 | } | |
1104 | while (d.GetNext(& eachFilename)) ; | |
1105 | } | |
1106 | } | |
1107 | } | |
1108 | #endif | |
1109 | ||
1110 | void wxGenericDirCtrl::SetFilterIndex(int n) | |
1111 | { | |
1112 | m_currentFilter = n; | |
1113 | ||
1114 | wxString f, d; | |
1115 | if (ExtractWildcard(m_filter, n, f, d)) | |
1116 | m_currentFilterStr = f; | |
1117 | else | |
1118 | m_currentFilterStr = wxT("*.*"); | |
1119 | } | |
1120 | ||
1121 | void wxGenericDirCtrl::SetFilter(const wxString& filter) | |
1122 | { | |
1123 | m_filter = filter; | |
1124 | ||
1125 | wxString f, d; | |
1126 | if (ExtractWildcard(m_filter, m_currentFilter, f, d)) | |
1127 | m_currentFilterStr = f; | |
1128 | else | |
1129 | m_currentFilterStr = wxT("*.*"); | |
1130 | } | |
1131 | ||
1132 | // Extract description and actual filter from overall filter string | |
1133 | bool wxGenericDirCtrl::ExtractWildcard(const wxString& filterStr, int n, wxString& filter, wxString& description) | |
1134 | { | |
1135 | wxArrayString filters, descriptions; | |
1136 | int count = ParseFilter(filterStr, filters, descriptions); | |
1137 | if (count > 0 && n < count) | |
1138 | { | |
1139 | filter = filters[n]; | |
1140 | description = descriptions[n]; | |
1141 | return TRUE; | |
1142 | } | |
5716a1ab VZ |
1143 | |
1144 | return FALSE; | |
51a58d8b JS |
1145 | } |
1146 | ||
1147 | // Parses the global filter, returning the number of filters. | |
1148 | // Returns 0 if none or if there's a problem. | |
1149 | // filterStr is in the form: | |
1150 | // | |
1151 | // "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpg" | |
1152 | ||
1153 | int wxGenericDirCtrl::ParseFilter(const wxString& filterStr, wxArrayString& filters, wxArrayString& descriptions) | |
1154 | { | |
1155 | wxString str(filterStr); | |
1156 | ||
1157 | wxString description, filter; | |
1158 | int pos; | |
1159 | bool finished = FALSE; | |
1160 | do | |
1161 | { | |
1162 | pos = str.Find(wxT('|')); | |
1163 | if (pos == -1) | |
1164 | return 0; // Problem | |
1165 | description = str.Left(pos); | |
1166 | str = str.Mid(pos+1); | |
1167 | pos = str.Find(wxT('|')); | |
1168 | if (pos == -1) | |
1169 | { | |
1170 | filter = str; | |
1171 | finished = TRUE; | |
1172 | } | |
1173 | else | |
1174 | { | |
1175 | filter = str.Left(pos); | |
1176 | str = str.Mid(pos+1); | |
1177 | } | |
1178 | descriptions.Add(description); | |
1179 | filters.Add(filter); | |
1180 | } | |
1181 | while (!finished) ; | |
1182 | ||
1183 | return filters.Count(); | |
1184 | } | |
1185 | ||
1186 | void wxGenericDirCtrl::DoResize() | |
1187 | { | |
1188 | wxSize sz = GetClientSize(); | |
1189 | int verticalSpacing = 3; | |
1190 | if (m_treeCtrl) | |
1191 | { | |
1192 | wxSize filterSz ; | |
1193 | if (m_filterListCtrl) | |
1194 | { | |
232f35cb JS |
1195 | #ifdef __WXMSW__ |
1196 | // For some reason, this is required in order for the | |
1197 | // correct control height to always be returned, rather | |
1198 | // than the drop-down list height which is sometimes returned. | |
1199 | wxSize oldSize = m_filterListCtrl->GetSize(); | |
1200 | m_filterListCtrl->SetSize(-1, -1, oldSize.x+10, -1, wxSIZE_USE_EXISTING); | |
1201 | m_filterListCtrl->SetSize(-1, -1, oldSize.x, -1, wxSIZE_USE_EXISTING); | |
1202 | #endif | |
51a58d8b JS |
1203 | filterSz = m_filterListCtrl->GetSize(); |
1204 | sz.y -= (filterSz.y + verticalSpacing); | |
1205 | } | |
1206 | m_treeCtrl->SetSize(0, 0, sz.x, sz.y); | |
1207 | if (m_filterListCtrl) | |
1208 | { | |
1209 | m_filterListCtrl->SetSize(0, sz.y + verticalSpacing, sz.x, filterSz.y); | |
1210 | // Don't know why, but this needs refreshing after a resize (wxMSW) | |
1211 | m_filterListCtrl->Refresh(); | |
1212 | } | |
1213 | } | |
1214 | } | |
1215 | ||
1216 | ||
33ac7e6f | 1217 | void wxGenericDirCtrl::OnSize(wxSizeEvent& WXUNUSED(event)) |
51a58d8b JS |
1218 | { |
1219 | DoResize(); | |
1220 | } | |
1221 | ||
1222 | //----------------------------------------------------------------------------- | |
1223 | // wxDirFilterListCtrl | |
1224 | //----------------------------------------------------------------------------- | |
1225 | ||
1226 | IMPLEMENT_CLASS(wxDirFilterListCtrl, wxChoice) | |
1227 | ||
1228 | BEGIN_EVENT_TABLE(wxDirFilterListCtrl, wxChoice) | |
1229 | EVT_CHOICE(-1, wxDirFilterListCtrl::OnSelFilter) | |
1230 | END_EVENT_TABLE() | |
1231 | ||
1232 | bool wxDirFilterListCtrl::Create(wxGenericDirCtrl* parent, const wxWindowID id, | |
1233 | const wxPoint& pos, | |
1234 | const wxSize& size, | |
1235 | long style) | |
1236 | { | |
1237 | m_dirCtrl = parent; | |
1238 | return wxChoice::Create(parent, id, pos, size, 0, NULL, style); | |
1239 | } | |
1240 | ||
1241 | void wxDirFilterListCtrl::Init() | |
1242 | { | |
1243 | m_dirCtrl = NULL; | |
1244 | } | |
1245 | ||
33ac7e6f | 1246 | void wxDirFilterListCtrl::OnSelFilter(wxCommandEvent& WXUNUSED(event)) |
51a58d8b JS |
1247 | { |
1248 | int sel = GetSelection(); | |
1249 | ||
1250 | wxString currentPath = m_dirCtrl->GetPath(); | |
ec1b28a3 | 1251 | |
51a58d8b JS |
1252 | m_dirCtrl->SetFilterIndex(sel); |
1253 | ||
1254 | // If the filter has changed, the view is out of date, so | |
1255 | // collapse the tree. | |
08887820 | 1256 | m_dirCtrl->ReCreateTree(); |
51a58d8b JS |
1257 | |
1258 | // Try to restore the selection, or at least the directory | |
1259 | m_dirCtrl->ExpandPath(currentPath); | |
1260 | } | |
1261 | ||
1262 | void wxDirFilterListCtrl::FillFilterList(const wxString& filter, int defaultFilter) | |
1263 | { | |
1264 | Clear(); | |
1265 | wxArrayString descriptions, filters; | |
1266 | size_t n = (size_t) m_dirCtrl->ParseFilter(filter, filters, descriptions); | |
1267 | ||
1268 | if (n > 0 && defaultFilter < (int) n) | |
1269 | { | |
1270 | size_t i = 0; | |
1271 | for (i = 0; i < n; i++) | |
1272 | Append(descriptions[i]); | |
1273 | SetSelection(defaultFilter); | |
1274 | } | |
1275 | } | |
1276 | ||
1e6feb95 | 1277 | #endif // wxUSE_DIRDLG |