X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2229243bdf17485b33c15786124ab99366b83975..e2125bdc32ec2f09fa19433e0ee96b7a3845b69e:/src/gtk/filedlg.cpp diff --git a/src/gtk/filedlg.cpp b/src/gtk/filedlg.cpp index 60fc46cdb8..12439a5e07 100644 --- a/src/gtk/filedlg.cpp +++ b/src/gtk/filedlg.cpp @@ -50,7 +50,7 @@ static void gtk_filedialog_ok_callback(GtkWidget *widget, wxFileDialog *dialog) msg.Printf( _("File '%s' already exists, do you really want to overwrite it?"), - wxString(wxConvFileName->cMB2WX(filename)).c_str()); + wxString(filename, *wxConvFileName)); wxMessageDialog dlg(dialog, msg, _("Confirm"), wxYES_NO | wxICON_QUESTION); @@ -59,6 +59,17 @@ static void gtk_filedialog_ok_callback(GtkWidget *widget, wxFileDialog *dialog) } } + if (style & wxFD_FILE_MUST_EXIST) + { + if ( !g_file_test(filename, G_FILE_TEST_EXISTS) ) + { + wxMessageDialog dlg( dialog, _("Please choose an existing file."), + _("Error"), wxOK| wxICON_ERROR); + dlg.ShowModal(); + return; + } + } + // change to the directory where the user went if asked if (style & wxFD_CHANGE_DIR) { @@ -152,8 +163,6 @@ wxFileDialog::wxFileDialog(wxWindow *parent, const wxString& message, return; } - m_needParent = false; - parent = GetParentForModalDialog(parent); if (!PreCreation(parent, pos, wxDefaultSize) || @@ -228,6 +237,7 @@ wxFileDialog::wxFileDialog(wxWindow *parent, const wxString& message, fn.AssignDir(defaultDir); // set the initial file name and/or directory + fn.MakeAbsolute(); // GTK+ needs absolute path const wxString dir = fn.GetPath(); if ( !dir.empty() ) { @@ -309,7 +319,7 @@ wxString wxFileDialog::GetPath() const if (!gtk_check_version(2,4,0)) { wxGtkString str(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(m_widget))); - return wxConvFileName->cMB2WX(str); + return wxString(str, *wxConvFileName); } return wxGenericFileDialog::GetPath(); @@ -341,7 +351,7 @@ void wxFileDialog::GetPaths(wxArrayString& paths) const GSList *gpaths = gpathsi; while (gpathsi) { - wxString file(wxConvFileName->cMB2WX((gchar*) gpathsi->data)); + wxString file((gchar*) gpathsi->data, *wxConvFileName); paths.Add(file); g_free(gpathsi->data); gpathsi = gpathsi->next; @@ -373,7 +383,7 @@ void wxFileDialog::SetPath(const wxString& path) { if (path.empty()) return; - gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(m_widget), wxConvFileName->cWX2MB(path)); + gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(m_widget), path.fn_str()); } else wxGenericFileDialog::SetPath( path ); @@ -385,7 +395,7 @@ void wxFileDialog::SetDirectory(const wxString& dir) { if (wxDirExists(dir)) { - gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(m_widget), wxConvFileName->cWX2MB(dir)); + gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(m_widget), dir.fn_str()); } } else @@ -397,7 +407,7 @@ wxString wxFileDialog::GetDirectory() const if (!gtk_check_version(2,4,0)) { wxGtkString str(gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(m_widget))); - return wxConvFileName->cMB2WX(str); + return wxString(str, *wxConvFileName); } return wxGenericFileDialog::GetDirectory();