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"
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 //-----------------------------------------------------------------------------
32 // "clicked" for OK-button
33 //-----------------------------------------------------------------------------
36 static void gtk_filedialog_ok_callback(GtkWidget
*widget
, wxFileDialog
*dialog
)
38 int style
= dialog
->GetWindowStyle();
39 wxGtkString
filename(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget
)));
41 // gtk version numbers must be identical with the one in ctor (that calls set_do_overwrite_confirmation)
42 #if GTK_CHECK_VERSION(2,7,3)
43 if (gtk_check_version(2, 7, 3) != NULL
)
46 if ((style
& wxFD_SAVE
) && (style
& wxFD_OVERWRITE_PROMPT
))
48 if ( g_file_test(filename
, G_FILE_TEST_EXISTS
) )
53 _("File '%s' already exists, do you really want to overwrite it?"),
54 wxString::FromUTF8(filename
));
56 wxMessageDialog
dlg(dialog
, msg
, _("Confirm"),
57 wxYES_NO
| wxICON_QUESTION
);
58 if (dlg
.ShowModal() != wxID_YES
)
64 if (style
& wxFD_FILE_MUST_EXIST
)
66 if ( !g_file_test(filename
, G_FILE_TEST_EXISTS
) )
68 wxMessageDialog
dlg( dialog
, _("Please choose an existing file."),
69 _("Error"), wxOK
| wxICON_ERROR
);
75 // change to the directory where the user went if asked
76 if (style
& wxFD_CHANGE_DIR
)
78 // Use chdir to not care about filename encodings
79 wxGtkString
folder(g_path_get_dirname(filename
));
83 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_OK
);
84 event
.SetEventObject(dialog
);
85 dialog
->HandleWindowEvent(event
);
89 //-----------------------------------------------------------------------------
90 // "clicked" for Cancel-button
91 //-----------------------------------------------------------------------------
97 gtk_filedialog_cancel_callback(GtkWidget
* WXUNUSED(w
), wxFileDialog
*dialog
)
99 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
100 event
.SetEventObject(dialog
);
101 dialog
->HandleWindowEvent(event
);
104 static void gtk_filedialog_response_callback(GtkWidget
*w
,
106 wxFileDialog
*dialog
)
108 if (response
== GTK_RESPONSE_ACCEPT
)
109 gtk_filedialog_ok_callback(w
, dialog
);
110 else // GTK_RESPONSE_CANCEL or GTK_RESPONSE_NONE
111 gtk_filedialog_cancel_callback(w
, dialog
);
114 static void gtk_filedialog_update_preview_callback(GtkFileChooser
*chooser
,
117 GtkWidget
*preview
= GTK_WIDGET(user_data
);
119 wxGtkString
filename(gtk_file_chooser_get_preview_filename(chooser
));
124 GdkPixbuf
*pixbuf
= gdk_pixbuf_new_from_file_at_size(filename
, 128, 128, NULL
);
125 gboolean have_preview
= pixbuf
!= NULL
;
127 gtk_image_set_from_pixbuf(GTK_IMAGE(preview
), pixbuf
);
129 g_object_unref (pixbuf
);
131 gtk_file_chooser_set_preview_widget_active(chooser
, have_preview
);
136 //-----------------------------------------------------------------------------
137 // "size_request" from m_extraControl
138 //-----------------------------------------------------------------------------
141 static void extra_widget_size_request(GtkWidget
*, GtkRequisition
* req
, wxWindow
* win
)
143 // allow dialog to be resized smaller horizontally
144 req
->width
= win
->GetMinWidth();
148 void wxFileDialog::AddChildGTK(wxWindowGTK
* child
)
150 g_signal_connect_after(child
->m_widget
, "size_request",
151 G_CALLBACK(extra_widget_size_request
), child
);
152 gtk_file_chooser_set_extra_widget(
153 GTK_FILE_CHOOSER(m_widget
), child
->m_widget
);
156 //-----------------------------------------------------------------------------
158 //-----------------------------------------------------------------------------
160 IMPLEMENT_DYNAMIC_CLASS(wxFileDialog
,wxFileDialogBase
)
162 BEGIN_EVENT_TABLE(wxFileDialog
,wxFileDialogBase
)
163 EVT_BUTTON(wxID_OK
, wxFileDialog::OnFakeOk
)
164 EVT_SIZE(wxFileDialog::OnSize
)
167 wxFileDialog::wxFileDialog(wxWindow
*parent
, const wxString
& message
,
168 const wxString
& defaultDir
,
169 const wxString
& defaultFileName
,
170 const wxString
& wildCard
,
171 long style
, const wxPoint
& pos
,
173 const wxString
& name
)
176 parent
= GetParentForModalDialog(parent
, style
);
178 if (!wxFileDialogBase::Create(parent
, message
, defaultDir
, defaultFileName
,
179 wildCard
, style
, pos
, sz
, name
))
184 if (!PreCreation(parent
, pos
, wxDefaultSize
) ||
185 !CreateBase(parent
, wxID_ANY
, pos
, wxDefaultSize
, style
,
186 wxDefaultValidator
, wxT("filedialog")))
188 wxFAIL_MSG( wxT("wxFileDialog creation failed") );
192 GtkFileChooserAction gtk_action
;
193 GtkWindow
* gtk_parent
= NULL
;
195 gtk_parent
= GTK_WINDOW( gtk_widget_get_toplevel(parent
->m_widget
) );
197 const gchar
* ok_btn_stock
;
198 if ( style
& wxFD_SAVE
)
200 gtk_action
= GTK_FILE_CHOOSER_ACTION_SAVE
;
201 ok_btn_stock
= GTK_STOCK_SAVE
;
205 gtk_action
= GTK_FILE_CHOOSER_ACTION_OPEN
;
206 ok_btn_stock
= GTK_STOCK_OPEN
;
209 m_widget
= gtk_file_chooser_dialog_new(
210 wxGTK_CONV(m_message
),
213 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
214 ok_btn_stock
, GTK_RESPONSE_ACCEPT
,
216 g_object_ref(m_widget
);
217 GtkFileChooser
* file_chooser
= GTK_FILE_CHOOSER(m_widget
);
219 m_fc
.SetWidget(file_chooser
);
221 gtk_dialog_set_default_response(GTK_DIALOG(m_widget
), GTK_RESPONSE_ACCEPT
);
223 if ( style
& wxFD_MULTIPLE
)
224 gtk_file_chooser_set_select_multiple(file_chooser
, true);
226 // gtk_widget_hide_on_delete is used here to avoid that Gtk automatically
227 // destroys the dialog when the user press ESC on the dialog: in that case
228 // a second call to ShowModal() would result in a bunch of Gtk-CRITICAL
230 g_signal_connect(m_widget
,
232 G_CALLBACK (gtk_widget_hide_on_delete
),
235 // local-only property could be set to false to allow non-local files to be
236 // loaded. In that case get/set_uri(s) should be used instead of
237 // get/set_filename(s) everywhere and the GtkFileChooserDialog should
238 // probably also be created with a backend, e.g "gnome-vfs", "default", ...
239 // (gtk_file_chooser_dialog_new_with_backend). Currently local-only is kept
240 // as the default - true:
241 // gtk_file_chooser_set_local_only(GTK_FILE_CHOOSER(m_widget), true);
243 g_signal_connect (m_widget
, "response",
244 G_CALLBACK (gtk_filedialog_response_callback
), this);
247 // deal with extensions/filters
248 SetWildcard(wildCard
);
250 wxString defaultFileNameWithExt
= defaultFileName
;
251 if ( !wildCard
.empty() && !defaultFileName
.empty() &&
252 !wxFileName(defaultFileName
).HasExt() )
254 // append the default extension to the initial file name: GTK won't do
255 // it for us by default (unlike e.g. MSW)
256 const wxString defaultExt
= m_fc
.GetCurrentWildCard().AfterFirst('.');
257 if ( defaultExt
.find_first_of("?*") == wxString::npos
)
258 defaultFileNameWithExt
+= "." + defaultExt
;
262 // if defaultDir is specified it should contain the directory and
263 // defaultFileName should contain the default name of the file, however if
264 // directory is not given, defaultFileName contains both
266 if ( defaultDir
.empty() )
267 fn
.Assign(defaultFileNameWithExt
);
268 else if ( !defaultFileNameWithExt
.empty() )
269 fn
.Assign(defaultDir
, defaultFileNameWithExt
);
271 fn
.AssignDir(defaultDir
);
273 // set the initial file name and/or directory
274 fn
.MakeAbsolute(); // GTK+ needs absolute path
275 const wxString dir
= fn
.GetPath();
278 gtk_file_chooser_set_current_folder(file_chooser
, dir
.fn_str());
281 const wxString fname
= fn
.GetFullName();
282 if ( style
& wxFD_SAVE
)
284 if ( !fname
.empty() )
286 gtk_file_chooser_set_current_name(file_chooser
, fname
.fn_str());
289 #if GTK_CHECK_VERSION(2,7,3)
290 if ((style
& wxFD_OVERWRITE_PROMPT
) && !gtk_check_version(2,7,3))
291 gtk_file_chooser_set_do_overwrite_confirmation(file_chooser
, true);
296 if ( !fname
.empty() )
298 gtk_file_chooser_set_filename(file_chooser
,
299 fn
.GetFullPath().fn_str());
303 if ( style
& wxFD_PREVIEW
)
305 GtkWidget
*previewImage
= gtk_image_new();
307 gtk_file_chooser_set_preview_widget(file_chooser
, previewImage
);
308 g_signal_connect(m_widget
, "update-preview",
309 G_CALLBACK(gtk_filedialog_update_preview_callback
),
314 wxFileDialog::~wxFileDialog()
318 // get chooser to drop its reference right now, allowing wxWindow dtor
319 // to verify that ref count drops to zero
320 gtk_file_chooser_set_extra_widget(
321 GTK_FILE_CHOOSER(m_widget
), NULL
);
325 void wxFileDialog::OnFakeOk(wxCommandEvent
& WXUNUSED(event
))
330 int wxFileDialog::ShowModal()
332 CreateExtraControl();
334 return wxDialog::ShowModal();
337 void wxFileDialog::DoSetSize(int WXUNUSED(x
), int WXUNUSED(y
),
338 int WXUNUSED(width
), int WXUNUSED(height
),
339 int WXUNUSED(sizeFlags
))
343 void wxFileDialog::OnSize(wxSizeEvent
&)
345 // avoid calling DoLayout(), which will set the (wrong) size of
346 // m_extraControl, its size is managed by GtkFileChooser
349 wxString
wxFileDialog::GetPath() const
351 return m_fc
.GetPath();
354 void wxFileDialog::GetFilenames(wxArrayString
& files
) const
356 m_fc
.GetFilenames( files
);
359 void wxFileDialog::GetPaths(wxArrayString
& paths
) const
361 m_fc
.GetPaths( paths
);
364 void wxFileDialog::SetMessage(const wxString
& message
)
370 void wxFileDialog::SetPath(const wxString
& path
)
372 // we need an absolute path for GTK native chooser so ensure that we have
376 m_fc
.SetPath(fn
.GetFullPath());
379 void wxFileDialog::SetDirectory(const wxString
& dir
)
381 if (m_fc
.SetDirectory( dir
))
383 // Cache the dir, as gtk_file_chooser_get_current_folder()
384 // doesn't return anything until the dialog has been shown
389 wxString
wxFileDialog::GetDirectory() const
391 wxString
currentDir( m_fc
.GetDirectory() );
392 if (currentDir
.empty())
394 // m_fc.GetDirectory() will return empty until the dialog has been shown
395 // in which case use any previously provided value
401 void wxFileDialog::SetFilename(const wxString
& name
)
403 if (HasFdFlag(wxFD_SAVE
))
405 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(m_widget
), wxGTK_CONV(name
));
411 wxString
path( GetDirectory() );
414 // SetPath() fires an assert if fed other than filepaths
417 SetPath(wxFileName(path
, name
).GetFullPath());
422 wxString
wxFileDialog::GetFilename() const
424 wxString
currentFilename( m_fc
.GetFilename() );
425 if (currentFilename
.empty())
427 // m_fc.GetFilename() will return empty until the dialog has been shown
428 // in which case use any previously provided value
429 currentFilename
= m_fileName
;
431 return currentFilename
;
434 void wxFileDialog::SetWildcard(const wxString
& wildCard
)
436 wxFileDialogBase::SetWildcard(wildCard
);
437 m_fc
.SetWildcard( GetWildcard() );
440 void wxFileDialog::SetFilterIndex(int filterIndex
)
442 m_fc
.SetFilterIndex( filterIndex
);
445 int wxFileDialog::GetFilterIndex() const
447 return m_fc
.GetFilterIndex();
450 #endif // wxUSE_FILEDLG