+IMPLEMENT_DYNAMIC_CLASS(wxFileDialogBase, wxDialog)
+
+void wxFileDialogBase::Init()
+{
+ m_filterIndex = 0;
+ m_windowStyle = 0;
+ m_extraControl = NULL;
+ m_extraControlCreator = NULL;
+}
+
+bool wxFileDialogBase::Create(wxWindow *parent,
+ const wxString& message,
+ const wxString& defaultDir,
+ const wxString& defaultFile,
+ const wxString& wildCard,
+ long style,
+ const wxPoint& WXUNUSED(pos),
+ const wxSize& WXUNUSED(sz),
+ const wxString& WXUNUSED(name))
+{
+ m_message = message;
+ m_dir = defaultDir;
+ m_fileName = defaultFile;
+ m_wildCard = wildCard;
+
+ m_parent = parent;
+ m_windowStyle = style;
+ m_filterIndex = 0;
+
+ if (!HasFdFlag(wxFD_OPEN) && !HasFdFlag(wxFD_SAVE))
+ m_windowStyle |= wxFD_OPEN; // wxFD_OPEN is the default
+
+ // check that the styles are not contradictory
+ wxASSERT_MSG( !(HasFdFlag(wxFD_SAVE) && HasFdFlag(wxFD_OPEN)),
+ wxT("can't specify both wxFD_SAVE and wxFD_OPEN at once") );
+
+ wxASSERT_MSG( !HasFdFlag(wxFD_SAVE) ||
+ (!HasFdFlag(wxFD_MULTIPLE) && !HasFdFlag(wxFD_FILE_MUST_EXIST)),
+ wxT("wxFD_MULTIPLE or wxFD_FILE_MUST_EXIST can't be used with wxFD_SAVE" ) );
+
+ wxASSERT_MSG( !HasFdFlag(wxFD_OPEN) || !HasFdFlag(wxFD_OVERWRITE_PROMPT),
+ wxT("wxFD_OVERWRITE_PROMPT can't be used with wxFD_OPEN") );
+
+ if ( wildCard.empty() || wildCard == wxFileSelectorDefaultWildcardStr )
+ {
+ m_wildCard = wxString::Format(_("All files (%s)|%s"),
+ wxFileSelectorDefaultWildcardStr,
+ wxFileSelectorDefaultWildcardStr);
+ }
+ else // have wild card
+ {
+ // convert m_wildCard from "*.bar" to "bar files (*.bar)|*.bar"
+ if ( m_wildCard.Find(wxT('|')) == wxNOT_FOUND )
+ {
+ wxString::size_type nDot = m_wildCard.find(wxT("*."));
+ if ( nDot != wxString::npos )
+ nDot++;
+ else
+ nDot = 0;
+
+ m_wildCard = wxString::Format
+ (
+ _("%s files (%s)|%s"),
+ wildCard.c_str() + nDot,
+ wildCard.c_str(),
+ wildCard.c_str()
+ );
+ }
+ }
+
+ return true;
+}
+
+#if WXWIN_COMPATIBILITY_2_6
+long wxFileDialogBase::GetStyle() const
+{
+ return GetWindowStyle();
+}
+
+void wxFileDialogBase::SetStyle(long style)
+{
+ SetWindowStyle(style);
+}
+#endif // WXWIN_COMPATIBILITY_2_6
+
+
+wxString wxFileDialogBase::AppendExtension(const wxString &filePath,
+ const wxString &extensionList)
+{
+ // strip off path, to avoid problems with "path.bar/foo"
+ wxString fileName = filePath.AfterLast(wxFILE_SEP_PATH);