+#if GTK_CHECK_VERSION(2,7,3)
+ if ((style & wxFD_OVERWRITE_PROMPT) && !gtk_check_version(2,7,3))
+ gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(m_widget), TRUE);
+#endif
+ }
+ else // wxFD_OPEN
+ {
+ if ( !defaultFileName.empty() )
+ {
+ wxString dir;
+ if ( defaultDir.empty() )
+ dir = ::wxGetCwd();
+ else
+ dir = defaultDir;
+
+ gtk_file_chooser_set_filename(
+ GTK_FILE_CHOOSER(m_widget),
+ wxConvFileName->cWX2MB( wxFileName(dir, defaultFileName).GetFullPath() ) );
+ }
+ else if ( !defaultDir.empty() )
+ {
+ gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER(m_widget),
+ wxConvFileName->cWX2MB(defaultDir) );
+ }
+ }
+
+#if GTK_CHECK_VERSION(2,4,0)
+ if ( style & wxFD_PREVIEW )
+ {
+ GtkWidget *previewImage = gtk_image_new();
+
+ gtk_file_chooser_set_preview_widget(GTK_FILE_CHOOSER(m_widget),
+ previewImage);
+ g_signal_connect(m_widget, "update-preview",
+ G_CALLBACK(gtk_filedialog_update_preview_callback),
+ previewImage);
+ }
+#endif // GTK+ 2.4+
+}
+
+void wxFileDialog::OnFakeOk( wxCommandEvent &event )
+{
+ if (!gtk_check_version(2,4,0))
+ EndDialog(wxID_OK);
+ else
+ wxGenericFileDialog::OnListOk( event );
+}
+
+int wxFileDialog::ShowModal()
+{
+ if (!gtk_check_version(2,4,0))
+ return wxDialog::ShowModal();
+ else
+ return wxGenericFileDialog::ShowModal();
+}
+
+bool wxFileDialog::Show( bool show )
+{
+ if (!gtk_check_version(2,4,0))
+ return wxDialog::Show( show );
+ else
+ return wxGenericFileDialog::Show( show );
+}
+
+void wxFileDialog::DoSetSize(int x, int y, int width, int height, int sizeFlags )
+{
+ if (!m_wxwindow)
+ return;
+ else
+ wxGenericFileDialog::DoSetSize( x, y, width, height, sizeFlags );
+}
+
+wxString wxFileDialog::GetPath() const
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ gchar *str = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(m_widget));
+ wxString ret = wxConvFileName->cMB2WX(str);
+ if (str) g_free(str);
+
+ return ret;
+ }
+ else
+ return wxGenericFileDialog::GetPath();
+}
+
+void wxFileDialog::GetFilenames(wxArrayString& files) const
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ GetPaths(files);
+ for (size_t n = 0; n < files.GetCount(); ++n )
+ {
+ wxFileName file(files[n]);
+ files[n] = file.GetFullName();
+ }
+ }
+ else
+ wxGenericFileDialog::GetFilenames( files );
+}
+
+void wxFileDialog::GetPaths(wxArrayString& paths) const
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ paths.Empty();
+ if (gtk_file_chooser_get_select_multiple(GTK_FILE_CHOOSER(m_widget)))
+ {
+ GSList *gpathsi = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(m_widget));
+ GSList *gpaths = gpathsi;
+ while (gpathsi)
+ {
+ wxString file(wxConvFileName->cMB2WX((gchar*) gpathsi->data));
+ paths.Add(file);
+ g_free(gpathsi->data);
+ gpathsi = gpathsi->next;
+ }
+
+ g_slist_free(gpaths);
+ }
+ else
+ paths.Add(GetPath());
+ }
+ else
+ wxGenericFileDialog::GetPaths( paths );
+}
+
+void wxFileDialog::SetMessage(const wxString& message)
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ m_message = message;
+ SetTitle(message);
+ }
+ else
+ wxGenericFileDialog::SetMessage( message );
+}
+
+void wxFileDialog::SetPath(const wxString& path)
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ if (path.empty()) return;
+
+ gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(m_widget), wxConvFileName->cWX2MB(path));
+ }
+ else
+ wxGenericFileDialog::SetPath( path );
+}
+
+void wxFileDialog::SetDirectory(const wxString& dir)
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ if (wxDirExists(dir))
+ {
+ gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(m_widget), wxConvFileName->cWX2MB(dir));
+ }
+ }
+ else
+ wxGenericFileDialog::SetDirectory( dir );
+}
+
+wxString wxFileDialog::GetDirectory() const
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ gchar *str = gtk_file_chooser_get_current_folder( GTK_FILE_CHOOSER(m_widget) );
+ wxString ret = wxConvFileName->cMB2WX(str);
+ if (str) g_free(str);
+
+ return ret;
+ }
+ else
+ return wxGenericFileDialog::GetDirectory();
+}
+
+void wxFileDialog::SetFilename(const wxString& name)
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ if (HasFlag(wxFD_SAVE))
+ gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(m_widget), wxGTK_CONV(name));
+ else
+ SetPath(wxFileName(GetDirectory(), name).GetFullPath());
+ }
+ else
+ wxGenericFileDialog::SetFilename( name );
+}
+
+wxString wxFileDialog::GetFilename() const
+{
+ if (!gtk_check_version(2,4,0))
+ return wxFileName(GetPath()).GetFullName();
+ else
+ return wxGenericFileDialog::GetFilename();
+}
+
+void wxFileDialog::SetWildcard(const wxString& wildCard)
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ // parse filters
+ wxArrayString wildDescriptions, wildFilters;
+ if (!wxParseCommonDialogsFilter(wildCard, wildDescriptions, wildFilters))
+ {
+ wxFAIL_MSG( wxT("wxFileDialog::SetWildCard - bad wildcard string") );
+ }
+ else
+ {
+ // Parsing went fine. Set m_wildCard to be returned by wxFileDialogBase::GetWildcard
+ m_wildCard = wildCard;
+
+ GtkFileChooser* chooser = GTK_FILE_CHOOSER(m_widget);
+
+ // empty current filter list:
+ GSList* ifilters = gtk_file_chooser_list_filters(chooser);
+ GSList* filters = ifilters;
+
+ while (ifilters)
+ {
+ gtk_file_chooser_remove_filter(chooser,GTK_FILE_FILTER(ifilters->data));
+ ifilters = ifilters->next;
+ }
+ g_slist_free(filters);
+
+ // add parsed to GtkChooser
+ for (size_t n = 0; n < wildFilters.GetCount(); ++n)
+ {
+ GtkFileFilter* filter = gtk_file_filter_new();
+ gtk_file_filter_set_name(filter, wxGTK_CONV(wildDescriptions[n]));
+
+ wxStringTokenizer exttok(wildFilters[n], wxT(";"));
+ while (exttok.HasMoreTokens())
+ {
+ wxString token = exttok.GetNextToken();
+ gtk_file_filter_add_pattern(filter, wxGTK_CONV(token));
+ }
+
+ gtk_file_chooser_add_filter(chooser, filter);
+ }
+
+ // Reset the filter index
+ SetFilterIndex(0);
+ }
+ }
+ else
+ wxGenericFileDialog::SetWildcard( wildCard );
+}
+
+void wxFileDialog::SetFilterIndex(int filterIndex)
+{
+
+ if (!gtk_check_version(2,4,0))
+ {
+ gpointer filter;
+ GtkFileChooser *chooser = GTK_FILE_CHOOSER(m_widget);
+ GSList *filters = gtk_file_chooser_list_filters(chooser);
+
+ filter = g_slist_nth_data(filters, filterIndex);
+
+ if (filter != NULL)
+ {
+ gtk_file_chooser_set_filter(chooser, GTK_FILE_FILTER(filter));
+ }
+ else
+ {
+ wxFAIL_MSG( wxT("wxFileDialog::SetFilterIndex - bad filter index") );
+ }
+
+ g_slist_free(filters);
+ }
+ else
+ wxGenericFileDialog::SetFilterIndex( filterIndex );
+}
+
+int wxFileDialog::GetFilterIndex() const
+{
+ if (!gtk_check_version(2,4,0))
+ {
+ GtkFileChooser *chooser = GTK_FILE_CHOOSER(m_widget);
+ GtkFileFilter *filter = gtk_file_chooser_get_filter(chooser);
+ GSList *filters = gtk_file_chooser_list_filters(chooser);
+ gint index = g_slist_index(filters, filter);
+ g_slist_free(filters);