1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/filedlg.mm
3 // Purpose: wxFileDialog for wxCocoa
7 // RCS-ID: $Id: filedlg.mm 40007 2006-07-05 13:10:46Z SC $
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"
32 #include "wx/filename.h"
33 #include "wx/tokenzr.h"
35 #include "wx/osx/private.h"
37 // ============================================================================
39 // ============================================================================
42 // - support for old style MacOS creator / type combos
43 // - parameter support for descending into packages as directories (setTreatsFilePackagesAsDirectories)
45 IMPLEMENT_CLASS(wxFileDialog, wxFileDialogBase)
47 wxFileDialog::wxFileDialog(
48 wxWindow *parent, const wxString& message,
49 const wxString& defaultDir, const wxString& defaultFileName, const wxString& wildCard,
50 long style, const wxPoint& pos, const wxSize& sz, const wxString& name)
51 : wxFileDialogBase(parent, message, defaultDir, defaultFileName, wildCard, style, pos, sz, name)
55 bool wxFileDialog::SupportsExtraControl() const
60 NSArray* GetTypesFromFilter( const wxString filter )
62 NSMutableArray* types = nil;
63 if ( !filter.empty() )
66 wxArrayString extensions;
68 wxString filter2(filter) ;
73 for ( unsigned int i = 0; i < filter2.length() ; i++ )
75 if ( filter2.GetChar(i) == wxT('|') )
79 names.Add( current ) ;
83 extensions.Add( current ) ;
88 current = wxEmptyString ;
92 current += filter2.GetChar(i) ;
95 // we allow for compatibility reason to have a single filter expression (like *.*) without
96 // an explanatory text, in that case the first part is name and extension at the same time
98 wxASSERT_MSG( filterIndex == 0 || !isName , wxT("incorrect format of format string") ) ;
99 if ( current.empty() )
100 extensions.Add( names[filterIndex] ) ;
102 extensions.Add( current ) ;
103 if ( filterIndex == 0 || isName )
104 names.Add( current ) ;
108 const size_t extCount = extensions.GetCount();
109 for ( size_t i = 0 ; i < extCount; i++ )
111 wxString extensiongroup = extensions[i];
112 wxStringTokenizer tokenizer( extensiongroup , wxT(";") ) ;
113 while ( tokenizer.HasMoreTokens() )
115 wxString extension = tokenizer.GetNextToken() ;
116 // Remove leading '*'
117 if (extension.length() && (extension.GetChar(0) == '*'))
118 extension = extension.Mid( 1 );
120 // Remove leading '.'
121 if (extension.length() && (extension.GetChar(0) == '.'))
122 extension = extension.Mid( 1 );
124 // Remove leading '*', this is for handling *.*
125 if (extension.length() && (extension.GetChar(0) == '*'))
126 extension = extension.Mid( 1 );
128 if ( extension.IsEmpty() )
136 types = [[NSMutableArray alloc] init];
138 wxCFStringRef cfext(extension);
139 [types addObject: (NSString*)cfext.AsNSString() ];
141 // add support for classic fileType / creator here
142 wxUint32 fileType, creator;
143 // extension -> mactypes
152 void wxFileDialog::ShowWindowModal()
154 wxCFStringRef cf( m_message );
155 wxCFStringRef dir( m_dir );
156 wxCFStringRef file( m_fileName );
158 wxNonOwnedWindow* parentWindow = NULL;
160 m_modality = wxDIALOG_MODALITY_WINDOW_MODAL;
163 parentWindow = dynamic_cast<wxNonOwnedWindow*>(wxGetTopLevelParent(GetParent()));
165 wxASSERT_MSG(parentWindow, "Window modal display requires parent.");
167 if (HasFlag(wxFD_SAVE))
169 NSSavePanel* sPanel = [NSSavePanel savePanel];
171 SetupExtraControls(sPanel);
173 // makes things more convenient:
174 [sPanel setCanCreateDirectories:YES];
175 [sPanel setMessage:cf.AsNSString()];
176 // if we should be able to descend into pacakges we must somehow
177 // be able to pass this in
178 [sPanel setTreatsFilePackagesAsDirectories:NO];
179 [sPanel setCanSelectHiddenExtension:YES];
181 NSWindow* nativeParent = parentWindow->GetWXWindow();
182 ModalDialogDelegate* sheetDelegate = [[ModalDialogDelegate alloc] init];
183 [sheetDelegate setImplementation: this];
184 [sPanel beginSheetForDirectory:dir.AsNSString() file:file.AsNSString()
185 modalForWindow: nativeParent modalDelegate: sheetDelegate
186 didEndSelector: @selector(sheetDidEnd:returnCode:contextInfo:)
191 NSArray* types = GetTypesFromFilter( m_wildCard ) ;
192 NSOpenPanel* oPanel = [NSOpenPanel openPanel];
194 SetupExtraControls(oPanel);
196 [oPanel setTreatsFilePackagesAsDirectories:NO];
197 [oPanel setCanChooseDirectories:NO];
198 [oPanel setResolvesAliases:YES];
199 [oPanel setCanChooseFiles:YES];
200 [oPanel setMessage:cf.AsNSString()];
202 NSWindow* nativeParent = parentWindow->GetWXWindow();
203 ModalDialogDelegate* sheetDelegate = [[ModalDialogDelegate alloc] init];
204 [sheetDelegate setImplementation: this];
205 [oPanel beginSheetForDirectory:dir.AsNSString() file:file.AsNSString()
206 types: types modalForWindow: nativeParent
207 modalDelegate: sheetDelegate
208 didEndSelector: @selector(sheetDidEnd:returnCode:contextInfo:)
213 void wxFileDialog::SetupExtraControls(WXWindow nativeWindow)
215 NSSavePanel* panel = (NSSavePanel*) nativeWindow;
217 wxNonOwnedWindow::Create( GetParent(), nativeWindow );
219 if (HasExtraControlCreator())
221 CreateExtraControl();
222 wxWindow* control = GetExtraControl();
225 NSView* accView = control->GetHandle();
226 [accView removeFromSuperview];
227 [panel setAccessoryView:accView];
231 [panel setAccessoryView:nil];
236 int wxFileDialog::ShowModal()
238 wxCFStringRef cf( m_message );
240 wxCFStringRef dir( m_dir );
241 wxCFStringRef file( m_fileName );
243 m_path = wxEmptyString;
246 // since we don't support retrieving the matching filter
249 wxNonOwnedWindow* parentWindow = NULL;
254 parentWindow = dynamic_cast<wxNonOwnedWindow*>(wxGetTopLevelParent(GetParent()));
257 if (HasFlag(wxFD_SAVE))
259 NSSavePanel* sPanel = [NSSavePanel savePanel];
261 SetupExtraControls(sPanel);
263 // makes things more convenient:
264 [sPanel setCanCreateDirectories:YES];
265 [sPanel setMessage:cf.AsNSString()];
266 // if we should be able to descend into pacakges we must somehow
267 // be able to pass this in
268 [sPanel setTreatsFilePackagesAsDirectories:NO];
269 [sPanel setCanSelectHiddenExtension:YES];
271 if ( HasFlag(wxFD_OVERWRITE_PROMPT) )
275 returnCode = [sPanel runModalForDirectory:dir.AsNSString() file:file.AsNSString() ];
276 ModalFinishedCallback(sPanel, returnCode);
278 [sPanel setAccessoryView:nil];
282 NSArray* types = GetTypesFromFilter( m_wildCard ) ;
283 NSOpenPanel* oPanel = [NSOpenPanel openPanel];
285 SetupExtraControls(oPanel);
287 [oPanel setTreatsFilePackagesAsDirectories:NO];
288 [oPanel setCanChooseDirectories:NO];
289 [oPanel setResolvesAliases:YES];
290 [oPanel setCanChooseFiles:YES];
291 [oPanel setMessage:cf.AsNSString()];
293 returnCode = [oPanel runModalForDirectory:dir.AsNSString()
294 file:file.AsNSString() types:types];
296 ModalFinishedCallback(oPanel, returnCode);
298 [oPanel setAccessoryView:nil];
304 return GetReturnCode();
307 void wxFileDialog::ModalFinishedCallback(void* panel, int returnCode)
309 int result = wxID_CANCEL;
310 if (HasFlag(wxFD_SAVE))
312 if (returnCode == NSOKButton )
314 NSSavePanel* sPanel = (NSSavePanel*)panel;
317 m_path = wxCFStringRef::AsString([sPanel filename]);
318 m_fileName = wxFileNameFromPath(m_path);
319 m_dir = wxPathOnly( m_path );
324 NSOpenPanel* oPanel = (NSOpenPanel*)panel;
325 if (returnCode == NSOKButton )
329 NSArray* filenames = [oPanel filenames];
330 for ( size_t i = 0 ; i < [filenames count] ; ++ i )
332 wxString fnstr = wxCFStringRef::AsString([filenames objectAtIndex:i]);
333 m_paths.Add( fnstr );
334 m_fileNames.Add( wxFileNameFromPath(fnstr) );
338 m_fileName = wxFileNameFromPath(fnstr);
339 m_dir = wxPathOnly( fnstr );
344 SetReturnCode(result);
346 if (GetModality() == wxDIALOG_MODALITY_WINDOW_MODAL)
347 SendWindowModalDialogEvent ( wxEVT_WINDOW_MODAL_DIALOG_CLOSED );
349 [(NSSavePanel*) panel setAccessoryView:nil];
352 #endif // wxUSE_FILEDLG