]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/filedlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/filedlg.cpp
3 // Purpose: wxFileDialog
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "filedlg.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #if wxUSE_FILEDLG && !defined(__SMARTPHONE__)
35 #include "wx/msgdlg.h"
36 #include "wx/filedlg.h"
37 #include "wx/filefn.h"
43 #include "wx/msw/private.h"
45 #if !defined(__WIN32__) || defined(__WXWINCE__)
53 #include "wx/filename.h"
54 #include "wx/tokenzr.h"
57 #define OFN_EXPLORER 0x00080000
60 // ----------------------------------------------------------------------------
62 // ----------------------------------------------------------------------------
65 # define wxMAXPATH 65534
67 # define wxMAXPATH 1024
70 # define wxMAXFILE 1024
74 // ============================================================================
76 // ============================================================================
78 IMPLEMENT_CLASS(wxFileDialog
, wxFileDialogBase
)
80 // ----------------------------------------------------------------------------
82 // ----------------------------------------------------------------------------
84 wxFileDialog::wxFileDialog(wxWindow
*parent
,
85 const wxString
& message
,
86 const wxString
& defaultDir
,
87 const wxString
& defaultFileName
,
88 const wxString
& wildCard
,
91 :wxFileDialogBase(parent
, message
, defaultDir
, defaultFileName
, wildCard
, style
, pos
)
94 if ( ( m_dialogStyle
& wxMULTIPLE
) && ( m_dialogStyle
& wxSAVE
) )
95 m_dialogStyle
&= ~wxMULTIPLE
;
98 void wxFileDialog::GetPaths(wxArrayString
& paths
) const
103 if ( m_dir
.Last() != _T('\\') )
106 size_t count
= m_fileNames
.GetCount();
107 for ( size_t n
= 0; n
< count
; n
++ )
109 if (wxFileName(m_fileNames
[n
]).IsAbsolute())
110 paths
.Add(m_fileNames
[n
]);
112 paths
.Add(dir
+ m_fileNames
[n
]);
116 void wxFileDialog::GetFilenames(wxArrayString
& files
) const
121 void wxFileDialog::SetPath(const wxString
& path
)
124 wxSplitPath(path
, &m_dir
, &m_fileName
, &ext
);
126 m_fileName
<< _T('.') << ext
;
129 int wxFileDialog::ShowModal()
132 if (m_parent
) hWnd
= (HWND
) m_parent
->GetHWND();
133 if (!hWnd
&& wxTheApp
->GetTopWindow())
134 hWnd
= (HWND
) wxTheApp
->GetTopWindow()->GetHWND();
136 static wxChar fileNameBuffer
[ wxMAXPATH
]; // the file-name
137 wxChar titleBuffer
[ wxMAXFILE
+1+wxMAXEXT
]; // the file-name, without path
139 *fileNameBuffer
= wxT('\0');
140 *titleBuffer
= wxT('\0');
142 #if WXWIN_COMPATIBILITY_2_4
144 if ( (m_dialogStyle
& wxHIDE_READONLY
) || (m_dialogStyle
& wxSAVE
) )
145 msw_flags
|= OFN_HIDEREADONLY
;
147 long msw_flags
= OFN_HIDEREADONLY
;
150 if ( m_dialogStyle
& wxFILE_MUST_EXIST
)
151 msw_flags
|= OFN_PATHMUSTEXIST
| OFN_FILEMUSTEXIST
;
153 if (m_dialogStyle
& wxMULTIPLE
)
155 // OFN_EXPLORER must always be specified with OFN_ALLOWMULTISELECT
156 msw_flags
|= OFN_EXPLORER
| OFN_ALLOWMULTISELECT
;
159 // if wxCHANGE_DIR flag is not given we shouldn't change the CWD which the
160 // standard dialog does by default
161 if ( !(m_dialogStyle
& wxCHANGE_DIR
) )
163 msw_flags
|= OFN_NOCHANGEDIR
;
166 if ( m_dialogStyle
& wxOVERWRITE_PROMPT
)
168 msw_flags
|= OFN_OVERWRITEPROMPT
;
174 // the OPENFILENAME struct has been extended in newer version of
175 // comcdlg32.dll, but as we don't use the extended fields anyhow, set
176 // the struct size to the old value - otherwise, the programs compiled
177 // with new headers will not work with the old libraries
178 #if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0500)
179 of
.lStructSize
= sizeof(OPENFILENAME
) -
180 (sizeof(void *) + 2*sizeof(DWORD
));
182 of
.lStructSize
= sizeof(OPENFILENAME
);
186 of
.lpstrTitle
= WXSTRINGCAST m_message
;
187 of
.lpstrFileTitle
= titleBuffer
;
188 of
.nMaxFileTitle
= wxMAXFILE
+ 1 + wxMAXEXT
; // Windows 3.0 and 3.1
190 // Convert forward slashes to backslashes (file selector doesn't like
191 // forward slashes) and also squeeze multiple consecutive slashes into one
192 // as it doesn't like two backslashes in a row neither
195 size_t i
, len
= m_dir
.length();
197 for ( i
= 0; i
< len
; i
++ )
199 wxChar ch
= m_dir
[i
];
203 // convert to backslash
209 while ( i
< len
- 1 )
211 wxChar chNext
= m_dir
[i
+ 1];
212 if ( chNext
!= _T('\\') && chNext
!= _T('/') )
215 // ignore the next one, unless it is at the start of a UNC path
229 of
.lpstrInitialDir
= dir
.c_str();
231 of
.Flags
= msw_flags
;
234 //=== Like Alejandro Sierra's wildcard modification >>===================
236 In wxFileSelector you can put, instead of a single wild_card,
237 pairs of strings separated by '|'.
238 The first string is a description, and the
239 second is the wild card. You can put any number of pairs.
241 eg. "description1 (*.ex1)|*.ex1|description2 (*.ex2)|*.ex2"
243 If you put a single wild card, it works as before the modification.
245 //=======================================================================
248 if ( wxStrlen(m_wildCard
) == 0 )
249 theFilter
= wxString(wxT("*.*"));
251 theFilter
= m_wildCard
;
252 wxString filterBuffer
;
254 if ( !wxStrchr( theFilter
, wxT('|') ) ) { // only one filter ==> default text
255 filterBuffer
.Printf(_("Files (%s)|%s"),
256 theFilter
.c_str(), theFilter
.c_str());
258 else { // more then one filter
259 filterBuffer
= theFilter
;
263 filterBuffer
+= wxT("|");
265 for (i
= 0; i
< filterBuffer
.Len(); i
++ ) {
266 if ( filterBuffer
.GetChar(i
) == wxT('|') ) {
267 filterBuffer
[i
] = wxT('\0');
271 of
.lpstrFilter
= (LPTSTR
)(const wxChar
*)filterBuffer
;
272 of
.nFilterIndex
= m_filterIndex
+ 1;
274 //=== Setting defaultFileName >>=========================================
276 wxStrncpy( fileNameBuffer
, (const wxChar
*)m_fileName
, wxMAXPATH
-1 );
277 fileNameBuffer
[ wxMAXPATH
-1 ] = wxT('\0');
279 of
.lpstrFile
= fileNameBuffer
; // holds returned filename
280 of
.nMaxFile
= wxMAXPATH
;
282 //== Execute FileDialog >>=================================================
284 bool success
= (m_dialogStyle
& wxSAVE
? GetSaveFileName(&of
)
285 : GetOpenFileName(&of
)) != 0;
287 DWORD errCode
= CommDlgExtendedError();
290 if (!success
&& (errCode
== CDERR_STRUCTSIZE
))
292 // The struct size has changed so try a smaller or bigger size
294 int oldStructSize
= of
.lStructSize
;
295 of
.lStructSize
= oldStructSize
- (sizeof(void *) + 2*sizeof(DWORD
));
296 success
= (m_dialogStyle
& wxSAVE
) ? (GetSaveFileName(&of
) != 0)
297 : (GetOpenFileName(&of
) != 0);
298 errCode
= CommDlgExtendedError();
300 if (!success
&& (errCode
== CDERR_STRUCTSIZE
))
302 of
.lStructSize
= oldStructSize
+ (sizeof(void *) + 2*sizeof(DWORD
));
303 success
= (m_dialogStyle
& wxSAVE
) ? (GetSaveFileName(&of
) != 0)
304 : (GetOpenFileName(&of
) != 0);
313 if ( ( m_dialogStyle
& wxMULTIPLE
) &&
314 #if defined(OFN_EXPLORER)
315 ( fileNameBuffer
[of
.nFileOffset
-1] == wxT('\0') )
317 ( fileNameBuffer
[of
.nFileOffset
-1] == wxT(' ') )
318 #endif // OFN_EXPLORER
321 #if defined(OFN_EXPLORER)
322 m_dir
= fileNameBuffer
;
324 m_fileName
= &fileNameBuffer
[i
];
325 m_fileNames
.Add(m_fileName
);
326 i
+= m_fileName
.Len() + 1;
328 while (fileNameBuffer
[i
] != wxT('\0'))
330 m_fileNames
.Add(&fileNameBuffer
[i
]);
331 i
+= wxStrlen(&fileNameBuffer
[i
]) + 1;
334 wxStringTokenizer
toke(fileNameBuffer
, _T(" \t\r\n"));
335 m_dir
= toke
.GetNextToken();
336 m_fileName
= toke
.GetNextToken();
337 m_fileNames
.Add(m_fileName
);
339 while (toke
.HasMoreTokens())
340 m_fileNames
.Add(toke
.GetNextToken());
341 #endif // OFN_EXPLORER
344 if ( m_dir
.Last() != _T('\\') )
347 m_path
= dir
+ m_fileName
;
348 m_filterIndex
= (int)of
.nFilterIndex
- 1;
352 //=== Adding the correct extension >>=================================
354 m_filterIndex
= (int)of
.nFilterIndex
- 1;
356 if ( !of
.nFileExtension
||
357 (of
.nFileExtension
&& fileNameBuffer
[of
.nFileExtension
] == wxT('\0')) )
359 // User has typed a filename without an extension:
360 const wxChar
* extension
= filterBuffer
;
361 int maxFilter
= (int)(of
.nFilterIndex
*2L) - 1;
363 for( int i
= 0; i
< maxFilter
; i
++ ) // get extension
364 extension
= extension
+ wxStrlen( extension
) + 1;
366 m_fileName
= AppendExtension(fileNameBuffer
, extension
);
367 wxStrncpy(fileNameBuffer
, m_fileName
.c_str(), wxMin(m_fileName
.Len(), wxMAXPATH
-1));
368 fileNameBuffer
[wxMin(m_fileName
.Len(), wxMAXPATH
-1)] = wxT('\0');
371 m_path
= fileNameBuffer
;
372 m_fileName
= wxFileNameFromPath(fileNameBuffer
);
373 m_fileNames
.Add(m_fileName
);
374 m_dir
= wxPathOnly(fileNameBuffer
);
379 // common dialog failed - why?
381 DWORD dwErr
= CommDlgExtendedError();
384 // this msg is only for developers
385 wxLogError(wxT("Common dialog failed with error code %0lx."),
388 //else: it was just cancelled
392 return success
? wxID_OK
: wxID_CANCEL
;
396 #endif // wxUSE_FILEDLG