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