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 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #if wxUSE_FILEDLG && !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
31 #include "wx/msgdlg.h"
32 #include "wx/filedlg.h"
33 #include "wx/filefn.h"
39 #include "wx/msw/wrapcdlg.h"
44 #include "wx/filename.h"
45 #include "wx/tokenzr.h"
48 #include "wx/msw/missing.h"
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
55 # define wxMAXPATH 65534
57 # define wxMAXPATH 1024
60 # define wxMAXFILE 1024
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 // standard dialog size
69 static wxRect
gs_rectDialog(0, 0, 428, 266);
71 // ============================================================================
73 // ============================================================================
75 IMPLEMENT_CLASS(wxFileDialog
, wxFileDialogBase
)
77 // ----------------------------------------------------------------------------
78 // hook function for moving the dialog
79 // ----------------------------------------------------------------------------
82 wxFileDialogHookFunction(HWND hDlg
,
84 WPARAM
WXUNUSED(wParam
),
88 hwndDialog
= ::GetParent( hDlg
);
94 GetWindowRect( hwndDialog
, & dlgRect
);
95 gs_rectDialog
.x
= dlgRect
.left
;
96 gs_rectDialog
.y
= dlgRect
.top
;
97 gs_rectDialog
.width
= dlgRect
.right
- dlgRect
.left
;
98 gs_rectDialog
.height
= dlgRect
.bottom
- dlgRect
.top
;
104 OFNOTIFY
* pNotifyCode
;
105 pNotifyCode
= (LPOFNOTIFY
) lParam
;
106 if (CDN_INITDONE
== (pNotifyCode
->hdr
).code
)
108 SetWindowPos( hwndDialog
, HWND_TOP
,
112 gs_rectDialog
.height
,
113 SWP_NOZORDER
|SWP_NOSIZE
);
119 // do the default processing
123 // ----------------------------------------------------------------------------
125 // ----------------------------------------------------------------------------
127 wxFileDialog::wxFileDialog(wxWindow
*parent
,
128 const wxString
& message
,
129 const wxString
& defaultDir
,
130 const wxString
& defaultFileName
,
131 const wxString
& wildCard
,
134 : wxFileDialogBase(parent
, message
, defaultDir
, defaultFileName
,
135 wildCard
, style
, pos
)
138 if ( ( m_dialogStyle
& wxMULTIPLE
) && ( m_dialogStyle
& wxSAVE
) )
139 m_dialogStyle
&= ~wxMULTIPLE
;
141 m_bMovedWindow
= false;
143 // Must set to zero, otherwise the wx routines won't size the window
144 // the second time you call the file dialog, because it thinks it is
145 // already at the requested size.. (when centering)
150 void wxFileDialog::GetPaths(wxArrayString
& paths
) const
155 if ( m_dir
.Last() != _T('\\') )
158 size_t count
= m_fileNames
.GetCount();
159 for ( size_t n
= 0; n
< count
; n
++ )
161 if (wxFileName(m_fileNames
[n
]).IsAbsolute())
162 paths
.Add(m_fileNames
[n
]);
164 paths
.Add(dir
+ m_fileNames
[n
]);
168 void wxFileDialog::GetFilenames(wxArrayString
& files
) const
173 void wxFileDialog::SetPath(const wxString
& path
)
176 wxSplitPath(path
, &m_dir
, &m_fileName
, &ext
);
178 m_fileName
<< _T('.') << ext
;
181 void wxFileDialog::DoGetPosition( int *x
, int *y
) const
183 *x
= gs_rectDialog
.x
;
184 *y
= gs_rectDialog
.y
;
188 void wxFileDialog::DoGetSize(int *width
, int *height
) const
190 *width
= gs_rectDialog
.width
;
191 *height
= gs_rectDialog
.height
;
194 void wxFileDialog::DoMoveWindow(int x
, int y
, int WXUNUSED(width
), int WXUNUSED(height
))
196 m_bMovedWindow
= true;
202 The width and height can not be set by the programmer
203 its just not possible. But the program can get the
204 size of the Dlg after it has been shown, in case they need
209 int wxFileDialog::ShowModal()
212 if (m_parent
) hWnd
= (HWND
) m_parent
->GetHWND();
213 if (!hWnd
&& wxTheApp
->GetTopWindow())
214 hWnd
= (HWND
) wxTheApp
->GetTopWindow()->GetHWND();
216 static wxChar fileNameBuffer
[ wxMAXPATH
]; // the file-name
217 wxChar titleBuffer
[ wxMAXFILE
+1+wxMAXEXT
]; // the file-name, without path
219 *fileNameBuffer
= wxT('\0');
220 *titleBuffer
= wxT('\0');
222 #if WXWIN_COMPATIBILITY_2_4
224 if ( (m_dialogStyle
& wxHIDE_READONLY
) || (m_dialogStyle
& wxSAVE
) )
225 msw_flags
|= OFN_HIDEREADONLY
;
227 long msw_flags
= OFN_HIDEREADONLY
;
230 if ( m_dialogStyle
& wxFILE_MUST_EXIST
)
231 msw_flags
|= OFN_PATHMUSTEXIST
| OFN_FILEMUSTEXIST
;
233 If the window has been moved the programmer is probably
234 trying to center or position it. Thus we set the callback
235 or hook function so that we can actually adjust the position.
236 Without moving or centering the dlg, it will just stay
237 in the upper left of the frame, it does not center
238 automatically.. One additional note, when the hook is
239 enabled, the PLACES BAR in the dlg (shown on later versions
240 of windows (2000 and XP) will automatically be turned off
241 according to the MSDN docs. This is normal. If the
242 programmer needs the PLACES BAR (left side of dlg) they
243 just shouldn't move or center the dlg.
245 if (m_bMovedWindow
) // we need these flags.
247 msw_flags
|= OFN_EXPLORER
|OFN_ENABLEHOOK
;
249 msw_flags
|= OFN_ENABLESIZING
;
253 if (m_dialogStyle
& wxMULTIPLE
)
255 // OFN_EXPLORER must always be specified with OFN_ALLOWMULTISELECT
256 msw_flags
|= OFN_EXPLORER
| OFN_ALLOWMULTISELECT
;
259 // if wxCHANGE_DIR flag is not given we shouldn't change the CWD which the
260 // standard dialog does by default (notice that under NT it does it anyhow,
261 // OFN_NOCHANGEDIR or not, see below)
262 if ( !(m_dialogStyle
& wxCHANGE_DIR
) )
264 msw_flags
|= OFN_NOCHANGEDIR
;
267 if ( m_dialogStyle
& wxOVERWRITE_PROMPT
)
269 msw_flags
|= OFN_OVERWRITEPROMPT
;
275 // the OPENFILENAME struct has been extended in newer version of
276 // comcdlg32.dll, but as we don't use the extended fields anyhow, set
277 // the struct size to the old value - otherwise, the programs compiled
278 // with new headers will not work with the old libraries
279 #if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0500)
280 of
.lStructSize
= sizeof(OPENFILENAME
) -
281 (sizeof(void *) + 2*sizeof(DWORD
));
283 of
.lStructSize
= sizeof(OPENFILENAME
);
287 of
.lpstrTitle
= WXSTRINGCAST m_message
;
288 of
.lpstrFileTitle
= titleBuffer
;
289 of
.nMaxFileTitle
= wxMAXFILE
+ 1 + wxMAXEXT
; // Windows 3.0 and 3.1
291 // Convert forward slashes to backslashes (file selector doesn't like
292 // forward slashes) and also squeeze multiple consecutive slashes into one
293 // as it doesn't like two backslashes in a row neither
296 size_t i
, len
= m_dir
.length();
298 for ( i
= 0; i
< len
; i
++ )
300 wxChar ch
= m_dir
[i
];
304 // convert to backslash
310 while ( i
< len
- 1 )
312 wxChar chNext
= m_dir
[i
+ 1];
313 if ( chNext
!= _T('\\') && chNext
!= _T('/') )
316 // ignore the next one, unless it is at the start of a UNC path
330 of
.lpstrInitialDir
= dir
.c_str();
332 of
.Flags
= msw_flags
;
333 of
.lpfnHook
= wxFileDialogHookFunction
;
335 wxArrayString wildDescriptions
, wildFilters
;
337 size_t items
= wxParseCommonDialogsFilter(m_wildCard
, wildDescriptions
, wildFilters
);
339 wxASSERT_MSG( items
> 0 , _T("empty wildcard list") );
341 wxString filterBuffer
;
343 for (i
= 0; i
< items
; i
++)
345 filterBuffer
+= wildDescriptions
[i
];
346 filterBuffer
+= wxT("|");
347 filterBuffer
+= wildFilters
[i
];
348 filterBuffer
+= wxT("|");
352 for (i
= 0; i
< filterBuffer
.Len(); i
++ ) {
353 if ( filterBuffer
.GetChar(i
) == wxT('|') ) {
354 filterBuffer
[i
] = wxT('\0');
358 of
.lpstrFilter
= (LPTSTR
)filterBuffer
.c_str();
359 of
.nFilterIndex
= m_filterIndex
+ 1;
361 //=== Setting defaultFileName >>=========================================
363 wxStrncpy( fileNameBuffer
, (const wxChar
*)m_fileName
, wxMAXPATH
-1 );
364 fileNameBuffer
[ wxMAXPATH
-1 ] = wxT('\0');
366 of
.lpstrFile
= fileNameBuffer
; // holds returned filename
367 of
.nMaxFile
= wxMAXPATH
;
369 // we must set the default extension because otherwise Windows would check
370 // for the existing of a wrong file with wxOVERWRITE_PROMPT (i.e. if the
371 // user types "foo" and the default extension is ".bar" we should force it
372 // to check for "foo.bar" existence and not "foo")
373 wxString defextBuffer
; // we need it to be alive until GetSaveFileName()!
374 if (m_dialogStyle
& wxSAVE
)
376 const wxChar
* extension
= filterBuffer
;
377 int maxFilter
= (int)(of
.nFilterIndex
*2L) - 1;
379 for( int i
= 0; i
< maxFilter
; i
++ ) // get extension
380 extension
= extension
+ wxStrlen( extension
) + 1;
382 // use dummy name a to avoid assert in AppendExtension
383 defextBuffer
= AppendExtension(wxT("a"), extension
);
384 if (defextBuffer
.StartsWith(wxT("a.")))
387 of
.lpstrDefExt
= defextBuffer
.c_str();
391 // store off before the standard windows dialog can possibly change it
392 const wxString cwdOrig
= wxGetCwd();
394 //== Execute FileDialog >>=================================================
396 bool success
= (m_dialogStyle
& wxSAVE
? GetSaveFileName(&of
)
397 : GetOpenFileName(&of
)) != 0;
399 DWORD errCode
= CommDlgExtendedError();
401 // GetOpenFileName will always change the current working directory on
402 // (according to MSDN) "Windows NT 4.0/2000/XP" because the flag
403 // OFN_NOCHANGEDIR has no effect. If the user did not specify wxCHANGE_DIR
404 // let's restore the current working directory to what it was before the
405 // dialog was shown (assuming this behavior extends to Windows Server 2003
408 (msw_flags
& OFN_NOCHANGEDIR
) &&
409 wxGetOsVersion() == wxWINDOWS_NT
)
411 wxSetWorkingDirectory(cwdOrig
);
415 if (!success
&& (errCode
== CDERR_STRUCTSIZE
))
417 // The struct size has changed so try a smaller or bigger size
419 int oldStructSize
= of
.lStructSize
;
420 of
.lStructSize
= oldStructSize
- (sizeof(void *) + 2*sizeof(DWORD
));
421 success
= (m_dialogStyle
& wxSAVE
) ? (GetSaveFileName(&of
) != 0)
422 : (GetOpenFileName(&of
) != 0);
423 errCode
= CommDlgExtendedError();
425 if (!success
&& (errCode
== CDERR_STRUCTSIZE
))
427 of
.lStructSize
= oldStructSize
+ (sizeof(void *) + 2*sizeof(DWORD
));
428 success
= (m_dialogStyle
& wxSAVE
) ? (GetSaveFileName(&of
) != 0)
429 : (GetOpenFileName(&of
) != 0);
438 if ( ( m_dialogStyle
& wxMULTIPLE
) &&
439 #if defined(OFN_EXPLORER)
440 ( fileNameBuffer
[of
.nFileOffset
-1] == wxT('\0') )
442 ( fileNameBuffer
[of
.nFileOffset
-1] == wxT(' ') )
443 #endif // OFN_EXPLORER
446 #if defined(OFN_EXPLORER)
447 m_dir
= fileNameBuffer
;
449 m_fileName
= &fileNameBuffer
[i
];
450 m_fileNames
.Add(m_fileName
);
451 i
+= m_fileName
.Len() + 1;
453 while (fileNameBuffer
[i
] != wxT('\0'))
455 m_fileNames
.Add(&fileNameBuffer
[i
]);
456 i
+= wxStrlen(&fileNameBuffer
[i
]) + 1;
459 wxStringTokenizer
toke(fileNameBuffer
, _T(" \t\r\n"));
460 m_dir
= toke
.GetNextToken();
461 m_fileName
= toke
.GetNextToken();
462 m_fileNames
.Add(m_fileName
);
464 while (toke
.HasMoreTokens())
465 m_fileNames
.Add(toke
.GetNextToken());
466 #endif // OFN_EXPLORER
469 if ( m_dir
.Last() != _T('\\') )
472 m_path
= dir
+ m_fileName
;
473 m_filterIndex
= (int)of
.nFilterIndex
- 1;
477 //=== Adding the correct extension >>=================================
479 m_filterIndex
= (int)of
.nFilterIndex
- 1;
481 if ( !of
.nFileExtension
||
482 (of
.nFileExtension
&& fileNameBuffer
[of
.nFileExtension
] == wxT('\0')) )
484 // User has typed a filename without an extension:
485 const wxChar
* extension
= filterBuffer
;
486 int maxFilter
= (int)(of
.nFilterIndex
*2L) - 1;
488 for( int i
= 0; i
< maxFilter
; i
++ ) // get extension
489 extension
= extension
+ wxStrlen( extension
) + 1;
491 m_fileName
= AppendExtension(fileNameBuffer
, extension
);
492 wxStrncpy(fileNameBuffer
, m_fileName
.c_str(), wxMin(m_fileName
.Len(), wxMAXPATH
-1));
493 fileNameBuffer
[wxMin(m_fileName
.Len(), wxMAXPATH
-1)] = wxT('\0');
496 m_path
= fileNameBuffer
;
497 m_fileName
= wxFileNameFromPath(fileNameBuffer
);
498 m_fileNames
.Add(m_fileName
);
499 m_dir
= wxPathOnly(fileNameBuffer
);
504 // common dialog failed - why?
506 DWORD dwErr
= CommDlgExtendedError();
509 // this msg is only for developers
510 wxLogError(wxT("Common dialog failed with error code %0lx."),
513 //else: it was just cancelled
517 return success
? wxID_OK
: wxID_CANCEL
;
521 #endif // wxUSE_FILEDLG && !(__SMARTPHONE__ && __WXWINCE__)