1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/filedlg.cpp
3 // Purpose: wxFileDialog
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/filedlg.h"
20 #include "wx/dialog.h"
23 #include "wx/tokenzr.h"
24 #include "wx/filename.h"
26 #include "wx/mac/private.h"
29 #include <Navigation.h>
30 #include "PLStringFuncs.h"
33 IMPLEMENT_CLASS(wxFileDialog
, wxFileDialogBase
)
35 // the data we need to pass to our standard file hook routine
36 // includes a pointer to the dialog, a pointer to the standard
37 // file reply record (so we can inspect the current selection)
38 // and a copy of the "previous" file spec of the reply record
39 // so we can see if the selection has changed
41 struct OpenUserDataRec
46 wxArrayString extensions
;
47 wxArrayLong filtermactypes
;
48 wxString defaultLocation
;
49 CFArrayRef menuitems
;
52 typedef struct OpenUserDataRec
53 OpenUserDataRec
, *OpenUserDataRecPtr
;
55 static pascal void NavEventProc(
56 NavEventCallbackMessage inSelector
,
58 NavCallBackUserData ioUserData
);
60 static NavEventUPP sStandardNavEventFilter
= NewNavEventUPP(NavEventProc
);
62 static pascal void NavEventProc(
63 NavEventCallbackMessage inSelector
,
65 NavCallBackUserData ioUserData
)
67 OpenUserDataRec
* data
= ( OpenUserDataRec
*) ioUserData
;
68 if (inSelector
== kNavCBEvent
)
71 else if ( inSelector
== kNavCBStart
)
73 if (data
&& !(data
->defaultLocation
).empty())
75 // Set default location for the modern Navigation APIs
76 // Apple Technical Q&A 1151
78 wxMacPathToFSRef(data
->defaultLocation
, &theFile
);
79 AEDesc theLocation
= { typeNull
, NULL
};
80 if (noErr
== ::AECreateDesc(typeFSRef
, &theFile
, sizeof(FSRef
), &theLocation
))
81 ::NavCustomControl(ioParams
->context
, kNavCtlSetLocation
, (void *) &theLocation
);
84 NavMenuItemSpec menuItem
;
85 menuItem
.version
= kNavMenuItemSpecVersion
;
86 menuItem
.menuCreator
= 'WXNG';
87 menuItem
.menuType
= data
->currentfilter
;
88 wxMacStringToPascal( data
->name
[data
->currentfilter
] , (StringPtr
)(menuItem
.menuItemName
) ) ;
89 ::NavCustomControl(ioParams
->context
, kNavCtlSelectCustomType
, &menuItem
);
91 else if ( inSelector
== kNavCBPopupMenuSelect
)
93 NavMenuItemSpec
* menu
= (NavMenuItemSpec
*) ioParams
->eventData
.eventDataParms
.param
;
94 const size_t numFilters
= data
->extensions
.GetCount();
96 if ( menu
->menuType
< numFilters
)
98 data
->currentfilter
= menu
->menuType
;
101 int i
= menu
->menuType
;
102 wxString extension
= data
->extensions
[i
].AfterLast('.') ;
103 extension
.MakeLower() ;
106 wxMacCFStringHolder
cfString( NavDialogGetSaveFileName( ioParams
->context
) , false );
107 sfilename
= cfString
.AsString() ;
109 int pos
= sfilename
.Find('.', true) ;
110 if ( pos
!= wxNOT_FOUND
)
112 sfilename
= sfilename
.Left(pos
+1)+extension
;
113 cfString
.Assign( sfilename
, wxFONTENCODING_DEFAULT
) ;
114 NavDialogSetSaveFileName( ioParams
->context
, cfString
) ;
121 void MakeUserDataRec(OpenUserDataRec
*myData
, const wxString
& filter
)
123 myData
->menuitems
= NULL
;
124 myData
->currentfilter
= 0 ;
125 myData
->saveMode
= false ;
127 if ( filter
&& filter
[0] )
129 wxString
filter2(filter
) ;
134 for ( unsigned int i
= 0; i
< filter2
.length() ; i
++ )
136 if ( filter2
.GetChar(i
) == wxT('|') )
140 myData
->name
.Add( current
) ;
144 myData
->extensions
.Add( current
.MakeUpper() ) ;
149 current
= wxEmptyString
;
153 current
+= filter2
.GetChar(i
) ;
156 // we allow for compatibility reason to have a single filter expression (like *.*) without
157 // an explanatory text, in that case the first part is name and extension at the same time
159 wxASSERT_MSG( filterIndex
== 0 || !isName
, wxT("incorrect format of format string") ) ;
160 if ( current
.empty() )
161 myData
->extensions
.Add( myData
->name
[filterIndex
] ) ;
163 myData
->extensions
.Add( current
.MakeUpper() ) ;
164 if ( filterIndex
== 0 || isName
)
165 myData
->name
.Add( current
.MakeUpper() ) ;
169 const size_t extCount
= myData
->extensions
.GetCount();
170 for ( size_t i
= 0 ; i
< extCount
; i
++ )
172 wxUint32 fileType
, creator
;
173 wxString extension
= myData
->extensions
[i
];
175 // Remove leading '*'
176 if (extension
.length() && (extension
.GetChar(0) == '*'))
177 extension
= extension
.Mid( 1 );
179 // Remove leading '.'
180 if (extension
.length() && (extension
.GetChar(0) == '.'))
181 extension
= extension
.Mid( 1 );
183 if (wxFileName::MacFindDefaultTypeAndCreator( extension
, &fileType
, &creator
))
184 myData
->filtermactypes
.Add( (OSType
)fileType
);
186 myData
->filtermactypes
.Add( '****' ); // We'll fail safe if it's not recognized
191 static Boolean
CheckFile( const wxString
&filename
, OSType type
, OpenUserDataRecPtr data
)
193 wxString
file(filename
) ;
196 if ( data
->extensions
.GetCount() > 0 )
198 //for ( int i = 0 ; i < data->numfilters ; ++i )
199 int i
= data
->currentfilter
;
200 if ( data
->extensions
[i
].Right(2) == wxT(".*") )
204 if ( type
== (OSType
)data
->filtermactypes
[i
] )
207 wxStringTokenizer
tokenizer( data
->extensions
[i
] , wxT(";") ) ;
208 while ( tokenizer
.HasMoreTokens() )
210 wxString extension
= tokenizer
.GetNextToken() ;
211 if ( extension
.GetChar(0) == '*' )
212 extension
= extension
.Mid(1) ;
214 if ( file
.length() >= extension
.length() && extension
== file
.Right(extension
.length() ) )
225 #if !TARGET_API_MAC_OSX
226 static pascal Boolean
CrossPlatformFileFilter(CInfoPBPtr myCInfoPBPtr
, void *dataPtr
)
228 OpenUserDataRecPtr data
= (OpenUserDataRecPtr
) dataPtr
;
229 // return true if this item is invisible or a file
234 visibleFlag
= ! (myCInfoPBPtr
->hFileInfo
.ioFlFndrInfo
.fdFlags
& kIsInvisible
);
235 folderFlag
= (myCInfoPBPtr
->hFileInfo
.ioFlAttrib
& 0x10);
237 // because the semantics of the filter proc are "true means don't show
238 // it" we need to invert the result that we return
245 wxString file
= wxMacMakeStringFromPascal( myCInfoPBPtr
->hFileInfo
.ioNamePtr
) ;
246 return !CheckFile( file
, myCInfoPBPtr
->hFileInfo
.ioFlFndrInfo
.fdType
, data
) ;
255 wxFileDialog::wxFileDialog(
256 wxWindow
*parent
, const wxString
& message
,
257 const wxString
& defaultDir
, const wxString
& defaultFileName
, const wxString
& wildCard
,
258 long style
, const wxPoint
& pos
, const wxSize
& sz
, const wxString
& name
)
259 : wxFileDialogBase(parent
, message
, defaultDir
, defaultFileName
, wildCard
, style
, pos
, sz
, name
)
261 wxASSERT_MSG( NavServicesAvailable() , wxT("Navigation Services are not running") ) ;
264 pascal Boolean
CrossPlatformFilterCallback(
268 NavFilterModes filterMode
)
271 OpenUserDataRecPtr data
= (OpenUserDataRecPtr
) callBackUD
;
273 if (filterMode
== kNavFilteringBrowserList
)
275 NavFileOrFolderInfo
* theInfo
= (NavFileOrFolderInfo
*) info
;
276 if ( !theInfo
->isFolder
)
278 AECoerceDesc (theItem
, typeFSRef
, theItem
);
281 if ( AEGetDescData (theItem
, &fsref
, sizeof (FSRef
)) == noErr
)
283 memcpy( &fsref
, *theItem
->dataHandle
, sizeof(FSRef
) ) ;
284 wxString file
= wxMacFSRefToPath( &fsref
) ;
285 display
= CheckFile( file
, theInfo
->fileAndFolder
.fileInfo
.finderInfo
.fdType
, data
) ;
293 int wxFileDialog::ShowModal()
296 NavDialogCreationOptions dialogCreateOptions
;
298 // set default options
299 ::NavGetDefaultDialogCreationOptions(&dialogCreateOptions
);
301 // this was always unset in the old code
302 dialogCreateOptions
.optionFlags
&= ~kNavSelectDefaultLocation
;
304 wxMacCFStringHolder
message(m_message
, m_font
.GetEncoding());
305 dialogCreateOptions
.windowTitle
= message
;
307 wxMacCFStringHolder
defaultFileName(m_fileName
, m_font
.GetEncoding());
308 dialogCreateOptions
.saveFileName
= defaultFileName
;
312 NavObjectFilterUPP navFilterUPP
= NULL
;
313 OpenUserDataRec myData
;
314 myData
.defaultLocation
= m_dir
;
316 MakeUserDataRec(&myData
, m_wildCard
);
317 myData
.currentfilter
= m_filterIndex
;
318 size_t numFilters
= myData
.extensions
.GetCount();
321 CFMutableArrayRef popup
= CFArrayCreateMutable( kCFAllocatorDefault
,
322 numFilters
, &kCFTypeArrayCallBacks
) ;
323 dialogCreateOptions
.popupExtension
= popup
;
324 myData
.menuitems
= dialogCreateOptions
.popupExtension
;
325 for ( size_t i
= 0 ; i
< numFilters
; ++i
)
327 CFArrayAppendValue( popup
, (CFStringRef
) wxMacCFStringHolder( myData
.name
[i
] , m_font
.GetEncoding() ) ) ;
331 if (HasFlag(wxFD_SAVE
))
333 myData
.saveMode
= true;
335 dialogCreateOptions
.optionFlags
|= kNavDontAutoTranslate
;
336 dialogCreateOptions
.optionFlags
|= kNavDontAddTranslateItems
;
338 dialogCreateOptions
.optionFlags
|= kNavNoTypePopup
;
340 // The extension is important
342 dialogCreateOptions
.optionFlags
|= kNavPreserveSaveFileExtension
;
344 #if TARGET_API_MAC_OSX
345 if (!(m_windowStyle
& wxFD_OVERWRITE_PROMPT
))
346 dialogCreateOptions
.optionFlags
|= kNavDontConfirmReplacement
;
349 err
= ::NavCreatePutFileDialog(
350 &dialogCreateOptions
,
351 kNavGenericSignature
, // Suppresses the 'Default' (top) menu item
352 kNavGenericSignature
,
353 sStandardNavEventFilter
,
354 &myData
, // for defaultLocation
359 // let the user select bundles/programs in dialogs
360 dialogCreateOptions
.optionFlags
|= kNavSupportPackages
;
362 navFilterUPP
= NewNavObjectFilterUPP(CrossPlatformFilterCallback
);
363 err
= ::NavCreateGetFileDialog(
364 &dialogCreateOptions
,
365 NULL
, // NavTypeListHandle
366 sStandardNavEventFilter
,
367 NULL
, // NavPreviewUPP
369 (void *) &myData
, // inClientData
374 err
= ::NavDialogRun(dialog
);
376 // clean up filter related data, etc.
378 ::DisposeNavObjectFilterUPP(navFilterUPP
);
383 NavReplyRecord navReply
;
384 err
= ::NavDialogGetReply(dialog
, &navReply
);
385 if (err
== noErr
&& navReply
.validRecord
)
387 AEKeyword theKeyword
;
394 m_filterIndex
= myData
.currentfilter
;
395 ::AECountItems( &navReply
.selection
, &count
);
396 for (long i
= 1; i
<= count
; ++i
)
399 &(navReply
.selection
), i
, typeFSRef
, &theKeyword
, &actualType
,
400 &theFSRef
, sizeof(theFSRef
), &actualSize
);
404 if (HasFlag(wxFD_SAVE
))
405 thePath
= wxMacFSRefToPath( &theFSRef
, navReply
.saveFileName
);
407 thePath
= wxMacFSRefToPath( &theFSRef
);
411 ::NavDisposeReply(&navReply
);
417 m_fileName
= wxFileNameFromPath(m_path
);
418 m_fileNames
.Add(m_fileName
);
421 // set these to the first hit
423 m_fileName
= wxFileNameFromPath(m_path
);
424 m_dir
= wxPathOnly(m_path
);
427 ::NavDisposeReply(&navReply
);
429 return (err
== noErr
) ? wxID_OK
: wxID_CANCEL
;