]> git.saurik.com Git - wxWidgets.git/blame - src/msw/filedlg.cpp
Added MSWPositionForWxMenu() method which is used to translate wxWindows
[wxWidgets.git] / src / msw / filedlg.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
f6bcfd97 2// Name: src/msw/filedlg.cpp
2bda0e17
KB
3// Purpose: wxFileDialog
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
e15e548b 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
f6bcfd97
BP
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
ba681060 21 #pragma implementation "filedlg.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
ba681060 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
449110cd 31#if wxUSE_FILEDLG && !wxUSE_SMARTPHONE
1e6feb95 32
2bda0e17 33#ifndef WX_PRECOMP
ba681060
VZ
34 #include "wx/utils.h"
35 #include "wx/msgdlg.h"
ba681060 36 #include "wx/filedlg.h"
2b5f62a0 37 #include "wx/filefn.h"
ba681060 38 #include "wx/intl.h"
2662e49e 39 #include "wx/log.h"
f6bcfd97 40 #include "wx/app.h"
8f177c8e 41#endif
2bda0e17 42
f6bcfd97
BP
43#include "wx/msw/private.h"
44
4676948b 45#if !defined(__WIN32__) || defined(__WXWINCE__)
ba681060 46 #include <commdlg.h>
2bda0e17
KB
47#endif
48
2bda0e17
KB
49#include <math.h>
50#include <stdlib.h>
51#include <string.h>
52
8ad9ca97 53#include "wx/filename.h"
8f177c8e
VZ
54#include "wx/tokenzr.h"
55
6e8aa701
VZ
56#ifndef OFN_EXPLORER
57 #define OFN_EXPLORER 0x00080000
58#endif
59
f6bcfd97
BP
60// ----------------------------------------------------------------------------
61// constants
62// ----------------------------------------------------------------------------
63
64#ifdef __WIN32__
2b5f62a0 65# define wxMAXPATH 65534
f6bcfd97
BP
66#else
67# define wxMAXPATH 1024
68#endif
69
70# define wxMAXFILE 1024
71
72# define wxMAXEXT 5
73
74// ============================================================================
75// implementation
76// ============================================================================
77
f74172ab 78IMPLEMENT_CLASS(wxFileDialog, wxFileDialogBase)
2bda0e17 79
f6bcfd97 80// ----------------------------------------------------------------------------
b600ed13 81// wxFileDialog
f6bcfd97
BP
82// ----------------------------------------------------------------------------
83
2b5f62a0
VZ
84wxFileDialog::wxFileDialog(wxWindow *parent,
85 const wxString& message,
86 const wxString& defaultDir,
87 const wxString& defaultFileName,
88 const wxString& wildCard,
89 long style,
f74172ab
VZ
90 const wxPoint& pos)
91 :wxFileDialogBase(parent, message, defaultDir, defaultFileName, wildCard, style, pos)
92
2bda0e17 93{
c61f4f6d
VZ
94 if ( ( m_dialogStyle & wxMULTIPLE ) && ( m_dialogStyle & wxSAVE ) )
95 m_dialogStyle &= ~wxMULTIPLE;
2bda0e17
KB
96}
97
c61f4f6d
VZ
98void wxFileDialog::GetPaths(wxArrayString& paths) const
99{
100 paths.Empty();
101
102 wxString dir(m_dir);
103 if ( m_dir.Last() != _T('\\') )
104 dir += _T('\\');
105
106 size_t count = m_fileNames.GetCount();
107 for ( size_t n = 0; n < count; n++ )
108 {
8ad9ca97
JS
109 if (wxFileName(m_fileNames[n]).IsAbsolute())
110 paths.Add(m_fileNames[n]);
111 else
112 paths.Add(dir + m_fileNames[n]);
c61f4f6d
VZ
113 }
114}
115
89654c9a
VZ
116void wxFileDialog::GetFilenames(wxArrayString& files) const
117{
118 files = m_fileNames;
119}
120
2b5f62a0
VZ
121void wxFileDialog::SetPath(const wxString& path)
122{
123 wxString ext;
124 wxSplitPath(path, &m_dir, &m_fileName, &ext);
125 if ( !ext.empty() )
126 m_fileName << _T('.') << ext;
127}
128
c61f4f6d 129int wxFileDialog::ShowModal()
2bda0e17 130{
1f2f0331
VZ
131 HWND hWnd = 0;
132 if (m_parent) hWnd = (HWND) m_parent->GetHWND();
f6bcfd97
BP
133 if (!hWnd && wxTheApp->GetTopWindow())
134 hWnd = (HWND) wxTheApp->GetTopWindow()->GetHWND();
2bda0e17 135
f6bcfd97
BP
136 static wxChar fileNameBuffer [ wxMAXPATH ]; // the file-name
137 wxChar titleBuffer [ wxMAXFILE+1+wxMAXEXT ]; // the file-name, without path
2bda0e17 138
223d09f6
KB
139 *fileNameBuffer = wxT('\0');
140 *titleBuffer = wxT('\0');
2bda0e17 141
2bda0e17 142 long msw_flags = 0;
e15e548b 143 if ( (m_dialogStyle & wxHIDE_READONLY) || (m_dialogStyle & wxSAVE) )
1f2f0331 144 msw_flags |= OFN_HIDEREADONLY;
e15e548b 145 if ( m_dialogStyle & wxFILE_MUST_EXIST )
1f2f0331 146 msw_flags |= OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;
6e8aa701 147
c61f4f6d 148 if (m_dialogStyle & wxMULTIPLE )
6e8aa701
VZ
149 {
150 // OFN_EXPLORER must always be specified with OFN_ALLOWMULTISELECT
151 msw_flags |= OFN_EXPLORER | OFN_ALLOWMULTISELECT;
152 }
153
99d1b93d
VZ
154 // if wxCHANGE_DIR flag is not given we shouldn't change the CWD which the
155 // standard dialog does by default
6e8aa701
VZ
156 if ( !(m_dialogStyle & wxCHANGE_DIR) )
157 {
158 msw_flags |= OFN_NOCHANGEDIR;
159 }
ac95e671 160
99d1b93d
VZ
161 if ( m_dialogStyle & wxOVERWRITE_PROMPT )
162 {
163 msw_flags |= OFN_OVERWRITEPROMPT;
164 }
ac95e671 165
e15e548b 166 OPENFILENAME of;
f6bcfd97
BP
167 wxZeroMemory(of);
168
169 // the OPENFILENAME struct has been extended in newer version of
170 // comcdlg32.dll, but as we don't use the extended fields anyhow, set
171 // the struct size to the old value - otherwise, the programs compiled
172 // with new headers will not work with the old libraries
173#if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0500)
174 of.lStructSize = sizeof(OPENFILENAME) -
175 (sizeof(void *) + 2*sizeof(DWORD));
176#else // old headers
e15e548b 177 of.lStructSize = sizeof(OPENFILENAME);
f6bcfd97
BP
178#endif
179
e15e548b 180 of.hwndOwner = hWnd;
837e5743 181 of.lpstrTitle = WXSTRINGCAST m_message;
e15e548b 182 of.lpstrFileTitle = titleBuffer;
f6bcfd97 183 of.nMaxFileTitle = wxMAXFILE + 1 + wxMAXEXT; // Windows 3.0 and 3.1
2bda0e17 184
0bc9b25e 185 // Convert forward slashes to backslashes (file selector doesn't like
99d1b93d
VZ
186 // forward slashes) and also squeeze multiple consecutive slashes into one
187 // as it doesn't like two backslashes in a row neither
0627d091
RL
188
189 wxString dir;
190 size_t i, len = m_dir.length();
99d1b93d 191 dir.reserve(len);
0627d091 192 for ( i = 0; i < len; i++ )
99d1b93d
VZ
193 {
194 wxChar ch = m_dir[i];
195 switch ( ch )
196 {
197 case _T('/'):
198 // convert to backslash
199 ch = _T('\\');
200
201 // fall through
0bc9b25e 202
99d1b93d
VZ
203 case _T('\\'):
204 while ( i < len - 1 )
205 {
206 wxChar chNext = m_dir[i + 1];
207 if ( chNext != _T('\\') && chNext != _T('/') )
208 break;
209
04d93c3a
CE
210 // ignore the next one, unless it is at the start of a UNC path
211 if (i > 0)
212 i++;
213 else
214 break;
99d1b93d
VZ
215 }
216 // fall through
217
218 default:
219 // normal char
220 dir += ch;
221 }
222 }
223
224 of.lpstrInitialDir = dir.c_str();
2bda0e17 225
e15e548b 226 of.Flags = msw_flags;
2bda0e17
KB
227
228
2bda0e17
KB
229 //=== Like Alejandro Sierra's wildcard modification >>===================
230 /*
1f2f0331
VZ
231 In wxFileSelector you can put, instead of a single wild_card,
232 pairs of strings separated by '|'.
233 The first string is a description, and the
234 second is the wild card. You can put any number of pairs.
2bda0e17 235
1f2f0331 236 eg. "description1 (*.ex1)|*.ex1|description2 (*.ex2)|*.ex2"
2bda0e17 237
1f2f0331
VZ
238 If you put a single wild card, it works as before the modification.
239 */
2bda0e17
KB
240 //=======================================================================
241
4dba84be 242 wxString theFilter;
837e5743 243 if ( wxStrlen(m_wildCard) == 0 )
223d09f6 244 theFilter = wxString(wxT("*.*"));
4dba84be
JS
245 else
246 theFilter = m_wildCard ;
1f2f0331 247 wxString filterBuffer;
2bda0e17 248
223d09f6 249 if ( !wxStrchr( theFilter, wxT('|') ) ) { // only one filter ==> default text
1f2f0331
VZ
250 filterBuffer.Printf(_("Files (%s)|%s"),
251 theFilter.c_str(), theFilter.c_str());
e15e548b 252 }
1f2f0331
VZ
253 else { // more then one filter
254 filterBuffer = theFilter;
2bda0e17 255
574c0bbf
JS
256 }
257
223d09f6 258 filterBuffer += wxT("|");
574c0bbf 259 // Replace | with \0
0bc9b25e 260 for (i = 0; i < filterBuffer.Len(); i++ ) {
223d09f6
KB
261 if ( filterBuffer.GetChar(i) == wxT('|') ) {
262 filterBuffer[i] = wxT('\0');
e15e548b
VZ
263 }
264 }
2bda0e17 265
837e5743 266 of.lpstrFilter = (LPTSTR)(const wxChar *)filterBuffer;
cc42eb7a 267 of.nFilterIndex = m_filterIndex + 1;
2bda0e17
KB
268
269 //=== Setting defaultFileName >>=========================================
270
f6bcfd97
BP
271 wxStrncpy( fileNameBuffer, (const wxChar *)m_fileName, wxMAXPATH-1 );
272 fileNameBuffer[ wxMAXPATH-1 ] = wxT('\0');
2bda0e17 273
e15e548b 274 of.lpstrFile = fileNameBuffer; // holds returned filename
f6bcfd97 275 of.nMaxFile = wxMAXPATH;
2bda0e17
KB
276
277 //== Execute FileDialog >>=================================================
278
3f6638b8
VZ
279 bool success = (m_dialogStyle & wxSAVE ? GetSaveFileName(&of)
280 : GetOpenFileName(&of)) != 0;
2bda0e17 281
f6bcfd97
BP
282 DWORD errCode = CommDlgExtendedError();
283
284#ifdef __WIN32__
285 if (!success && (errCode == CDERR_STRUCTSIZE))
286 {
287 // The struct size has changed so try a smaller or bigger size
288
289 int oldStructSize = of.lStructSize;
290 of.lStructSize = oldStructSize - (sizeof(void *) + 2*sizeof(DWORD));
291 success = (m_dialogStyle & wxSAVE) ? (GetSaveFileName(&of) != 0)
292 : (GetOpenFileName(&of) != 0);
293 errCode = CommDlgExtendedError();
294
295 if (!success && (errCode == CDERR_STRUCTSIZE))
296 {
297 of.lStructSize = oldStructSize + (sizeof(void *) + 2*sizeof(DWORD));
298 success = (m_dialogStyle & wxSAVE) ? (GetSaveFileName(&of) != 0)
299 : (GetOpenFileName(&of) != 0);
300 }
301 }
c6603ac2 302#endif // __WIN32__
f6bcfd97 303
2bda0e17
KB
304 if ( success )
305 {
c61f4f6d
VZ
306 m_fileNames.Empty();
307
308 if ( ( m_dialogStyle & wxMULTIPLE ) &&
309#if defined(OFN_EXPLORER)
c39e82f0 310 ( fileNameBuffer[of.nFileOffset-1] == wxT('\0') )
c61f4f6d 311#else
c39e82f0 312 ( fileNameBuffer[of.nFileOffset-1] == wxT(' ') )
c61f4f6d 313#endif // OFN_EXPLORER
c39e82f0 314 )
c61f4f6d
VZ
315 {
316#if defined(OFN_EXPLORER)
317 m_dir = fileNameBuffer;
318 i = of.nFileOffset;
319 m_fileName = &fileNameBuffer[i];
320 m_fileNames.Add(m_fileName);
321 i += m_fileName.Len() + 1;
322
323 while (fileNameBuffer[i] != wxT('\0'))
324 {
325 m_fileNames.Add(&fileNameBuffer[i]);
326 i += wxStrlen(&fileNameBuffer[i]) + 1;
327 }
328#else
c6603ac2 329 wxStringTokenizer toke(fileNameBuffer, _T(" \t\r\n"));
c61f4f6d
VZ
330 m_dir = toke.GetNextToken();
331 m_fileName = toke.GetNextToken();
332 m_fileNames.Add(m_fileName);
333
334 while (toke.HasMoreTokens())
335 m_fileNames.Add(toke.GetNextToken());
336#endif // OFN_EXPLORER
337
338 wxString dir(m_dir);
339 if ( m_dir.Last() != _T('\\') )
340 dir += _T('\\');
341
c61f4f6d
VZ
342 m_path = dir + m_fileName;
343 }
344 else
345 {
c61f4f6d 346 //=== Adding the correct extension >>=================================
2bda0e17 347
cc42eb7a 348 m_filterIndex = (int)of.nFilterIndex - 1;
2bda0e17 349
c6603ac2
VS
350 if ( !of.nFileExtension ||
351 (of.nFileExtension && fileNameBuffer[of.nFileExtension] == wxT('\0')) )
352 {
353 // User has typed a filename without an extension:
f74172ab
VZ
354 const wxChar* extension = filterBuffer;
355 int maxFilter = (int)(of.nFilterIndex*2L) - 1;
2bda0e17 356
f74172ab
VZ
357 for( int i = 0; i < maxFilter; i++ ) // get extension
358 extension = extension + wxStrlen( extension ) + 1;
a039ccbf 359
f74172ab
VZ
360 m_fileName = AppendExtension(fileNameBuffer, extension);
361 wxStrncpy(fileNameBuffer, m_fileName.c_str(), wxMin(m_fileName.Len(), wxMAXPATH-1));
362 fileNameBuffer[wxMin(m_fileName.Len(), wxMAXPATH-1)] = wxT('\0');
2bda0e17 363 }
2bda0e17 364
c61f4f6d
VZ
365 m_path = fileNameBuffer;
366 m_fileName = wxFileNameFromPath(fileNameBuffer);
367 m_fileNames.Add(m_fileName);
368 m_dir = wxPathOnly(fileNameBuffer);
369 }
7cc98b3e
VZ
370 }
371 else
372 {
373 // common dialog failed - why?
374#ifdef __WXDEBUG__
375 DWORD dwErr = CommDlgExtendedError();
376 if ( dwErr != 0 )
377 {
378 // this msg is only for developers
223d09f6 379 wxLogError(wxT("Common dialog failed with error code %0lx."),
7cc98b3e
VZ
380 dwErr);
381 }
382 //else: it was just cancelled
383#endif
384 }
2bda0e17 385
7cc98b3e 386 return success ? wxID_OK : wxID_CANCEL;
2bda0e17
KB
387
388}
389
1e6feb95 390#endif // wxUSE_FILEDLG
c61f4f6d 391