1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/filedlg.cpp
3 // Purpose: native implementation of wxFileDialog
4 // Author: Robert Roebling, Zbigniew Zagorski, Mart Raudsepp
6 // Copyright: (c) 1998 Robert Roebling, 2004 Zbigniew Zagorski, 2005 Mart Raudsepp
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
13 #if wxUSE_FILEDLG && defined(__WXGTK24__)
15 #include "wx/filedlg.h"
19 #include "wx/msgdlg.h"
23 #include "wx/gtk/private.h"
25 #include <unistd.h> // chdir
27 #include "wx/filename.h" // wxFilename
28 #include "wx/tokenzr.h" // wxStringTokenizer
29 #include "wx/filefn.h" // ::wxGetCwd
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 extern void wxapp_install_idle_handler();
37 //-----------------------------------------------------------------------------
38 // "clicked" for OK-button
39 //-----------------------------------------------------------------------------
42 static void gtk_filedialog_ok_callback(GtkWidget
*widget
, wxFileDialog
*dialog
)
44 int style
= dialog
->GetWindowStyle();
45 wxGtkString
filename(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget
)));
47 // gtk version numbers must be identical with the one in ctor (that calls set_do_overwrite_confirmation)
48 #if GTK_CHECK_VERSION(2,7,3)
49 if(gtk_check_version(2,7,3) != NULL
)
51 if ((style
& wxFD_SAVE
) && (style
& wxFD_OVERWRITE_PROMPT
))
53 if ( g_file_test(filename
, G_FILE_TEST_EXISTS
) )
58 _("File '%s' already exists, do you really want to overwrite it?"),
59 wxString(wxConvFileName
->cMB2WX(filename
)).c_str());
61 wxMessageDialog
dlg(dialog
, msg
, _("Confirm"),
62 wxYES_NO
| wxICON_QUESTION
);
63 if (dlg
.ShowModal() != wxID_YES
)
68 // change to the directory where the user went if asked
69 if (style
& wxFD_CHANGE_DIR
)
71 // Use chdir to not care about filename encodings
72 wxGtkString
folder(g_path_get_dirname(filename
));
76 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_OK
);
77 event
.SetEventObject(dialog
);
78 dialog
->GetEventHandler()->ProcessEvent(event
);
82 //-----------------------------------------------------------------------------
83 // "clicked" for Cancel-button
84 //-----------------------------------------------------------------------------
89 static void gtk_filedialog_cancel_callback(GtkWidget
*w
, wxFileDialog
*dialog
)
91 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
92 event
.SetEventObject(dialog
);
93 dialog
->GetEventHandler()->ProcessEvent(event
);
96 static void gtk_filedialog_response_callback(GtkWidget
*w
,
100 wxapp_install_idle_handler();
102 if (response
== GTK_RESPONSE_ACCEPT
)
103 gtk_filedialog_ok_callback(w
, dialog
);
104 else // GTK_RESPONSE_CANCEL or GTK_RESPONSE_NONE
105 gtk_filedialog_cancel_callback(w
, dialog
);
108 static void gtk_filedialog_update_preview_callback(GtkFileChooser
*chooser
,
111 #if GTK_CHECK_VERSION(2,4,0)
112 GtkWidget
*preview
= GTK_WIDGET(user_data
);
114 wxGtkString
filename(gtk_file_chooser_get_preview_filename(chooser
));
119 GdkPixbuf
*pixbuf
= gdk_pixbuf_new_from_file_at_size(filename
, 128, 128, NULL
);
120 gboolean have_preview
= pixbuf
!= NULL
;
122 gtk_image_set_from_pixbuf(GTK_IMAGE(preview
), pixbuf
);
124 g_object_unref (pixbuf
);
126 gtk_file_chooser_set_preview_widget_active(chooser
, have_preview
);
128 wxUnusedVar(chooser
);
129 wxUnusedVar(user_data
);
136 //-----------------------------------------------------------------------------
138 //-----------------------------------------------------------------------------
140 IMPLEMENT_DYNAMIC_CLASS(wxFileDialog
,wxGenericFileDialog
)
142 BEGIN_EVENT_TABLE(wxFileDialog
,wxGenericFileDialog
)
143 EVT_BUTTON(wxID_OK
, wxFileDialog::OnFakeOk
)
146 wxFileDialog::wxFileDialog(wxWindow
*parent
, const wxString
& message
,
147 const wxString
& defaultDir
,
148 const wxString
& defaultFileName
,
149 const wxString
& wildCard
,
150 long style
, const wxPoint
& pos
,
152 const wxString
& name
)
153 : wxGenericFileDialog(parent
, message
, defaultDir
, defaultFileName
,
154 wildCard
, style
, pos
, sz
, name
, true )
156 if (gtk_check_version(2,4,0))
158 wxGenericFileDialog::Create( parent
, message
, defaultDir
,
159 defaultFileName
, wildCard
, style
, pos
);
163 m_needParent
= false;
165 if (!PreCreation(parent
, pos
, wxDefaultSize
) ||
166 !CreateBase(parent
, wxID_ANY
, pos
, wxDefaultSize
, style
,
167 wxDefaultValidator
, wxT("filedialog")))
169 wxFAIL_MSG( wxT("wxFileDialog creation failed") );
173 GtkFileChooserAction gtk_action
;
174 GtkWindow
* gtk_parent
= NULL
;
176 gtk_parent
= GTK_WINDOW( gtk_widget_get_toplevel(parent
->m_widget
) );
178 const gchar
* ok_btn_stock
;
179 if ( style
& wxFD_SAVE
)
181 gtk_action
= GTK_FILE_CHOOSER_ACTION_SAVE
;
182 ok_btn_stock
= GTK_STOCK_SAVE
;
186 gtk_action
= GTK_FILE_CHOOSER_ACTION_OPEN
;
187 ok_btn_stock
= GTK_STOCK_OPEN
;
190 m_widget
= gtk_file_chooser_dialog_new(
191 wxGTK_CONV(m_message
),
194 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
195 ok_btn_stock
, GTK_RESPONSE_ACCEPT
,
198 gtk_dialog_set_default_response(GTK_DIALOG(m_widget
), GTK_RESPONSE_ACCEPT
);
200 if ( style
& wxFD_MULTIPLE
)
201 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(m_widget
), true);
203 // gtk_widget_hide_on_delete is used here to avoid that Gtk automatically
204 // destroys the dialog when the user press ESC on the dialog: in that case
205 // a second call to ShowModal() would result in a bunch of Gtk-CRITICAL
207 g_signal_connect (G_OBJECT(m_widget
),
209 G_CALLBACK (gtk_widget_hide_on_delete
),
212 // local-only property could be set to false to allow non-local files to be
213 // loaded. In that case get/set_uri(s) should be used instead of
214 // get/set_filename(s) everywhere and the GtkFileChooserDialog should
215 // probably also be created with a backend, e.g "gnome-vfs", "default", ...
216 // (gtk_file_chooser_dialog_new_with_backend). Currently local-only is kept
217 // as the default - true:
218 // gtk_file_chooser_set_local_only(GTK_FILE_CHOOSER(m_widget), true);
220 g_signal_connect (m_widget
, "response",
221 G_CALLBACK (gtk_filedialog_response_callback
), this);
223 SetWildcard(wildCard
);
225 // if defaultDir is specified it should contain the directory and
226 // defaultFileName should contain the default name of the file, however if
227 // directory is not given, defaultFileName contains both
229 if ( defaultDir
.empty() )
230 fn
.Assign(defaultFileName
);
231 else if ( !defaultFileName
.empty() )
232 fn
.Assign(defaultDir
, defaultFileName
);
234 fn
.AssignDir(defaultDir
);
236 // set the initial file name and/or directory
237 wxString fname
= fn
.GetFullName();
240 wxString dir
= fn
.GetPath();
243 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(m_widget
),
248 if ( style
& wxFD_SAVE
)
250 if ( !fname
.empty() )
252 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(m_widget
),
256 #if GTK_CHECK_VERSION(2,7,3)
257 if ((style
& wxFD_OVERWRITE_PROMPT
) && !gtk_check_version(2,7,3))
258 gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(m_widget
), TRUE
);
263 if ( !fname
.empty() )
265 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(m_widget
),
266 fn
.GetFullPath().fn_str());
270 #if GTK_CHECK_VERSION(2,4,0)
271 if ( style
& wxFD_PREVIEW
)
273 GtkWidget
*previewImage
= gtk_image_new();
275 gtk_file_chooser_set_preview_widget(GTK_FILE_CHOOSER(m_widget
),
277 g_signal_connect(m_widget
, "update-preview",
278 G_CALLBACK(gtk_filedialog_update_preview_callback
),
284 void wxFileDialog::OnFakeOk( wxCommandEvent
&event
)
286 if (!gtk_check_version(2,4,0))
289 wxGenericFileDialog::OnListOk( event
);
292 int wxFileDialog::ShowModal()
294 if (!gtk_check_version(2,4,0))
295 return wxDialog::ShowModal();
297 return wxGenericFileDialog::ShowModal();
300 bool wxFileDialog::Show( bool show
)
302 if (!gtk_check_version(2,4,0))
303 return wxDialog::Show( show
);
305 return wxGenericFileDialog::Show( show
);
308 void wxFileDialog::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
313 wxGenericFileDialog::DoSetSize( x
, y
, width
, height
, sizeFlags
);
316 wxString
wxFileDialog::GetPath() const
318 if (!gtk_check_version(2,4,0))
320 wxGtkString
str(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(m_widget
)));
321 return wxConvFileName
->cMB2WX(str
);
324 return wxGenericFileDialog::GetPath();
327 void wxFileDialog::GetFilenames(wxArrayString
& files
) const
329 if (!gtk_check_version(2,4,0))
332 for (size_t n
= 0; n
< files
.GetCount(); ++n
)
334 wxFileName
file(files
[n
]);
335 files
[n
] = file
.GetFullName();
339 wxGenericFileDialog::GetFilenames( files
);
342 void wxFileDialog::GetPaths(wxArrayString
& paths
) const
344 if (!gtk_check_version(2,4,0))
347 if (gtk_file_chooser_get_select_multiple(GTK_FILE_CHOOSER(m_widget
)))
349 GSList
*gpathsi
= gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(m_widget
));
350 GSList
*gpaths
= gpathsi
;
353 wxString
file(wxConvFileName
->cMB2WX((gchar
*) gpathsi
->data
));
355 g_free(gpathsi
->data
);
356 gpathsi
= gpathsi
->next
;
359 g_slist_free(gpaths
);
362 paths
.Add(GetPath());
365 wxGenericFileDialog::GetPaths( paths
);
368 void wxFileDialog::SetMessage(const wxString
& message
)
370 if (!gtk_check_version(2,4,0))
376 wxGenericFileDialog::SetMessage( message
);
379 void wxFileDialog::SetPath(const wxString
& path
)
381 if (!gtk_check_version(2,4,0))
383 if (path
.empty()) return;
385 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(m_widget
), wxConvFileName
->cWX2MB(path
));
388 wxGenericFileDialog::SetPath( path
);
391 void wxFileDialog::SetDirectory(const wxString
& dir
)
393 if (!gtk_check_version(2,4,0))
395 if (wxDirExists(dir
))
397 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(m_widget
), wxConvFileName
->cWX2MB(dir
));
401 wxGenericFileDialog::SetDirectory( dir
);
404 wxString
wxFileDialog::GetDirectory() const
406 if (!gtk_check_version(2,4,0))
408 wxGtkString
str(gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(m_widget
)));
409 return wxConvFileName
->cMB2WX(str
);
412 return wxGenericFileDialog::GetDirectory();
415 void wxFileDialog::SetFilename(const wxString
& name
)
417 if (!gtk_check_version(2,4,0))
419 if (HasFdFlag(wxFD_SAVE
))
420 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(m_widget
), wxGTK_CONV(name
));
422 SetPath(wxFileName(GetDirectory(), name
).GetFullPath());
425 wxGenericFileDialog::SetFilename( name
);
428 wxString
wxFileDialog::GetFilename() const
430 if (!gtk_check_version(2,4,0))
431 return wxFileName(GetPath()).GetFullName();
433 return wxGenericFileDialog::GetFilename();
436 void wxFileDialog::SetWildcard(const wxString
& wildCard
)
438 if (!gtk_check_version(2,4,0))
441 wxArrayString wildDescriptions
, wildFilters
;
442 if (!wxParseCommonDialogsFilter(wildCard
, wildDescriptions
, wildFilters
))
444 wxFAIL_MSG( wxT("wxFileDialog::SetWildCard - bad wildcard string") );
448 // Parsing went fine. Set m_wildCard to be returned by wxFileDialogBase::GetWildcard
449 m_wildCard
= wildCard
;
451 GtkFileChooser
* chooser
= GTK_FILE_CHOOSER(m_widget
);
453 // empty current filter list:
454 GSList
* ifilters
= gtk_file_chooser_list_filters(chooser
);
455 GSList
* filters
= ifilters
;
459 gtk_file_chooser_remove_filter(chooser
,GTK_FILE_FILTER(ifilters
->data
));
460 ifilters
= ifilters
->next
;
462 g_slist_free(filters
);
464 // add parsed to GtkChooser
465 for (size_t n
= 0; n
< wildFilters
.GetCount(); ++n
)
467 GtkFileFilter
* filter
= gtk_file_filter_new();
468 gtk_file_filter_set_name(filter
, wxGTK_CONV(wildDescriptions
[n
]));
470 wxStringTokenizer
exttok(wildFilters
[n
], wxT(";"));
471 while (exttok
.HasMoreTokens())
473 wxString token
= exttok
.GetNextToken();
474 gtk_file_filter_add_pattern(filter
, wxGTK_CONV(token
));
477 gtk_file_chooser_add_filter(chooser
, filter
);
480 // Reset the filter index
485 wxGenericFileDialog::SetWildcard( wildCard
);
488 void wxFileDialog::SetFilterIndex(int filterIndex
)
491 if (!gtk_check_version(2,4,0))
494 GtkFileChooser
*chooser
= GTK_FILE_CHOOSER(m_widget
);
495 GSList
*filters
= gtk_file_chooser_list_filters(chooser
);
497 filter
= g_slist_nth_data(filters
, filterIndex
);
501 gtk_file_chooser_set_filter(chooser
, GTK_FILE_FILTER(filter
));
505 wxFAIL_MSG( wxT("wxFileDialog::SetFilterIndex - bad filter index") );
508 g_slist_free(filters
);
511 wxGenericFileDialog::SetFilterIndex( filterIndex
);
514 int wxFileDialog::GetFilterIndex() const
516 if (!gtk_check_version(2,4,0))
518 GtkFileChooser
*chooser
= GTK_FILE_CHOOSER(m_widget
);
519 GtkFileFilter
*filter
= gtk_file_chooser_get_filter(chooser
);
520 GSList
*filters
= gtk_file_chooser_list_filters(chooser
);
521 gint index
= g_slist_index(filters
, filter
);
522 g_slist_free(filters
);
526 wxFAIL_MSG( wxT("wxFileDialog::GetFilterIndex - bad filter index returned by gtk+") );
533 return wxGenericFileDialog::GetFilterIndex();
536 #endif // wxUSE_FILEDLG && __WXGTK24__