]> git.saurik.com Git - wxWidgets.git/blame - src/common/fldlgcmn.cpp
add wxUSE_BASE64 checks around DoRead/WriteBinary() functions
[wxWidgets.git] / src / common / fldlgcmn.cpp
CommitLineData
b600ed13 1/////////////////////////////////////////////////////////////////////////////
949c9f74 2// Name: src/common/fldlgcmn.cpp
b600ed13
VZ
3// Purpose: wxFileDialog common functions
4// Author: John Labenski
5// Modified by:
6// Created: 14.06.03 (extracted from src/*/filedlg.cpp)
7448de8d 7// RCS-ID: $Id$
b600ed13 8// Copyright: (c) Robert Roebling
65571936 9// Licence: wxWindows licence
b600ed13
VZ
10/////////////////////////////////////////////////////////////////////////////
11
b600ed13
VZ
12#ifdef __BORLANDC__
13#pragma hdrstop
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
949c9f74
WS
19#if wxUSE_FILEDLG
20
21#include "wx/filedlg.h"
cf6982fa 22#include "wx/dirdlg.h"
949c9f74 23
b600ed13
VZ
24#ifndef WX_PRECOMP
25 #include "wx/string.h"
26 #include "wx/intl.h"
27 #include "wx/window.h"
28#endif // WX_PRECOMP
29
f74172ab
VZ
30//----------------------------------------------------------------------------
31// wxFileDialogBase
32//----------------------------------------------------------------------------
33
34IMPLEMENT_DYNAMIC_CLASS(wxFileDialogBase, wxDialog)
35
fe6cf128 36void wxFileDialogBase::Init()
7448de8d 37{
1e966cc4 38 m_filterIndex =
ff3e84ff 39 m_windowStyle = 0;
fe6cf128
VZ
40}
41
42bool wxFileDialogBase::Create(wxWindow *parent,
43 const wxString& message,
44 const wxString& defaultDir,
45 const wxString& defaultFile,
46 const wxString& wildCard,
47 long style,
ff3e84ff
VZ
48 const wxPoint& WXUNUSED(pos),
49 const wxSize& WXUNUSED(sz),
50 const wxString& WXUNUSED(name))
f74172ab 51{
fe6cf128
VZ
52 m_message = message;
53 m_dir = defaultDir;
54 m_fileName = defaultFile;
55 m_wildCard = wildCard;
56
f74172ab 57 m_parent = parent;
45f4109c 58 m_windowStyle = style;
f74172ab
VZ
59 m_filterIndex = 0;
60
b014db05 61 if (!HasFdFlag(wxFD_OPEN) && !HasFdFlag(wxFD_SAVE))
45f4109c 62 m_windowStyle |= wxFD_OPEN; // wxFD_OPEN is the default
556151f5 63
96aed0cd 64 // check that the styles are not contradictory
b014db05 65 wxASSERT_MSG( !(HasFdFlag(wxFD_SAVE) && HasFdFlag(wxFD_OPEN)),
96aed0cd
VZ
66 _T("can't specify both wxFD_SAVE and wxFD_OPEN at once") );
67
b014db05
RR
68 wxASSERT_MSG( !HasFdFlag(wxFD_SAVE) ||
69 (!HasFdFlag(wxFD_MULTIPLE) && !HasFdFlag(wxFD_FILE_MUST_EXIST)),
96aed0cd
VZ
70 _T("wxFD_MULTIPLE or wxFD_FILE_MUST_EXIST can't be used with wxFD_SAVE" ) );
71
b014db05 72 wxASSERT_MSG( !HasFdFlag(wxFD_OPEN) || !HasFdFlag(wxFD_OVERWRITE_PROMPT),
96aed0cd 73 _T("wxFD_OVERWRITE_PROMPT can't be used with wxFD_OPEN") );
ff3e84ff 74
d59eea26 75 if ( wildCard.empty() || wildCard == wxFileSelectorDefaultWildcardStr )
f74172ab 76 {
186545a4
VZ
77 m_wildCard = wxString::Format(_("All files (%s)|%s"),
78 wxFileSelectorDefaultWildcardStr,
79 wxFileSelectorDefaultWildcardStr);
80 }
81 else // have wild card
82 {
83 // convert m_wildCard from "*.bar" to "bar files (*.bar)|*.bar"
84 if ( m_wildCard.Find(wxT('|')) == wxNOT_FOUND )
85 {
86 wxString::size_type nDot = m_wildCard.find(_T("*."));
87 if ( nDot != wxString::npos )
88 nDot++;
89 else
90 nDot = 0;
91
92 m_wildCard = wxString::Format
93 (
94 _("%s files (%s)|%s"),
d59eea26
VZ
95 wildCard.c_str() + nDot,
96 wildCard.c_str(),
97 wildCard.c_str()
186545a4
VZ
98 );
99 }
f74172ab 100 }
fe6cf128
VZ
101
102 return true;
f74172ab
VZ
103}
104
cc197ed4
VZ
105#if WXWIN_COMPATIBILITY_2_6
106long wxFileDialogBase::GetStyle() const
107{
108 return GetWindowStyle();
109}
110
111void wxFileDialogBase::SetStyle(long style)
112{
113 SetWindowStyle(style);
114}
115#endif // WXWIN_COMPATIBILITY_2_6
116
117
f74172ab
VZ
118wxString wxFileDialogBase::AppendExtension(const wxString &filePath,
119 const wxString &extensionList)
120{
121 // strip off path, to avoid problems with "path.bar/foo"
122 wxString fileName = filePath.AfterLast(wxFILE_SEP_PATH);
123
124 // if fileName is of form "foo.bar" it's ok, return it
a62848fd 125 int idx_dot = fileName.Find(wxT('.'), true);
949c9f74 126 if ((idx_dot != wxNOT_FOUND) && (idx_dot < (int)fileName.length() - 1))
f74172ab
VZ
127 return filePath;
128
129 // get the first extension from extensionList, or all of it
130 wxString ext = extensionList.BeforeFirst(wxT(';'));
131
132 // if ext == "foo" or "foo." there's no extension
a62848fd 133 int idx_ext_dot = ext.Find(wxT('.'), true);
949c9f74 134 if ((idx_ext_dot == wxNOT_FOUND) || (idx_ext_dot == (int)ext.length() - 1))
f74172ab
VZ
135 return filePath;
136 else
137 ext = ext.AfterLast(wxT('.'));
138
139 // if ext == "*" or "bar*" or "b?r" or " " then its not valid
140 if ((ext.Find(wxT('*')) != wxNOT_FOUND) ||
141 (ext.Find(wxT('?')) != wxNOT_FOUND) ||
b494c48b 142 (ext.Strip(wxString::both).empty()))
f74172ab
VZ
143 return filePath;
144
145 // if fileName doesn't have a '.' then add one
146 if (filePath.Last() != wxT('.'))
147 ext = wxT(".") + ext;
148
149 return filePath + ext;
150}
151
152//----------------------------------------------------------------------------
153// wxFileDialog convenience functions
154//----------------------------------------------------------------------------
155
6dc2e823
VS
156wxString wxFileSelector(const wxString& title,
157 const wxString& defaultDir,
158 const wxString& defaultFileName,
159 const wxString& defaultExtension,
160 const wxString& filter,
161 int flags,
162 wxWindow *parent,
163 int x, int y)
b600ed13 164{
f8bcb37d 165 // The defaultExtension, if non-empty, is
b600ed13
VZ
166 // appended to the filename if the user fails to type an extension. The new
167 // implementation (taken from wxFileSelectorEx) appends the extension
168 // automatically, by looking at the filter specification. In fact this
169 // should be better than the native Microsoft implementation because
170 // Windows only allows *one* default extension, whereas here we do the
171 // right thing depending on the filter the user has chosen.
172
173 // If there's a default extension specified but no filter, we create a
174 // suitable filter.
175
176 wxString filter2;
f8bcb37d 177 if ( !defaultExtension.empty() && filter.empty() )
b600ed13 178 filter2 = wxString(wxT("*.")) + defaultExtension;
f8bcb37d 179 else if ( !filter.empty() )
b600ed13
VZ
180 filter2 = filter;
181
f8bcb37d
VS
182 wxFileDialog fileDialog(parent, title, defaultDir,
183 defaultFileName, filter2,
b600ed13 184 flags, wxPoint(x, y));
b600ed13 185
f8bcb37d
VS
186 // if filter is of form "All files (*)|*|..." set correct filter index
187 if ( !defaultExtension.empty() && filter2.find(wxT('|')) != wxString::npos )
7448de8d 188 {
f74172ab 189 int filterIndex = 0;
b600ed13 190
f74172ab
VZ
191 wxArrayString descriptions, filters;
192 // don't care about errors, handled already by wxFileDialog
daf32463 193 (void)wxParseCommonDialogsFilter(filter2, descriptions, filters);
f74172ab 194 for (size_t n=0; n<filters.GetCount(); n++)
7448de8d 195 {
f74172ab 196 if (filters[n].Contains(defaultExtension))
7448de8d 197 {
f74172ab 198 filterIndex = n;
f8bcb37d 199 break;
7448de8d
WS
200 }
201 }
b600ed13 202
f74172ab
VZ
203 if (filterIndex > 0)
204 fileDialog.SetFilterIndex(filterIndex);
7448de8d 205 }
b600ed13 206
b600ed13
VZ
207 wxString filename;
208 if ( fileDialog.ShowModal() == wxID_OK )
209 {
210 filename = fileDialog.GetPath();
211 }
212
213 return filename;
214}
215
f74172ab
VZ
216//----------------------------------------------------------------------------
217// wxFileSelectorEx
218//----------------------------------------------------------------------------
b600ed13 219
6dc2e823
VS
220wxString wxFileSelectorEx(const wxString& title,
221 const wxString& defaultDir,
222 const wxString& defaultFileName,
223 int* defaultFilterIndex,
224 const wxString& filter,
225 int flags,
226 wxWindow* parent,
227 int x,
228 int y)
b600ed13
VZ
229
230{
231 wxFileDialog fileDialog(parent,
f8bcb37d
VS
232 title,
233 defaultDir,
234 defaultFileName,
235 filter,
b600ed13
VZ
236 flags, wxPoint(x, y));
237
238 wxString filename;
239 if ( fileDialog.ShowModal() == wxID_OK )
240 {
241 if ( defaultFilterIndex )
242 *defaultFilterIndex = fileDialog.GetFilterIndex();
243
244 filename = fileDialog.GetPath();
245 }
246
247 return filename;
248}
249
f74172ab
VZ
250//----------------------------------------------------------------------------
251// wxDefaultFileSelector - Generic load/save dialog (for internal use only)
252//----------------------------------------------------------------------------
b600ed13 253
b600ed13 254static wxString wxDefaultFileSelector(bool load,
f8bcb37d
VS
255 const wxString& what,
256 const wxString& extension,
257 const wxString& default_name,
b600ed13
VZ
258 wxWindow *parent)
259{
260 wxString prompt;
261 wxString str;
262 if (load)
263 str = _("Load %s file");
264 else
265 str = _("Save %s file");
266 prompt.Printf(str, what);
267
268 wxString wild;
f8bcb37d
VS
269 wxString ext;
270 if ( !extension.empty() )
b600ed13 271 {
f8bcb37d
VS
272 if ( extension[0u] == _T('.') )
273 ext = extension.substr(1);
274 else
275 ext = extension;
b600ed13
VZ
276
277 wild.Printf(wxT("*.%s"), ext);
278 }
279 else // no extension specified
280 {
281 wild = wxFileSelectorDefaultWildcardStr;
282 }
283
f8bcb37d 284 return wxFileSelector(prompt, wxEmptyString, default_name, ext, wild,
ff3e84ff 285 load ? wxFD_OPEN : wxFD_SAVE, parent);
b600ed13
VZ
286}
287
f74172ab
VZ
288//----------------------------------------------------------------------------
289// wxLoadFileSelector
290//----------------------------------------------------------------------------
291
6dc2e823
VS
292WXDLLEXPORT wxString wxLoadFileSelector(const wxString& what,
293 const wxString& extension,
294 const wxString& default_name,
295 wxWindow *parent)
b600ed13 296{
a62848fd 297 return wxDefaultFileSelector(true, what, extension, default_name, parent);
b600ed13
VZ
298}
299
f74172ab
VZ
300//----------------------------------------------------------------------------
301// wxSaveFileSelector
302//----------------------------------------------------------------------------
303
6dc2e823
VS
304WXDLLEXPORT wxString wxSaveFileSelector(const wxString& what,
305 const wxString& extension,
306 const wxString& default_name,
307 wxWindow *parent)
b600ed13 308{
a62848fd 309 return wxDefaultFileSelector(false, what, extension, default_name, parent);
b600ed13
VZ
310}
311
cc197ed4
VZ
312
313//----------------------------------------------------------------------------
314// wxDirDialogBase
315//----------------------------------------------------------------------------
316
317#if WXWIN_COMPATIBILITY_2_6
318long wxDirDialogBase::GetStyle() const
319{
320 return GetWindowStyle();
321}
322
323void wxDirDialogBase::SetStyle(long style)
324{
325 SetWindowStyle(style);
326}
327#endif // WXWIN_COMPATIBILITY_2_6
328
329
b600ed13 330#endif // wxUSE_FILEDLG