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