1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/fldlgcmn.cpp
3 // Purpose: wxFileDialog common functions
4 // Author: John Labenski
6 // Created: 14.06.03 (extracted from src/*/filedlg.cpp)
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
21 #include "wx/filedlg.h"
22 #include "wx/dirdlg.h"
25 #include "wx/string.h"
27 #include "wx/window.h"
30 //----------------------------------------------------------------------------
32 //----------------------------------------------------------------------------
34 IMPLEMENT_DYNAMIC_CLASS(wxFileDialogBase
, wxDialog
)
36 void wxFileDialogBase::Init()
42 bool wxFileDialogBase::Create(wxWindow
*parent
,
43 const wxString
& message
,
44 const wxString
& defaultDir
,
45 const wxString
& defaultFile
,
46 const wxString
& wildCard
,
48 const wxPoint
& WXUNUSED(pos
),
49 const wxSize
& WXUNUSED(sz
),
50 const wxString
& WXUNUSED(name
))
54 m_fileName
= defaultFile
;
55 m_wildCard
= wildCard
;
58 m_windowStyle
= style
;
61 if (!HasFdFlag(wxFD_OPEN
) && !HasFdFlag(wxFD_SAVE
))
62 m_windowStyle
|= wxFD_OPEN
; // wxFD_OPEN is the default
64 // check that the styles are not contradictory
65 wxASSERT_MSG( !(HasFdFlag(wxFD_SAVE
) && HasFdFlag(wxFD_OPEN
)),
66 _T("can't specify both wxFD_SAVE and wxFD_OPEN at once") );
68 wxASSERT_MSG( !HasFdFlag(wxFD_SAVE
) ||
69 (!HasFdFlag(wxFD_MULTIPLE
) && !HasFdFlag(wxFD_FILE_MUST_EXIST
)),
70 _T("wxFD_MULTIPLE or wxFD_FILE_MUST_EXIST can't be used with wxFD_SAVE" ) );
72 wxASSERT_MSG( !HasFdFlag(wxFD_OPEN
) || !HasFdFlag(wxFD_OVERWRITE_PROMPT
),
73 _T("wxFD_OVERWRITE_PROMPT can't be used with wxFD_OPEN") );
75 if ( wildCard
.empty() || wildCard
== wxFileSelectorDefaultWildcardStr
)
77 m_wildCard
= wxString::Format(_("All files (%s)|%s"),
78 wxFileSelectorDefaultWildcardStr
,
79 wxFileSelectorDefaultWildcardStr
);
81 else // have wild card
83 // convert m_wildCard from "*.bar" to "bar files (*.bar)|*.bar"
84 if ( m_wildCard
.Find(wxT('|')) == wxNOT_FOUND
)
86 wxString::size_type nDot
= m_wildCard
.find(_T("*."));
87 if ( nDot
!= wxString::npos
)
92 m_wildCard
= wxString::Format
94 _("%s files (%s)|%s"),
95 wildCard
.c_str() + nDot
,
105 #if WXWIN_COMPATIBILITY_2_6
106 long wxFileDialogBase::GetStyle() const
108 return GetWindowStyle();
111 void wxFileDialogBase::SetStyle(long style
)
113 SetWindowStyle(style
);
115 #endif // WXWIN_COMPATIBILITY_2_6
118 wxString
wxFileDialogBase::AppendExtension(const wxString
&filePath
,
119 const wxString
&extensionList
)
121 // strip off path, to avoid problems with "path.bar/foo"
122 wxString fileName
= filePath
.AfterLast(wxFILE_SEP_PATH
);
124 // if fileName is of form "foo.bar" it's ok, return it
125 int idx_dot
= fileName
.Find(wxT('.'), true);
126 if ((idx_dot
!= wxNOT_FOUND
) && (idx_dot
< (int)fileName
.length() - 1))
129 // get the first extension from extensionList, or all of it
130 wxString ext
= extensionList
.BeforeFirst(wxT(';'));
132 // if ext == "foo" or "foo." there's no extension
133 int idx_ext_dot
= ext
.Find(wxT('.'), true);
134 if ((idx_ext_dot
== wxNOT_FOUND
) || (idx_ext_dot
== (int)ext
.length() - 1))
137 ext
= ext
.AfterLast(wxT('.'));
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
) ||
142 (ext
.Strip(wxString::both
).empty()))
145 // if fileName doesn't have a '.' then add one
146 if (filePath
.Last() != wxT('.'))
147 ext
= wxT(".") + ext
;
149 return filePath
+ ext
;
152 //----------------------------------------------------------------------------
153 // wxFileDialog convenience functions
154 //----------------------------------------------------------------------------
156 wxString
wxFileSelector(const wxChar
*title
,
157 const wxChar
*defaultDir
,
158 const wxChar
*defaultFileName
,
159 const wxChar
*defaultExtension
,
160 const wxChar
*filter
,
165 // The defaultExtension, if non-NULL, is
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.
173 // If there's a default extension specified but no filter, we create a
177 if ( defaultExtension
&& !filter
)
178 filter2
= wxString(wxT("*.")) + defaultExtension
;
182 wxString defaultDirString
;
184 defaultDirString
= defaultDir
;
186 wxString defaultFilenameString
;
188 defaultFilenameString
= defaultFileName
;
190 wxFileDialog
fileDialog(parent
, title
, defaultDirString
,
191 defaultFilenameString
, filter2
,
192 flags
, wxPoint(x
, y
));
194 // if filter is of form "All files (*)|*|..." set correct filter index
195 if((wxStrlen(defaultExtension
) != 0) && (filter2
.Find(wxT('|')) != wxNOT_FOUND
))
199 wxArrayString descriptions
, filters
;
200 // don't care about errors, handled already by wxFileDialog
201 (void)wxParseCommonDialogsFilter(filter2
, descriptions
, filters
);
202 for (size_t n
=0; n
<filters
.GetCount(); n
++)
204 if (filters
[n
].Contains(defaultExtension
))
212 fileDialog
.SetFilterIndex(filterIndex
);
216 if ( fileDialog
.ShowModal() == wxID_OK
)
218 filename
= fileDialog
.GetPath();
224 //----------------------------------------------------------------------------
226 //----------------------------------------------------------------------------
228 wxString
wxFileSelectorEx(const wxChar
*title
,
229 const wxChar
*defaultDir
,
230 const wxChar
*defaultFileName
,
231 int* defaultFilterIndex
,
232 const wxChar
*filter
,
239 wxFileDialog
fileDialog(parent
,
240 title
? title
: wxEmptyString
,
241 defaultDir
? defaultDir
: wxEmptyString
,
242 defaultFileName
? defaultFileName
: wxEmptyString
,
243 filter
? filter
: wxEmptyString
,
244 flags
, wxPoint(x
, y
));
247 if ( fileDialog
.ShowModal() == wxID_OK
)
249 if ( defaultFilterIndex
)
250 *defaultFilterIndex
= fileDialog
.GetFilterIndex();
252 filename
= fileDialog
.GetPath();
258 //----------------------------------------------------------------------------
259 // wxDefaultFileSelector - Generic load/save dialog (for internal use only)
260 //----------------------------------------------------------------------------
262 static wxString
wxDefaultFileSelector(bool load
,
264 const wxChar
*extension
,
265 const wxChar
*default_name
,
271 str
= _("Load %s file");
273 str
= _("Save %s file");
274 prompt
.Printf(str
, what
);
277 const wxChar
*ext
= extension
;
280 if ( *ext
== wxT('.') )
283 wild
.Printf(wxT("*.%s"), ext
);
285 else // no extension specified
287 wild
= wxFileSelectorDefaultWildcardStr
;
290 return wxFileSelector(prompt
, NULL
, default_name
, ext
, wild
,
291 load
? wxFD_OPEN
: wxFD_SAVE
, parent
);
294 //----------------------------------------------------------------------------
295 // wxLoadFileSelector
296 //----------------------------------------------------------------------------
298 WXDLLEXPORT wxString
wxLoadFileSelector(const wxChar
*what
,
299 const wxChar
*extension
,
300 const wxChar
*default_name
,
303 return wxDefaultFileSelector(true, what
, extension
, default_name
, parent
);
306 //----------------------------------------------------------------------------
307 // wxSaveFileSelector
308 //----------------------------------------------------------------------------
310 WXDLLEXPORT wxString
wxSaveFileSelector(const wxChar
*what
,
311 const wxChar
*extension
,
312 const wxChar
*default_name
,
315 return wxDefaultFileSelector(false, what
, extension
, default_name
, parent
);
319 //----------------------------------------------------------------------------
321 //----------------------------------------------------------------------------
323 #if WXWIN_COMPATIBILITY_2_6
324 long wxDirDialogBase::GetStyle() const
326 return GetWindowStyle();
329 void wxDirDialogBase::SetStyle(long style
)
331 SetWindowStyle(style
);
333 #endif // WXWIN_COMPATIBILITY_2_6
336 #endif // wxUSE_FILEDLG