fix previous commit to respect minimum width
[wxWidgets.git] / src / gtk / filedlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/filedlg.cpp
3 // Purpose: native implementation of wxFileDialog
4 // Author: Robert Roebling, Zbigniew Zagorski, Mart Raudsepp
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, 2004 Zbigniew Zagorski, 2005 Mart Raudsepp
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
12
13 #if wxUSE_FILEDLG
14
15 #include "wx/filedlg.h"
16
17 #ifndef WX_PRECOMP
18 #include "wx/intl.h"
19 #include "wx/msgdlg.h"
20 #endif
21
22 #include <gtk/gtk.h>
23 #include "wx/gtk/private.h"
24
25 #include <unistd.h> // chdir
26
27 #include "wx/filename.h" // wxFilename
28 #include "wx/tokenzr.h" // wxStringTokenizer
29 #include "wx/filefn.h" // ::wxGetCwd
30
31 //-----------------------------------------------------------------------------
32 // "clicked" for OK-button
33 //-----------------------------------------------------------------------------
34
35 extern "C" {
36 static void gtk_filedialog_ok_callback(GtkWidget *widget, wxFileDialog *dialog)
37 {
38 int style = dialog->GetWindowStyle();
39 wxGtkString filename(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget)));
40
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)
44 #endif
45 if ((style & wxFD_SAVE) && (style & wxFD_OVERWRITE_PROMPT))
46 {
47 if ( g_file_test(filename, G_FILE_TEST_EXISTS) )
48 {
49 wxString msg;
50
51 msg.Printf(
52 _("File '%s' already exists, do you really want to overwrite it?"),
53 wxString(filename, *wxConvFileName));
54
55 wxMessageDialog dlg(dialog, msg, _("Confirm"),
56 wxYES_NO | wxICON_QUESTION);
57 if (dlg.ShowModal() != wxID_YES)
58 return;
59 }
60 }
61
62 if (style & wxFD_FILE_MUST_EXIST)
63 {
64 if ( !g_file_test(filename, G_FILE_TEST_EXISTS) )
65 {
66 wxMessageDialog dlg( dialog, _("Please choose an existing file."),
67 _("Error"), wxOK| wxICON_ERROR);
68 dlg.ShowModal();
69 return;
70 }
71 }
72
73 // change to the directory where the user went if asked
74 if (style & wxFD_CHANGE_DIR)
75 {
76 // Use chdir to not care about filename encodings
77 wxGtkString folder(g_path_get_dirname(filename));
78 chdir(folder);
79 }
80
81 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK);
82 event.SetEventObject(dialog);
83 dialog->HandleWindowEvent(event);
84 }
85 }
86
87 //-----------------------------------------------------------------------------
88 // "clicked" for Cancel-button
89 //-----------------------------------------------------------------------------
90
91 extern "C"
92 {
93
94 static void
95 gtk_filedialog_cancel_callback(GtkWidget * WXUNUSED(w), wxFileDialog *dialog)
96 {
97 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
98 event.SetEventObject(dialog);
99 dialog->HandleWindowEvent(event);
100 }
101
102 static void gtk_filedialog_response_callback(GtkWidget *w,
103 gint response,
104 wxFileDialog *dialog)
105 {
106 if (response == GTK_RESPONSE_ACCEPT)
107 gtk_filedialog_ok_callback(w, dialog);
108 else // GTK_RESPONSE_CANCEL or GTK_RESPONSE_NONE
109 gtk_filedialog_cancel_callback(w, dialog);
110 }
111
112 static void gtk_filedialog_update_preview_callback(GtkFileChooser *chooser,
113 gpointer user_data)
114 {
115 GtkWidget *preview = GTK_WIDGET(user_data);
116
117 wxGtkString filename(gtk_file_chooser_get_preview_filename(chooser));
118
119 if ( !filename )
120 return;
121
122 GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file_at_size(filename, 128, 128, NULL);
123 gboolean have_preview = pixbuf != NULL;
124
125 gtk_image_set_from_pixbuf(GTK_IMAGE(preview), pixbuf);
126 if ( pixbuf )
127 g_object_unref (pixbuf);
128
129 gtk_file_chooser_set_preview_widget_active(chooser, have_preview);
130 }
131
132 } // extern "C"
133
134 //-----------------------------------------------------------------------------
135 // "size_request" from m_extraControl
136 //-----------------------------------------------------------------------------
137
138 extern "C" {
139 static void extra_widget_size_request(GtkWidget*, GtkRequisition* req, wxWindow* win)
140 {
141 // allow dialog to be resized smaller horizontally
142 req->width = win->GetMinWidth();
143 }
144 }
145
146 static void wxInsertChildInFileDialog(wxWindow* WXUNUSED(parent),
147 wxWindow* WXUNUSED(child))
148 {
149 }
150
151 //-----------------------------------------------------------------------------
152 // wxFileDialog
153 //-----------------------------------------------------------------------------
154
155 IMPLEMENT_DYNAMIC_CLASS(wxFileDialog,wxFileDialogBase)
156
157 BEGIN_EVENT_TABLE(wxFileDialog,wxFileDialogBase)
158 EVT_BUTTON(wxID_OK, wxFileDialog::OnFakeOk)
159 EVT_SIZE(wxFileDialog::OnSize)
160 END_EVENT_TABLE()
161
162 wxFileDialog::wxFileDialog(wxWindow *parent, const wxString& message,
163 const wxString& defaultDir,
164 const wxString& defaultFileName,
165 const wxString& wildCard,
166 long style, const wxPoint& pos,
167 const wxSize& sz,
168 const wxString& name)
169 : wxFileDialogBase()
170 {
171 m_insertCallback = wxInsertChildInFileDialog;
172 parent = GetParentForModalDialog(parent);
173
174 if (!wxFileDialogBase::Create(parent, message, defaultDir, defaultFileName,
175 wildCard, style, pos, sz, name))
176 {
177 return;
178 }
179
180 if (!PreCreation(parent, pos, wxDefaultSize) ||
181 !CreateBase(parent, wxID_ANY, pos, wxDefaultSize, style,
182 wxDefaultValidator, wxT("filedialog")))
183 {
184 wxFAIL_MSG( wxT("wxFileDialog creation failed") );
185 return;
186 }
187
188 GtkFileChooserAction gtk_action;
189 GtkWindow* gtk_parent = NULL;
190 if (parent)
191 gtk_parent = GTK_WINDOW( gtk_widget_get_toplevel(parent->m_widget) );
192
193 const gchar* ok_btn_stock;
194 if ( style & wxFD_SAVE )
195 {
196 gtk_action = GTK_FILE_CHOOSER_ACTION_SAVE;
197 ok_btn_stock = GTK_STOCK_SAVE;
198 }
199 else
200 {
201 gtk_action = GTK_FILE_CHOOSER_ACTION_OPEN;
202 ok_btn_stock = GTK_STOCK_OPEN;
203 }
204
205 m_widget = gtk_file_chooser_dialog_new(
206 wxGTK_CONV(m_message),
207 gtk_parent,
208 gtk_action,
209 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
210 ok_btn_stock, GTK_RESPONSE_ACCEPT,
211 NULL);
212
213 m_fc.SetWidget( GTK_FILE_CHOOSER(m_widget) );
214
215 gtk_dialog_set_default_response(GTK_DIALOG(m_widget), GTK_RESPONSE_ACCEPT);
216
217 if ( style & wxFD_MULTIPLE )
218 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(m_widget), true);
219
220 // gtk_widget_hide_on_delete is used here to avoid that Gtk automatically
221 // destroys the dialog when the user press ESC on the dialog: in that case
222 // a second call to ShowModal() would result in a bunch of Gtk-CRITICAL
223 // errors...
224 g_signal_connect (G_OBJECT(m_widget),
225 "delete_event",
226 G_CALLBACK (gtk_widget_hide_on_delete),
227 (gpointer)this);
228
229 // local-only property could be set to false to allow non-local files to be
230 // loaded. In that case get/set_uri(s) should be used instead of
231 // get/set_filename(s) everywhere and the GtkFileChooserDialog should
232 // probably also be created with a backend, e.g "gnome-vfs", "default", ...
233 // (gtk_file_chooser_dialog_new_with_backend). Currently local-only is kept
234 // as the default - true:
235 // gtk_file_chooser_set_local_only(GTK_FILE_CHOOSER(m_widget), true);
236
237 g_signal_connect (m_widget, "response",
238 G_CALLBACK (gtk_filedialog_response_callback), this);
239
240 SetWildcard(wildCard);
241
242 // if defaultDir is specified it should contain the directory and
243 // defaultFileName should contain the default name of the file, however if
244 // directory is not given, defaultFileName contains both
245 wxFileName fn;
246 if ( defaultDir.empty() )
247 fn.Assign(defaultFileName);
248 else if ( !defaultFileName.empty() )
249 fn.Assign(defaultDir, defaultFileName);
250 else
251 fn.AssignDir(defaultDir);
252
253 // set the initial file name and/or directory
254 fn.MakeAbsolute(); // GTK+ needs absolute path
255 const wxString dir = fn.GetPath();
256 if ( !dir.empty() )
257 {
258 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(m_widget),
259 dir.fn_str());
260 }
261
262 const wxString fname = fn.GetFullName();
263 if ( style & wxFD_SAVE )
264 {
265 if ( !fname.empty() )
266 {
267 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(m_widget),
268 fname.fn_str());
269 }
270
271 #if GTK_CHECK_VERSION(2,7,3)
272 if ((style & wxFD_OVERWRITE_PROMPT) && !gtk_check_version(2,7,3))
273 gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(m_widget), TRUE);
274 #endif
275 }
276 else // wxFD_OPEN
277 {
278 if ( !fname.empty() )
279 {
280 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(m_widget),
281 fn.GetFullPath().fn_str());
282 }
283 }
284
285 if ( style & wxFD_PREVIEW )
286 {
287 GtkWidget *previewImage = gtk_image_new();
288
289 gtk_file_chooser_set_preview_widget(GTK_FILE_CHOOSER(m_widget),
290 previewImage);
291 g_signal_connect(m_widget, "update-preview",
292 G_CALLBACK(gtk_filedialog_update_preview_callback),
293 previewImage);
294 }
295 }
296
297
298 void wxFileDialog::OnFakeOk(wxCommandEvent& WXUNUSED(event))
299 {
300 EndDialog(wxID_OK);
301 }
302
303 int wxFileDialog::ShowModal()
304 {
305 if (CreateExtraControl())
306 {
307 GtkWidget *control = m_extraControl->m_widget;
308
309 wxASSERT(control->parent == NULL);
310
311 gtk_widget_show(control);
312 g_signal_connect_after(control, "size_request",
313 G_CALLBACK(extra_widget_size_request), m_extraControl);
314 gtk_file_chooser_set_extra_widget(GTK_FILE_CHOOSER(m_widget), control);
315 }
316
317 return wxDialog::ShowModal();
318 }
319
320 void wxFileDialog::DoSetSize(int WXUNUSED(x), int WXUNUSED(y),
321 int WXUNUSED(width), int WXUNUSED(height),
322 int WXUNUSED(sizeFlags))
323 {
324 }
325
326 void wxFileDialog::OnSize(wxSizeEvent&)
327 {
328 // avoid calling DoLayout(), which will set the (wrong) size of
329 // m_extraControl, its size is managed by GtkFileChooser
330 }
331
332 wxString wxFileDialog::GetPath() const
333 {
334 return m_fc.GetPath();
335 }
336
337 void wxFileDialog::GetFilenames(wxArrayString& files) const
338 {
339 m_fc.GetFilenames( files );
340 }
341
342 void wxFileDialog::GetPaths(wxArrayString& paths) const
343 {
344 m_fc.GetPaths( paths );
345 }
346
347 void wxFileDialog::SetMessage(const wxString& message)
348 {
349 m_message = message;
350 SetTitle(message);
351 }
352
353 void wxFileDialog::SetPath(const wxString& path)
354 {
355 m_fc.SetPath( path );
356 }
357
358 void wxFileDialog::SetDirectory(const wxString& dir)
359 {
360 m_fc.SetDirectory( dir );
361 }
362
363 wxString wxFileDialog::GetDirectory() const
364 {
365 return m_fc.GetDirectory();
366 }
367
368 void wxFileDialog::SetFilename(const wxString& name)
369 {
370 if (HasFdFlag(wxFD_SAVE))
371 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(m_widget), wxGTK_CONV(name));
372 else
373 SetPath(wxFileName(GetDirectory(), name).GetFullPath());
374 }
375
376 wxString wxFileDialog::GetFilename() const
377 {
378 return m_fc.GetFilename();
379 }
380
381 void wxFileDialog::SetWildcard(const wxString& wildCard)
382 {
383 m_fc.SetWildcard( wildCard );
384 }
385
386 void wxFileDialog::SetFilterIndex(int filterIndex)
387 {
388
389 m_fc.SetFilterIndex( filterIndex);
390 }
391
392 int wxFileDialog::GetFilterIndex() const
393 {
394 return m_fc.GetFilterIndex();
395 }
396
397 #endif // wxUSE_FILEDLG