]>
Commit | Line | Data |
---|---|---|
0f9b48d1 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/cocoa/filedlg.mm | |
3 | // Purpose: wxFileDialog for wxCocoa | |
4 | // Author: Ryan Norton | |
5 | // Modified by: | |
6 | // Created: 2004-10-02 | |
7 | // RCS-ID: $Id: filedlg.mm 40007 2006-07-05 13:10:46Z SC $ | |
8 | // Copyright: (c) Ryan Norton | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #if wxUSE_FILEDLG | |
24 | ||
25 | #include "wx/filedlg.h" | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/msgdlg.h" | |
29 | #include "wx/app.h" | |
30 | #endif | |
31 | ||
32 | #include "wx/filename.h" | |
b822bdc0 | 33 | #include "wx/tokenzr.h" |
0f9b48d1 SC |
34 | |
35 | #include "wx/osx/private.h" | |
36 | ||
37 | // ============================================================================ | |
38 | // implementation | |
39 | // ============================================================================ | |
40 | ||
4dd9fdf8 SC |
41 | // Open Items: |
42 | // - support for old style MacOS creator / type combos | |
43 | // - parameter support for descending into packages as directories (setTreatsFilePackagesAsDirectories) | |
44 | ||
0f9b48d1 SC |
45 | IMPLEMENT_CLASS(wxFileDialog, wxFileDialogBase) |
46 | ||
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) | |
52 | { | |
53 | } | |
54 | ||
0f9b48d1 SC |
55 | NSArray* GetTypesFromFilter( const wxString filter ) |
56 | { | |
57 | NSMutableArray* types = nil; | |
58 | if ( !filter.empty() ) | |
59 | { | |
60 | wxArrayString names ; | |
61 | wxArrayString extensions; | |
bd365871 | 62 | |
0f9b48d1 SC |
63 | wxString filter2(filter) ; |
64 | int filterIndex = 0; | |
65 | bool isName = true ; | |
66 | wxString current ; | |
67 | ||
68 | for ( unsigned int i = 0; i < filter2.length() ; i++ ) | |
69 | { | |
70 | if ( filter2.GetChar(i) == wxT('|') ) | |
71 | { | |
72 | if ( isName ) | |
73 | { | |
74 | names.Add( current ) ; | |
75 | } | |
76 | else | |
77 | { | |
78 | extensions.Add( current ) ; | |
79 | ++filterIndex ; | |
80 | } | |
81 | ||
82 | isName = !isName ; | |
83 | current = wxEmptyString ; | |
84 | } | |
85 | else | |
86 | { | |
87 | current += filter2.GetChar(i) ; | |
88 | } | |
89 | } | |
90 | // we allow for compatibility reason to have a single filter expression (like *.*) without | |
91 | // an explanatory text, in that case the first part is name and extension at the same time | |
92 | ||
93 | wxASSERT_MSG( filterIndex == 0 || !isName , wxT("incorrect format of format string") ) ; | |
94 | if ( current.empty() ) | |
95 | extensions.Add( names[filterIndex] ) ; | |
96 | else | |
97 | extensions.Add( current ) ; | |
98 | if ( filterIndex == 0 || isName ) | |
99 | names.Add( current ) ; | |
100 | ||
101 | ++filterIndex ; | |
102 | ||
103 | const size_t extCount = extensions.GetCount(); | |
104 | for ( size_t i = 0 ; i < extCount; i++ ) | |
105 | { | |
b822bdc0 SC |
106 | wxString extensiongroup = extensions[i]; |
107 | wxStringTokenizer tokenizer( extensiongroup , wxT(";") ) ; | |
108 | while ( tokenizer.HasMoreTokens() ) | |
0f9b48d1 | 109 | { |
b822bdc0 SC |
110 | wxString extension = tokenizer.GetNextToken() ; |
111 | // Remove leading '*' | |
112 | if (extension.length() && (extension.GetChar(0) == '*')) | |
113 | extension = extension.Mid( 1 ); | |
bd365871 | 114 | |
b822bdc0 SC |
115 | // Remove leading '.' |
116 | if (extension.length() && (extension.GetChar(0) == '.')) | |
117 | extension = extension.Mid( 1 ); | |
bd365871 | 118 | |
b822bdc0 SC |
119 | if ( extension.IsEmpty() ) |
120 | { | |
121 | if ( types != nil ) | |
122 | [types release]; | |
123 | return nil; | |
124 | } | |
125 | ||
126 | if ( types == nil ) | |
127 | types = [[NSMutableArray alloc] init]; | |
bd365871 | 128 | |
b822bdc0 SC |
129 | wxCFStringRef cfext(extension); |
130 | [types addObject: (NSString*)cfext.AsNSString() ]; | |
bd365871 | 131 | #if 0 |
b822bdc0 SC |
132 | // add support for classic fileType / creator here |
133 | wxUint32 fileType, creator; | |
134 | // extension -> mactypes | |
0f9b48d1 | 135 | #endif |
b822bdc0 SC |
136 | } |
137 | ||
0f9b48d1 SC |
138 | } |
139 | } | |
140 | return types; | |
141 | } | |
142 | ||
143 | int wxFileDialog::ShowModal() | |
144 | { | |
145 | int result = wxID_CANCEL; | |
bd365871 | 146 | |
0f9b48d1 | 147 | NSSavePanel *panel = nil; |
bd365871 | 148 | |
0f9b48d1 | 149 | wxCFStringRef cf( m_message ); |
bd365871 | 150 | |
1b447793 | 151 | wxCFStringRef dir( m_dir ); |
0f9b48d1 | 152 | wxCFStringRef file( m_fileName ); |
bd365871 | 153 | |
0f9b48d1 SC |
154 | m_path = wxEmptyString; |
155 | m_fileNames.Clear(); | |
8b558f12 | 156 | m_paths.Clear(); |
03647350 | 157 | |
724999ee KO |
158 | wxNonOwnedWindow* parentWindow = NULL; |
159 | int returnCode = -1; | |
03647350 VZ |
160 | |
161 | if (GetParent()) | |
724999ee KO |
162 | { |
163 | parentWindow = dynamic_cast<wxNonOwnedWindow*>(wxGetTopLevelParent(GetParent())); | |
164 | } | |
bd365871 | 165 | |
0f9b48d1 SC |
166 | if (HasFlag(wxFD_SAVE)) |
167 | { | |
168 | NSSavePanel* sPanel = [NSSavePanel savePanel]; | |
169 | // makes things more convenient: | |
170 | [sPanel setCanCreateDirectories:YES]; | |
171 | [sPanel setMessage:cf.AsNSString()]; | |
4dd9fdf8 SC |
172 | // if we should be able to descend into pacakges we must somehow |
173 | // be able to pass this in | |
0f9b48d1 | 174 | [sPanel setTreatsFilePackagesAsDirectories:NO]; |
4dd9fdf8 | 175 | [sPanel setCanSelectHiddenExtension:YES]; |
bd365871 | 176 | |
0f9b48d1 SC |
177 | if ( HasFlag(wxFD_OVERWRITE_PROMPT) ) |
178 | { | |
179 | } | |
440e5cb2 KO |
180 | |
181 | /* | |
182 | if (parentWindow) | |
724999ee KO |
183 | { |
184 | NSWindow* nativeParent = parentWindow->GetWXWindow(); | |
03647350 VZ |
185 | ModalDialogDelegate* sheetDelegate = [[ModalDialogDelegate alloc] init]; |
186 | [sPanel beginSheetForDirectory:dir.AsNSString() file:file.AsNSString() | |
187 | modalForWindow: nativeParent modalDelegate: sheetDelegate | |
188 | didEndSelector: @selector(sheetDidEnd:returnCode:contextInfo:) | |
724999ee KO |
189 | contextInfo: nil]; |
190 | [sheetDelegate waitForSheetToFinish]; | |
b2c47ad3 | 191 | returnCode = [sheetDelegate code]; |
724999ee KO |
192 | [sheetDelegate release]; |
193 | } | |
194 | else | |
440e5cb2 | 195 | */ |
724999ee | 196 | { |
b2c47ad3 | 197 | returnCode = [sPanel runModalForDirectory:dir.AsNSString() file:file.AsNSString() ]; |
724999ee | 198 | } |
03647350 | 199 | |
b2c47ad3 | 200 | if (returnCode == NSOKButton ) |
0f9b48d1 SC |
201 | { |
202 | panel = sPanel; | |
203 | result = wxID_OK; | |
bd365871 | 204 | |
f66ecdc4 | 205 | m_path = wxCFStringRef::AsString([sPanel filename]); |
0f9b48d1 SC |
206 | m_fileName = wxFileNameFromPath(m_path); |
207 | m_dir = wxPathOnly( m_path ); | |
208 | } | |
209 | } | |
210 | else | |
211 | { | |
212 | NSArray* types = GetTypesFromFilter( m_wildCard ) ; | |
213 | NSOpenPanel* oPanel = [NSOpenPanel openPanel]; | |
214 | [oPanel setTreatsFilePackagesAsDirectories:NO]; | |
215 | [oPanel setCanChooseDirectories:NO]; | |
216 | [oPanel setResolvesAliases:YES]; | |
217 | [oPanel setCanChooseFiles:YES]; | |
218 | [oPanel setMessage:cf.AsNSString()]; | |
bd365871 | 219 | |
440e5cb2 KO |
220 | /* |
221 | if (parentWindow) | |
724999ee KO |
222 | { |
223 | NSWindow* nativeParent = parentWindow->GetWXWindow(); | |
03647350 VZ |
224 | ModalDialogDelegate* sheetDelegate = [[ModalDialogDelegate alloc] init]; |
225 | [oPanel beginSheetForDirectory:dir.AsNSString() file:file.AsNSString() | |
226 | types: types modalForWindow: nativeParent | |
227 | modalDelegate: sheetDelegate | |
228 | didEndSelector: @selector(sheetDidEnd:returnCode:contextInfo:) | |
724999ee KO |
229 | contextInfo: nil]; |
230 | [sheetDelegate waitForSheetToFinish]; | |
b2c47ad3 | 231 | returnCode = [sheetDelegate code]; |
724999ee KO |
232 | [sheetDelegate release]; |
233 | } | |
234 | else | |
440e5cb2 | 235 | */ |
724999ee | 236 | { |
03647350 | 237 | returnCode = [oPanel runModalForDirectory:dir.AsNSString() |
724999ee KO |
238 | file:file.AsNSString() types:types]; |
239 | } | |
b2c47ad3 | 240 | if (returnCode == NSOKButton ) |
0f9b48d1 SC |
241 | { |
242 | panel = oPanel; | |
243 | result = wxID_OK; | |
244 | NSArray* filenames = [oPanel filenames]; | |
245 | for ( size_t i = 0 ; i < [filenames count] ; ++ i ) | |
246 | { | |
f66ecdc4 | 247 | wxString fnstr = wxCFStringRef::AsString([filenames objectAtIndex:i]); |
0f9b48d1 SC |
248 | m_paths.Add( fnstr ); |
249 | m_fileNames.Add( wxFileNameFromPath(fnstr) ); | |
250 | if ( i == 0 ) | |
251 | { | |
252 | m_path = fnstr; | |
253 | m_fileName = wxFileNameFromPath(fnstr); | |
254 | m_dir = wxPathOnly( fnstr ); | |
255 | } | |
256 | } | |
257 | } | |
258 | if ( types != nil ) | |
259 | [types release]; | |
260 | } | |
bd365871 | 261 | |
0f9b48d1 SC |
262 | return result; |
263 | } | |
264 | ||
0f9b48d1 | 265 | #endif // wxUSE_FILEDLG |