]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: filedlg.cpp | |
2f1ae414 | 3 | // Purpose: wxFileDialog |
e9576ca5 SC |
4 | // Author: AUTHOR |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "filedlg.h" | |
14 | #endif | |
15 | ||
16 | #include "wx/defs.h" | |
5fde6fcc | 17 | #include "wx/app.h" |
e9576ca5 SC |
18 | #include "wx/utils.h" |
19 | #include "wx/dialog.h" | |
20 | #include "wx/filedlg.h" | |
21 | #include "wx/intl.h" | |
fe35d097 | 22 | #include "wx/tokenzr.h" |
e9576ca5 | 23 | |
f11bdd03 | 24 | #ifndef __DARWIN__ |
03e11df5 GD |
25 | #include "PLStringFuncs.h" |
26 | #endif | |
5b781a67 | 27 | |
2f1ae414 | 28 | #if !USE_SHARED_LIBRARY |
e9576ca5 | 29 | IMPLEMENT_CLASS(wxFileDialog, wxDialog) |
2f1ae414 | 30 | #endif |
e9576ca5 | 31 | |
519cb848 SC |
32 | // begin wxmac |
33 | ||
bb378910 | 34 | #include <Navigation.h> |
5b781a67 | 35 | |
da2b4b7a GD |
36 | #include "MoreFiles.h" |
37 | #include "MoreFilesExtras.h" | |
519cb848 | 38 | |
5b781a67 SC |
39 | extern bool gUseNavServices ; |
40 | ||
4d4d8bbf SC |
41 | // the data we need to pass to our standard file hook routine |
42 | // includes a pointer to the dialog, a pointer to the standard | |
43 | // file reply record (so we can inspect the current selection) | |
44 | // and a copy of the "previous" file spec of the reply record | |
45 | // so we can see if the selection has changed | |
46 | ||
47 | const int kwxMacFileTypes = 10 ; | |
48 | ||
49 | struct OpenUserDataRec { | |
50 | int currentfilter ; | |
51 | wxString name [kwxMacFileTypes] ; | |
52 | wxString extensions[kwxMacFileTypes] ; | |
53 | OSType filtermactypes[kwxMacFileTypes] ; | |
54 | int numfilters ; | |
55 | }; | |
56 | typedef struct OpenUserDataRec | |
57 | OpenUserDataRec, *OpenUserDataRecPtr; | |
58 | ||
5b781a67 SC |
59 | static pascal void NavEventProc( |
60 | NavEventCallbackMessage inSelector, | |
61 | NavCBRecPtr ioParams, | |
62 | NavCallBackUserData ioUserData); | |
63 | ||
64 | #if TARGET_CARBON | |
65 | static NavEventUPP sStandardNavEventFilter = NewNavEventUPP(NavEventProc); | |
66 | #else | |
67 | static NavEventUPP sStandardNavEventFilter = NewNavEventProc(NavEventProc); | |
68 | #endif | |
69 | ||
70 | static pascal void | |
71 | NavEventProc( | |
72 | NavEventCallbackMessage inSelector, | |
73 | NavCBRecPtr ioParams, | |
4d4d8bbf | 74 | NavCallBackUserData ioUserData ) |
5b781a67 | 75 | { |
4d4d8bbf | 76 | OpenUserDataRec * data = ( OpenUserDataRec *) ioUserData ; |
5b781a67 SC |
77 | if (inSelector == kNavCBEvent) { |
78 | // In Universal Headers 3.2, Apple changed the definition of | |
79 | /* | |
80 | #if UNIVERSAL_INTERFACES_VERSION >= 0x0320 // Universal Headers 3.2 | |
81 | UModalAlerts::ProcessModalEvent(*(ioParams->eventData.eventDataParms.event)); | |
82 | ||
83 | #else | |
84 | UModalAlerts::ProcessModalEvent(*(ioParams->eventData.event)); | |
85 | #endif | |
86 | */ | |
87 | ||
5fde6fcc | 88 | wxTheApp->MacHandleOneEvent(ioParams->eventData.eventDataParms.event); |
4d4d8bbf SC |
89 | } else if ( inSelector == kNavCBPopupMenuSelect ) |
90 | { | |
91 | NavMenuItemSpec * menu = (NavMenuItemSpec *) ioParams->eventData.eventDataParms.param ; | |
92 | data->currentfilter = menu->menuType ; | |
5b781a67 SC |
93 | } |
94 | } | |
95 | ||
519cb848 SC |
96 | char * gfilters[] = |
97 | { | |
98 | "*.TXT" , | |
4d4d8bbf SC |
99 | "*.TIF" , |
100 | "*.JPG" , | |
519cb848 SC |
101 | |
102 | NULL | |
103 | } ; | |
104 | ||
105 | OSType gfiltersmac[] = | |
106 | { | |
107 | 'TEXT' , | |
4d4d8bbf SC |
108 | 'TIFF' , |
109 | 'JPEG' , | |
519cb848 SC |
110 | |
111 | '****' | |
112 | } ; | |
113 | ||
2f1ae414 SC |
114 | |
115 | #if !TARGET_CARBON | |
116 | ||
519cb848 SC |
117 | static void wxMacSetupStandardFile(short newVRefNum, long newDirID) |
118 | { | |
119 | enum | |
120 | { SFSaveDisk = 0x214, CurDirStore = 0x398 }; | |
121 | *(short *) SFSaveDisk = -1 * newVRefNum; | |
122 | *(long *) CurDirStore = newDirID; | |
123 | } | |
124 | ||
125 | static void wxMacSetupStandardFileFromPath( const char* s ) | |
126 | { | |
127 | Str255 volume ; | |
128 | Str255 path ; | |
129 | short vRefNum ; | |
130 | long dirRef ; | |
131 | short i,j ; | |
132 | Boolean isDirectory ; | |
133 | ||
134 | for (i=0 ; (s[i]!=0) && (s[i]!=':') ;i++) | |
135 | { | |
136 | volume[i]=s[i] ; | |
137 | } | |
138 | volume[i]=':' ; | |
139 | volume[i+1]=0 ; | |
140 | ||
141 | // then copy the rest of the filename | |
142 | ||
143 | for (j=0;(s[i]!=0);i++,j++) | |
144 | { | |
145 | path[j]=s[i] ; | |
146 | } | |
147 | path[j]=0 ; | |
148 | ||
149 | c2pstr((Ptr) volume) ; | |
150 | c2pstr((Ptr) path) ; | |
151 | ||
152 | SetVol(volume, 0) ; | |
153 | GetVol( NULL, &vRefNum ) ; | |
154 | ||
155 | GetDirectoryID( vRefNum , fsRtDirID , path , &dirRef , &isDirectory ) ; | |
156 | wxMacSetupStandardFile(vRefNum, dirRef) ; | |
157 | } | |
158 | ||
159 | enum { | |
160 | kSelectItem = 10, // select button item number | |
161 | kSFGetFileDlgID = 251, // dialog resource number | |
162 | kStrListID = 251, // our strings | |
163 | kSelectStrNum = 1, // word 'Select: ' for button | |
164 | kDesktopStrNum = 2, // word 'Desktop' for button | |
165 | kSelectNoQuoteStrNum = 3, // word 'Select: ' for button | |
166 | ||
167 | kUseQuotes = true, // parameter for SetButtonName | |
168 | kDontUseQuotes = false | |
169 | }; | |
170 | ||
519cb848 SC |
171 | static void GetLabelString(StringPtr theStr, short stringNum) |
172 | { | |
173 | GetIndString(theStr, kStrListID, stringNum); | |
174 | } | |
175 | ||
176 | static void CopyPStr(StringPtr src, StringPtr dest) | |
177 | { | |
178 | BlockMoveData(src, dest, 1 + src[0]); | |
179 | } | |
180 | ||
181 | static char GetSelectKey(void) | |
182 | { | |
183 | // this is the key used to trigger the select button | |
184 | ||
185 | // NOT INTERNATIONAL SAVVY; should at least grab it from resources | |
186 | ||
187 | return 's'; | |
188 | } | |
189 | ||
190 | // FlashButton briefly highlights the dialog button | |
191 | // as feedback for key equivalents | |
192 | ||
193 | static void FlashButton(DialogPtr theDlgPtr, short buttonID) | |
194 | { | |
195 | short buttonType; | |
196 | Handle buttonHandle; | |
197 | Rect buttonRect; | |
198 | unsigned long finalTicks; | |
199 | ||
200 | GetDialogItem(theDlgPtr, buttonID, &buttonType, &buttonHandle, &buttonRect); | |
201 | HiliteControl((ControlHandle) buttonHandle, kControlButtonPart); | |
202 | Delay(10, &finalTicks); | |
203 | HiliteControl((ControlHandle) buttonHandle, 0); | |
204 | } | |
205 | ||
206 | static Boolean SameFSSpec(FSSpecPtr spec1, FSSpecPtr spec2) | |
207 | { | |
208 | return (spec1->vRefNum == spec2->vRefNum | |
209 | && spec1->parID == spec2->parID | |
210 | && EqualString(spec1->name, spec2->name, false, false)); | |
211 | } | |
212 | // MyModalDialogFilter maps a key to the Select button, and handles | |
213 | // flashing of the button when the key is hit | |
214 | ||
215 | static pascal Boolean SFGetFolderModalDialogFilter(DialogPtr theDlgPtr, EventRecord *eventRec, | |
5fde6fcc | 216 | short *item, void *dataPtr) |
519cb848 SC |
217 | { |
218 | #pragma unused (dataPtr) | |
219 | ||
220 | // make certain the proper dialog is showing, 'cause standard file | |
221 | // can nest dialogs but calls the same filter for each | |
222 | ||
223 | if (((WindowPeek) theDlgPtr)->refCon == sfMainDialogRefCon) | |
224 | { | |
225 | // check if the select button was hit | |
226 | /* | |
227 | if ((eventRec->what == keyDown) | |
228 | && (eventRec->modifiers & cmdKey) | |
229 | && ((eventRec->message & charCodeMask) == GetSelectKey())) | |
230 | { | |
231 | *item = kSelectItem; | |
232 | FlashButton(theDlgPtr, kSelectItem); | |
233 | return true; | |
234 | } | |
235 | */ | |
236 | } | |
237 | ||
238 | return false; | |
239 | } | |
5b781a67 | 240 | #endif !TARGET_CARBON |
519cb848 | 241 | |
4d4d8bbf SC |
242 | void MakeUserDataRec(OpenUserDataRec *myData , const wxString& filter ) |
243 | { | |
244 | myData->currentfilter = 0 ; | |
245 | ||
246 | if ( filter && filter[0] ) | |
247 | { | |
248 | wxString filter2(filter) ; | |
249 | int filterIndex = 0; | |
250 | bool isName = true ; | |
251 | wxString current ; | |
252 | for( unsigned int i = 0; i < filter2.Len(); i++ ) | |
253 | { | |
254 | if( filter2.GetChar(i) == wxT('|') ) | |
255 | { | |
256 | if( isName ) { | |
257 | myData->name[filterIndex] = current ; | |
258 | } | |
259 | else { | |
260 | myData->extensions[filterIndex] = current.MakeUpper() ; | |
261 | ++filterIndex ; | |
262 | } | |
263 | isName = !isName ; | |
264 | current = "" ; | |
265 | } | |
266 | else | |
267 | { | |
268 | current += filter2.GetChar(i) ; | |
269 | } | |
270 | } | |
fe35d097 | 271 | // if ( filterIndex > 0 ) |
4d4d8bbf SC |
272 | { |
273 | wxASSERT_MSG( !isName , "incorrect format of format string" ) ; | |
274 | myData->extensions[filterIndex] = current.MakeUpper() ; | |
275 | ++filterIndex ; | |
276 | } | |
277 | ||
278 | myData->numfilters = filterIndex ; | |
279 | for ( int i = 0 ; i < myData->numfilters ; i++ ) | |
280 | { | |
281 | int j ; | |
282 | for ( j = 0 ; gfilters[j] ; j++ ) | |
283 | { | |
284 | if ( strcmp( myData->extensions[i] , gfilters[j] ) == 0 ) | |
285 | { | |
286 | myData->filtermactypes[i] = gfiltersmac[j] ; | |
287 | break ; | |
288 | } | |
289 | } | |
290 | if( gfilters[j] == NULL ) | |
291 | { | |
292 | myData->filtermactypes[i] = '****' ; | |
293 | } | |
294 | } | |
295 | } | |
296 | else | |
297 | { | |
298 | myData->numfilters = 0 ; | |
299 | } | |
300 | ||
301 | } | |
bb378910 GD |
302 | |
303 | #ifndef __DARWIN__ | |
4d4d8bbf | 304 | void ExtendedOpenFile( ConstStr255Param message , ConstStr255Param path , const char *filter , FileFilterYDUPP fileFilter, StandardFileReply *theSFR ) |
519cb848 SC |
305 | { |
306 | Point thePt; | |
307 | OpenUserDataRec myData; | |
308 | FSSpec tempSpec; | |
309 | Boolean folderFlag; | |
310 | Boolean wasAliasedFlag; | |
311 | DlgHookYDUPP dlgHookUPP; | |
312 | ModalFilterYDUPP myModalFilterUPP; | |
313 | OSErr err; | |
314 | SFTypeList types ; | |
315 | ||
fe35d097 | 316 | |
519cb848 SC |
317 | // presumably we're running System 7 or later so CustomGetFile is |
318 | // available | |
319 | ||
320 | // set initial contents of Select button to a space | |
321 | ||
2f1ae414 | 322 | memcpy( theSFR->sfFile.name , "\p " , 2 ) ; |
519cb848 SC |
323 | |
324 | // point the user data parameter at the reply record so we can get to it later | |
325 | ||
4d4d8bbf | 326 | MakeUserDataRec( &myData , filter ) ; |
519cb848 | 327 | // display the dialog |
2f1ae414 | 328 | |
fe35d097 SC |
329 | #if !TARGET_CARBON |
330 | ||
519cb848 SC |
331 | dlgHookUPP = NULL ; |
332 | // dlgHookUPP = NewDlgHookYDProc(SFGetFolderDialogHook); | |
333 | myModalFilterUPP = NewModalFilterYDProc(SFGetFolderModalDialogFilter); | |
334 | ||
335 | thePt.h = thePt.v = -1; // center dialog | |
336 | ||
337 | ParamText( message , NULL , NULL , NULL ) ; | |
338 | ||
339 | CustomGetFile( fileFilter, | |
da2b4b7a GD |
340 | -1, // show all types |
341 | NULL, | |
342 | theSFR, | |
343 | kSFGetFileDlgID, | |
344 | thePt, // top left point | |
345 | dlgHookUPP, | |
346 | myModalFilterUPP, | |
347 | nil, // activate list | |
348 | nil, // activate proc | |
349 | &myData); | |
519cb848 SC |
350 | |
351 | DisposeRoutineDescriptor(dlgHookUPP); | |
352 | DisposeRoutineDescriptor(myModalFilterUPP); | |
fe35d097 SC |
353 | #else |
354 | #endif | |
519cb848 SC |
355 | // if cancel wasn't pressed and no fatal error occurred... |
356 | ||
357 | if (theSFR->sfGood) | |
358 | { | |
359 | // if no name is in the reply record file spec, | |
360 | // use the file spec of the parent folder | |
361 | ||
362 | if (theSFR->sfFile.name[0] == '\0') | |
363 | { | |
364 | err = FSMakeFSSpec(theSFR->sfFile.vRefNum, theSFR->sfFile.parID, | |
da2b4b7a | 365 | "\p", &tempSpec); |
519cb848 SC |
366 | if (err == noErr) |
367 | { | |
368 | theSFR->sfFile = tempSpec; | |
369 | } | |
370 | else | |
371 | { | |
372 | // no name to return, forget it | |
373 | ||
374 | theSFR->sfGood = false; | |
375 | } | |
376 | } | |
377 | ||
378 | // if there is now a name in the file spec, check if it's | |
379 | // for a folder or a volume | |
380 | ||
381 | if (theSFR->sfFile.name[0] != '\0') | |
382 | { | |
383 | // the parID of the root of a disk is always fsRtParID == 1 | |
384 | ||
385 | if (theSFR->sfFile.parID == fsRtParID) | |
386 | { | |
387 | theSFR->sfIsVolume = true; | |
388 | theSFR->sfIsFolder = false; // it would be reasonable for this to be true, too | |
389 | } | |
390 | ||
391 | // we have a valid FSSpec, now let's make sure it's not for an alias file | |
392 | ||
393 | err = ResolveAliasFile(&theSFR->sfFile, true, &folderFlag, &wasAliasedFlag); | |
394 | if (err != noErr) | |
395 | { | |
396 | theSFR->sfGood = false; | |
397 | } | |
398 | ||
399 | // did the alias resolve to a folder? | |
400 | ||
401 | if (folderFlag && ! theSFR->sfIsVolume) | |
402 | { | |
403 | theSFR->sfIsFolder = true; | |
404 | } | |
405 | } | |
406 | } | |
407 | } | |
bb378910 | 408 | #endif |
519cb848 | 409 | |
4d4d8bbf SC |
410 | static Boolean CheckFile( ConstStr255Param name , OSType type , OpenUserDataRecPtr data) |
411 | { | |
da2b4b7a GD |
412 | Str255 filename ; |
413 | ||
414 | #if TARGET_CARBON | |
415 | p2cstrcpy((char *)filename, name) ; | |
416 | #else | |
417 | PLstrcpy( filename , name ) ; | |
9f92f6fb | 418 | p2cstr( filename ) ; |
da2b4b7a | 419 | #endif |
9f92f6fb SC |
420 | wxString file(filename) ; |
421 | file.MakeUpper() ; | |
422 | ||
da2b4b7a GD |
423 | if ( data->numfilters > 0 ) |
424 | { | |
425 | //for ( int i = 0 ; i < data->numfilters ; ++i ) | |
fe35d097 SC |
426 | int i = data->currentfilter ; |
427 | if ( data->extensions[i].Right(2) == ".*" ) | |
428 | return true ; | |
da2b4b7a | 429 | |
fe35d097 SC |
430 | { |
431 | if ( type == data->filtermactypes[i] ) | |
432 | return true ; | |
da2b4b7a | 433 | |
fe35d097 SC |
434 | wxStringTokenizer tokenizer( data->extensions[i] , ";" ) ; |
435 | while( tokenizer.HasMoreTokens() ) | |
436 | { | |
437 | wxString extension = tokenizer.GetNextToken() ; | |
438 | if ( extension.GetChar(0) == '*' ) | |
439 | extension = extension.Mid(1) ; | |
440 | ||
441 | if ( file.Len() >= extension.Len() && extension == file.Right(extension.Len() ) ) | |
442 | return true ; | |
443 | } | |
444 | } | |
445 | return false ; | |
da2b4b7a GD |
446 | } |
447 | return true ; | |
4d4d8bbf SC |
448 | } |
449 | ||
bb378910 | 450 | #ifndef __DARWIN__ |
5fde6fcc | 451 | static pascal Boolean CrossPlatformFileFilter(CInfoPBPtr myCInfoPBPtr, void *dataPtr) |
519cb848 | 452 | { |
519cb848 SC |
453 | OpenUserDataRecPtr data = (OpenUserDataRecPtr) dataPtr ; |
454 | // return true if this item is invisible or a file | |
455 | ||
456 | Boolean visibleFlag; | |
457 | Boolean folderFlag; | |
458 | ||
459 | visibleFlag = ! (myCInfoPBPtr->hFileInfo.ioFlFndrInfo.fdFlags & kIsInvisible); | |
460 | folderFlag = (myCInfoPBPtr->hFileInfo.ioFlAttrib & 0x10); | |
461 | ||
462 | // because the semantics of the filter proc are "true means don't show | |
463 | // it" we need to invert the result that we return | |
464 | ||
465 | if ( !visibleFlag ) | |
466 | return true ; | |
467 | ||
468 | if ( !folderFlag ) | |
469 | { | |
4d4d8bbf | 470 | return !CheckFile( myCInfoPBPtr->hFileInfo.ioNamePtr , myCInfoPBPtr->hFileInfo.ioFlFndrInfo.fdType , data ) ; |
519cb848 SC |
471 | } |
472 | ||
473 | return false ; | |
474 | } | |
bb378910 | 475 | #endif |
519cb848 SC |
476 | |
477 | // end wxmac | |
478 | ||
479 | wxString wxFileSelector(const char *title, | |
e9576ca5 SC |
480 | const char *defaultDir, const char *defaultFileName, |
481 | const char *defaultExtension, const char *filter, int flags, | |
482 | wxWindow *parent, int x, int y) | |
483 | { | |
484 | // If there's a default extension specified but no filter, we create a suitable | |
485 | // filter. | |
486 | ||
487 | wxString filter2(""); | |
488 | if ( defaultExtension && !filter ) | |
489 | filter2 = wxString("*.") + wxString(defaultExtension) ; | |
490 | else if ( filter ) | |
491 | filter2 = filter; | |
492 | ||
493 | wxString defaultDirString; | |
494 | if (defaultDir) | |
495 | defaultDirString = defaultDir; | |
496 | else | |
497 | defaultDirString = ""; | |
498 | ||
499 | wxString defaultFilenameString; | |
500 | if (defaultFileName) | |
501 | defaultFilenameString = defaultFileName; | |
502 | else | |
503 | defaultFilenameString = ""; | |
504 | ||
505 | wxFileDialog fileDialog(parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y)); | |
506 | ||
507 | if ( fileDialog.ShowModal() == wxID_OK ) | |
508 | { | |
509 | strcpy(wxBuffer, (const char *)fileDialog.GetPath()); | |
510 | return wxBuffer; | |
511 | } | |
512 | else | |
8be97d65 | 513 | return wxGetEmptyString(); |
e9576ca5 SC |
514 | } |
515 | ||
169935ad | 516 | WXDLLEXPORT wxString wxFileSelectorEx(const char *title, |
e9576ca5 SC |
517 | const char *defaultDir, |
518 | const char *defaultFileName, | |
519 | int* defaultFilterIndex, | |
520 | const char *filter, | |
521 | int flags, | |
522 | wxWindow* parent, | |
523 | int x, | |
524 | int y) | |
525 | ||
526 | { | |
527 | wxFileDialog fileDialog(parent, title ? title : "", defaultDir ? defaultDir : "", | |
528 | defaultFileName ? defaultFileName : "", filter ? filter : "", flags, wxPoint(x, y)); | |
529 | ||
530 | if ( fileDialog.ShowModal() == wxID_OK ) | |
531 | { | |
532 | *defaultFilterIndex = fileDialog.GetFilterIndex(); | |
533 | strcpy(wxBuffer, (const char *)fileDialog.GetPath()); | |
534 | return wxBuffer; | |
535 | } | |
536 | else | |
8be97d65 | 537 | return wxGetEmptyString(); |
e9576ca5 SC |
538 | } |
539 | ||
540 | wxFileDialog::wxFileDialog(wxWindow *parent, const wxString& message, | |
541 | const wxString& defaultDir, const wxString& defaultFileName, const wxString& wildCard, | |
542 | long style, const wxPoint& pos) | |
543 | { | |
544 | m_message = message; | |
545 | m_dialogStyle = style; | |
546 | m_parent = parent; | |
547 | m_path = ""; | |
548 | m_fileName = defaultFileName; | |
549 | m_dir = defaultDir; | |
550 | m_wildCard = wildCard; | |
551 | m_filterIndex = 1; | |
552 | } | |
553 | ||
4d4d8bbf | 554 | |
f11bdd03 | 555 | pascal Boolean CrossPlatformFilterCallback ( |
4d4d8bbf SC |
556 | AEDesc *theItem, |
557 | void *info, | |
558 | void *callBackUD, | |
559 | NavFilterModes filterMode | |
560 | ) | |
561 | { | |
562 | bool display = true; | |
563 | OpenUserDataRecPtr data = (OpenUserDataRecPtr) callBackUD ; | |
564 | ||
565 | if (filterMode == kNavFilteringBrowserList) | |
566 | { | |
567 | NavFileOrFolderInfo* theInfo = (NavFileOrFolderInfo*) info ; | |
568 | if (theItem->descriptorType == typeFSS && !theInfo->isFolder) | |
569 | { | |
570 | FSSpec spec; | |
fe35d097 | 571 | memcpy( &spec , *theItem->dataHandle , sizeof(FSSpec) ) ; |
4d4d8bbf SC |
572 | display = CheckFile( spec.name , theInfo->fileAndFolder.fileInfo.finderInfo.fdType , data ) ; |
573 | } | |
574 | } | |
575 | ||
576 | return display; | |
577 | } | |
578 | ||
e9576ca5 SC |
579 | int wxFileDialog::ShowModal() |
580 | { | |
da2b4b7a | 581 | #if !TARGET_CARBON |
5b781a67 SC |
582 | if ( !gUseNavServices ) |
583 | { | |
519cb848 SC |
584 | if ( m_dialogStyle & wxSAVE ) |
585 | { | |
586 | StandardFileReply reply ; | |
587 | Str255 prompt ; | |
588 | Str255 filename ; | |
589 | ||
590 | strcpy((char *)prompt, m_message) ; | |
591 | c2pstr((char *)prompt ) ; | |
519cb848 SC |
592 | strcpy((char *)filename, m_fileName) ; |
593 | c2pstr((char *)filename ) ; | |
03e11df5 | 594 | |
519cb848 SC |
595 | StandardPutFile( prompt , filename , &reply ) ; |
596 | if ( reply.sfGood == false ) | |
597 | { | |
598 | m_path = "" ; | |
599 | return wxID_CANCEL ; | |
600 | } | |
601 | else | |
602 | { | |
bedaf53e | 603 | m_path = wxMacFSSpec2MacFilename( &reply.sfFile ) ; |
519cb848 SC |
604 | return wxID_OK ; |
605 | } | |
606 | } | |
607 | else | |
608 | { | |
609 | OSType types = '????' ; | |
610 | Str255 prompt ; | |
611 | Str255 path ; | |
612 | ||
613 | strcpy((char *)prompt, m_message) ; | |
614 | c2pstr((char *)prompt ) ; | |
03e11df5 | 615 | strcpy((char *)path, m_dir ) ; |
519cb848 SC |
616 | c2pstr((char *)path ) ; |
617 | ||
519cb848 | 618 | StandardFileReply reply ; |
2f1ae414 | 619 | FileFilterYDUPP crossPlatformFileFilterUPP = 0 ; |
fe35d097 | 620 | #if !TARGET_CARBON |
519cb848 SC |
621 | crossPlatformFileFilterUPP = |
622 | NewFileFilterYDProc(CrossPlatformFileFilter); | |
fe35d097 SC |
623 | #endif |
624 | ||
519cb848 | 625 | ExtendedOpenFile( prompt , path , m_wildCard , crossPlatformFileFilterUPP, &reply); |
fe35d097 | 626 | #if !TARGET_CARBON |
2f1ae414 | 627 | DisposeFileFilterYDUPP(crossPlatformFileFilterUPP); |
fe35d097 | 628 | #endif |
519cb848 SC |
629 | if ( reply.sfGood == false ) |
630 | { | |
631 | m_path = "" ; | |
632 | return wxID_CANCEL ; | |
633 | } | |
634 | else | |
635 | { | |
fe35d097 | 636 | m_path = wxMacFSSpec2UnixFilename( &reply.sfFile ) ; |
519cb848 SC |
637 | return wxID_OK ; |
638 | } | |
639 | } | |
e9576ca5 SC |
640 | return wxID_CANCEL; |
641 | } | |
5b781a67 SC |
642 | else |
643 | #endif | |
644 | { | |
645 | NavDialogOptions mNavOptions; | |
646 | NavObjectFilterUPP mNavFilterUPP = NULL; | |
647 | NavPreviewUPP mNavPreviewUPP = NULL ; | |
648 | NavReplyRecord mNavReply; | |
649 | AEDesc mDefaultLocation ; | |
650 | bool mSelectDefault = false ; | |
651 | ||
652 | ::NavGetDefaultDialogOptions(&mNavOptions); | |
653 | ||
654 | mNavFilterUPP = nil; | |
655 | mNavPreviewUPP = nil; | |
656 | mSelectDefault = false; | |
657 | mNavReply.validRecord = false; | |
658 | mNavReply.replacing = false; | |
659 | mNavReply.isStationery = false; | |
660 | mNavReply.translationNeeded = false; | |
661 | mNavReply.selection.descriptorType = typeNull; | |
662 | mNavReply.selection.dataHandle = nil; | |
663 | mNavReply.keyScript = smSystemScript; | |
664 | mNavReply.fileTranslation = nil; | |
665 | ||
666 | // Set default location, the location | |
667 | // that's displayed when the dialog | |
668 | // first appears | |
669 | ||
670 | FSSpec location ; | |
bedaf53e | 671 | wxMacFilename2FSSpec( m_dir , &location ) ; |
5b781a67 SC |
672 | OSErr err = noErr ; |
673 | ||
674 | mDefaultLocation.descriptorType = typeNull; | |
675 | mDefaultLocation.dataHandle = nil; | |
676 | ||
677 | err = ::AECreateDesc(typeFSS, &location, sizeof(FSSpec), &mDefaultLocation ); | |
678 | ||
679 | if ( mDefaultLocation.dataHandle ) { | |
680 | ||
681 | if (mSelectDefault) { | |
682 | mNavOptions.dialogOptionFlags |= kNavSelectDefaultLocation; | |
683 | } else { | |
684 | mNavOptions.dialogOptionFlags &= ~kNavSelectDefaultLocation; | |
685 | } | |
686 | } | |
687 | ||
03e11df5 GD |
688 | #if TARGET_CARBON |
689 | c2pstrcpy((StringPtr)mNavOptions.message, m_message) ; | |
690 | #else | |
5b781a67 SC |
691 | strcpy((char *)mNavOptions.message, m_message) ; |
692 | c2pstr((char *)mNavOptions.message ) ; | |
03e11df5 GD |
693 | #endif |
694 | #if TARGET_CARBON | |
695 | c2pstrcpy((StringPtr)mNavOptions.savedFileName, m_fileName) ; | |
696 | #else | |
5b781a67 SC |
697 | strcpy((char *)mNavOptions.savedFileName, m_fileName) ; |
698 | c2pstr((char *)mNavOptions.savedFileName ) ; | |
03e11df5 | 699 | #endif |
5b781a67 SC |
700 | |
701 | if ( m_dialogStyle & wxSAVE ) | |
702 | { | |
703 | ||
704 | mNavOptions.dialogOptionFlags |= kNavNoTypePopup ; | |
705 | mNavOptions.dialogOptionFlags |= kNavDontAutoTranslate ; | |
706 | mNavOptions.dialogOptionFlags |= kNavDontAddTranslateItems ; | |
707 | ||
708 | err = ::NavPutFile( | |
709 | &mDefaultLocation, | |
710 | &mNavReply, | |
711 | &mNavOptions, | |
712 | sStandardNavEventFilter , | |
713 | 'TEXT', | |
714 | 'TEXT', | |
715 | 0L); // User Data | |
716 | } | |
717 | else | |
718 | { | |
4d4d8bbf SC |
719 | OpenUserDataRec myData; |
720 | MakeUserDataRec( &myData , m_wildCard ) ; | |
721 | NavTypeListHandle typelist = NULL ; | |
722 | ||
723 | if ( myData.numfilters > 0 ) | |
724 | { | |
725 | mNavOptions.popupExtension = (NavMenuItemSpecArrayHandle) NewHandle( sizeof( NavMenuItemSpec ) * myData.numfilters ) ; | |
726 | for ( int i = 0 ; i < myData.numfilters ; ++i ) { | |
727 | (*mNavOptions.popupExtension)[i].version = kNavMenuItemSpecVersion ; | |
728 | (*mNavOptions.popupExtension)[i].menuCreator = 'WXNG' ; | |
729 | (*mNavOptions.popupExtension)[i].menuType = i ; | |
730 | #if TARGET_CARBON | |
731 | c2pstrcpy((StringPtr)(*mNavOptions.popupExtension)[i].menuItemName, myData.name[i]) ; | |
732 | #else | |
733 | strcpy((char *)(*mNavOptions.popupExtension)[i].menuItemName, myData.name[i]) ; | |
734 | c2pstr((char *)(*mNavOptions.popupExtension)[i].menuItemName ) ; | |
735 | #endif | |
736 | } | |
737 | } | |
738 | ||
f11bdd03 | 739 | mNavFilterUPP = NewNavObjectFilterUPP( CrossPlatformFilterCallback ) ; |
5b781a67 SC |
740 | if ( m_dialogStyle & wxMULTIPLE ) |
741 | mNavOptions.dialogOptionFlags |= kNavAllowMultipleFiles ; | |
742 | else | |
743 | mNavOptions.dialogOptionFlags &= ~kNavAllowMultipleFiles ; | |
744 | ||
745 | err = ::NavGetFile( | |
746 | &mDefaultLocation, | |
747 | &mNavReply, | |
748 | &mNavOptions, | |
749 | sStandardNavEventFilter , | |
750 | mNavPreviewUPP, | |
751 | mNavFilterUPP, | |
4d4d8bbf SC |
752 | typelist /*inFileTypes.TypeListHandle() */, |
753 | &myData); // User Data | |
754 | if ( typelist ) | |
755 | DisposeHandle( (Handle) typelist ) ; | |
5b781a67 SC |
756 | } |
757 | ||
4d4d8bbf | 758 | DisposeNavObjectFilterUPP(mNavFilterUPP); |
5b781a67 SC |
759 | if ( mDefaultLocation.dataHandle != nil ) |
760 | { | |
761 | ::AEDisposeDesc(&mDefaultLocation); | |
762 | } | |
763 | ||
764 | if ( (err != noErr) && (err != userCanceledErr) ) { | |
765 | m_path = "" ; | |
766 | return wxID_CANCEL ; | |
767 | } | |
768 | ||
769 | if (mNavReply.validRecord) { | |
770 | ||
771 | FSSpec outFileSpec ; | |
772 | AEDesc specDesc ; | |
fe35d097 | 773 | AEKeyword keyWord ; |
5b781a67 SC |
774 | |
775 | long count ; | |
776 | ::AECountItems( &mNavReply.selection , &count ) ; | |
777 | for ( long i = 1 ; i <= count ; ++i ) | |
778 | { | |
fe35d097 | 779 | OSErr err = ::AEGetNthDesc( &mNavReply.selection , i , typeFSS, &keyWord , &specDesc); |
5b781a67 SC |
780 | if ( err != noErr ) { |
781 | m_path = "" ; | |
782 | return wxID_CANCEL ; | |
783 | } | |
784 | outFileSpec = **(FSSpec**) specDesc.dataHandle; | |
785 | if (specDesc.dataHandle != nil) { | |
786 | ::AEDisposeDesc(&specDesc); | |
787 | } | |
788 | ||
789 | ||
790 | // outFolderDirID = thePB.dirInfo.ioDrDirID; | |
bedaf53e | 791 | m_path = wxMacFSSpec2MacFilename( &outFileSpec ) ; |
5b781a67 SC |
792 | m_paths.Add( m_path ) ; |
793 | m_fileNames.Add(m_fileName); | |
794 | } | |
795 | // set these to the first hit | |
796 | m_path = m_paths[ 0 ] ; | |
797 | m_fileName = wxFileNameFromPath(m_path); | |
798 | m_dir = wxPathOnly(m_path); | |
fe35d097 | 799 | NavDisposeReply( &mNavReply ) ; |
5b781a67 SC |
800 | return wxID_OK ; |
801 | } | |
802 | return wxID_CANCEL; | |
803 | } | |
804 | } | |
e9576ca5 SC |
805 | |
806 | // Generic file load/save dialog | |
169935ad | 807 | static wxString |
e9576ca5 SC |
808 | wxDefaultFileSelector(bool load, const char *what, const char *extension, const char *default_name, wxWindow *parent) |
809 | { | |
810 | char *ext = (char *)extension; | |
811 | ||
812 | char prompt[50]; | |
813 | wxString str; | |
814 | if (load) | |
815 | str = "Load %s file"; | |
816 | else | |
817 | str = "Save %s file"; | |
818 | sprintf(prompt, wxGetTranslation(str), what); | |
819 | ||
820 | if (*ext == '.') ext++; | |
821 | char wild[60]; | |
822 | sprintf(wild, "*.%s", ext); | |
823 | ||
824 | return wxFileSelector (prompt, NULL, default_name, ext, wild, 0, parent); | |
825 | } | |
826 | ||
827 | // Generic file load dialog | |
169935ad | 828 | wxString |
e9576ca5 SC |
829 | wxLoadFileSelector(const char *what, const char *extension, const char *default_name, wxWindow *parent) |
830 | { | |
831 | return wxDefaultFileSelector(TRUE, what, extension, default_name, parent); | |
832 | } | |
833 | ||
834 | ||
835 | // Generic file save dialog | |
169935ad | 836 | wxString |
e9576ca5 SC |
837 | wxSaveFileSelector(const char *what, const char *extension, const char *default_name, wxWindow *parent) |
838 | { | |
839 | return wxDefaultFileSelector(FALSE, what, extension, default_name, parent); | |
840 | } | |
841 | ||
842 |