1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/filedlg.mm
3 // Purpose: wxFileDialog for wxCocoa
8 // Copyright: (c) Ryan Norton
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
25 #include "wx/filedlg.h"
28 #include "wx/msgdlg.h"
31 #include "wx/stattext.h"
32 #include "wx/choice.h"
35 #include "wx/filename.h"
36 #include "wx/tokenzr.h"
37 #include "wx/evtloop.h"
39 #include "wx/osx/private.h"
40 #include "wx/sysopt.h"
41 #include "wx/modalhook.h"
43 #include <mach-o/dyld.h>
45 // ============================================================================
47 // ============================================================================
50 // - parameter support for descending into packages as directories (setTreatsFilePackagesAsDirectories)
51 // - as setAllowedFileTypes is only functional for NSOpenPanel on 10.6+, on earlier systems, the file
52 // type choice will not be shown, but all possible file items will be shown, if a popup must be working
53 // then the delegate method - (BOOL)panel:(id)sender shouldShowFilename:(NSString *)filename will have to
61 // Even if we require 10.6, we might be loaded by an application that
62 // was linked against 10.5. setAllowedFileTypes will still be ignored
63 // in this case. From NSSavePanel.h:
64 // NSOpenPanel: On versions less than 10.6, this property is ignored.
65 // For applications that link against 10.6 and higher, this property will
66 // determine which files should be enabled in the open panel.
67 int32_t version = NSVersionOfLinkTimeLibrary("AppKit");
70 // If we're loaded by an application that doesn't link against AppKit,
71 // use the runtime version instead. This check will not work for the
73 version = NSVersionOfRunTimeLibrary("AppKit");
76 // Notice that this still works correctly even if version is -1.
77 return version >= 0x40e2400 /* version of 10.6 AppKit */;
80 } // anonymous namespace
82 @interface wxOpenPanelDelegate : NSObject wxOSX_10_6_AND_LATER(<NSOpenSavePanelDelegate>)
84 wxFileDialog* _dialog;
87 - (wxFileDialog*) fileDialog;
88 - (void) setFileDialog:(wxFileDialog*) dialog;
90 - (BOOL)panel:(id)sender shouldShowFilename:(NSString *)filename;
94 @implementation wxOpenPanelDelegate
103 - (wxFileDialog*) fileDialog
108 - (void) setFileDialog:(wxFileDialog*) dialog
113 - (BOOL)panel:(id)sender shouldShowFilename:(NSString *)filename
115 BOOL showObject = YES;
117 NSString* resolvedLink = [[NSFileManager defaultManager] pathContentOfSymbolicLinkAtPath:filename];
118 if ( resolvedLink != nil )
119 filename = resolvedLink;
121 NSDictionary* fileAttribs = [[NSFileManager defaultManager]
122 fileAttributesAtPath:filename traverseLink:YES];
125 // check for packages
126 if ([NSFileTypeDirectory isEqualTo:[fileAttribs objectForKey:NSFileType]])
128 if ([[NSWorkspace sharedWorkspace] isFilePackageAtPath:filename] == NO)
129 showObject = YES; // it's a folder, OK to show
132 // it's a packaged directory, apply check
133 wxCFStringRef filecf([filename retain]);
134 showObject = _dialog->CheckFile(filecf.AsString());
139 // the code above only solves links, not aliases, do this here:
141 NSString* resolvedAlias = nil;
143 CFURLRef url = CFURLCreateWithFileSystemPath (kCFAllocatorDefault,
144 (CFStringRef)filename,
145 kCFURLPOSIXPathStyle,
150 if (CFURLGetFSRef(url, &fsRef))
152 Boolean targetIsFolder, wasAliased;
153 OSErr err = FSResolveAliasFile (&fsRef, true, &targetIsFolder, &wasAliased);
155 if ((err == noErr) && wasAliased)
157 CFURLRef resolvedUrl = CFURLCreateFromFSRef(kCFAllocatorDefault, &fsRef);
158 if (resolvedUrl != NULL)
160 resolvedAlias = (NSString*) CFURLCopyFileSystemPath(resolvedUrl,
161 kCFURLPOSIXPathStyle);
162 CFRelease(resolvedUrl);
169 if (resolvedAlias != nil)
172 [resolvedAlias autorelease];
173 showObject = [self panel:sender shouldShowFilename:resolvedAlias];
177 wxCFStringRef filecf([filename retain]);
178 showObject = _dialog->CheckFile(filecf.AsString());
188 IMPLEMENT_CLASS(wxFileDialog, wxFileDialogBase)
190 wxFileDialog::wxFileDialog(
191 wxWindow *parent, const wxString& message,
192 const wxString& defaultDir, const wxString& defaultFileName, const wxString& wildCard,
193 long style, const wxPoint& pos, const wxSize& sz, const wxString& name)
194 : wxFileDialogBase(parent, message, defaultDir, defaultFileName, wildCard, style, pos, sz, name)
197 m_sheetDelegate = [[ModalDialogDelegate alloc] init];
198 [(ModalDialogDelegate*)m_sheetDelegate setImplementation: this];
202 wxFileDialog::~wxFileDialog()
204 [m_sheetDelegate release];
207 bool wxFileDialog::SupportsExtraControl() const
212 NSArray* GetTypesFromExtension( const wxString extensiongroup, wxArrayString& extensions )
214 NSMutableArray* types = nil;
217 wxStringTokenizer tokenizer( extensiongroup, wxT(";") ) ;
218 while ( tokenizer.HasMoreTokens() )
220 wxString extension = tokenizer.GetNextToken() ;
221 // Remove leading '*'
222 if ( extension.length() && (extension.GetChar(0) == '*') )
223 extension = extension.Mid( 1 );
225 // Remove leading '.'
226 if ( extension.length() && (extension.GetChar(0) == '.') )
227 extension = extension.Mid( 1 );
229 // Remove leading '*', this is for handling *.*
230 if ( extension.length() && (extension.GetChar(0) == '*') )
231 extension = extension.Mid( 1 );
233 if ( extension.IsEmpty() )
242 types = [[NSMutableArray alloc] init];
244 extensions.Add(extension.Lower());
245 wxCFStringRef cfext(extension);
246 [types addObject: (NSString*)cfext.AsNSString() ];
248 // add support for classic fileType / creator here
249 wxUint32 fileType, creator;
250 // extension -> mactypes
257 NSArray* GetTypesFromFilter( const wxString& filter, wxArrayString& names, wxArrayString& extensiongroups )
259 NSMutableArray* types = nil;
260 bool allowAll = false;
263 extensiongroups.Clear();
265 if ( !filter.empty() )
267 wxStringTokenizer tokenizer( filter, wxT("|") );
268 int numtokens = (int)tokenizer.CountTokens();
271 // we allow for compatibility reason to have a single filter expression (like *.*) without
272 // an explanatory text, in that case the first part is name and extension at the same time
273 wxString extension = tokenizer.GetNextToken();
274 names.Add( extension );
275 extensiongroups.Add( extension );
279 int numextensions = numtokens / 2;
280 for(int i = 0; i < numextensions; i++)
282 wxString name = tokenizer.GetNextToken();
283 wxString extension = tokenizer.GetNextToken();
285 extensiongroups.Add( extension );
289 const size_t extCount = extensiongroups.GetCount();
290 wxArrayString extensions;
291 for ( size_t i = 0 ; i < extCount; i++ )
293 NSArray* exttypes = GetTypesFromExtension(extensiongroups[i], extensions);
294 if ( exttypes != nil )
296 if ( allowAll == false )
299 types = [[NSMutableArray alloc] init];
301 [types addObjectsFromArray:exttypes];
316 void wxFileDialog::ShowWindowModal()
318 wxCFStringRef cf( m_message );
319 wxCFStringRef dir( m_dir );
320 wxCFStringRef file( m_fileName );
322 wxNonOwnedWindow* parentWindow = NULL;
324 m_modality = wxDIALOG_MODALITY_WINDOW_MODAL;
327 parentWindow = dynamic_cast<wxNonOwnedWindow*>(wxGetTopLevelParent(GetParent()));
329 wxASSERT_MSG(parentWindow, "Window modal display requires parent.");
331 NSArray* types = GetTypesFromFilter( m_wildCard, m_filterNames, m_filterExtensions ) ;
332 if ( HasFlag(wxFD_SAVE) )
334 NSSavePanel* sPanel = [NSSavePanel savePanel];
336 SetupExtraControls(sPanel);
338 // makes things more convenient:
339 [sPanel setCanCreateDirectories:YES];
340 [sPanel setMessage:cf.AsNSString()];
341 // if we should be able to descend into pacakges we must somehow
342 // be able to pass this in
343 [sPanel setTreatsFilePackagesAsDirectories:NO];
344 [sPanel setCanSelectHiddenExtension:YES];
345 [sPanel setAllowedFileTypes:types];
346 [sPanel setAllowsOtherFileTypes:NO];
348 NSWindow* nativeParent = parentWindow->GetWXWindow();
349 [sPanel beginSheetForDirectory:dir.AsNSString() file:file.AsNSString()
350 modalForWindow: nativeParent modalDelegate: m_sheetDelegate
351 didEndSelector: @selector(sheetDidEnd:returnCode:contextInfo:)
356 NSOpenPanel* oPanel = [NSOpenPanel openPanel];
358 SetupExtraControls(oPanel);
360 [oPanel setTreatsFilePackagesAsDirectories:NO];
361 [oPanel setCanChooseDirectories:NO];
362 [oPanel setResolvesAliases:YES];
363 [oPanel setCanChooseFiles:YES];
364 [oPanel setMessage:cf.AsNSString()];
365 [oPanel setAllowsMultipleSelection: (HasFlag(wxFD_MULTIPLE) ? YES : NO )];
367 NSWindow* nativeParent = parentWindow->GetWXWindow();
368 [oPanel beginSheetForDirectory:dir.AsNSString() file:file.AsNSString()
369 types: types modalForWindow: nativeParent
370 modalDelegate: m_sheetDelegate
371 didEndSelector: @selector(sheetDidEnd:returnCode:contextInfo:)
376 // Create a panel with the file type drop down list
377 // If extra controls need to be added (see wxFileDialog::SetExtraControlCreator), add
378 // them to the panel as well
379 // Returns the newly created wxPanel
381 wxWindow* wxFileDialog::CreateFilterPanel(wxWindow *extracontrol)
383 wxPanel *extrapanel = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDefaultSize);
384 wxBoxSizer *verticalSizer = new wxBoxSizer(wxVERTICAL);
385 extrapanel->SetSizer(verticalSizer);
387 // the file type control
389 wxBoxSizer *horizontalSizer = new wxBoxSizer(wxHORIZONTAL);
390 verticalSizer->Add(horizontalSizer, 0, wxEXPAND, 0);
391 wxStaticText *stattext = new wxStaticText( extrapanel, wxID_ANY, _("File type:") );
392 horizontalSizer->Add(stattext, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
393 m_filterChoice = new wxChoice(extrapanel, wxID_ANY);
394 horizontalSizer->Add(m_filterChoice, 1, wxALIGN_CENTER_VERTICAL|wxALL, 5);
395 m_filterChoice->Append(m_filterNames);
396 if( m_filterNames.GetCount() > 0)
398 if ( m_firstFileTypeFilter >= 0 )
399 m_filterChoice->SetSelection(m_firstFileTypeFilter);
401 m_filterChoice->Connect(wxEVT_CHOICE, wxCommandEventHandler(wxFileDialog::OnFilterSelected), NULL, this);
406 wxBoxSizer *horizontalSizer = new wxBoxSizer(wxHORIZONTAL);
407 verticalSizer->Add(horizontalSizer, 0, wxEXPAND, 0);
409 extracontrol->Reparent(extrapanel);
410 horizontalSizer->Add(extracontrol);
413 verticalSizer->Layout();
414 verticalSizer->SetSizeHints(extrapanel);
418 void wxFileDialog::DoOnFilterSelected(int index)
420 NSArray* types = GetTypesFromExtension(m_filterExtensions[index],m_currentExtensions);
421 NSSavePanel* panel = (NSSavePanel*) GetWXWindow();
423 [panel validateVisibleColumns];
425 [panel setAllowedFileTypes:types];
428 // An item has been selected in the file filter wxChoice:
429 void wxFileDialog::OnFilterSelected( wxCommandEvent &WXUNUSED(event) )
431 DoOnFilterSelected( m_filterChoice->GetSelection() );
434 bool wxFileDialog::CheckFile( const wxString& filename )
436 if ( m_currentExtensions.GetCount() == 0 )
439 wxString ext = filename.AfterLast('.').Lower();
441 for ( size_t i = 0; i < m_currentExtensions.GetCount(); ++i )
443 if ( ext == m_currentExtensions[i] )
449 void wxFileDialog::SetupExtraControls(WXWindow nativeWindow)
451 NSSavePanel* panel = (NSSavePanel*) nativeWindow;
452 // for sandboxed app we cannot access the outer structures
453 // this leads to problems with extra controls, so as a temporary
454 // workaround for crashes we don't support those yet
455 if ( [panel contentView] == nil )
458 wxNonOwnedWindow::Create( GetParent(), nativeWindow );
459 wxWindow* extracontrol = NULL;
460 if ( HasExtraControlCreator() )
462 CreateExtraControl();
463 extracontrol = GetExtraControl();
466 NSView* accView = nil;
468 if ( m_useFileTypeFilter )
470 m_filterPanel = CreateFilterPanel(extracontrol);
471 accView = m_filterPanel->GetHandle();
472 if( HasFlag(wxFD_OPEN) )
474 if ( UMAGetSystemVersion() < 0x1060 || !HasAppKit_10_6() )
476 wxOpenPanelDelegate* del = [[wxOpenPanelDelegate alloc]init];
477 [del setFileDialog:this];
478 [panel setDelegate:del];
485 m_filterPanel = NULL;
486 m_filterChoice = NULL;
487 if ( extracontrol != nil )
488 accView = extracontrol->GetHandle();
491 if ( accView != nil )
493 [accView removeFromSuperview];
494 [panel setAccessoryView:accView];
498 [panel setAccessoryView:nil];
502 int wxFileDialog::ShowModal()
504 WX_HOOK_MODAL_DIALOG();
506 wxCFEventLoopPauseIdleEvents pause;
508 wxMacAutoreleasePool autoreleasepool;
510 wxCFStringRef cf( m_message );
512 wxCFStringRef dir( m_dir );
513 wxCFStringRef file( m_fileName );
515 m_path = wxEmptyString;
519 wxNonOwnedWindow* parentWindow = NULL;
524 parentWindow = dynamic_cast<wxNonOwnedWindow*>(wxGetTopLevelParent(GetParent()));
528 NSArray* types = GetTypesFromFilter( m_wildCard, m_filterNames, m_filterExtensions ) ;
530 m_useFileTypeFilter = m_filterExtensions.GetCount() > 1;
532 if( HasFlag(wxFD_OPEN) )
534 if ( !(wxSystemOptions::HasOption( wxOSX_FILEDIALOG_ALWAYS_SHOW_TYPES ) && (wxSystemOptions::GetOptionInt( wxOSX_FILEDIALOG_ALWAYS_SHOW_TYPES ) == 1)) )
535 m_useFileTypeFilter = false;
538 m_firstFileTypeFilter = -1;
540 if ( m_useFileTypeFilter
541 && m_filterIndex >= 0 && m_filterIndex < m_filterExtensions.GetCount() )
543 m_firstFileTypeFilter = m_filterIndex;
545 else if ( m_useFileTypeFilter )
548 bool useDefault = true;
549 for ( size_t i = 0; i < m_filterExtensions.GetCount(); ++i )
551 types = GetTypesFromExtension(m_filterExtensions[i], m_currentExtensions);
552 if ( m_currentExtensions.GetCount() == 0 )
555 m_firstFileTypeFilter = i;
559 for ( size_t j = 0; j < m_currentExtensions.GetCount(); ++j )
561 if ( m_fileName.EndsWith(m_currentExtensions[j]) )
563 m_firstFileTypeFilter = i;
573 types = GetTypesFromExtension(m_filterExtensions[0], m_currentExtensions);
574 m_firstFileTypeFilter = 0;
578 if ( HasFlag(wxFD_SAVE) )
580 NSSavePanel* sPanel = [NSSavePanel savePanel];
582 SetupExtraControls(sPanel);
584 // makes things more convenient:
585 [sPanel setCanCreateDirectories:YES];
586 [sPanel setMessage:cf.AsNSString()];
587 // if we should be able to descend into pacakges we must somehow
588 // be able to pass this in
589 [sPanel setTreatsFilePackagesAsDirectories:NO];
590 [sPanel setCanSelectHiddenExtension:YES];
591 [sPanel setAllowedFileTypes:types];
592 [sPanel setAllowsOtherFileTypes:NO];
594 if ( HasFlag(wxFD_OVERWRITE_PROMPT) )
599 Let the file dialog know what file type should be used initially.
600 If this is not done then when setting the filter index
601 programmatically to 1 the file will still have the extension
602 of the first file type instead of the second one. E.g. when file
603 types are foo and bar, a filename "myletter" with SetDialogIndex(1)
604 would result in saving as myletter.foo, while we want myletter.bar.
606 if(m_firstFileTypeFilter > 0)
608 DoOnFilterSelected(m_firstFileTypeFilter);
611 returnCode = [sPanel runModalForDirectory: m_dir.IsEmpty() ? nil : dir.AsNSString() file:file.AsNSString() ];
612 ModalFinishedCallback(sPanel, returnCode);
616 NSOpenPanel* oPanel = [NSOpenPanel openPanel];
618 SetupExtraControls(oPanel);
620 [oPanel setTreatsFilePackagesAsDirectories:NO];
621 [oPanel setCanChooseDirectories:NO];
622 [oPanel setResolvesAliases:YES];
623 [oPanel setCanChooseFiles:YES];
624 [oPanel setMessage:cf.AsNSString()];
625 [oPanel setAllowsMultipleSelection: (HasFlag(wxFD_MULTIPLE) ? YES : NO )];
627 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
628 if ( UMAGetSystemVersion() >= 0x1060 && HasAppKit_10_6() )
630 [oPanel setAllowedFileTypes: (m_delegate == nil ? types : nil)];
631 if ( !m_dir.IsEmpty() )
632 [oPanel setDirectoryURL:[NSURL fileURLWithPath:dir.AsNSString()
634 returnCode = [oPanel runModal];
639 returnCode = [oPanel runModalForDirectory:m_dir.IsEmpty() ? nil : dir.AsNSString()
640 file:file.AsNSString() types:(m_delegate == nil ? types : nil)];
643 ModalFinishedCallback(oPanel, returnCode);
646 return GetReturnCode();
649 void wxFileDialog::ModalFinishedCallback(void* panel, int returnCode)
651 int result = wxID_CANCEL;
652 if (HasFlag(wxFD_SAVE))
654 if (returnCode == NSOKButton )
656 NSSavePanel* sPanel = (NSSavePanel*)panel;
659 m_path = wxCFStringRef::AsStringWithNormalizationFormC([sPanel filename]);
660 m_fileName = wxFileNameFromPath(m_path);
661 m_dir = wxPathOnly( m_path );
664 m_filterIndex = m_filterChoice->GetSelection();
670 NSOpenPanel* oPanel = (NSOpenPanel*)panel;
671 if (returnCode == NSOKButton )
675 NSArray* filenames = [oPanel filenames];
676 for ( size_t i = 0 ; i < [filenames count] ; ++ i )
678 wxString fnstr = wxCFStringRef::AsStringWithNormalizationFormC([filenames objectAtIndex:i]);
679 m_paths.Add( fnstr );
680 m_fileNames.Add( wxFileNameFromPath(fnstr) );
684 m_fileName = wxFileNameFromPath(fnstr);
685 m_dir = wxPathOnly( fnstr );
691 [oPanel setDelegate:nil];
692 [m_delegate release];
696 SetReturnCode(result);
698 if (GetModality() == wxDIALOG_MODALITY_WINDOW_MODAL)
699 SendWindowModalDialogEvent ( wxEVT_WINDOW_MODAL_DIALOG_CLOSED );
701 // workaround for sandboxed app, see above
702 if ( m_isNativeWindowWrapper )
704 [(NSSavePanel*) panel setAccessoryView:nil];
707 #endif // wxUSE_FILEDLG