]> Pileus Git - ~andy/gtk/blob - gtk/gtkfilechooserdefault.c
Hide the Create Folder button in recent-files mode when the pathbar is on
[~andy/gtk] / gtk / gtkfilechooserdefault.c
1 /* -*- Mode: C; c-file-style: "gnu"; tab-width: 8 -*- */
2 /* GTK - The GIMP Toolkit
3  * gtkfilechooserdefault.c: Default implementation of GtkFileChooser
4  * Copyright (C) 2003, Red Hat, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #include "config.h"
23
24 #include "gtkfilechooserdefault.h"
25
26 #include "gtkbindings.h"
27 #include "gtkcelllayout.h"
28 #include "gtkcellrendererpixbuf.h"
29 #include "gtkcellrenderertext.h"
30 #include "gtkcheckmenuitem.h"
31 #include "gtkclipboard.h"
32 #include "gtkcomboboxtext.h"
33 #include "gtkentry.h"
34 #include "gtkexpander.h"
35 #include "gtkfilechooserprivate.h"
36 #include "gtkfilechooserdialog.h"
37 #include "gtkfilechooserembed.h"
38 #include "gtkfilechooserentry.h"
39 #include "gtkfilechooserutils.h"
40 #include "gtkfilechooser.h"
41 #include "gtkfilesystem.h"
42 #include "gtkfilesystemmodel.h"
43 #include "gtkframe.h"
44 #include "gtkpaned.h"
45 #include "gtkiconfactory.h"
46 #include "gtkicontheme.h"
47 #include "gtkimage.h"
48 #include "gtkimagemenuitem.h"
49 #include "gtkinfobar.h"
50 #include "gtklabel.h"
51 #include "gtkmarshalers.h"
52 #include "gtkmessagedialog.h"
53 #include "gtkmountoperation.h"
54 #include "gtkpathbar.h"
55 #include "gtkprivate.h"
56 #include "gtkradiobutton.h"
57 #include "gtkrecentfilter.h"
58 #include "gtkrecentmanager.h"
59 #include "gtkscrolledwindow.h"
60 #include "gtkseparatormenuitem.h"
61 #include "gtksizegroup.h"
62 #include "gtksizerequest.h"
63 #include "gtkstock.h"
64 #include "gtktable.h"
65 #include "gtktoolbar.h"
66 #include "gtktoolbutton.h"
67 #include "gtktooltip.h"
68 #include "gtktreednd.h"
69 #include "gtktreeprivate.h"
70 #include "gtktreeselection.h"
71 #include "gtkbox.h"
72 #include "gtkorientable.h"
73 #include "gtkintl.h"
74
75 #include <errno.h>
76 #include <string.h>
77 #include <time.h>
78 #include <sys/stat.h>
79 #include <sys/types.h>
80 #include <locale.h>
81
82 #ifdef HAVE_UNISTD_H
83 #include <unistd.h>
84 #endif
85 #ifdef G_OS_WIN32
86 #include <io.h>
87 #endif
88
89 /* Profiling stuff */
90 #undef PROFILE_FILE_CHOOSER
91 #ifdef PROFILE_FILE_CHOOSER
92
93
94 #ifndef F_OK 
95 #define F_OK 0
96 #endif
97
98 #define PROFILE_INDENT 4
99 static int profile_indent;
100
101 static void
102 profile_add_indent (int indent)
103 {
104   profile_indent += indent;
105   if (profile_indent < 0)
106     g_error ("You screwed up your indentation");
107 }
108
109 void
110 _gtk_file_chooser_profile_log (const char *func, int indent, const char *msg1, const char *msg2)
111 {
112   char *str;
113
114   if (indent < 0)
115     profile_add_indent (indent);
116
117   if (profile_indent == 0)
118     str = g_strdup_printf ("MARK: %s %s %s", func ? func : "", msg1 ? msg1 : "", msg2 ? msg2 : "");
119   else
120     str = g_strdup_printf ("MARK: %*c %s %s %s", profile_indent - 1, ' ', func ? func : "", msg1 ? msg1 : "", msg2 ? msg2 : "");
121
122   access (str, F_OK);
123   g_free (str);
124
125   if (indent > 0)
126     profile_add_indent (indent);
127 }
128
129 #define profile_start(x, y) _gtk_file_chooser_profile_log (G_STRFUNC, PROFILE_INDENT, x, y)
130 #define profile_end(x, y) _gtk_file_chooser_profile_log (G_STRFUNC, -PROFILE_INDENT, x, y)
131 #define profile_msg(x, y) _gtk_file_chooser_profile_log (NULL, 0, x, y)
132 #else
133 #define profile_start(x, y)
134 #define profile_end(x, y)
135 #define profile_msg(x, y)
136 #endif
137
138
139
140 typedef struct _GtkFileChooserDefaultClass GtkFileChooserDefaultClass;
141
142 #define GTK_FILE_CHOOSER_DEFAULT_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FILE_CHOOSER_DEFAULT, GtkFileChooserDefaultClass))
143 #define GTK_IS_FILE_CHOOSER_DEFAULT_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FILE_CHOOSER_DEFAULT))
144 #define GTK_FILE_CHOOSER_DEFAULT_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FILE_CHOOSER_DEFAULT, GtkFileChooserDefaultClass))
145
146 #define MAX_LOADING_TIME 500
147
148 #define DEFAULT_NEW_FOLDER_NAME _("Type name of new folder")
149
150 struct _GtkFileChooserDefaultClass
151 {
152   GtkBoxClass parent_class;
153 };
154
155 /* Signal IDs */
156 enum {
157   LOCATION_POPUP,
158   LOCATION_POPUP_ON_PASTE,
159   UP_FOLDER,
160   DOWN_FOLDER,
161   HOME_FOLDER,
162   DESKTOP_FOLDER,
163   QUICK_BOOKMARK,
164   LOCATION_TOGGLE_POPUP,
165   SHOW_HIDDEN,
166   SEARCH_SHORTCUT,
167   RECENT_SHORTCUT,
168
169   LAST_SIGNAL
170 };
171
172 static guint signals[LAST_SIGNAL] = { 0 };
173
174 /* Column numbers for the shortcuts tree.  Keep these in sync with shortcuts_model_create() */
175 enum {
176   SHORTCUTS_COL_PIXBUF,
177   SHORTCUTS_COL_NAME,
178   SHORTCUTS_COL_DATA,
179   SHORTCUTS_COL_TYPE,
180   SHORTCUTS_COL_REMOVABLE,
181   SHORTCUTS_COL_PIXBUF_VISIBLE,
182   SHORTCUTS_COL_CANCELLABLE,
183   SHORTCUTS_COL_NUM_COLUMNS
184 };
185
186 typedef enum {
187   SHORTCUT_TYPE_FILE,
188   SHORTCUT_TYPE_VOLUME,
189   SHORTCUT_TYPE_SEPARATOR,
190   SHORTCUT_TYPE_SEARCH,
191   SHORTCUT_TYPE_RECENT
192 } ShortcutType;
193
194 #define MODEL_ATTRIBUTES "standard::name,standard::type,standard::display-name," \
195                          "standard::is-hidden,standard::is-backup,standard::size," \
196                          "standard::content-type,time::modified"
197 enum {
198   /* the first 3 must be these due to settings caching sort column */
199   MODEL_COL_NAME,
200   MODEL_COL_SIZE,
201   MODEL_COL_MTIME,
202   MODEL_COL_FILE,
203   MODEL_COL_NAME_COLLATED,
204   MODEL_COL_IS_FOLDER,
205   MODEL_COL_PIXBUF,
206   MODEL_COL_SIZE_TEXT,
207   MODEL_COL_MTIME_TEXT,
208   MODEL_COL_ELLIPSIZE,
209   MODEL_COL_NUM_COLUMNS
210 };
211
212 /* This list of types is passed to _gtk_file_system_model_new*() */
213 #define MODEL_COLUMN_TYPES                                      \
214         MODEL_COL_NUM_COLUMNS,                                  \
215         G_TYPE_STRING,            /* MODEL_COL_NAME */          \
216         G_TYPE_INT64,             /* MODEL_COL_SIZE */          \
217         G_TYPE_LONG,              /* MODEL_COL_MTIME */         \
218         G_TYPE_FILE,              /* MODEL_COL_FILE */          \
219         G_TYPE_STRING,            /* MODEL_COL_NAME_COLLATED */ \
220         G_TYPE_BOOLEAN,           /* MODEL_COL_IS_FOLDER */     \
221         GDK_TYPE_PIXBUF,          /* MODEL_COL_PIXBUF */        \
222         G_TYPE_STRING,            /* MODEL_COL_SIZE_TEXT */     \
223         G_TYPE_STRING,            /* MODEL_COL_MTIME_TEXT */    \
224         PANGO_TYPE_ELLIPSIZE_MODE /* MODEL_COL_ELLIPSIZE */
225
226 /* Identifiers for target types */
227 enum {
228   GTK_TREE_MODEL_ROW,
229 };
230
231 /* Interesting places in the shortcuts bar */
232 typedef enum {
233   SHORTCUTS_SEARCH,
234   SHORTCUTS_RECENT,
235   SHORTCUTS_RECENT_SEPARATOR,
236   SHORTCUTS_HOME,
237   SHORTCUTS_DESKTOP,
238   SHORTCUTS_VOLUMES,
239   SHORTCUTS_SHORTCUTS,
240   SHORTCUTS_BOOKMARKS_SEPARATOR,
241   SHORTCUTS_BOOKMARKS,
242   SHORTCUTS_CURRENT_FOLDER_SEPARATOR,
243   SHORTCUTS_CURRENT_FOLDER
244 } ShortcutsIndex;
245
246 /* Icon size for if we can't get it from the theme */
247 #define FALLBACK_ICON_SIZE 16
248
249 #define PREVIEW_HBOX_SPACING 12
250 #define NUM_LINES 45
251 #define NUM_CHARS 60
252
253 #define SETTINGS_KEY_LAST_FOLDER_URI     "last-folder-uri"
254 #define SETTINGS_KEY_LOCATION_MODE       "location-mode"
255 #define SETTINGS_KEY_SHOW_HIDDEN         "show-hidden"
256 #define SETTINGS_KEY_SHOW_SIZE_COLUMN    "show-size-column"
257 #define SETTINGS_KEY_SORT_COLUMN         "sort-column"
258 #define SETTINGS_KEY_SORT_ORDER          "sort-order"
259 #define SETTINGS_KEY_WINDOW_POSITION     "window-position"
260 #define SETTINGS_KEY_WINDOW_SIZE         "window-size"
261
262 static void gtk_file_chooser_default_iface_init       (GtkFileChooserIface        *iface);
263 static void gtk_file_chooser_embed_default_iface_init (GtkFileChooserEmbedIface   *iface);
264
265 static GObject* gtk_file_chooser_default_constructor  (GType                  type,
266                                                        guint                  n_construct_properties,
267                                                        GObjectConstructParam *construct_params);
268 static void     gtk_file_chooser_default_finalize     (GObject               *object);
269 static void     gtk_file_chooser_default_set_property (GObject               *object,
270                                                        guint                  prop_id,
271                                                        const GValue          *value,
272                                                        GParamSpec            *pspec);
273 static void     gtk_file_chooser_default_get_property (GObject               *object,
274                                                        guint                  prop_id,
275                                                        GValue                *value,
276                                                        GParamSpec            *pspec);
277 static void     gtk_file_chooser_default_dispose      (GObject               *object);
278 static void     gtk_file_chooser_default_show_all       (GtkWidget             *widget);
279 static void     gtk_file_chooser_default_realize        (GtkWidget             *widget);
280 static void     gtk_file_chooser_default_map            (GtkWidget             *widget);
281 static void     gtk_file_chooser_default_unmap          (GtkWidget             *widget);
282 static void     gtk_file_chooser_default_hierarchy_changed (GtkWidget          *widget,
283                                                             GtkWidget          *previous_toplevel);
284 static void     gtk_file_chooser_default_style_updated  (GtkWidget             *widget);
285 static void     gtk_file_chooser_default_screen_changed (GtkWidget             *widget,
286                                                          GdkScreen             *previous_screen);
287 static void     gtk_file_chooser_default_size_allocate  (GtkWidget             *widget,
288                                                          GtkAllocation         *allocation);
289
290 static gboolean       gtk_file_chooser_default_set_current_folder          (GtkFileChooser    *chooser,
291                                                                             GFile             *folder,
292                                                                             GError           **error);
293 static gboolean       gtk_file_chooser_default_update_current_folder       (GtkFileChooser    *chooser,
294                                                                             GFile             *folder,
295                                                                             gboolean           keep_trail,
296                                                                             gboolean           clear_entry,
297                                                                             GError           **error);
298 static GFile *        gtk_file_chooser_default_get_current_folder          (GtkFileChooser    *chooser);
299 static void           gtk_file_chooser_default_set_current_name            (GtkFileChooser    *chooser,
300                                                                             const gchar       *name);
301 static gboolean       gtk_file_chooser_default_select_file                 (GtkFileChooser    *chooser,
302                                                                             GFile             *file,
303                                                                             GError           **error);
304 static void           gtk_file_chooser_default_unselect_file               (GtkFileChooser    *chooser,
305                                                                             GFile             *file);
306 static void           gtk_file_chooser_default_select_all                  (GtkFileChooser    *chooser);
307 static void           gtk_file_chooser_default_unselect_all                (GtkFileChooser    *chooser);
308 static GSList *       gtk_file_chooser_default_get_files                   (GtkFileChooser    *chooser);
309 static GFile *        gtk_file_chooser_default_get_preview_file            (GtkFileChooser    *chooser);
310 static GtkFileSystem *gtk_file_chooser_default_get_file_system             (GtkFileChooser    *chooser);
311 static void           gtk_file_chooser_default_add_filter                  (GtkFileChooser    *chooser,
312                                                                             GtkFileFilter     *filter);
313 static void           gtk_file_chooser_default_remove_filter               (GtkFileChooser    *chooser,
314                                                                             GtkFileFilter     *filter);
315 static GSList *       gtk_file_chooser_default_list_filters                (GtkFileChooser    *chooser);
316 static gboolean       gtk_file_chooser_default_add_shortcut_folder    (GtkFileChooser    *chooser,
317                                                                        GFile             *file,
318                                                                        GError           **error);
319 static gboolean       gtk_file_chooser_default_remove_shortcut_folder (GtkFileChooser    *chooser,
320                                                                        GFile             *file,
321                                                                        GError           **error);
322 static GSList *       gtk_file_chooser_default_list_shortcut_folders  (GtkFileChooser    *chooser);
323
324 static void           gtk_file_chooser_default_get_default_size       (GtkFileChooserEmbed *chooser_embed,
325                                                                        gint                *default_width,
326                                                                        gint                *default_height);
327 static gboolean       gtk_file_chooser_default_should_respond         (GtkFileChooserEmbed *chooser_embed);
328 static void           gtk_file_chooser_default_initial_focus          (GtkFileChooserEmbed *chooser_embed);
329
330 static void location_popup_handler  (GtkFileChooserDefault *impl,
331                                      const gchar           *path);
332 static void location_popup_on_paste_handler (GtkFileChooserDefault *impl);
333 static void location_toggle_popup_handler   (GtkFileChooserDefault *impl);
334 static void up_folder_handler       (GtkFileChooserDefault *impl);
335 static void down_folder_handler     (GtkFileChooserDefault *impl);
336 static void home_folder_handler     (GtkFileChooserDefault *impl);
337 static void desktop_folder_handler  (GtkFileChooserDefault *impl);
338 static void quick_bookmark_handler  (GtkFileChooserDefault *impl,
339                                      gint                   bookmark_index);
340 static void show_hidden_handler     (GtkFileChooserDefault *impl);
341 static void search_shortcut_handler (GtkFileChooserDefault *impl);
342 static void recent_shortcut_handler (GtkFileChooserDefault *impl);
343 static void update_appearance       (GtkFileChooserDefault *impl);
344
345 static void set_current_filter   (GtkFileChooserDefault *impl,
346                                   GtkFileFilter         *filter);
347 static void check_preview_change (GtkFileChooserDefault *impl);
348
349 static void filter_combo_changed       (GtkComboBox           *combo_box,
350                                         GtkFileChooserDefault *impl);
351
352 static gboolean shortcuts_key_press_event_cb (GtkWidget             *widget,
353                                               GdkEventKey           *event,
354                                               GtkFileChooserDefault *impl);
355
356 static gboolean shortcuts_select_func   (GtkTreeSelection      *selection,
357                                          GtkTreeModel          *model,
358                                          GtkTreePath           *path,
359                                          gboolean               path_currently_selected,
360                                          gpointer               data);
361 static gboolean shortcuts_get_selected  (GtkFileChooserDefault *impl,
362                                          GtkTreeIter           *iter);
363 static void shortcuts_activate_iter (GtkFileChooserDefault *impl,
364                                      GtkTreeIter           *iter);
365 static int shortcuts_get_index (GtkFileChooserDefault *impl,
366                                 ShortcutsIndex         where);
367 static int shortcut_find_position (GtkFileChooserDefault *impl,
368                                    GFile                 *file);
369
370 static void bookmarks_check_add_sensitivity (GtkFileChooserDefault *impl);
371
372 static gboolean list_select_func   (GtkTreeSelection      *selection,
373                                     GtkTreeModel          *model,
374                                     GtkTreePath           *path,
375                                     gboolean               path_currently_selected,
376                                     gpointer               data);
377
378 static void list_selection_changed     (GtkTreeSelection      *tree_selection,
379                                         GtkFileChooserDefault *impl);
380 static void list_row_activated         (GtkTreeView           *tree_view,
381                                         GtkTreePath           *path,
382                                         GtkTreeViewColumn     *column,
383                                         GtkFileChooserDefault *impl);
384
385 static void path_bar_clicked (GtkPathBar            *path_bar,
386                               GFile                 *file,
387                               GFile                 *child,
388                               gboolean               child_is_hidden,
389                               GtkFileChooserDefault *impl);
390
391 static void add_bookmark_button_clicked_cb    (GtkButton             *button,
392                                                GtkFileChooserDefault *impl);
393 static void remove_bookmark_button_clicked_cb (GtkButton             *button,
394                                                GtkFileChooserDefault *impl);
395
396 static void update_cell_renderer_attributes (GtkFileChooserDefault *impl);
397
398 static void load_remove_timer (GtkFileChooserDefault *impl);
399 static void browse_files_center_selected_row (GtkFileChooserDefault *impl);
400
401 static void location_button_toggled_cb (GtkToggleButton *toggle,
402                                         GtkFileChooserDefault *impl);
403 static void location_switch_to_path_bar (GtkFileChooserDefault *impl);
404
405 static void stop_loading_and_clear_list_model (GtkFileChooserDefault *impl,
406                                                gboolean remove_from_treeview);
407 static void     search_stop_searching        (GtkFileChooserDefault *impl,
408                                               gboolean               remove_query);
409 static void     search_clear_model           (GtkFileChooserDefault *impl, 
410                                               gboolean               remove_from_treeview);
411 static gboolean search_should_respond        (GtkFileChooserDefault *impl);
412 static void     search_switch_to_browse_mode (GtkFileChooserDefault *impl);
413 static GSList  *search_get_selected_files    (GtkFileChooserDefault *impl);
414 static void     search_entry_activate_cb     (GtkEntry              *entry, 
415                                               gpointer               data);
416 static void     settings_load                (GtkFileChooserDefault *impl);
417
418 static void     recent_stop_loading          (GtkFileChooserDefault *impl);
419 static void     recent_clear_model           (GtkFileChooserDefault *impl,
420                                               gboolean               remove_from_treeview);
421 static gboolean recent_should_respond        (GtkFileChooserDefault *impl);
422 static void     recent_switch_to_browse_mode (GtkFileChooserDefault *impl);
423 static GSList * recent_get_selected_files    (GtkFileChooserDefault *impl);
424 static void     set_file_system_backend      (GtkFileChooserDefault *impl);
425 static void     unset_file_system_backend    (GtkFileChooserDefault *impl);
426
427
428
429 \f
430
431 /* Drag and drop interface declarations */
432
433 typedef struct {
434   GtkTreeModelFilter parent;
435
436   GtkFileChooserDefault *impl;
437 } ShortcutsPaneModelFilter;
438
439 typedef struct {
440   GtkTreeModelFilterClass parent_class;
441 } ShortcutsPaneModelFilterClass;
442
443 #define SHORTCUTS_PANE_MODEL_FILTER_TYPE (_shortcuts_pane_model_filter_get_type ())
444 #define SHORTCUTS_PANE_MODEL_FILTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SHORTCUTS_PANE_MODEL_FILTER_TYPE, ShortcutsPaneModelFilter))
445
446 static void shortcuts_pane_model_filter_drag_source_iface_init (GtkTreeDragSourceIface *iface);
447
448 G_DEFINE_TYPE_WITH_CODE (ShortcutsPaneModelFilter,
449                          _shortcuts_pane_model_filter,
450                          GTK_TYPE_TREE_MODEL_FILTER,
451                          G_IMPLEMENT_INTERFACE (GTK_TYPE_TREE_DRAG_SOURCE,
452                                                 shortcuts_pane_model_filter_drag_source_iface_init))
453
454 static GtkTreeModel *shortcuts_pane_model_filter_new (GtkFileChooserDefault *impl,
455                                                       GtkTreeModel          *child_model,
456                                                       GtkTreePath           *root);
457
458 \f
459
460 G_DEFINE_TYPE_WITH_CODE (GtkFileChooserDefault, _gtk_file_chooser_default, GTK_TYPE_BOX,
461                          G_IMPLEMENT_INTERFACE (GTK_TYPE_FILE_CHOOSER,
462                                                 gtk_file_chooser_default_iface_init)
463                          G_IMPLEMENT_INTERFACE (GTK_TYPE_FILE_CHOOSER_EMBED,
464                                                 gtk_file_chooser_embed_default_iface_init));                                            
465
466
467 static void
468 add_normal_and_shifted_binding (GtkBindingSet  *binding_set,
469                                 guint           keyval,
470                                 GdkModifierType modifiers,
471                                 const gchar    *signal_name)
472 {
473   gtk_binding_entry_add_signal (binding_set,
474                                 keyval, modifiers,
475                                 signal_name, 0);
476
477   gtk_binding_entry_add_signal (binding_set,
478                                 keyval, modifiers | GDK_SHIFT_MASK,
479                                 signal_name, 0);
480 }
481
482 static void
483 _gtk_file_chooser_default_class_init (GtkFileChooserDefaultClass *class)
484 {
485   static const guint quick_bookmark_keyvals[10] = {
486     GDK_KEY_1, GDK_KEY_2, GDK_KEY_3, GDK_KEY_4, GDK_KEY_5, GDK_KEY_6, GDK_KEY_7, GDK_KEY_8, GDK_KEY_9, GDK_KEY_0
487   };
488   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
489   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
490   GtkBindingSet *binding_set;
491   int i;
492
493   gobject_class->finalize = gtk_file_chooser_default_finalize;
494   gobject_class->constructor = gtk_file_chooser_default_constructor;
495   gobject_class->set_property = gtk_file_chooser_default_set_property;
496   gobject_class->get_property = gtk_file_chooser_default_get_property;
497   gobject_class->dispose = gtk_file_chooser_default_dispose;
498
499   widget_class->show_all = gtk_file_chooser_default_show_all;
500   widget_class->realize = gtk_file_chooser_default_realize;
501   widget_class->map = gtk_file_chooser_default_map;
502   widget_class->unmap = gtk_file_chooser_default_unmap;
503   widget_class->hierarchy_changed = gtk_file_chooser_default_hierarchy_changed;
504   widget_class->style_updated = gtk_file_chooser_default_style_updated;
505   widget_class->screen_changed = gtk_file_chooser_default_screen_changed;
506   widget_class->size_allocate = gtk_file_chooser_default_size_allocate;
507
508   signals[LOCATION_POPUP] =
509     g_signal_new_class_handler (I_("location-popup"),
510                                 G_OBJECT_CLASS_TYPE (class),
511                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
512                                 G_CALLBACK (location_popup_handler),
513                                 NULL, NULL,
514                                 _gtk_marshal_VOID__STRING,
515                                 G_TYPE_NONE, 1, G_TYPE_STRING);
516
517   signals[LOCATION_POPUP_ON_PASTE] =
518     g_signal_new_class_handler (I_("location-popup-on-paste"),
519                                 G_OBJECT_CLASS_TYPE (class),
520                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
521                                 G_CALLBACK (location_popup_on_paste_handler),
522                                 NULL, NULL,
523                                 _gtk_marshal_VOID__VOID,
524                                 G_TYPE_NONE, 0);
525
526   signals[LOCATION_TOGGLE_POPUP] =
527     g_signal_new_class_handler (I_("location-toggle-popup"),
528                                 G_OBJECT_CLASS_TYPE (class),
529                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
530                                 G_CALLBACK (location_toggle_popup_handler),
531                                 NULL, NULL,
532                                 _gtk_marshal_VOID__VOID,
533                                 G_TYPE_NONE, 0);
534
535   signals[UP_FOLDER] =
536     g_signal_new_class_handler (I_("up-folder"),
537                                 G_OBJECT_CLASS_TYPE (class),
538                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
539                                 G_CALLBACK (up_folder_handler),
540                                 NULL, NULL,
541                                 _gtk_marshal_VOID__VOID,
542                                 G_TYPE_NONE, 0);
543
544   signals[DOWN_FOLDER] =
545     g_signal_new_class_handler (I_("down-folder"),
546                                 G_OBJECT_CLASS_TYPE (class),
547                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
548                                 G_CALLBACK (down_folder_handler),
549                                 NULL, NULL,
550                                 _gtk_marshal_VOID__VOID,
551                                 G_TYPE_NONE, 0);
552
553   signals[HOME_FOLDER] =
554     g_signal_new_class_handler (I_("home-folder"),
555                                 G_OBJECT_CLASS_TYPE (class),
556                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
557                                 G_CALLBACK (home_folder_handler),
558                                 NULL, NULL,
559                                 _gtk_marshal_VOID__VOID,
560                                 G_TYPE_NONE, 0);
561
562   signals[DESKTOP_FOLDER] =
563     g_signal_new_class_handler (I_("desktop-folder"),
564                                 G_OBJECT_CLASS_TYPE (class),
565                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
566                                 G_CALLBACK (desktop_folder_handler),
567                                 NULL, NULL,
568                                 _gtk_marshal_VOID__VOID,
569                                 G_TYPE_NONE, 0);
570
571   signals[QUICK_BOOKMARK] =
572     g_signal_new_class_handler (I_("quick-bookmark"),
573                                 G_OBJECT_CLASS_TYPE (class),
574                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
575                                 G_CALLBACK (quick_bookmark_handler),
576                                 NULL, NULL,
577                                 _gtk_marshal_VOID__INT,
578                                 G_TYPE_NONE, 1, G_TYPE_INT);
579
580   signals[SHOW_HIDDEN] =
581     g_signal_new_class_handler (I_("show-hidden"),
582                                 G_OBJECT_CLASS_TYPE (class),
583                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
584                                 G_CALLBACK (show_hidden_handler),
585                                 NULL, NULL,
586                                 _gtk_marshal_VOID__VOID,
587                                 G_TYPE_NONE, 0);
588
589   signals[SEARCH_SHORTCUT] =
590     g_signal_new_class_handler (I_("search-shortcut"),
591                                 G_OBJECT_CLASS_TYPE (class),
592                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
593                                 G_CALLBACK (search_shortcut_handler),
594                                 NULL, NULL,
595                                 _gtk_marshal_VOID__VOID,
596                                 G_TYPE_NONE, 0);
597
598   signals[RECENT_SHORTCUT] =
599     g_signal_new_class_handler (I_("recent-shortcut"),
600                                 G_OBJECT_CLASS_TYPE (class),
601                                 G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
602                                 G_CALLBACK (recent_shortcut_handler),
603                                 NULL, NULL,
604                                 _gtk_marshal_VOID__VOID,
605                                 G_TYPE_NONE, 0);
606
607   binding_set = gtk_binding_set_by_class (class);
608
609   gtk_binding_entry_add_signal (binding_set,
610                                 GDK_KEY_l, GDK_CONTROL_MASK,
611                                 "location-toggle-popup",
612                                 0);
613
614   gtk_binding_entry_add_signal (binding_set,
615                                 GDK_KEY_slash, 0,
616                                 "location-popup",
617                                 1, G_TYPE_STRING, "/");
618   gtk_binding_entry_add_signal (binding_set,
619                                 GDK_KEY_KP_Divide, 0,
620                                 "location-popup",
621                                 1, G_TYPE_STRING, "/");
622
623 #ifdef G_OS_UNIX
624   gtk_binding_entry_add_signal (binding_set,
625                                 GDK_KEY_asciitilde, 0,
626                                 "location-popup",
627                                 1, G_TYPE_STRING, "~");
628 #endif
629
630   gtk_binding_entry_add_signal (binding_set,
631                                 GDK_KEY_v, GDK_CONTROL_MASK,
632                                 "location-popup-on-paste",
633                                 0);
634   gtk_binding_entry_add_signal (binding_set,
635                                 GDK_KEY_BackSpace, 0,
636                                 "up-folder",
637                                 0);
638
639   add_normal_and_shifted_binding (binding_set,
640                                   GDK_KEY_Up, GDK_MOD1_MASK,
641                                   "up-folder");
642
643   add_normal_and_shifted_binding (binding_set,
644                                   GDK_KEY_KP_Up, GDK_MOD1_MASK,
645                                   "up-folder");
646
647   add_normal_and_shifted_binding (binding_set,
648                                   GDK_KEY_Down, GDK_MOD1_MASK,
649                                   "down-folder");
650   add_normal_and_shifted_binding (binding_set,
651                                   GDK_KEY_KP_Down, GDK_MOD1_MASK,
652                                   "down-folder");
653
654   gtk_binding_entry_add_signal (binding_set,
655                                 GDK_KEY_Home, GDK_MOD1_MASK,
656                                 "home-folder",
657                                 0);
658   gtk_binding_entry_add_signal (binding_set,
659                                 GDK_KEY_KP_Home, GDK_MOD1_MASK,
660                                 "home-folder",
661                                 0);
662   gtk_binding_entry_add_signal (binding_set,
663                                 GDK_KEY_d, GDK_MOD1_MASK,
664                                 "desktop-folder",
665                                 0);
666   gtk_binding_entry_add_signal (binding_set,
667                                 GDK_KEY_h, GDK_CONTROL_MASK,
668                                 "show-hidden",
669                                 0);
670   gtk_binding_entry_add_signal (binding_set,
671                                 GDK_KEY_s, GDK_MOD1_MASK,
672                                 "search-shortcut",
673                                 0);
674   gtk_binding_entry_add_signal (binding_set,
675                                 GDK_KEY_r, GDK_MOD1_MASK,
676                                 "recent-shortcut",
677                                 0);
678
679   for (i = 0; i < 10; i++)
680     gtk_binding_entry_add_signal (binding_set,
681                                   quick_bookmark_keyvals[i], GDK_MOD1_MASK,
682                                   "quick-bookmark",
683                                   1, G_TYPE_INT, i);
684
685   _gtk_file_chooser_install_properties (gobject_class);
686 }
687
688 static void
689 gtk_file_chooser_default_iface_init (GtkFileChooserIface *iface)
690 {
691   iface->select_file = gtk_file_chooser_default_select_file;
692   iface->unselect_file = gtk_file_chooser_default_unselect_file;
693   iface->select_all = gtk_file_chooser_default_select_all;
694   iface->unselect_all = gtk_file_chooser_default_unselect_all;
695   iface->get_files = gtk_file_chooser_default_get_files;
696   iface->get_preview_file = gtk_file_chooser_default_get_preview_file;
697   iface->get_file_system = gtk_file_chooser_default_get_file_system;
698   iface->set_current_folder = gtk_file_chooser_default_set_current_folder;
699   iface->get_current_folder = gtk_file_chooser_default_get_current_folder;
700   iface->set_current_name = gtk_file_chooser_default_set_current_name;
701   iface->add_filter = gtk_file_chooser_default_add_filter;
702   iface->remove_filter = gtk_file_chooser_default_remove_filter;
703   iface->list_filters = gtk_file_chooser_default_list_filters;
704   iface->add_shortcut_folder = gtk_file_chooser_default_add_shortcut_folder;
705   iface->remove_shortcut_folder = gtk_file_chooser_default_remove_shortcut_folder;
706   iface->list_shortcut_folders = gtk_file_chooser_default_list_shortcut_folders;
707 }
708
709 static void
710 gtk_file_chooser_embed_default_iface_init (GtkFileChooserEmbedIface *iface)
711 {
712   iface->get_default_size = gtk_file_chooser_default_get_default_size;
713   iface->should_respond = gtk_file_chooser_default_should_respond;
714   iface->initial_focus = gtk_file_chooser_default_initial_focus;
715 }
716
717 static void
718 _gtk_file_chooser_default_init (GtkFileChooserDefault *impl)
719 {
720   profile_start ("start", NULL);
721 #ifdef PROFILE_FILE_CHOOSER
722   access ("MARK: *** CREATE FILE CHOOSER", F_OK);
723 #endif
724   impl->local_only = TRUE;
725   impl->preview_widget_active = TRUE;
726   impl->use_preview_label = TRUE;
727   impl->select_multiple = FALSE;
728   impl->show_hidden = FALSE;
729   impl->show_size_column = TRUE;
730   impl->icon_size = FALLBACK_ICON_SIZE;
731   impl->load_state = LOAD_EMPTY;
732   impl->reload_state = RELOAD_EMPTY;
733   impl->pending_select_files = NULL;
734   impl->location_mode = LOCATION_MODE_PATH_BAR;
735   impl->operation_mode = OPERATION_MODE_BROWSE;
736   impl->sort_column = MODEL_COL_NAME;
737   impl->sort_order = GTK_SORT_ASCENDING;
738   impl->recent_manager = gtk_recent_manager_get_default ();
739   impl->create_folders = TRUE;
740
741   gtk_orientable_set_orientation (GTK_ORIENTABLE (impl),
742                                   GTK_ORIENTATION_VERTICAL);
743   gtk_box_set_spacing (GTK_BOX (impl), 12);
744
745   set_file_system_backend (impl);
746
747   profile_end ("end", NULL);
748 }
749
750 /* Frees the data columns for the specified iter in the shortcuts model*/
751 static void
752 shortcuts_free_row_data (GtkFileChooserDefault *impl,
753                          GtkTreeIter           *iter)
754 {
755   gpointer col_data;
756   ShortcutType shortcut_type;
757   GCancellable *cancellable;
758
759   gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), iter,
760                       SHORTCUTS_COL_DATA, &col_data,
761                       SHORTCUTS_COL_TYPE, &shortcut_type,
762                       SHORTCUTS_COL_CANCELLABLE, &cancellable,
763                       -1);
764
765   if (cancellable)
766     {
767       g_cancellable_cancel (cancellable);
768       g_object_unref (cancellable);
769     }
770
771   if (!(shortcut_type == SHORTCUT_TYPE_FILE || 
772         shortcut_type == SHORTCUT_TYPE_VOLUME) ||
773       !col_data)
774     return;
775
776   if (shortcut_type == SHORTCUT_TYPE_VOLUME)
777     {
778       GtkFileSystemVolume *volume;
779
780       volume = col_data;
781       _gtk_file_system_volume_unref (volume);
782     }
783   if (shortcut_type == SHORTCUT_TYPE_FILE)
784     {
785       GFile *file;
786
787       file = col_data;
788       g_object_unref (file);
789     }
790 }
791
792 /* Frees all the data columns in the shortcuts model */
793 static void
794 shortcuts_free (GtkFileChooserDefault *impl)
795 {
796   GtkTreeIter iter;
797
798   if (!impl->shortcuts_model)
799     return;
800
801   if (gtk_tree_model_get_iter_first (GTK_TREE_MODEL (impl->shortcuts_model), &iter))
802     do
803       {
804         shortcuts_free_row_data (impl, &iter);
805       }
806     while (gtk_tree_model_iter_next (GTK_TREE_MODEL (impl->shortcuts_model), &iter));
807
808   g_object_unref (impl->shortcuts_model);
809   impl->shortcuts_model = NULL;
810 }
811
812 static void
813 pending_select_files_free (GtkFileChooserDefault *impl)
814 {
815   g_slist_foreach (impl->pending_select_files, (GFunc) g_object_unref, NULL);
816   g_slist_free (impl->pending_select_files);
817   impl->pending_select_files = NULL;
818 }
819
820 static void
821 pending_select_files_add (GtkFileChooserDefault *impl,
822                           GFile                 *file)
823 {
824   impl->pending_select_files =
825     g_slist_prepend (impl->pending_select_files, g_object_ref (file));
826 }
827
828 static void
829 gtk_file_chooser_default_finalize (GObject *object)
830 {
831   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (object);
832   GSList *l;
833
834   unset_file_system_backend (impl);
835
836   if (impl->shortcuts_pane_filter_model)
837     g_object_unref (impl->shortcuts_pane_filter_model);
838
839   shortcuts_free (impl);
840
841   g_free (impl->browse_files_last_selected_name);
842
843   for (l = impl->filters; l; l = l->next)
844     {
845       GtkFileFilter *filter;
846
847       filter = GTK_FILE_FILTER (l->data);
848       g_object_unref (filter);
849     }
850   g_slist_free (impl->filters);
851
852   if (impl->current_filter)
853     g_object_unref (impl->current_filter);
854
855   if (impl->current_volume_file)
856     g_object_unref (impl->current_volume_file);
857
858   if (impl->current_folder)
859     g_object_unref (impl->current_folder);
860
861   if (impl->preview_file)
862     g_object_unref (impl->preview_file);
863
864   if (impl->browse_path_bar_size_group)
865     g_object_unref (impl->browse_path_bar_size_group);
866
867   /* Free all the Models we have */
868   stop_loading_and_clear_list_model (impl, FALSE);
869   search_clear_model (impl, FALSE);
870   recent_clear_model (impl, FALSE);
871
872   /* stopping the load above should have cleared this */
873   g_assert (impl->load_timeout_id == 0);
874
875   g_free (impl->preview_display_name);
876
877   g_free (impl->edited_new_text);
878
879   G_OBJECT_CLASS (_gtk_file_chooser_default_parent_class)->finalize (object);
880 }
881
882 /* Shows an error dialog set as transient for the specified window */
883 static void
884 error_message_with_parent (GtkWindow  *parent,
885                            const char *msg,
886                            const char *detail)
887 {
888   GtkWidget *dialog;
889
890   dialog = gtk_message_dialog_new (parent,
891                                    GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
892                                    GTK_MESSAGE_ERROR,
893                                    GTK_BUTTONS_OK,
894                                    "%s",
895                                    msg);
896   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
897                                             "%s", detail);
898
899   if (parent && gtk_window_has_group (parent))
900     gtk_window_group_add_window (gtk_window_get_group (parent),
901                                  GTK_WINDOW (dialog));
902
903   gtk_dialog_run (GTK_DIALOG (dialog));
904   gtk_widget_destroy (dialog);
905 }
906
907 /* Returns a toplevel GtkWindow, or NULL if none */
908 static GtkWindow *
909 get_toplevel (GtkWidget *widget)
910 {
911   GtkWidget *toplevel;
912
913   toplevel = gtk_widget_get_toplevel (widget);
914   if (!gtk_widget_is_toplevel (toplevel))
915     return NULL;
916   else
917     return GTK_WINDOW (toplevel);
918 }
919
920 /* Shows an error dialog for the file chooser */
921 static void
922 error_message (GtkFileChooserDefault *impl,
923                const char            *msg,
924                const char            *detail)
925 {
926   error_message_with_parent (get_toplevel (GTK_WIDGET (impl)), msg, detail);
927 }
928
929 /* Shows a simple error dialog relative to a path.  Frees the GError as well. */
930 static void
931 error_dialog (GtkFileChooserDefault *impl,
932               const char            *msg,
933               GFile                 *file,
934               GError                *error)
935 {
936   if (error)
937     {
938       char *uri = NULL;
939       char *text;
940
941       if (file)
942         uri = g_file_get_uri (file);
943       text = g_strdup_printf (msg, uri);
944       error_message (impl, text, error->message);
945       g_free (text);
946       g_free (uri);
947       g_error_free (error);
948     }
949 }
950
951 /* Displays an error message about not being able to get information for a file.
952  * Frees the GError as well.
953  */
954 static void
955 error_getting_info_dialog (GtkFileChooserDefault *impl,
956                            GFile                 *file,
957                            GError                *error)
958 {
959   error_dialog (impl,
960                 _("Could not retrieve information about the file"),
961                 file, error);
962 }
963
964 /* Shows an error dialog about not being able to add a bookmark */
965 static void
966 error_adding_bookmark_dialog (GtkFileChooserDefault *impl,
967                               GFile                 *file,
968                               GError                *error)
969 {
970   error_dialog (impl,
971                 _("Could not add a bookmark"),
972                 file, error);
973 }
974
975 /* Shows an error dialog about not being able to remove a bookmark */
976 static void
977 error_removing_bookmark_dialog (GtkFileChooserDefault *impl,
978                                 GFile                 *file,
979                                 GError                *error)
980 {
981   error_dialog (impl,
982                 _("Could not remove bookmark"),
983                 file, error);
984 }
985
986 /* Shows an error dialog about not being able to create a folder */
987 static void
988 error_creating_folder_dialog (GtkFileChooserDefault *impl,
989                               GFile                 *file,
990                               GError                *error)
991 {
992   error_dialog (impl, 
993                 _("The folder could not be created"), 
994                 file, error);
995 }
996
997 /* Shows an error about not being able to create a folder because a file with
998  * the same name is already there.
999  */
1000 static void
1001 error_creating_folder_over_existing_file_dialog (GtkFileChooserDefault *impl,
1002                                                  GFile                 *file,
1003                                                  GError                *error)
1004 {
1005   error_dialog (impl,
1006                 _("The folder could not be created, as a file with the same "
1007                   "name already exists.  Try using a different name for the "
1008                   "folder, or rename the file first."),
1009                 file, error);
1010 }
1011
1012 static void
1013 error_with_file_under_nonfolder (GtkFileChooserDefault *impl,
1014                                  GFile *parent_file)
1015 {
1016   GError *error;
1017
1018   error = NULL;
1019   g_set_error_literal (&error, G_IO_ERROR, G_IO_ERROR_NOT_DIRECTORY,
1020                        _("You need to choose a valid filename."));
1021
1022   error_dialog (impl,
1023                 _("Cannot create a file under %s as it is not a folder"),
1024                 parent_file, error);
1025 }
1026
1027 /* Shows an error about not being able to select a folder because a file with
1028  * the same name is already there.
1029  */
1030 static void
1031 error_selecting_folder_over_existing_file_dialog (GtkFileChooserDefault *impl,
1032                                                   GFile                 *file)
1033 {
1034   error_dialog (impl,
1035                 _("You may only select folders.  The item that you selected is not a folder; "
1036                   "try using a different item."),
1037                 file, NULL);
1038 }
1039
1040 /* Shows an error dialog about not being able to create a filename */
1041 static void
1042 error_building_filename_dialog (GtkFileChooserDefault *impl,
1043                                 GError                *error)
1044 {
1045   error_dialog (impl, _("Invalid file name"), 
1046                 NULL, error);
1047 }
1048
1049 /* Shows an error dialog when we cannot switch to a folder */
1050 static void
1051 error_changing_folder_dialog (GtkFileChooserDefault *impl,
1052                               GFile                 *file,
1053                               GError                *error)
1054 {
1055   error_dialog (impl, _("The folder contents could not be displayed"),
1056                 file, error);
1057 }
1058
1059 /* Changes folders, displaying an error dialog if this fails */
1060 static gboolean
1061 change_folder_and_display_error (GtkFileChooserDefault *impl,
1062                                  GFile                 *file,
1063                                  gboolean               clear_entry)
1064 {
1065   GError *error;
1066   gboolean result;
1067
1068   g_return_val_if_fail (G_IS_FILE (file), FALSE);
1069
1070   /* We copy the path because of this case:
1071    *
1072    * list_row_activated()
1073    *   fetches path from model; path belongs to the model (*)
1074    *   calls change_folder_and_display_error()
1075    *     calls gtk_file_chooser_set_current_folder_file()
1076    *       changing folders fails, sets model to NULL, thus freeing the path in (*)
1077    */
1078
1079   error = NULL;
1080   result = gtk_file_chooser_default_update_current_folder (GTK_FILE_CHOOSER (impl), file, TRUE, clear_entry, &error);
1081
1082   if (!result)
1083     error_changing_folder_dialog (impl, file, error);
1084
1085   return result;
1086 }
1087
1088 static void
1089 emit_default_size_changed (GtkFileChooserDefault *impl)
1090 {
1091   profile_msg ("    emit default-size-changed start", NULL);
1092   g_signal_emit_by_name (impl, "default-size-changed");
1093   profile_msg ("    emit default-size-changed end", NULL);
1094 }
1095
1096 static void
1097 update_preview_widget_visibility (GtkFileChooserDefault *impl)
1098 {
1099   if (impl->use_preview_label)
1100     {
1101       if (!impl->preview_label)
1102         {
1103           impl->preview_label = gtk_label_new (impl->preview_display_name);
1104           gtk_box_pack_start (GTK_BOX (impl->preview_box), impl->preview_label, FALSE, FALSE, 0);
1105           gtk_box_reorder_child (GTK_BOX (impl->preview_box), impl->preview_label, 0);
1106           gtk_label_set_ellipsize (GTK_LABEL (impl->preview_label), PANGO_ELLIPSIZE_MIDDLE);
1107           gtk_widget_show (impl->preview_label);
1108         }
1109     }
1110   else
1111     {
1112       if (impl->preview_label)
1113         {
1114           gtk_widget_destroy (impl->preview_label);
1115           impl->preview_label = NULL;
1116         }
1117     }
1118
1119   if (impl->preview_widget_active && impl->preview_widget)
1120     gtk_widget_show (impl->preview_box);
1121   else
1122     gtk_widget_hide (impl->preview_box);
1123
1124   if (!gtk_widget_get_mapped (GTK_WIDGET (impl)))
1125     emit_default_size_changed (impl);
1126 }
1127
1128 static void
1129 set_preview_widget (GtkFileChooserDefault *impl,
1130                     GtkWidget             *preview_widget)
1131 {
1132   if (preview_widget == impl->preview_widget)
1133     return;
1134
1135   if (impl->preview_widget)
1136     gtk_container_remove (GTK_CONTAINER (impl->preview_box),
1137                           impl->preview_widget);
1138
1139   impl->preview_widget = preview_widget;
1140   if (impl->preview_widget)
1141     {
1142       gtk_widget_show (impl->preview_widget);
1143       gtk_box_pack_start (GTK_BOX (impl->preview_box), impl->preview_widget, TRUE, TRUE, 0);
1144       gtk_box_reorder_child (GTK_BOX (impl->preview_box),
1145                              impl->preview_widget,
1146                              (impl->use_preview_label && impl->preview_label) ? 1 : 0);
1147     }
1148
1149   update_preview_widget_visibility (impl);
1150 }
1151
1152 /* Renders a "Search" icon at an appropriate size for a tree view */
1153 static GdkPixbuf *
1154 render_search_icon (GtkFileChooserDefault *impl)
1155 {
1156   return gtk_widget_render_icon_pixbuf (GTK_WIDGET (impl), GTK_STOCK_FIND, GTK_ICON_SIZE_MENU);
1157 }
1158
1159 static GdkPixbuf *
1160 render_recent_icon (GtkFileChooserDefault *impl)
1161 {
1162   GtkIconTheme *theme;
1163   GdkPixbuf *retval;
1164
1165   if (gtk_widget_has_screen (GTK_WIDGET (impl)))
1166     theme = gtk_icon_theme_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (impl)));
1167   else
1168     theme = gtk_icon_theme_get_default ();
1169
1170   retval = gtk_icon_theme_load_icon (theme, "document-open-recent",
1171                                      impl->icon_size, 0,
1172                                      NULL);
1173
1174   /* fallback */
1175   if (!retval)
1176     retval = gtk_widget_render_icon_pixbuf (GTK_WIDGET (impl), GTK_STOCK_FILE, GTK_ICON_SIZE_MENU);
1177
1178   return retval;
1179 }
1180
1181
1182 /* Re-reads all the icons for the shortcuts, used when the theme changes */
1183 struct ReloadIconsData
1184 {
1185   GtkFileChooserDefault *impl;
1186   GtkTreeRowReference *row_ref;
1187 };
1188
1189 static void
1190 shortcuts_reload_icons_get_info_cb (GCancellable *cancellable,
1191                                     GFileInfo    *info,
1192                                     const GError *error,
1193                                     gpointer      user_data)
1194 {
1195   GdkPixbuf *pixbuf;
1196   GtkTreeIter iter;
1197   GtkTreePath *path;
1198   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
1199   struct ReloadIconsData *data = user_data;
1200
1201   if (!g_slist_find (data->impl->reload_icon_cancellables, cancellable))
1202     goto out;
1203
1204   data->impl->reload_icon_cancellables = g_slist_remove (data->impl->reload_icon_cancellables, cancellable);
1205
1206   if (cancelled || error)
1207     goto out;
1208
1209   pixbuf = _gtk_file_info_render_icon (info, GTK_WIDGET (data->impl), data->impl->icon_size);
1210
1211   path = gtk_tree_row_reference_get_path (data->row_ref);
1212   if (path)
1213     {
1214       gtk_tree_model_get_iter (GTK_TREE_MODEL (data->impl->shortcuts_model), &iter, path);
1215       gtk_list_store_set (data->impl->shortcuts_model, &iter,
1216                           SHORTCUTS_COL_PIXBUF, pixbuf,
1217                           -1);
1218       gtk_tree_path_free (path);
1219     }
1220
1221   if (pixbuf)
1222     g_object_unref (pixbuf);
1223
1224 out:
1225   gtk_tree_row_reference_free (data->row_ref);
1226   g_object_unref (data->impl);
1227   g_free (data);
1228
1229   g_object_unref (cancellable);
1230 }
1231
1232 static void
1233 shortcuts_reload_icons (GtkFileChooserDefault *impl)
1234 {
1235   GSList *l;
1236   GtkTreeIter iter;
1237
1238   profile_start ("start", NULL);
1239
1240   if (!gtk_tree_model_get_iter_first (GTK_TREE_MODEL (impl->shortcuts_model), &iter))
1241     goto out;
1242
1243   for (l = impl->reload_icon_cancellables; l; l = l->next)
1244     {
1245       GCancellable *cancellable = G_CANCELLABLE (l->data);
1246       g_cancellable_cancel (cancellable);
1247     }
1248   g_slist_free (impl->reload_icon_cancellables);
1249   impl->reload_icon_cancellables = NULL;
1250
1251   do
1252     {
1253       gpointer data;
1254       ShortcutType shortcut_type;
1255       gboolean pixbuf_visible;
1256       GdkPixbuf *pixbuf;
1257
1258       gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
1259                           SHORTCUTS_COL_DATA, &data,
1260                           SHORTCUTS_COL_TYPE, &shortcut_type,
1261                           SHORTCUTS_COL_PIXBUF_VISIBLE, &pixbuf_visible,
1262                           -1);
1263
1264       pixbuf = NULL;
1265       if (pixbuf_visible)
1266         {
1267           if (shortcut_type == SHORTCUT_TYPE_VOLUME)
1268             {
1269               GtkFileSystemVolume *volume;
1270
1271               volume = data;
1272               pixbuf = _gtk_file_system_volume_render_icon (volume, GTK_WIDGET (impl),
1273                                                             impl->icon_size, NULL);
1274             }
1275           else if (shortcut_type == SHORTCUT_TYPE_FILE)
1276             {
1277               if (g_file_is_native (G_FILE (data)))
1278                 {
1279                   GFile *file;
1280                   struct ReloadIconsData *info;
1281                   GtkTreePath *tree_path;
1282                   GCancellable *cancellable;
1283
1284                   file = data;
1285
1286                   info = g_new0 (struct ReloadIconsData, 1);
1287                   info->impl = g_object_ref (impl);
1288                   tree_path = gtk_tree_model_get_path (GTK_TREE_MODEL (impl->shortcuts_model), &iter);
1289                   info->row_ref = gtk_tree_row_reference_new (GTK_TREE_MODEL (impl->shortcuts_model), tree_path);
1290                   gtk_tree_path_free (tree_path);
1291
1292                   cancellable = _gtk_file_system_get_info (impl->file_system, file,
1293                                                            "standard::icon",
1294                                                            shortcuts_reload_icons_get_info_cb,
1295                                                            info);
1296                   impl->reload_icon_cancellables = g_slist_append (impl->reload_icon_cancellables, cancellable);
1297                 }
1298               else
1299                 {
1300                   GtkIconTheme *icon_theme;
1301
1302                   /* Don't call get_info for remote paths to avoid latency and
1303                    * auth dialogs.
1304                    * If we switch to a better bookmarks file format (XBEL), we
1305                    * should use mime info to get a better icon.
1306                    */
1307                   icon_theme = gtk_icon_theme_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (impl)));
1308                   pixbuf = gtk_icon_theme_load_icon (icon_theme, "folder-remote", 
1309                                                      impl->icon_size, 0, NULL);
1310                 }
1311             }
1312           else if (shortcut_type == SHORTCUT_TYPE_SEARCH)
1313             {
1314               pixbuf = render_search_icon (impl);
1315             }
1316           else if (shortcut_type == SHORTCUT_TYPE_RECENT)
1317             {
1318               pixbuf = render_recent_icon (impl);
1319             }
1320
1321           gtk_list_store_set (impl->shortcuts_model, &iter,
1322                               SHORTCUTS_COL_PIXBUF, pixbuf,
1323                               -1);
1324
1325           if (pixbuf)
1326             g_object_unref (pixbuf);
1327
1328         }
1329     }
1330   while (gtk_tree_model_iter_next (GTK_TREE_MODEL (impl->shortcuts_model),&iter));
1331
1332  out:
1333
1334   profile_end ("end", NULL);
1335 }
1336
1337 static void 
1338 shortcuts_find_folder (GtkFileChooserDefault *impl,
1339                        GFile                 *folder)
1340 {
1341   GtkTreeSelection *selection;
1342   int pos;
1343   GtkTreePath *path;
1344
1345   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view));
1346
1347   g_assert (folder != NULL);
1348   pos = shortcut_find_position (impl, folder);
1349   if (pos == -1)
1350     {
1351       gtk_tree_selection_unselect_all (selection);
1352       return;
1353     }
1354
1355   path = gtk_tree_path_new_from_indices (pos, -1);
1356   gtk_tree_selection_select_path (selection, path);
1357   gtk_tree_path_free (path);
1358 }
1359
1360 /* If a shortcut corresponds to the current folder, selects it */
1361 static void
1362 shortcuts_find_current_folder (GtkFileChooserDefault *impl)
1363 {
1364   shortcuts_find_folder (impl, impl->current_folder);
1365 }
1366
1367 /* Removes the specified number of rows from the shortcuts list */
1368 static void
1369 shortcuts_remove_rows (GtkFileChooserDefault *impl,
1370                        int                    start_row,
1371                        int                    n_rows)
1372 {
1373   GtkTreePath *path;
1374
1375   path = gtk_tree_path_new_from_indices (start_row, -1);
1376
1377   for (; n_rows; n_rows--)
1378     {
1379       GtkTreeIter iter;
1380
1381       if (!gtk_tree_model_get_iter (GTK_TREE_MODEL (impl->shortcuts_model), &iter, path))
1382         g_assert_not_reached ();
1383
1384       shortcuts_free_row_data (impl, &iter);
1385       gtk_list_store_remove (impl->shortcuts_model, &iter);
1386     }
1387
1388   gtk_tree_path_free (path);
1389 }
1390
1391 static void
1392 shortcuts_update_count (GtkFileChooserDefault *impl,
1393                         ShortcutsIndex         type,
1394                         gint                   value)
1395 {
1396   switch (type)
1397     {
1398       case SHORTCUTS_HOME:
1399         if (value < 0)
1400           impl->has_home = FALSE;
1401         else
1402           impl->has_home = TRUE;
1403         break;
1404
1405       case SHORTCUTS_DESKTOP:
1406         if (value < 0)
1407           impl->has_desktop = FALSE;
1408         else
1409           impl->has_desktop = TRUE;
1410         break;
1411
1412       case SHORTCUTS_VOLUMES:
1413         impl->num_volumes += value;
1414         break;
1415
1416       case SHORTCUTS_SHORTCUTS:
1417         impl->num_shortcuts += value;
1418         break;
1419
1420       case SHORTCUTS_BOOKMARKS:
1421         impl->num_bookmarks += value;
1422         break;
1423
1424       case SHORTCUTS_CURRENT_FOLDER:
1425         if (value < 0)
1426           impl->shortcuts_current_folder_active = FALSE;
1427         else
1428           impl->shortcuts_current_folder_active = TRUE;
1429         break;
1430
1431       default:
1432         /* nothing */
1433         break;
1434     }
1435 }
1436
1437 struct ShortcutsInsertRequest
1438 {
1439   GtkFileChooserDefault *impl;
1440   GFile *file;
1441   int pos;
1442   char *label_copy;
1443   GtkTreeRowReference *row_ref;
1444   ShortcutsIndex type;
1445   gboolean name_only;
1446   gboolean removable;
1447 };
1448
1449 static void
1450 get_file_info_finished (GCancellable *cancellable,
1451                         GFileInfo    *info,
1452                         const GError *error,
1453                         gpointer      data)
1454 {
1455   gint pos = -1;
1456   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
1457   GdkPixbuf *pixbuf;
1458   GtkTreePath *path;
1459   GtkTreeIter iter;
1460   GCancellable *model_cancellable = NULL;
1461   struct ShortcutsInsertRequest *request = data;
1462
1463   path = gtk_tree_row_reference_get_path (request->row_ref);
1464   if (!path)
1465     /* Handle doesn't exist anymore in the model */
1466     goto out;
1467
1468   pos = gtk_tree_path_get_indices (path)[0];
1469   gtk_tree_model_get_iter (GTK_TREE_MODEL (request->impl->shortcuts_model),
1470                            &iter, path);
1471   gtk_tree_path_free (path);
1472
1473   /* validate cancellable, else goto out */
1474   gtk_tree_model_get (GTK_TREE_MODEL (request->impl->shortcuts_model), &iter,
1475                       SHORTCUTS_COL_CANCELLABLE, &model_cancellable,
1476                       -1);
1477   if (cancellable != model_cancellable)
1478     goto out;
1479
1480   /* set the cancellable to NULL in the model (we unref later on) */
1481   gtk_list_store_set (request->impl->shortcuts_model, &iter,
1482                       SHORTCUTS_COL_CANCELLABLE, NULL,
1483                       -1);
1484
1485   if (cancelled)
1486     goto out;
1487
1488   if (!info)
1489     {
1490       gtk_list_store_remove (request->impl->shortcuts_model, &iter);
1491       shortcuts_update_count (request->impl, request->type, -1);
1492
1493       if (request->type == SHORTCUTS_HOME)
1494         {
1495           GFile *home;
1496
1497           home = g_file_new_for_path (g_get_home_dir ());
1498           error_getting_info_dialog (request->impl, home, g_error_copy (error));
1499           g_object_unref (home);
1500         }
1501       else if (request->type == SHORTCUTS_CURRENT_FOLDER)
1502         {
1503           /* Remove the current folder separator */
1504           gint separator_pos = shortcuts_get_index (request->impl, SHORTCUTS_CURRENT_FOLDER_SEPARATOR);
1505           shortcuts_remove_rows (request->impl, separator_pos, 1);
1506         }
1507
1508       goto out;
1509     }
1510   
1511   if (!request->label_copy)
1512     request->label_copy = g_strdup (g_file_info_get_display_name (info));
1513   pixbuf = _gtk_file_info_render_icon (info, GTK_WIDGET (request->impl),
1514                                        request->impl->icon_size);
1515
1516   gtk_list_store_set (request->impl->shortcuts_model, &iter,
1517                       SHORTCUTS_COL_PIXBUF, pixbuf,
1518                       SHORTCUTS_COL_PIXBUF_VISIBLE, TRUE,
1519                       SHORTCUTS_COL_NAME, request->label_copy,
1520                       SHORTCUTS_COL_TYPE, SHORTCUT_TYPE_FILE,
1521                       SHORTCUTS_COL_REMOVABLE, request->removable,
1522                       -1);
1523
1524   if (request->impl->shortcuts_pane_filter_model)
1525     gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (request->impl->shortcuts_pane_filter_model));
1526
1527   if (pixbuf)
1528     g_object_unref (pixbuf);
1529
1530 out:
1531   g_object_unref (request->impl);
1532   g_object_unref (request->file);
1533   gtk_tree_row_reference_free (request->row_ref);
1534   g_free (request->label_copy);
1535   g_free (request);
1536
1537   if (model_cancellable)
1538     g_object_unref (model_cancellable);
1539 }
1540
1541 /* FIXME: GtkFileSystem needs a function to split a remote path
1542  * into hostname and path components, or maybe just have a 
1543  * gtk_file_system_path_get_display_name().
1544  *
1545  * This function is also used in gtkfilechooserbutton.c
1546  */
1547 gchar *
1548 _gtk_file_chooser_label_for_file (GFile *file)
1549 {
1550   const gchar *path, *start, *end, *p;
1551   gchar *uri, *host, *label;
1552
1553   uri = g_file_get_uri (file);
1554
1555   start = strstr (uri, "://");
1556   if (start)
1557     {
1558       start += 3;
1559       path = strchr (start, '/');
1560       if (path)
1561         end = path;
1562       else
1563         {
1564           end = uri + strlen (uri);
1565           path = "/";
1566         }
1567
1568       /* strip username */
1569       p = strchr (start, '@');
1570       if (p && p < end)
1571         start = p + 1;
1572   
1573       p = strchr (start, ':');
1574       if (p && p < end)
1575         end = p;
1576   
1577       host = g_strndup (start, end - start);
1578   
1579       /* Translators: the first string is a path and the second string 
1580        * is a hostname. Nautilus and the panel contain the same string 
1581        * to translate. 
1582        */
1583       label = g_strdup_printf (_("%1$s on %2$s"), path, host);
1584   
1585       g_free (host);
1586     }
1587   else
1588     {
1589       label = g_strdup (uri);
1590     }
1591   
1592   g_free (uri);
1593
1594   return label;
1595 }
1596
1597 /* Inserts a path in the shortcuts tree, making a copy of it; alternatively,
1598  * inserts a volume.  A position of -1 indicates the end of the tree.
1599  */
1600 static void
1601 shortcuts_insert_file (GtkFileChooserDefault *impl,
1602                        int                    pos,
1603                        ShortcutType           shortcut_type,
1604                        GtkFileSystemVolume   *volume,
1605                        GFile                 *file,
1606                        const char            *label,
1607                        gboolean               removable,
1608                        ShortcutsIndex         type)
1609 {
1610   char *label_copy;
1611   GdkPixbuf *pixbuf = NULL;
1612   gpointer data = NULL;
1613   GtkTreeIter iter;
1614   GtkIconTheme *icon_theme;
1615
1616   profile_start ("start shortcut", NULL);
1617
1618   if (shortcut_type == SHORTCUT_TYPE_VOLUME)
1619     {
1620       data = volume;
1621       label_copy = _gtk_file_system_volume_get_display_name (volume);
1622       pixbuf = _gtk_file_system_volume_render_icon (volume, GTK_WIDGET (impl),
1623                                                     impl->icon_size, NULL);
1624     }
1625   else if (shortcut_type == SHORTCUT_TYPE_FILE)
1626     {
1627       if (g_file_is_native (file))
1628         {
1629           struct ShortcutsInsertRequest *request;
1630           GCancellable *cancellable;
1631           GtkTreePath *p;
1632
1633           request = g_new0 (struct ShortcutsInsertRequest, 1);
1634           request->impl = g_object_ref (impl);
1635           request->file = g_object_ref (file);
1636           request->name_only = TRUE;
1637           request->removable = removable;
1638           request->pos = pos;
1639           request->type = type;
1640           if (label)
1641             request->label_copy = g_strdup (label);
1642
1643           if (pos == -1)
1644             gtk_list_store_append (impl->shortcuts_model, &iter);
1645           else
1646             gtk_list_store_insert (impl->shortcuts_model, &iter, pos);
1647
1648           p = gtk_tree_model_get_path (GTK_TREE_MODEL (impl->shortcuts_model), &iter);
1649           request->row_ref = gtk_tree_row_reference_new (GTK_TREE_MODEL (impl->shortcuts_model), p);
1650           gtk_tree_path_free (p);
1651
1652           cancellable = _gtk_file_system_get_info (request->impl->file_system, request->file,
1653                                                    "standard::is-hidden,standard::is-backup,standard::display-name,standard::icon",
1654                                                    get_file_info_finished, request);
1655
1656           gtk_list_store_set (impl->shortcuts_model, &iter,
1657                               SHORTCUTS_COL_DATA, g_object_ref (file),
1658                               SHORTCUTS_COL_TYPE, SHORTCUT_TYPE_FILE,
1659                               SHORTCUTS_COL_CANCELLABLE, cancellable,
1660                               -1);
1661
1662           shortcuts_update_count (impl, type, 1);
1663
1664           return;
1665         }
1666       else
1667         {
1668           /* Don't call get_info for remote paths to avoid latency and
1669            * auth dialogs.
1670            */
1671           data = g_object_ref (file);
1672           if (label)
1673             label_copy = g_strdup (label);
1674           else
1675             label_copy = _gtk_file_chooser_label_for_file (file);
1676
1677           /* If we switch to a better bookmarks file format (XBEL), we
1678            * should use mime info to get a better icon.
1679            */
1680           icon_theme = gtk_icon_theme_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (impl)));
1681           pixbuf = gtk_icon_theme_load_icon (icon_theme, "folder-remote", 
1682                                              impl->icon_size, 0, NULL);
1683         }
1684     }
1685    else
1686     {
1687       g_assert_not_reached ();
1688
1689       return;
1690     }
1691
1692   if (pos == -1)
1693     gtk_list_store_append (impl->shortcuts_model, &iter);
1694   else
1695     gtk_list_store_insert (impl->shortcuts_model, &iter, pos);
1696
1697   shortcuts_update_count (impl, type, 1);
1698
1699   gtk_list_store_set (impl->shortcuts_model, &iter,
1700                       SHORTCUTS_COL_PIXBUF, pixbuf,
1701                       SHORTCUTS_COL_PIXBUF_VISIBLE, TRUE,
1702                       SHORTCUTS_COL_NAME, label_copy,
1703                       SHORTCUTS_COL_DATA, data,
1704                       SHORTCUTS_COL_TYPE, shortcut_type,
1705                       SHORTCUTS_COL_REMOVABLE, removable,
1706                       SHORTCUTS_COL_CANCELLABLE, NULL,
1707                       -1);
1708
1709   if (impl->shortcuts_pane_filter_model)
1710     gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (impl->shortcuts_pane_filter_model));
1711
1712   g_free (label_copy);
1713
1714   if (pixbuf)
1715     g_object_unref (pixbuf);
1716
1717   profile_end ("end", NULL);
1718 }
1719
1720 static void
1721 shortcuts_append_search (GtkFileChooserDefault *impl)
1722 {
1723   GdkPixbuf *pixbuf;
1724   GtkTreeIter iter;
1725
1726   pixbuf = render_search_icon (impl);
1727
1728   gtk_list_store_append (impl->shortcuts_model, &iter);
1729   gtk_list_store_set (impl->shortcuts_model, &iter,
1730                       SHORTCUTS_COL_PIXBUF, pixbuf,
1731                       SHORTCUTS_COL_PIXBUF_VISIBLE, TRUE,
1732                       SHORTCUTS_COL_NAME, _("Search"),
1733                       SHORTCUTS_COL_DATA, NULL,
1734                       SHORTCUTS_COL_TYPE, SHORTCUT_TYPE_SEARCH,
1735                       SHORTCUTS_COL_REMOVABLE, FALSE,
1736                       -1);
1737
1738   if (pixbuf)
1739     g_object_unref (pixbuf);
1740
1741   impl->has_search = TRUE;
1742 }
1743
1744 static void
1745 shortcuts_append_recent (GtkFileChooserDefault *impl)
1746 {
1747   GdkPixbuf *pixbuf;
1748   GtkTreeIter iter;
1749
1750   pixbuf = render_recent_icon (impl);
1751
1752   gtk_list_store_append (impl->shortcuts_model, &iter);
1753   gtk_list_store_set (impl->shortcuts_model, &iter,
1754                       SHORTCUTS_COL_PIXBUF, pixbuf,
1755                       SHORTCUTS_COL_PIXBUF_VISIBLE, TRUE,
1756                       SHORTCUTS_COL_NAME, _("Recently Used"),
1757                       SHORTCUTS_COL_DATA, NULL,
1758                       SHORTCUTS_COL_TYPE, SHORTCUT_TYPE_RECENT,
1759                       SHORTCUTS_COL_REMOVABLE, FALSE,
1760                       -1);
1761   
1762   if (pixbuf)
1763     g_object_unref (pixbuf);
1764 }
1765
1766 /* Appends an item for the user's home directory to the shortcuts model */
1767 static void
1768 shortcuts_append_home (GtkFileChooserDefault *impl)
1769 {
1770   const char *home_path;
1771   GFile *home;
1772
1773   profile_start ("start", NULL);
1774
1775   home_path = g_get_home_dir ();
1776   if (home_path == NULL)
1777     {
1778       profile_end ("end - no home directory!?", NULL);
1779       return;
1780     }
1781
1782   home = g_file_new_for_path (home_path);
1783   shortcuts_insert_file (impl, -1, SHORTCUT_TYPE_FILE, NULL, home, NULL, FALSE, SHORTCUTS_HOME);
1784   impl->has_home = TRUE;
1785
1786   g_object_unref (home);
1787
1788   profile_end ("end", NULL);
1789 }
1790
1791 /* Appends the ~/Desktop directory to the shortcuts model */
1792 static void
1793 shortcuts_append_desktop (GtkFileChooserDefault *impl)
1794 {
1795   const char *name;
1796   GFile *file;
1797
1798   profile_start ("start", NULL);
1799
1800   name = g_get_user_special_dir (G_USER_DIRECTORY_DESKTOP);
1801   /* "To disable a directory, point it to the homedir."
1802    * See http://freedesktop.org/wiki/Software/xdg-user-dirs
1803    **/
1804   if (!g_strcmp0 (name, g_get_home_dir ()))
1805     {
1806       profile_end ("end", NULL);
1807       return;
1808     }
1809
1810   file = g_file_new_for_path (name);
1811   shortcuts_insert_file (impl, -1, SHORTCUT_TYPE_FILE, NULL, file, _("Desktop"), FALSE, SHORTCUTS_DESKTOP);
1812   impl->has_desktop = TRUE;
1813
1814   /* We do not actually pop up an error dialog if there is no desktop directory
1815    * because some people may really not want to have one.
1816    */
1817
1818   g_object_unref (file);
1819
1820   profile_end ("end", NULL);
1821 }
1822
1823 /* Appends a list of GFile to the shortcuts model; returns how many were inserted */
1824 static int
1825 shortcuts_append_bookmarks (GtkFileChooserDefault *impl,
1826                             GSList                *bookmarks)
1827 {
1828   int start_row;
1829   int num_inserted;
1830   gchar *label;
1831
1832   profile_start ("start", NULL);
1833
1834   start_row = shortcuts_get_index (impl, SHORTCUTS_BOOKMARKS_SEPARATOR) + 1;
1835   num_inserted = 0;
1836
1837   for (; bookmarks; bookmarks = bookmarks->next)
1838     {
1839       GFile *file;
1840
1841       file = bookmarks->data;
1842
1843       if (impl->local_only && !g_file_is_native (file))
1844         continue;
1845
1846       if (shortcut_find_position (impl, file) != -1)
1847         continue;
1848
1849       label = _gtk_file_system_get_bookmark_label (impl->file_system, file);
1850
1851       shortcuts_insert_file (impl, start_row + num_inserted, SHORTCUT_TYPE_FILE, NULL, file, label, TRUE, SHORTCUTS_BOOKMARKS);
1852       g_free (label);
1853
1854       num_inserted++;
1855     }
1856
1857   profile_end ("end", NULL);
1858
1859   return num_inserted;
1860 }
1861
1862 /* Returns the index for the corresponding item in the shortcuts bar */
1863 static int
1864 shortcuts_get_index (GtkFileChooserDefault *impl,
1865                      ShortcutsIndex         where)
1866 {
1867   int n;
1868
1869   n = 0;
1870   
1871   if (where == SHORTCUTS_SEARCH)
1872     goto out;
1873
1874   n += impl->has_search ? 1 : 0;
1875
1876   if (where == SHORTCUTS_RECENT)
1877     goto out;
1878
1879   n += 1; /* we always have the recently-used item */
1880
1881   if (where == SHORTCUTS_RECENT_SEPARATOR)
1882     goto out;
1883
1884   n += 1; /* we always have the separator after the recently-used item */
1885
1886   if (where == SHORTCUTS_HOME)
1887     goto out;
1888
1889   n += impl->has_home ? 1 : 0;
1890
1891   if (where == SHORTCUTS_DESKTOP)
1892     goto out;
1893
1894   n += impl->has_desktop ? 1 : 0;
1895
1896   if (where == SHORTCUTS_VOLUMES)
1897     goto out;
1898
1899   n += impl->num_volumes;
1900
1901   if (where == SHORTCUTS_SHORTCUTS)
1902     goto out;
1903
1904   n += impl->num_shortcuts;
1905
1906   if (where == SHORTCUTS_BOOKMARKS_SEPARATOR)
1907     goto out;
1908
1909   /* If there are no bookmarks there won't be a separator */
1910   n += (impl->num_bookmarks > 0) ? 1 : 0;
1911
1912   if (where == SHORTCUTS_BOOKMARKS)
1913     goto out;
1914
1915   n += impl->num_bookmarks;
1916
1917   if (where == SHORTCUTS_CURRENT_FOLDER_SEPARATOR)
1918     goto out;
1919
1920   n += 1;
1921
1922   if (where == SHORTCUTS_CURRENT_FOLDER)
1923     goto out;
1924
1925   g_assert_not_reached ();
1926
1927  out:
1928
1929   return n;
1930 }
1931
1932 /* Adds all the file system volumes to the shortcuts model */
1933 static void
1934 shortcuts_add_volumes (GtkFileChooserDefault *impl)
1935 {
1936   int start_row;
1937   GSList *list, *l;
1938   int n;
1939   gboolean old_changing_folders;
1940
1941   profile_start ("start", NULL);
1942
1943   old_changing_folders = impl->changing_folder;
1944   impl->changing_folder = TRUE;
1945
1946   start_row = shortcuts_get_index (impl, SHORTCUTS_VOLUMES);
1947   shortcuts_remove_rows (impl, start_row, impl->num_volumes);
1948   impl->num_volumes = 0;
1949
1950   list = _gtk_file_system_list_volumes (impl->file_system);
1951
1952   n = 0;
1953
1954   for (l = list; l; l = l->next)
1955     {
1956       GtkFileSystemVolume *volume;
1957
1958       volume = l->data;
1959
1960       if (impl->local_only)
1961         {
1962           if (_gtk_file_system_volume_is_mounted (volume))
1963             {
1964               GFile *base_file;
1965               gboolean base_is_native = TRUE;
1966
1967               base_file = _gtk_file_system_volume_get_root (volume);
1968               if (base_file != NULL)
1969                 {
1970                   base_is_native = g_file_is_native (base_file);
1971                   g_object_unref (base_file);
1972                 }
1973
1974               if (!base_is_native)
1975                 continue;
1976             }
1977         }
1978
1979       shortcuts_insert_file (impl,
1980                              start_row + n,
1981                              SHORTCUT_TYPE_VOLUME,
1982                              _gtk_file_system_volume_ref (volume),
1983                              NULL,
1984                              NULL,
1985                              FALSE,
1986                              SHORTCUTS_VOLUMES);
1987       n++;
1988     }
1989
1990   impl->num_volumes = n;
1991   g_slist_free (list);
1992
1993   if (impl->shortcuts_pane_filter_model)
1994     gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (impl->shortcuts_pane_filter_model));
1995
1996   impl->changing_folder = old_changing_folders;
1997
1998   profile_end ("end", NULL);
1999 }
2000
2001 /* Inserts a separator node in the shortcuts list */
2002 static void
2003 shortcuts_insert_separator (GtkFileChooserDefault *impl,
2004                             ShortcutsIndex         where)
2005 {
2006   GtkTreeIter iter;
2007
2008   g_assert (where == SHORTCUTS_RECENT_SEPARATOR || 
2009             where == SHORTCUTS_BOOKMARKS_SEPARATOR || 
2010             where == SHORTCUTS_CURRENT_FOLDER_SEPARATOR);
2011
2012   gtk_list_store_insert (impl->shortcuts_model, &iter,
2013                          shortcuts_get_index (impl, where));
2014   gtk_list_store_set (impl->shortcuts_model, &iter,
2015                       SHORTCUTS_COL_PIXBUF, NULL,
2016                       SHORTCUTS_COL_PIXBUF_VISIBLE, FALSE,
2017                       SHORTCUTS_COL_NAME, NULL,
2018                       SHORTCUTS_COL_DATA, NULL,
2019                       SHORTCUTS_COL_TYPE, SHORTCUT_TYPE_SEPARATOR,
2020                       -1);
2021 }
2022
2023 /* Updates the list of bookmarks */
2024 static void
2025 shortcuts_add_bookmarks (GtkFileChooserDefault *impl)
2026 {
2027   GSList *bookmarks;
2028   gboolean old_changing_folders;
2029   GtkTreeIter iter;
2030   GFile *list_selected = NULL;
2031   ShortcutType shortcut_type;
2032   gpointer col_data;
2033
2034   profile_start ("start", NULL);
2035         
2036   old_changing_folders = impl->changing_folder;
2037   impl->changing_folder = TRUE;
2038
2039   if (shortcuts_get_selected (impl, &iter))
2040     {
2041       gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), 
2042                           &iter, 
2043                           SHORTCUTS_COL_DATA, &col_data,
2044                           SHORTCUTS_COL_TYPE, &shortcut_type,
2045                           -1);
2046
2047       if (col_data && shortcut_type == SHORTCUT_TYPE_FILE)
2048         list_selected = g_object_ref (col_data);
2049     }
2050
2051   if (impl->num_bookmarks > 0)
2052     shortcuts_remove_rows (impl,
2053                            shortcuts_get_index (impl, SHORTCUTS_BOOKMARKS_SEPARATOR),
2054                            impl->num_bookmarks + 1);
2055
2056   impl->num_bookmarks = 0;
2057   shortcuts_insert_separator (impl, SHORTCUTS_BOOKMARKS_SEPARATOR);
2058
2059   bookmarks = _gtk_file_system_list_bookmarks (impl->file_system);
2060   shortcuts_append_bookmarks (impl, bookmarks);
2061   g_slist_foreach (bookmarks, (GFunc) g_object_unref, NULL);
2062   g_slist_free (bookmarks);
2063
2064   if (impl->num_bookmarks == 0)
2065     shortcuts_remove_rows (impl, shortcuts_get_index (impl, SHORTCUTS_BOOKMARKS_SEPARATOR), 1);
2066
2067   if (impl->shortcuts_pane_filter_model)
2068     gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (impl->shortcuts_pane_filter_model));
2069
2070   if (list_selected)
2071     {
2072       shortcuts_find_folder (impl, list_selected);
2073       g_object_unref (list_selected);
2074     }
2075
2076   impl->changing_folder = old_changing_folders;
2077
2078   profile_end ("end", NULL);
2079 }
2080
2081 /* Appends a separator and a row to the shortcuts list for the current folder */
2082 static void
2083 shortcuts_add_current_folder (GtkFileChooserDefault *impl)
2084 {
2085   int pos;
2086
2087   g_assert (!impl->shortcuts_current_folder_active);
2088
2089   g_assert (impl->current_folder != NULL);
2090
2091   pos = shortcut_find_position (impl, impl->current_folder);
2092   if (pos == -1)
2093     {
2094       GtkFileSystemVolume *volume;
2095       GFile *base_file;
2096
2097       /* Separator */
2098       shortcuts_insert_separator (impl, SHORTCUTS_CURRENT_FOLDER_SEPARATOR);
2099
2100       /* Item */
2101       pos = shortcuts_get_index (impl, SHORTCUTS_CURRENT_FOLDER);
2102
2103       volume = _gtk_file_system_get_volume_for_file (impl->file_system, impl->current_folder);
2104       if (volume)
2105         base_file = _gtk_file_system_volume_get_root (volume);
2106       else
2107         base_file = NULL;
2108
2109       if (base_file && g_file_equal (base_file, impl->current_folder))
2110         shortcuts_insert_file (impl, pos, SHORTCUT_TYPE_VOLUME, volume, NULL, NULL, FALSE, SHORTCUTS_CURRENT_FOLDER);
2111       else
2112         shortcuts_insert_file (impl, pos, SHORTCUT_TYPE_FILE, NULL, impl->current_folder, NULL, FALSE, SHORTCUTS_CURRENT_FOLDER);
2113
2114       if (base_file)
2115         g_object_unref (base_file);
2116     }
2117 }
2118
2119 /* Updates the current folder row in the shortcuts model */
2120 static void
2121 shortcuts_update_current_folder (GtkFileChooserDefault *impl)
2122 {
2123   int pos;
2124
2125   pos = shortcuts_get_index (impl, SHORTCUTS_CURRENT_FOLDER_SEPARATOR);
2126
2127   if (impl->shortcuts_current_folder_active)
2128     {
2129       shortcuts_remove_rows (impl, pos, 2);
2130       impl->shortcuts_current_folder_active = FALSE;
2131     }
2132
2133   shortcuts_add_current_folder (impl);
2134 }
2135
2136 /* Filter function used for the shortcuts filter model */
2137 static gboolean
2138 shortcuts_pane_filter_cb (GtkTreeModel *model,
2139                           GtkTreeIter  *iter,
2140                           gpointer      data)
2141 {
2142   GtkFileChooserDefault *impl;
2143   GtkTreePath *path;
2144   int pos;
2145
2146   impl = GTK_FILE_CHOOSER_DEFAULT (data);
2147
2148   path = gtk_tree_model_get_path (model, iter);
2149   if (!path)
2150     return FALSE;
2151
2152   pos = *gtk_tree_path_get_indices (path);
2153   gtk_tree_path_free (path);
2154
2155   return (pos < shortcuts_get_index (impl, SHORTCUTS_CURRENT_FOLDER_SEPARATOR));
2156 }
2157
2158 /* Creates the list model for shortcuts */
2159 static void
2160 shortcuts_model_create (GtkFileChooserDefault *impl)
2161 {
2162   /* Keep this order in sync with the SHORCUTS_COL_* enum values */
2163   impl->shortcuts_model = gtk_list_store_new (SHORTCUTS_COL_NUM_COLUMNS,
2164                                               GDK_TYPE_PIXBUF,  /* pixbuf */
2165                                               G_TYPE_STRING,    /* name */
2166                                               G_TYPE_POINTER,   /* path or volume */
2167                                               G_TYPE_INT,       /* ShortcutType */
2168                                               G_TYPE_BOOLEAN,   /* removable */
2169                                               G_TYPE_BOOLEAN,   /* pixbuf cell visibility */
2170                                               G_TYPE_POINTER);  /* GCancellable */
2171
2172   shortcuts_append_search (impl);
2173
2174   if (impl->recent_manager)
2175     {
2176       shortcuts_append_recent (impl);
2177       shortcuts_insert_separator (impl, SHORTCUTS_RECENT_SEPARATOR);
2178     }
2179   
2180   if (impl->file_system)
2181     {
2182       shortcuts_append_home (impl);
2183       shortcuts_append_desktop (impl);
2184       shortcuts_add_volumes (impl);
2185     }
2186
2187   impl->shortcuts_pane_filter_model = shortcuts_pane_model_filter_new (impl,
2188                                                                        GTK_TREE_MODEL (impl->shortcuts_model),
2189                                                                        NULL);
2190
2191   gtk_tree_model_filter_set_visible_func (GTK_TREE_MODEL_FILTER (impl->shortcuts_pane_filter_model),
2192                                           shortcuts_pane_filter_cb,
2193                                           impl,
2194                                           NULL);
2195 }
2196
2197 /* Callback used when the "New Folder" button is clicked */
2198 static void
2199 new_folder_button_clicked (GtkButton             *button,
2200                            GtkFileChooserDefault *impl)
2201 {
2202   GtkTreeIter iter;
2203   GtkTreePath *path;
2204
2205   if (!impl->browse_files_model)
2206     return; /* FIXME: this sucks.  Disable the New Folder button or something. */
2207
2208   /* Prevent button from being clicked twice */
2209   gtk_widget_set_sensitive (impl->browse_new_folder_button, FALSE);
2210
2211   _gtk_file_system_model_add_editable (impl->browse_files_model, &iter);
2212
2213   path = gtk_tree_model_get_path (GTK_TREE_MODEL (impl->browse_files_model), &iter);
2214   gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (impl->browse_files_tree_view),
2215                                 path, impl->list_name_column,
2216                                 FALSE, 0.0, 0.0);
2217
2218   g_object_set (impl->list_name_renderer, "editable", TRUE, NULL);
2219   gtk_tree_view_set_cursor (GTK_TREE_VIEW (impl->browse_files_tree_view),
2220                             path,
2221                             impl->list_name_column,
2222                             TRUE);
2223
2224   gtk_tree_path_free (path);
2225 }
2226
2227 static GSource *
2228 add_idle_while_impl_is_alive (GtkFileChooserDefault *impl, GCallback callback)
2229 {
2230   GSource *source;
2231
2232   source = g_idle_source_new ();
2233   g_source_set_closure (source,
2234                         g_cclosure_new_object (callback, G_OBJECT (impl)));
2235   g_source_attach (source, NULL);
2236
2237   return source;
2238 }
2239
2240 /* Idle handler for creating a new folder after editing its name cell, or for
2241  * canceling the editing.
2242  */
2243 static gboolean
2244 edited_idle_cb (GtkFileChooserDefault *impl)
2245 {
2246   GDK_THREADS_ENTER ();
2247   
2248   g_source_destroy (impl->edited_idle);
2249   impl->edited_idle = NULL;
2250
2251   _gtk_file_system_model_remove_editable (impl->browse_files_model);
2252   g_object_set (impl->list_name_renderer, "editable", FALSE, NULL);
2253
2254   gtk_widget_set_sensitive (impl->browse_new_folder_button, TRUE);
2255
2256   if (impl->edited_new_text /* not cancelled? */
2257       && (strlen (impl->edited_new_text) != 0)
2258       && (strcmp (impl->edited_new_text, DEFAULT_NEW_FOLDER_NAME) != 0)) /* Don't create folder if name is empty or has not been edited */
2259     {
2260       GError *error = NULL;
2261       GFile *file;
2262
2263       file = g_file_get_child_for_display_name (impl->current_folder,
2264                                                 impl->edited_new_text,
2265                                                 &error);
2266       if (file)
2267         {
2268           GError *error = NULL;
2269
2270           if (g_file_make_directory (file, NULL, &error))
2271             change_folder_and_display_error (impl, file, FALSE);
2272           else
2273             error_creating_folder_dialog (impl, file, error);
2274
2275           g_object_unref (file);
2276         }
2277       else
2278         error_creating_folder_dialog (impl, file, error);
2279
2280       g_free (impl->edited_new_text);
2281       impl->edited_new_text = NULL;
2282     }
2283
2284   GDK_THREADS_LEAVE ();
2285
2286   return FALSE;
2287 }
2288
2289 static void
2290 queue_edited_idle (GtkFileChooserDefault *impl,
2291                    const gchar           *new_text)
2292 {
2293   /* We create the folder in an idle handler so that we don't modify the tree
2294    * just now.
2295    */
2296
2297   if (!impl->edited_idle)
2298     impl->edited_idle = add_idle_while_impl_is_alive (impl, G_CALLBACK (edited_idle_cb));
2299
2300   g_free (impl->edited_new_text);
2301   impl->edited_new_text = g_strdup (new_text);
2302 }
2303
2304 /* Callback used from the text cell renderer when the new folder is named */
2305 static void
2306 renderer_edited_cb (GtkCellRendererText   *cell_renderer_text,
2307                     const gchar           *path,
2308                     const gchar           *new_text,
2309                     GtkFileChooserDefault *impl)
2310 {
2311   /* work around bug #154921 */
2312   g_object_set (cell_renderer_text, 
2313                 "mode", GTK_CELL_RENDERER_MODE_INERT, NULL);
2314   queue_edited_idle (impl, new_text);
2315 }
2316
2317 /* Callback used from the text cell renderer when the new folder edition gets
2318  * canceled.
2319  */
2320 static void
2321 renderer_editing_canceled_cb (GtkCellRendererText   *cell_renderer_text,
2322                               GtkFileChooserDefault *impl)
2323 {
2324   /* work around bug #154921 */
2325   g_object_set (cell_renderer_text, 
2326                 "mode", GTK_CELL_RENDERER_MODE_INERT, NULL);
2327   queue_edited_idle (impl, NULL);
2328 }
2329
2330 /* Creates the widgets for the filter combo box */
2331 static GtkWidget *
2332 filter_create (GtkFileChooserDefault *impl)
2333 {
2334   GtkCellRenderer *cell;
2335   GList           *cells;
2336
2337   impl->filter_combo = gtk_combo_box_text_new ();
2338   gtk_combo_box_set_focus_on_click (GTK_COMBO_BOX (impl->filter_combo), FALSE);
2339
2340   /* Get the combo's text renderer and set ellipsize parameters */
2341   cells = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (impl->filter_combo));
2342   g_assert (cells);
2343   cell = cells->data;
2344
2345   g_object_set (G_OBJECT (cell),
2346                 "ellipsize", PANGO_ELLIPSIZE_END,
2347                 NULL);
2348
2349   g_list_free (cells);
2350
2351   g_signal_connect (impl->filter_combo, "changed",
2352                     G_CALLBACK (filter_combo_changed), impl);
2353
2354   gtk_widget_set_tooltip_text (impl->filter_combo,
2355                                _("Select which types of files are shown"));
2356
2357   return impl->filter_combo;
2358 }
2359
2360 static GtkWidget *
2361 toolbutton_new (GtkFileChooserDefault *impl,
2362                 GIcon                 *icon,
2363                 gboolean               sensitive,
2364                 gboolean               show,
2365                 GCallback              callback)
2366 {
2367   GtkToolItem *item;
2368   GtkWidget *image;
2369
2370   item = gtk_tool_button_new (NULL, NULL);
2371   image = gtk_image_new_from_gicon (icon, GTK_ICON_SIZE_SMALL_TOOLBAR);
2372   gtk_widget_show (image);
2373   gtk_tool_button_set_icon_widget (GTK_TOOL_BUTTON (item), image);
2374
2375   gtk_widget_set_sensitive (GTK_WIDGET (item), sensitive);
2376   g_signal_connect (item, "clicked", callback, impl);
2377
2378   if (show)
2379     gtk_widget_show (GTK_WIDGET (item));
2380
2381   return GTK_WIDGET (item);
2382 }
2383
2384 /* Looks for a path among the shortcuts; returns its index or -1 if it doesn't exist */
2385 static int
2386 shortcut_find_position (GtkFileChooserDefault *impl,
2387                         GFile                 *file)
2388 {
2389   GtkTreeIter iter;
2390   int i;
2391   int current_folder_separator_idx;
2392
2393   if (!gtk_tree_model_get_iter_first (GTK_TREE_MODEL (impl->shortcuts_model), &iter))
2394     return -1;
2395
2396   current_folder_separator_idx = shortcuts_get_index (impl, SHORTCUTS_CURRENT_FOLDER_SEPARATOR);
2397
2398 #if 0
2399   /* FIXME: is this still needed? */
2400   if (current_folder_separator_idx >= impl->shortcuts_model->length)
2401     return -1;
2402 #endif
2403
2404   for (i = 0; i < current_folder_separator_idx; i++)
2405     {
2406       gpointer col_data;
2407       ShortcutType shortcut_type;
2408
2409       gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
2410                           SHORTCUTS_COL_DATA, &col_data,
2411                           SHORTCUTS_COL_TYPE, &shortcut_type,
2412                           -1);
2413
2414       if (col_data)
2415         {
2416           if (shortcut_type == SHORTCUT_TYPE_VOLUME)
2417             {
2418               GtkFileSystemVolume *volume;
2419               GFile *base_file;
2420               gboolean exists;
2421
2422               volume = col_data;
2423               base_file = _gtk_file_system_volume_get_root (volume);
2424
2425               exists = base_file && g_file_equal (file, base_file);
2426
2427               if (base_file)
2428                 g_object_unref (base_file);
2429
2430               if (exists)
2431                 return i;
2432             }
2433           else if (shortcut_type == SHORTCUT_TYPE_FILE)
2434             {
2435               GFile *model_file;
2436
2437               model_file = col_data;
2438
2439               if (model_file && g_file_equal (model_file, file))
2440                 return i;
2441             }
2442         }
2443
2444       if (i < current_folder_separator_idx - 1)
2445         {
2446           if (!gtk_tree_model_iter_next (GTK_TREE_MODEL (impl->shortcuts_model), &iter))
2447             g_assert_not_reached ();
2448         }
2449     }
2450
2451   return -1;
2452 }
2453
2454 /* Tries to add a bookmark from a path name */
2455 static gboolean
2456 shortcuts_add_bookmark_from_file (GtkFileChooserDefault *impl,
2457                                   GFile                 *file,
2458                                   int                    pos)
2459 {
2460   GError *error;
2461
2462   g_return_val_if_fail (G_IS_FILE (file), FALSE);
2463
2464   if (shortcut_find_position (impl, file) != -1)
2465     return FALSE;
2466
2467   error = NULL;
2468   if (!_gtk_file_system_insert_bookmark (impl->file_system, file, pos, &error))
2469     {
2470       error_adding_bookmark_dialog (impl, file, error);
2471       return FALSE;
2472     }
2473
2474   return TRUE;
2475 }
2476
2477 static void
2478 add_bookmark_foreach_cb (GtkTreeModel *model,
2479                          GtkTreePath  *path,
2480                          GtkTreeIter  *iter,
2481                          gpointer      data)
2482 {
2483   GtkFileChooserDefault *impl;
2484   GFile *file;
2485
2486   impl = (GtkFileChooserDefault *) data;
2487
2488   gtk_tree_model_get (model, iter,
2489                       MODEL_COL_FILE, &file,
2490                       -1);
2491
2492   shortcuts_add_bookmark_from_file (impl, file, -1);
2493
2494   g_object_unref (file);
2495 }
2496
2497 /* Adds a bookmark from the currently selected item in the file list */
2498 static void
2499 bookmarks_add_selected_folder (GtkFileChooserDefault *impl)
2500 {
2501   GtkTreeSelection *selection;
2502
2503   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
2504
2505   if (gtk_tree_selection_count_selected_rows (selection) == 0)
2506     shortcuts_add_bookmark_from_file (impl, impl->current_folder, -1);
2507   else
2508     gtk_tree_selection_selected_foreach (selection,
2509                                          add_bookmark_foreach_cb,
2510                                          impl);
2511 }
2512
2513 /* Callback used when the "Add bookmark" button is clicked */
2514 static void
2515 add_bookmark_button_clicked_cb (GtkButton *button,
2516                                 GtkFileChooserDefault *impl)
2517 {
2518   bookmarks_add_selected_folder (impl);
2519 }
2520
2521 /* Returns TRUE plus an iter in the shortcuts_model if a row is selected;
2522  * returns FALSE if no shortcut is selected.
2523  */
2524 static gboolean
2525 shortcuts_get_selected (GtkFileChooserDefault *impl,
2526                         GtkTreeIter           *iter)
2527 {
2528   GtkTreeSelection *selection;
2529   GtkTreeIter parent_iter;
2530
2531   if (!impl->browse_shortcuts_tree_view)
2532     return FALSE;
2533
2534   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view));
2535
2536   if (!gtk_tree_selection_get_selected (selection, NULL, &parent_iter))
2537     return FALSE;
2538
2539   gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (impl->shortcuts_pane_filter_model),
2540                                                     iter,
2541                                                     &parent_iter);
2542   return TRUE;
2543 }
2544
2545 /* Removes the selected bookmarks */
2546 static void
2547 remove_selected_bookmarks (GtkFileChooserDefault *impl)
2548 {
2549   GtkTreeIter iter;
2550   gpointer col_data;
2551   GFile *file;
2552   gboolean removable;
2553   GError *error;
2554
2555   if (!shortcuts_get_selected (impl, &iter))
2556     return;
2557
2558   gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
2559                       SHORTCUTS_COL_DATA, &col_data,
2560                       SHORTCUTS_COL_REMOVABLE, &removable,
2561                       -1);
2562
2563   if (!removable)
2564     return;
2565
2566   g_assert (col_data != NULL);
2567
2568   file = col_data;
2569
2570   error = NULL;
2571   if (!_gtk_file_system_remove_bookmark (impl->file_system, file, &error))
2572     error_removing_bookmark_dialog (impl, file, error);
2573 }
2574
2575 /* Callback used when the "Remove bookmark" button is clicked */
2576 static void
2577 remove_bookmark_button_clicked_cb (GtkButton *button,
2578                                    GtkFileChooserDefault *impl)
2579 {
2580   remove_selected_bookmarks (impl);
2581 }
2582
2583 struct selection_check_closure {
2584   GtkFileChooserDefault *impl;
2585   int num_selected;
2586   gboolean all_files;
2587   gboolean all_folders;
2588 };
2589
2590 /* Used from gtk_tree_selection_selected_foreach() */
2591 static void
2592 selection_check_foreach_cb (GtkTreeModel *model,
2593                             GtkTreePath  *path,
2594                             GtkTreeIter  *iter,
2595                             gpointer      data)
2596 {
2597   struct selection_check_closure *closure;
2598   gboolean is_folder;
2599   GFile *file;
2600
2601   gtk_tree_model_get (model, iter,
2602                       MODEL_COL_FILE, &file,
2603                       MODEL_COL_IS_FOLDER, &is_folder,
2604                       -1);
2605
2606   if (file == NULL)
2607     return;
2608
2609   g_object_unref (file);
2610
2611   closure = data;
2612   closure->num_selected++;
2613
2614   closure->all_folders = closure->all_folders && is_folder;
2615   closure->all_files = closure->all_files && !is_folder;
2616 }
2617
2618 /* Checks whether the selected items in the file list are all files or all folders */
2619 static void
2620 selection_check (GtkFileChooserDefault *impl,
2621                  gint                  *num_selected,
2622                  gboolean              *all_files,
2623                  gboolean              *all_folders)
2624 {
2625   struct selection_check_closure closure;
2626   GtkTreeSelection *selection;
2627
2628   closure.impl = impl;
2629   closure.num_selected = 0;
2630   closure.all_files = TRUE;
2631   closure.all_folders = TRUE;
2632
2633   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
2634   gtk_tree_selection_selected_foreach (selection,
2635                                        selection_check_foreach_cb,
2636                                        &closure);
2637
2638   g_assert (closure.num_selected == 0 || !(closure.all_files && closure.all_folders));
2639
2640   if (num_selected)
2641     *num_selected = closure.num_selected;
2642
2643   if (all_files)
2644     *all_files = closure.all_files;
2645
2646   if (all_folders)
2647     *all_folders = closure.all_folders;
2648 }
2649
2650 struct get_selected_file_closure {
2651   GtkFileChooserDefault *impl;
2652   GFile *file;
2653 };
2654
2655 static void
2656 get_selected_file_foreach_cb (GtkTreeModel *model,
2657                               GtkTreePath  *path,
2658                               GtkTreeIter  *iter,
2659                               gpointer      data)
2660 {
2661   struct get_selected_file_closure *closure = data;
2662
2663   if (closure->file)
2664     {
2665       /* Just in case this function gets run more than once with a multiple selection; we only care about one file */
2666       g_object_unref (closure->file);
2667       closure->file = NULL;
2668     }
2669
2670   gtk_tree_model_get (model, iter,
2671                       MODEL_COL_FILE, &closure->file, /* this will give us a reffed file */
2672                       -1);
2673 }
2674
2675 /* Returns a selected path from the file list */
2676 static GFile *
2677 get_selected_file (GtkFileChooserDefault *impl)
2678 {
2679   struct get_selected_file_closure closure;
2680   GtkTreeSelection *selection;
2681
2682   closure.impl = impl;
2683   closure.file = NULL;
2684
2685   selection =  gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
2686   gtk_tree_selection_selected_foreach (selection,
2687                                        get_selected_file_foreach_cb,
2688                                        &closure);
2689
2690   return closure.file;
2691 }
2692
2693 typedef struct {
2694   GtkFileChooserDefault *impl;
2695   gchar *tip;
2696 } UpdateTooltipData;
2697
2698 static void 
2699 update_tooltip (GtkTreeModel      *model,
2700                 GtkTreePath       *path,
2701                 GtkTreeIter       *iter,
2702                 gpointer           data)
2703 {
2704   UpdateTooltipData *udata = data;
2705
2706   if (udata->tip == NULL)
2707     {
2708       gchar *display_name;
2709
2710       gtk_tree_model_get (model, iter,
2711                           MODEL_COL_NAME, &display_name,
2712                           -1);
2713
2714       udata->tip = g_strdup_printf (_("Add the folder '%s' to the bookmarks"),
2715                                     display_name);
2716       g_free (display_name);
2717     }
2718 }
2719
2720
2721 /* Sensitize the "add bookmark" button if all the selected items are folders, or
2722  * if there are no selected items *and* the current folder is not in the
2723  * bookmarks list.  De-sensitize the button otherwise.
2724  */
2725 static void
2726 bookmarks_check_add_sensitivity (GtkFileChooserDefault *impl)
2727 {
2728   gint num_selected;
2729   gboolean all_folders;
2730   gboolean active;
2731   gchar *tip;
2732
2733   selection_check (impl, &num_selected, NULL, &all_folders);
2734
2735   if (num_selected == 0)
2736     active = (impl->current_folder != NULL) && (shortcut_find_position (impl, impl->current_folder) == -1);
2737   else if (num_selected == 1)
2738     {
2739       GFile *file;
2740
2741       file = get_selected_file (impl);
2742       active = file && all_folders && (shortcut_find_position (impl, file) == -1);
2743       if (file)
2744         g_object_unref (file);
2745     }
2746   else
2747     active = all_folders;
2748
2749   gtk_widget_set_sensitive (impl->browse_shortcuts_add_button, active);
2750
2751   if (impl->browse_files_popup_menu_add_shortcut_item)
2752     gtk_widget_set_sensitive (impl->browse_files_popup_menu_add_shortcut_item,
2753                               (num_selected == 0) ? FALSE : active);
2754
2755   if (active)
2756     {
2757       if (num_selected == 0)
2758         tip = g_strdup_printf (_("Add the current folder to the bookmarks"));
2759       else if (num_selected > 1)
2760         tip = g_strdup_printf (_("Add the selected folders to the bookmarks"));
2761       else
2762         {
2763           GtkTreeSelection *selection;
2764           UpdateTooltipData data;
2765
2766           selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
2767           data.impl = impl;
2768           data.tip = NULL;
2769           gtk_tree_selection_selected_foreach (selection, update_tooltip, &data);
2770           tip = data.tip;
2771         }
2772
2773       gtk_widget_set_tooltip_text (impl->browse_shortcuts_add_button, tip);
2774       g_free (tip);
2775     }
2776 }
2777
2778 /* Sets the sensitivity of the "remove bookmark" button depending on whether a
2779  * bookmark row is selected in the shortcuts tree.
2780  */
2781 static void
2782 bookmarks_check_remove_sensitivity (GtkFileChooserDefault *impl)
2783 {
2784   GtkTreeIter iter;
2785   gboolean removable = FALSE;
2786   gchar *name = NULL;
2787   gchar *tip;
2788   
2789   if (shortcuts_get_selected (impl, &iter))
2790     {
2791       gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
2792                           SHORTCUTS_COL_REMOVABLE, &removable,
2793                           SHORTCUTS_COL_NAME, &name,
2794                           -1);
2795       gtk_widget_set_sensitive (impl->browse_shortcuts_remove_button, removable);
2796
2797       if (removable)
2798         tip = g_strdup_printf (_("Remove the bookmark '%s'"), name);
2799       else
2800         tip = g_strdup_printf (_("Bookmark '%s' cannot be removed"), name);
2801
2802       gtk_widget_set_tooltip_text (impl->browse_shortcuts_remove_button, tip);
2803       g_free (tip);
2804     }
2805   else
2806     gtk_widget_set_tooltip_text (impl->browse_shortcuts_remove_button,
2807                                  _("Remove the selected bookmark"));
2808   g_free (name);
2809 }
2810
2811 static void
2812 shortcuts_check_popup_sensitivity (GtkFileChooserDefault *impl)
2813 {
2814   GtkTreeIter iter;
2815   gboolean removable = FALSE;
2816
2817   if (impl->browse_shortcuts_popup_menu == NULL)
2818     return;
2819
2820   if (shortcuts_get_selected (impl, &iter))
2821     gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
2822                         SHORTCUTS_COL_REMOVABLE, &removable,
2823                         -1);
2824
2825   gtk_widget_set_sensitive (impl->browse_shortcuts_popup_menu_remove_item, removable);
2826   gtk_widget_set_sensitive (impl->browse_shortcuts_popup_menu_rename_item, removable);
2827 }
2828
2829 /* GtkWidget::drag-begin handler for the shortcuts list. */
2830 static void
2831 shortcuts_drag_begin_cb (GtkWidget             *widget,
2832                          GdkDragContext        *context,
2833                          GtkFileChooserDefault *impl)
2834 {
2835 #if 0
2836   impl->shortcuts_drag_context = g_object_ref (context);
2837 #endif
2838 }
2839
2840 #if 0
2841 /* Removes the idle handler for outside drags */
2842 static void
2843 shortcuts_cancel_drag_outside_idle (GtkFileChooserDefault *impl)
2844 {
2845   if (!impl->shortcuts_drag_outside_idle)
2846     return;
2847
2848   g_source_destroy (impl->shortcuts_drag_outside_idle);
2849   impl->shortcuts_drag_outside_idle = NULL;
2850 }
2851 #endif
2852
2853 /* GtkWidget::drag-end handler for the shortcuts list. */
2854 static void
2855 shortcuts_drag_end_cb (GtkWidget             *widget,
2856                        GdkDragContext        *context,
2857                        GtkFileChooserDefault *impl)
2858 {
2859 #if 0
2860   g_object_unref (impl->shortcuts_drag_context);
2861
2862   shortcuts_cancel_drag_outside_idle (impl);
2863
2864   if (!impl->shortcuts_drag_outside)
2865     return;
2866
2867   gtk_button_clicked (GTK_BUTTON (impl->browse_shortcuts_remove_button));
2868
2869   impl->shortcuts_drag_outside = FALSE;
2870 #endif
2871 }
2872
2873 /* GtkWidget::drag-data-delete handler for the shortcuts list. */
2874 static void
2875 shortcuts_drag_data_delete_cb (GtkWidget             *widget,
2876                                GdkDragContext        *context,
2877                                GtkFileChooserDefault *impl)
2878 {
2879   g_signal_stop_emission_by_name (widget, "drag-data-delete");
2880 }
2881
2882 /* GtkWidget::drag-leave handler for the shortcuts list.  We unhighlight the
2883  * drop position.
2884  */
2885 static void
2886 shortcuts_drag_leave_cb (GtkWidget             *widget,
2887                          GdkDragContext        *context,
2888                          guint                  time_,
2889                          GtkFileChooserDefault *impl)
2890 {
2891 #if 0
2892   if (gtk_drag_get_source_widget (context) == widget && !impl->shortcuts_drag_outside_idle)
2893     {
2894       impl->shortcuts_drag_outside_idle = add_idle_while_impl_is_alive (impl, G_CALLBACK (shortcuts_drag_outside_idle_cb));
2895     }
2896 #endif
2897
2898   gtk_tree_view_set_drag_dest_row (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view),
2899                                    NULL,
2900                                    GTK_TREE_VIEW_DROP_BEFORE);
2901
2902   g_signal_stop_emission_by_name (widget, "drag-leave");
2903 }
2904
2905 /* Computes the appropriate row and position for dropping */
2906 static void
2907 shortcuts_compute_drop_position (GtkFileChooserDefault   *impl,
2908                                  int                      x,
2909                                  int                      y,
2910                                  GtkTreePath            **path,
2911                                  GtkTreeViewDropPosition *pos)
2912 {
2913   GtkTreeView *tree_view;
2914   GtkTreeViewColumn *column;
2915   int cell_y;
2916   GdkRectangle cell;
2917   int row;
2918   int bookmarks_index;
2919   int header_height = 0;
2920
2921   tree_view = GTK_TREE_VIEW (impl->browse_shortcuts_tree_view);
2922
2923   if (gtk_tree_view_get_headers_visible (tree_view))
2924     header_height = _gtk_tree_view_get_header_height (tree_view);
2925
2926   bookmarks_index = shortcuts_get_index (impl, SHORTCUTS_BOOKMARKS);
2927
2928   if (!gtk_tree_view_get_path_at_pos (tree_view,
2929                                       x,
2930                                       y - header_height,
2931                                       path,
2932                                       &column,
2933                                       NULL,
2934                                       &cell_y))
2935     {
2936       row = bookmarks_index + impl->num_bookmarks - 1;
2937       *path = gtk_tree_path_new_from_indices (row, -1);
2938       *pos = GTK_TREE_VIEW_DROP_AFTER;
2939       return;
2940     }
2941
2942   row = *gtk_tree_path_get_indices (*path);
2943   gtk_tree_view_get_background_area (tree_view, *path, column, &cell);
2944   gtk_tree_path_free (*path);
2945
2946   if (row < bookmarks_index)
2947     {
2948       row = bookmarks_index;
2949       *pos = GTK_TREE_VIEW_DROP_BEFORE;
2950     }
2951   else if (row > bookmarks_index + impl->num_bookmarks - 1)
2952     {
2953       row = bookmarks_index + impl->num_bookmarks - 1;
2954       *pos = GTK_TREE_VIEW_DROP_AFTER;
2955     }
2956   else
2957     {
2958       if (cell_y < cell.height / 2)
2959         *pos = GTK_TREE_VIEW_DROP_BEFORE;
2960       else
2961         *pos = GTK_TREE_VIEW_DROP_AFTER;
2962     }
2963
2964   *path = gtk_tree_path_new_from_indices (row, -1);
2965 }
2966
2967 /* GtkWidget::drag-motion handler for the shortcuts list.  We basically
2968  * implement the destination side of DnD by hand, due to limitations in
2969  * GtkTreeView's DnD API.
2970  */
2971 static gboolean
2972 shortcuts_drag_motion_cb (GtkWidget             *widget,
2973                           GdkDragContext        *context,
2974                           gint                   x,
2975                           gint                   y,
2976                           guint                  time_,
2977                           GtkFileChooserDefault *impl)
2978 {
2979   GtkTreePath *path;
2980   GtkTreeViewDropPosition pos;
2981   GdkDragAction action;
2982
2983 #if 0
2984   if (gtk_drag_get_source_widget (context) == widget)
2985     {
2986       shortcuts_cancel_drag_outside_idle (impl);
2987
2988       if (impl->shortcuts_drag_outside)
2989         {
2990           shortcuts_drag_set_delete_cursor (impl, FALSE);
2991           impl->shortcuts_drag_outside = FALSE;
2992         }
2993     }
2994 #endif
2995
2996   if (gdk_drag_context_get_suggested_action (context) == GDK_ACTION_COPY ||
2997       (gdk_drag_context_get_actions (context) & GDK_ACTION_COPY) != 0)
2998     action = GDK_ACTION_COPY;
2999   else if (gdk_drag_context_get_suggested_action (context) == GDK_ACTION_MOVE ||
3000            (gdk_drag_context_get_actions (context) & GDK_ACTION_MOVE) != 0)
3001     action = GDK_ACTION_MOVE;
3002   else
3003     {
3004       action = 0;
3005       goto out;
3006     }
3007
3008   shortcuts_compute_drop_position (impl, x, y, &path, &pos);
3009   gtk_tree_view_set_drag_dest_row (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), path, pos);
3010   gtk_tree_path_free (path);
3011
3012  out:
3013
3014   g_signal_stop_emission_by_name (widget, "drag-motion");
3015
3016   if (action != 0)
3017     {
3018       gdk_drag_status (context, action, time_);
3019       return TRUE;
3020     }
3021   else
3022     return FALSE;
3023 }
3024
3025 /* GtkWidget::drag-drop handler for the shortcuts list. */
3026 static gboolean
3027 shortcuts_drag_drop_cb (GtkWidget             *widget,
3028                         GdkDragContext        *context,
3029                         gint                   x,
3030                         gint                   y,
3031                         guint                  time_,
3032                         GtkFileChooserDefault *impl)
3033 {
3034 #if 0
3035   shortcuts_cancel_drag_outside_idle (impl);
3036 #endif
3037
3038   g_signal_stop_emission_by_name (widget, "drag-drop");
3039   return TRUE;
3040 }
3041
3042 /* Parses a "text/uri-list" string and inserts its URIs as bookmarks */
3043 static void
3044 shortcuts_drop_uris (GtkFileChooserDefault *impl,
3045                      GtkSelectionData      *selection_data,
3046                      int                    position)
3047 {
3048   gchar **uris;
3049   gint i;
3050
3051   uris = gtk_selection_data_get_uris (selection_data);
3052   if (!uris)
3053     return;
3054
3055   for (i = 0; uris[i]; i++)
3056     {
3057       char *uri;
3058       GFile *file;
3059
3060       uri = uris[i];
3061       file = g_file_new_for_uri (uri);
3062
3063       if (shortcuts_add_bookmark_from_file (impl, file, position))
3064         position++;
3065
3066       g_object_unref (file);
3067     }
3068
3069   g_strfreev (uris);
3070 }
3071
3072 /* Reorders the selected bookmark to the specified position */
3073 static void
3074 shortcuts_reorder (GtkFileChooserDefault *impl,
3075                    int                    new_position)
3076 {
3077   GtkTreeIter iter;
3078   gpointer col_data;
3079   ShortcutType shortcut_type;
3080   GtkTreePath *path;
3081   int old_position;
3082   int bookmarks_index;
3083   GFile *file;
3084   GError *error;
3085   gchar *name = NULL;
3086
3087   /* Get the selected path */
3088
3089   if (!shortcuts_get_selected (impl, &iter))
3090     g_assert_not_reached ();
3091
3092   path = gtk_tree_model_get_path (GTK_TREE_MODEL (impl->shortcuts_model), &iter);
3093   old_position = *gtk_tree_path_get_indices (path);
3094   gtk_tree_path_free (path);
3095
3096   bookmarks_index = shortcuts_get_index (impl, SHORTCUTS_BOOKMARKS);
3097   old_position -= bookmarks_index;
3098   g_assert (old_position >= 0 && old_position < impl->num_bookmarks);
3099
3100   gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
3101                       SHORTCUTS_COL_NAME, &name,
3102                       SHORTCUTS_COL_DATA, &col_data,
3103                       SHORTCUTS_COL_TYPE, &shortcut_type,
3104                       -1);
3105   g_assert (col_data != NULL);
3106   g_assert (shortcut_type == SHORTCUT_TYPE_FILE);
3107   
3108   file = col_data;
3109   g_object_ref (file); /* removal below will free file, so we need a new ref */
3110
3111   /* Remove the path from the old position and insert it in the new one */
3112
3113   if (new_position > old_position)
3114     new_position--;
3115
3116   if (old_position == new_position)
3117     goto out;
3118
3119   error = NULL;
3120   if (_gtk_file_system_remove_bookmark (impl->file_system, file, &error))
3121     {
3122       shortcuts_add_bookmark_from_file (impl, file, new_position);
3123       _gtk_file_system_set_bookmark_label (impl->file_system, file, name);
3124     }
3125   else
3126     error_adding_bookmark_dialog (impl, file, error);
3127
3128  out:
3129
3130   g_object_unref (file);
3131   g_free (name);
3132 }
3133
3134 /* Callback used when we get the drag data for the bookmarks list.  We add the
3135  * received URIs as bookmarks if they are folders.
3136  */
3137 static void
3138 shortcuts_drag_data_received_cb (GtkWidget          *widget,
3139                                  GdkDragContext     *context,
3140                                  gint                x,
3141                                  gint                y,
3142                                  GtkSelectionData   *selection_data,
3143                                  guint               info,
3144                                  guint               time_,
3145                                  gpointer            data)
3146 {
3147   GtkFileChooserDefault *impl;
3148   GtkTreePath *tree_path;
3149   GtkTreeViewDropPosition tree_pos;
3150   GdkAtom target;
3151   int position;
3152   int bookmarks_index;
3153
3154   impl = GTK_FILE_CHOOSER_DEFAULT (data);
3155
3156   /* Compute position */
3157
3158   bookmarks_index = shortcuts_get_index (impl, SHORTCUTS_BOOKMARKS);
3159
3160   shortcuts_compute_drop_position (impl, x, y, &tree_path, &tree_pos);
3161   position = *gtk_tree_path_get_indices (tree_path);
3162   gtk_tree_path_free (tree_path);
3163
3164   if (tree_pos == GTK_TREE_VIEW_DROP_AFTER)
3165     position++;
3166
3167   g_assert (position >= bookmarks_index);
3168   position -= bookmarks_index;
3169
3170   target = gtk_selection_data_get_target (selection_data);
3171
3172   if (gtk_targets_include_uri (&target, 1))
3173     shortcuts_drop_uris (impl, selection_data, position);
3174   else if (target == gdk_atom_intern_static_string ("GTK_TREE_MODEL_ROW"))
3175     shortcuts_reorder (impl, position);
3176
3177   g_signal_stop_emission_by_name (widget, "drag-data-received");
3178 }
3179
3180 /* Callback used to display a tooltip in the shortcuts tree */
3181 static gboolean
3182 shortcuts_query_tooltip_cb (GtkWidget             *widget,
3183                             gint                   x,
3184                             gint                   y,
3185                             gboolean               keyboard_mode,
3186                             GtkTooltip            *tooltip,
3187                             GtkFileChooserDefault *impl)
3188 {
3189   GtkTreeModel *model;
3190   GtkTreeIter iter;
3191
3192   if (gtk_tree_view_get_tooltip_context (GTK_TREE_VIEW (widget),
3193                                          &x, &y,
3194                                          keyboard_mode,
3195                                          &model,
3196                                          NULL,
3197                                          &iter))
3198     {
3199       gpointer col_data;
3200       ShortcutType shortcut_type;
3201
3202       gtk_tree_model_get (model, &iter,
3203                           SHORTCUTS_COL_DATA, &col_data,
3204                           SHORTCUTS_COL_TYPE, &shortcut_type,
3205                           -1);
3206
3207       if (shortcut_type == SHORTCUT_TYPE_SEPARATOR)
3208         return FALSE;
3209       else if (shortcut_type == SHORTCUT_TYPE_VOLUME)
3210         return FALSE;
3211       else if (shortcut_type == SHORTCUT_TYPE_FILE)
3212         {
3213           GFile *file;
3214           char *parse_name;
3215
3216           file = G_FILE (col_data);
3217           parse_name = g_file_get_parse_name (file);
3218
3219           gtk_tooltip_set_text (tooltip, parse_name);
3220
3221           g_free (parse_name);
3222
3223           return TRUE;
3224         }
3225       else if (shortcut_type == SHORTCUT_TYPE_SEARCH)
3226         {
3227           return FALSE;
3228         }
3229       else if (shortcut_type == SHORTCUT_TYPE_RECENT)
3230         {
3231           return FALSE;
3232         }
3233     }
3234
3235   return FALSE;
3236 }
3237
3238
3239 /* Callback used when the selection in the shortcuts tree changes */
3240 static void
3241 shortcuts_selection_changed_cb (GtkTreeSelection      *selection,
3242                                 GtkFileChooserDefault *impl)
3243 {
3244   GtkTreeIter iter;
3245   GtkTreeIter child_iter;
3246
3247   bookmarks_check_remove_sensitivity (impl);
3248   shortcuts_check_popup_sensitivity (impl);
3249
3250   if (impl->changing_folder)
3251     return;
3252
3253   if (gtk_tree_selection_get_selected(selection, NULL, &iter))
3254     {
3255       gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (impl->shortcuts_pane_filter_model),
3256                                                         &child_iter,
3257                                                         &iter);
3258       shortcuts_activate_iter (impl, &child_iter);
3259     }
3260 }
3261
3262 static gboolean
3263 shortcuts_row_separator_func (GtkTreeModel *model,
3264                               GtkTreeIter  *iter,
3265                               gpointer      data)
3266 {
3267   ShortcutType shortcut_type;
3268
3269   gtk_tree_model_get (model, iter, SHORTCUTS_COL_TYPE, &shortcut_type, -1);
3270   
3271   return shortcut_type == SHORTCUT_TYPE_SEPARATOR;
3272 }
3273
3274 static gboolean
3275 shortcuts_key_press_event_after_cb (GtkWidget             *tree_view,
3276                                     GdkEventKey           *event,
3277                                     GtkFileChooserDefault *impl)
3278 {
3279   GtkWidget *entry;
3280
3281   /* don't screw up focus switching with Tab */
3282   if (event->keyval == GDK_KEY_Tab
3283       || event->keyval == GDK_KEY_KP_Tab
3284       || event->keyval == GDK_KEY_ISO_Left_Tab
3285       || event->length < 1)
3286     return FALSE;
3287
3288   if (impl->location_entry)
3289     entry = impl->location_entry;
3290   else if (impl->search_entry)
3291     entry = impl->search_entry;
3292   else
3293     entry = NULL;
3294
3295   if (entry)
3296     {
3297       gtk_widget_grab_focus (entry);
3298       return gtk_widget_event (entry, (GdkEvent *) event);
3299     }
3300   else
3301     return FALSE;
3302 }
3303
3304 /* Callback used when the file list's popup menu is detached */
3305 static void
3306 shortcuts_popup_menu_detach_cb (GtkWidget *attach_widget,
3307                                 GtkMenu   *menu)
3308 {
3309   GtkFileChooserDefault *impl;
3310   
3311   impl = g_object_get_data (G_OBJECT (attach_widget), "GtkFileChooserDefault");
3312   g_assert (GTK_IS_FILE_CHOOSER_DEFAULT (impl));
3313
3314   impl->browse_shortcuts_popup_menu = NULL;
3315   impl->browse_shortcuts_popup_menu_remove_item = NULL;
3316   impl->browse_shortcuts_popup_menu_rename_item = NULL;
3317 }
3318
3319 static void
3320 remove_shortcut_cb (GtkMenuItem           *item,
3321                     GtkFileChooserDefault *impl)
3322 {
3323   remove_selected_bookmarks (impl);
3324 }
3325
3326 /* Rename the selected bookmark */
3327 static void
3328 rename_selected_bookmark (GtkFileChooserDefault *impl)
3329 {
3330   GtkTreeIter iter;
3331   GtkTreePath *path;
3332   GtkTreeViewColumn *column;
3333   GtkCellRenderer *cell;
3334   GList *renderers;
3335
3336   if (shortcuts_get_selected (impl, &iter))
3337     {
3338       path = gtk_tree_model_get_path (GTK_TREE_MODEL (impl->shortcuts_model), &iter);
3339       column = gtk_tree_view_get_column (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), 0);
3340       renderers = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (column));
3341       cell = g_list_nth_data (renderers, 1);
3342       g_list_free (renderers);
3343       g_object_set (cell, "editable", TRUE, NULL);
3344       gtk_tree_view_set_cursor_on_cell (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view),
3345                                         path, column, cell, TRUE);
3346       gtk_tree_path_free (path);
3347     }
3348 }
3349
3350 static void
3351 rename_shortcut_cb (GtkMenuItem           *item,
3352                     GtkFileChooserDefault *impl)
3353 {
3354   rename_selected_bookmark (impl);
3355 }
3356
3357 /* Constructs the popup menu for the file list if needed */
3358 static void
3359 shortcuts_build_popup_menu (GtkFileChooserDefault *impl)
3360 {
3361   GtkWidget *item;
3362
3363   if (impl->browse_shortcuts_popup_menu)
3364     return;
3365
3366   impl->browse_shortcuts_popup_menu = gtk_menu_new ();
3367   gtk_menu_attach_to_widget (GTK_MENU (impl->browse_shortcuts_popup_menu),
3368                              impl->browse_shortcuts_tree_view,
3369                              shortcuts_popup_menu_detach_cb);
3370
3371   item = gtk_image_menu_item_new_with_label (_("Remove"));
3372   impl->browse_shortcuts_popup_menu_remove_item = item;
3373   gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item),
3374                                  gtk_image_new_from_stock (GTK_STOCK_REMOVE, GTK_ICON_SIZE_MENU));
3375   g_signal_connect (item, "activate",
3376                     G_CALLBACK (remove_shortcut_cb), impl);
3377   gtk_widget_show (item);
3378   gtk_menu_shell_append (GTK_MENU_SHELL (impl->browse_shortcuts_popup_menu), item);
3379
3380   item = gtk_menu_item_new_with_label (_("Rename..."));
3381   impl->browse_shortcuts_popup_menu_rename_item = item;
3382   g_signal_connect (item, "activate",
3383                     G_CALLBACK (rename_shortcut_cb), impl);
3384   gtk_widget_show (item);
3385   gtk_menu_shell_append (GTK_MENU_SHELL (impl->browse_shortcuts_popup_menu), item);
3386 }
3387
3388 static void
3389 shortcuts_update_popup_menu (GtkFileChooserDefault *impl)
3390 {
3391   shortcuts_build_popup_menu (impl);  
3392   shortcuts_check_popup_sensitivity (impl);
3393 }
3394
3395 static void
3396 popup_position_func (GtkMenu   *menu,
3397                      gint      *x,
3398                      gint      *y,
3399                      gboolean  *push_in,
3400                      gpointer   user_data);
3401
3402 static void
3403 shortcuts_popup_menu (GtkFileChooserDefault *impl,
3404                       GdkEventButton        *event)
3405 {
3406   shortcuts_update_popup_menu (impl);
3407   if (event)
3408     gtk_menu_popup (GTK_MENU (impl->browse_shortcuts_popup_menu),
3409                     NULL, NULL, NULL, NULL,
3410                     event->button, event->time);
3411   else
3412     {
3413       gtk_menu_popup (GTK_MENU (impl->browse_shortcuts_popup_menu),
3414                       NULL, NULL,
3415                       popup_position_func, impl->browse_shortcuts_tree_view,
3416                       0, GDK_CURRENT_TIME);
3417       gtk_menu_shell_select_first (GTK_MENU_SHELL (impl->browse_shortcuts_popup_menu),
3418                                    FALSE);
3419     }
3420 }
3421
3422 /* Callback used for the GtkWidget::popup-menu signal of the shortcuts list */
3423 static gboolean
3424 shortcuts_popup_menu_cb (GtkWidget *widget,
3425                          GtkFileChooserDefault *impl)
3426 {
3427   shortcuts_popup_menu (impl, NULL);
3428   return TRUE;
3429 }
3430
3431 /* Callback used when a button is pressed on the shortcuts list.  
3432  * We trap button 3 to bring up a popup menu.
3433  */
3434 static gboolean
3435 shortcuts_button_press_event_cb (GtkWidget             *widget,
3436                                  GdkEventButton        *event,
3437                                  GtkFileChooserDefault *impl)
3438 {
3439   static gboolean in_press = FALSE;
3440   gboolean handled;
3441
3442   if (in_press)
3443     return FALSE;
3444
3445   if (event->button != 3)
3446     return FALSE;
3447
3448   in_press = TRUE;
3449   handled = gtk_widget_event (impl->browse_shortcuts_tree_view, (GdkEvent *) event);
3450   in_press = FALSE;
3451
3452   if (!handled)
3453     return FALSE;
3454
3455   shortcuts_popup_menu (impl, event);
3456   return TRUE;
3457 }
3458
3459 static void
3460 shortcuts_edited (GtkCellRenderer       *cell,
3461                   gchar                 *path_string,
3462                   gchar                 *new_text,
3463                   GtkFileChooserDefault *impl)
3464 {
3465   GtkTreePath *path;
3466   GtkTreeIter iter;
3467   GFile *shortcut;
3468
3469   g_object_set (cell, "editable", FALSE, NULL);
3470
3471   path = gtk_tree_path_new_from_string (path_string);
3472   if (!gtk_tree_model_get_iter (GTK_TREE_MODEL (impl->shortcuts_model), &iter, path))
3473     g_assert_not_reached ();
3474
3475   gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
3476                       SHORTCUTS_COL_DATA, &shortcut,
3477                       -1);
3478   gtk_tree_path_free (path);
3479   
3480   _gtk_file_system_set_bookmark_label (impl->file_system, shortcut, new_text);
3481 }
3482
3483 static void
3484 shortcuts_editing_canceled (GtkCellRenderer       *cell,
3485                             GtkFileChooserDefault *impl)
3486 {
3487   g_object_set (cell, "editable", FALSE, NULL);
3488 }
3489
3490 /* Creates the widgets for the shortcuts and bookmarks tree */
3491 static GtkWidget *
3492 shortcuts_list_create (GtkFileChooserDefault *impl)
3493 {
3494   GtkWidget *swin;
3495   GtkTreeSelection *selection;
3496   GtkTreeViewColumn *column;
3497   GtkCellRenderer *renderer;
3498
3499   /* Target types for dragging a row to/from the shortcuts list */
3500   const GtkTargetEntry tree_model_row_targets[] = {
3501     { "GTK_TREE_MODEL_ROW", GTK_TARGET_SAME_WIDGET, GTK_TREE_MODEL_ROW }
3502   };
3503
3504   /* Scrolled window */
3505
3506   swin = gtk_scrolled_window_new (NULL, NULL);
3507   gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swin),
3508                                   GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
3509   gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (swin),
3510                                        GTK_SHADOW_IN);
3511   gtk_widget_show (swin);
3512
3513   /* Tree */
3514   impl->browse_shortcuts_tree_view = gtk_tree_view_new ();
3515   gtk_style_context_add_class (gtk_widget_get_style_context (impl->browse_shortcuts_tree_view),
3516                                GTK_STYLE_CLASS_SIDEBAR);
3517   gtk_tree_view_set_enable_search (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), FALSE);
3518 #ifdef PROFILE_FILE_CHOOSER
3519   g_object_set_data (G_OBJECT (impl->browse_shortcuts_tree_view), "fmq-name", "shortcuts");
3520 #endif
3521
3522   /* Connect "after" to key-press-event on the shortcuts pane.  We want this action to be possible:
3523    *
3524    *   1. user brings up a SAVE dialog
3525    *   2. user clicks on a shortcut in the shortcuts pane
3526    *   3. user starts typing a filename
3527    *
3528    * Normally, the user's typing would be ignored, as the shortcuts treeview doesn't
3529    * support interactive search.  However, we'd rather focus the location entry
3530    * so that the user can type *there*.
3531    *
3532    * To preserve keyboard navigation in the shortcuts pane, we don't focus the
3533    * filename entry if one clicks on a shortcut; rather, we focus the entry only
3534    * if the user starts typing while the focus is in the shortcuts pane.
3535    */
3536   g_signal_connect_after (impl->browse_shortcuts_tree_view, "key-press-event",
3537                           G_CALLBACK (shortcuts_key_press_event_after_cb), impl);
3538
3539   g_signal_connect (impl->browse_shortcuts_tree_view, "popup-menu",
3540                     G_CALLBACK (shortcuts_popup_menu_cb), impl);
3541   g_signal_connect (impl->browse_shortcuts_tree_view, "button-press-event",
3542                     G_CALLBACK (shortcuts_button_press_event_cb), impl);
3543   /* Accessible object name for the file chooser's shortcuts pane */
3544   atk_object_set_name (gtk_widget_get_accessible (impl->browse_shortcuts_tree_view), _("Places"));
3545
3546   gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), impl->shortcuts_pane_filter_model);
3547
3548   gtk_tree_view_enable_model_drag_source (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view),
3549                                           GDK_BUTTON1_MASK,
3550                                           tree_model_row_targets,
3551                                           G_N_ELEMENTS (tree_model_row_targets),
3552                                           GDK_ACTION_MOVE);
3553
3554   gtk_drag_dest_set (impl->browse_shortcuts_tree_view,
3555                      GTK_DEST_DEFAULT_ALL,
3556                      tree_model_row_targets,
3557                      G_N_ELEMENTS (tree_model_row_targets),
3558                      GDK_ACTION_COPY | GDK_ACTION_MOVE);
3559   gtk_drag_dest_add_uri_targets (impl->browse_shortcuts_tree_view);
3560
3561   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view));
3562   gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
3563   gtk_tree_selection_set_select_function (selection,
3564                                           shortcuts_select_func,
3565                                           impl, NULL);
3566
3567   g_signal_connect (selection, "changed",
3568                     G_CALLBACK (shortcuts_selection_changed_cb), impl);
3569
3570   g_signal_connect (impl->browse_shortcuts_tree_view, "key-press-event",
3571                     G_CALLBACK (shortcuts_key_press_event_cb), impl);
3572
3573   g_signal_connect (impl->browse_shortcuts_tree_view, "drag-begin",
3574                     G_CALLBACK (shortcuts_drag_begin_cb), impl);
3575   g_signal_connect (impl->browse_shortcuts_tree_view, "drag-end",
3576                     G_CALLBACK (shortcuts_drag_end_cb), impl);
3577   g_signal_connect (impl->browse_shortcuts_tree_view, "drag-data-delete",
3578                     G_CALLBACK (shortcuts_drag_data_delete_cb), impl);
3579
3580   g_signal_connect (impl->browse_shortcuts_tree_view, "drag-leave",
3581                     G_CALLBACK (shortcuts_drag_leave_cb), impl);
3582   g_signal_connect (impl->browse_shortcuts_tree_view, "drag-motion",
3583                     G_CALLBACK (shortcuts_drag_motion_cb), impl);
3584   g_signal_connect (impl->browse_shortcuts_tree_view, "drag-drop",
3585                     G_CALLBACK (shortcuts_drag_drop_cb), impl);
3586   g_signal_connect (impl->browse_shortcuts_tree_view, "drag-data-received",
3587                     G_CALLBACK (shortcuts_drag_data_received_cb), impl);
3588
3589   /* Support tooltips */
3590   gtk_widget_set_has_tooltip (impl->browse_shortcuts_tree_view, TRUE);
3591   g_signal_connect (impl->browse_shortcuts_tree_view, "query-tooltip",
3592                     G_CALLBACK (shortcuts_query_tooltip_cb), impl);
3593
3594   gtk_container_add (GTK_CONTAINER (swin), impl->browse_shortcuts_tree_view);
3595   gtk_widget_show (impl->browse_shortcuts_tree_view);
3596
3597   /* Column */
3598
3599   column = gtk_tree_view_column_new ();
3600   /* Column header for the file chooser's shortcuts pane */
3601   gtk_tree_view_column_set_title (column, _("_Places"));
3602
3603   renderer = gtk_cell_renderer_pixbuf_new ();
3604   gtk_tree_view_column_pack_start (column, renderer, FALSE);
3605   gtk_tree_view_column_set_attributes (column, renderer,
3606                                        "pixbuf", SHORTCUTS_COL_PIXBUF,
3607                                        "visible", SHORTCUTS_COL_PIXBUF_VISIBLE,
3608                                        NULL);
3609
3610   renderer = gtk_cell_renderer_text_new ();
3611   g_object_set (renderer,
3612                 "width-chars", 12,
3613                 "ellipsize", PANGO_ELLIPSIZE_END,
3614                 NULL);
3615   g_signal_connect (renderer, "edited",
3616                     G_CALLBACK (shortcuts_edited), impl);
3617   g_signal_connect (renderer, "editing-canceled",
3618                     G_CALLBACK (shortcuts_editing_canceled), impl);
3619   gtk_tree_view_column_pack_start (column, renderer, TRUE);
3620   gtk_tree_view_column_set_attributes (column, renderer,
3621                                        "text", SHORTCUTS_COL_NAME,
3622                                        NULL);
3623
3624   gtk_tree_view_set_row_separator_func (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view),
3625                                         shortcuts_row_separator_func,
3626                                         NULL, NULL);
3627
3628   gtk_tree_view_append_column (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), column);
3629
3630   return swin;
3631 }
3632
3633 /* Creates the widgets for the shortcuts/bookmarks pane */
3634 static GtkWidget *
3635 shortcuts_pane_create (GtkFileChooserDefault *impl,
3636                        GtkSizeGroup          *size_group)
3637 {
3638   GtkWidget *vbox;
3639   GtkWidget *toolbar;
3640   GtkWidget *widget;
3641   GtkStyleContext *context;
3642   GIcon *icon;
3643
3644   vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
3645   gtk_widget_show (vbox);
3646
3647   /* Shortcuts tree */
3648
3649   widget = shortcuts_list_create (impl);
3650
3651   gtk_size_group_add_widget (size_group, widget);
3652   context = gtk_widget_get_style_context (widget);
3653   gtk_style_context_set_junction_sides (context, GTK_JUNCTION_BOTTOM);
3654
3655   gtk_box_pack_start (GTK_BOX (vbox), widget, TRUE, TRUE, 0);
3656
3657   /* Box for buttons */
3658
3659   toolbar = gtk_toolbar_new ();
3660   gtk_toolbar_set_icon_size (GTK_TOOLBAR (toolbar), GTK_ICON_SIZE_MENU);
3661
3662   context = gtk_widget_get_style_context (toolbar);
3663   gtk_style_context_set_junction_sides (context, GTK_JUNCTION_TOP);
3664   gtk_style_context_add_class (context, GTK_STYLE_CLASS_INLINE_TOOLBAR);
3665   
3666   gtk_box_pack_start (GTK_BOX (vbox), toolbar, FALSE, FALSE, 0);
3667   gtk_widget_show (toolbar);
3668
3669   /* Add bookmark button */
3670   icon = g_themed_icon_new_with_default_fallbacks ("list-add-symbolic");
3671   impl->browse_shortcuts_add_button = toolbutton_new (impl,
3672                                                       icon,
3673                                                       FALSE,
3674                                                       TRUE,
3675                                                       G_CALLBACK (add_bookmark_button_clicked_cb));
3676   g_object_unref (icon);
3677
3678   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (impl->browse_shortcuts_add_button), 0);
3679   gtk_widget_set_tooltip_text (impl->browse_shortcuts_add_button,
3680                                _("Add the selected folder to the Bookmarks"));
3681
3682   /* Remove bookmark button */
3683   icon = g_themed_icon_new_with_default_fallbacks ("list-remove-symbolic");
3684   impl->browse_shortcuts_remove_button = toolbutton_new (impl,
3685                                                          icon,
3686                                                          FALSE,
3687                                                          TRUE,
3688                                                          G_CALLBACK (remove_bookmark_button_clicked_cb));
3689   g_object_unref (icon);
3690   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (impl->browse_shortcuts_remove_button), 1);
3691   gtk_widget_set_tooltip_text (impl->browse_shortcuts_remove_button,
3692                                _("Remove the selected bookmark"));
3693
3694   return vbox;
3695 }
3696
3697 static gboolean
3698 key_is_left_or_right (GdkEventKey *event)
3699 {
3700   guint modifiers;
3701
3702   modifiers = gtk_accelerator_get_default_mod_mask ();
3703
3704   return ((event->keyval == GDK_KEY_Right
3705            || event->keyval == GDK_KEY_KP_Right
3706            || event->keyval == GDK_KEY_Left
3707            || event->keyval == GDK_KEY_KP_Left)
3708           && (event->state & modifiers) == 0);
3709 }
3710
3711 /* Handles key press events on the file list, so that we can trap Enter to
3712  * activate the default button on our own.  Also, checks to see if '/' has been
3713  * pressed.  See comment by tree_view_keybinding_cb() for more details.
3714  */
3715 static gboolean
3716 browse_files_key_press_event_cb (GtkWidget   *widget,
3717                                  GdkEventKey *event,
3718                                  gpointer     data)
3719 {
3720   GtkFileChooserDefault *impl;
3721   int modifiers;
3722
3723   impl = (GtkFileChooserDefault *) data;
3724
3725   modifiers = gtk_accelerator_get_default_mod_mask ();
3726
3727   if ((event->keyval == GDK_KEY_slash
3728        || event->keyval == GDK_KEY_KP_Divide
3729 #ifdef G_OS_UNIX
3730        || event->keyval == GDK_KEY_asciitilde
3731 #endif
3732        ) && ! (event->state & (~GDK_SHIFT_MASK & modifiers)))
3733     {
3734       location_popup_handler (impl, event->string);
3735       return TRUE;
3736     }
3737
3738   if (key_is_left_or_right (event))
3739     {
3740       gtk_widget_grab_focus (impl->browse_shortcuts_tree_view);
3741       return TRUE;
3742     }
3743
3744   if ((event->keyval == GDK_KEY_Return
3745        || event->keyval == GDK_KEY_ISO_Enter
3746        || event->keyval == GDK_KEY_KP_Enter
3747        || event->keyval == GDK_KEY_space
3748        || event->keyval == GDK_KEY_KP_Space)
3749       && ((event->state & modifiers) == 0)
3750       && !(impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER ||
3751            impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER))
3752     {
3753       GtkWindow *window;
3754
3755       window = get_toplevel (widget);
3756       if (window)
3757         {
3758           GtkWidget *default_widget, *focus_widget;
3759
3760           default_widget = gtk_window_get_default_widget (window);
3761           focus_widget = gtk_window_get_focus (window);
3762
3763           if (widget != default_widget &&
3764               !(widget == focus_widget && (!default_widget || !gtk_widget_get_sensitive (default_widget))))
3765             {
3766               gtk_window_activate_default (window);
3767
3768               return TRUE;
3769             }
3770         }
3771     }
3772
3773   return FALSE;
3774 }
3775
3776 /* Callback used when the file list's popup menu is detached */
3777 static void
3778 popup_menu_detach_cb (GtkWidget *attach_widget,
3779                       GtkMenu   *menu)
3780 {
3781   GtkFileChooserDefault *impl;
3782
3783   impl = g_object_get_data (G_OBJECT (attach_widget), "GtkFileChooserDefault");
3784   g_assert (GTK_IS_FILE_CHOOSER_DEFAULT (impl));
3785
3786   impl->browse_files_popup_menu = NULL;
3787   impl->browse_files_popup_menu_add_shortcut_item = NULL;
3788   impl->browse_files_popup_menu_hidden_files_item = NULL;
3789 }
3790
3791 /* Callback used when the "Add to Bookmarks" menu item is activated */
3792 static void
3793 add_to_shortcuts_cb (GtkMenuItem           *item,
3794                      GtkFileChooserDefault *impl)
3795 {
3796   bookmarks_add_selected_folder (impl);
3797 }
3798
3799 /* Callback used when the "Show Hidden Files" menu item is toggled */
3800 static void
3801 show_hidden_toggled_cb (GtkCheckMenuItem      *item,
3802                         GtkFileChooserDefault *impl)
3803 {
3804   g_object_set (impl,
3805                 "show-hidden", gtk_check_menu_item_get_active (item),
3806                 NULL);
3807 }
3808
3809 /* Callback used when the "Show Size Column" menu item is toggled */
3810 static void
3811 show_size_column_toggled_cb (GtkCheckMenuItem *item,
3812                              GtkFileChooserDefault *impl)
3813 {
3814   impl->show_size_column = gtk_check_menu_item_get_active (item);
3815
3816   gtk_tree_view_column_set_visible (impl->list_size_column,
3817                                     impl->show_size_column);
3818 }
3819
3820 /* Shows an error dialog about not being able to select a dragged file */
3821 static void
3822 error_selecting_dragged_file_dialog (GtkFileChooserDefault *impl,
3823                                      GFile                 *file,
3824                                      GError                *error)
3825 {
3826   error_dialog (impl,
3827                 _("Could not select file"),
3828                 file, error);
3829 }
3830
3831 static void
3832 file_list_drag_data_select_uris (GtkFileChooserDefault  *impl,
3833                                  gchar                 **uris)
3834 {
3835   int i;
3836   char *uri;
3837   GtkFileChooser *chooser = GTK_FILE_CHOOSER (impl);
3838
3839   for (i = 1; uris[i]; i++)
3840     {
3841       GFile *file;
3842       GError *error = NULL;
3843
3844       uri = uris[i];
3845       file = g_file_new_for_uri (uri);
3846
3847       gtk_file_chooser_default_select_file (chooser, file, &error);
3848       if (error)
3849         error_selecting_dragged_file_dialog (impl, file, error);
3850
3851       g_object_unref (file);
3852     }
3853 }
3854
3855 struct FileListDragData
3856 {
3857   GtkFileChooserDefault *impl;
3858   gchar **uris;
3859   GFile *file;
3860 };
3861
3862 static void
3863 file_list_drag_data_received_get_info_cb (GCancellable *cancellable,
3864                                           GFileInfo    *info,
3865                                           const GError *error,
3866                                           gpointer      user_data)
3867 {
3868   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
3869   struct FileListDragData *data = user_data;
3870   GtkFileChooser *chooser = GTK_FILE_CHOOSER (data->impl);
3871
3872   if (cancellable != data->impl->file_list_drag_data_received_cancellable)
3873     goto out;
3874
3875   data->impl->file_list_drag_data_received_cancellable = NULL;
3876
3877   if (cancelled || error)
3878     goto out;
3879
3880   if ((data->impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
3881        data->impl->action == GTK_FILE_CHOOSER_ACTION_SAVE) &&
3882       data->uris[1] == 0 && !error && _gtk_file_info_consider_as_directory (info))
3883     change_folder_and_display_error (data->impl, data->file, FALSE);
3884   else
3885     {
3886       GError *error = NULL;
3887
3888       gtk_file_chooser_default_unselect_all (chooser);
3889       gtk_file_chooser_default_select_file (chooser, data->file, &error);
3890       if (error)
3891         error_selecting_dragged_file_dialog (data->impl, data->file, error);
3892       else
3893         browse_files_center_selected_row (data->impl);
3894     }
3895
3896   if (data->impl->select_multiple)
3897     file_list_drag_data_select_uris (data->impl, data->uris);
3898
3899 out:
3900   g_object_unref (data->impl);
3901   g_strfreev (data->uris);
3902   g_object_unref (data->file);
3903   g_free (data);
3904
3905   g_object_unref (cancellable);
3906 }
3907
3908 static void
3909 file_list_drag_data_received_cb (GtkWidget        *widget,
3910                                  GdkDragContext   *context,
3911                                  gint              x,
3912                                  gint              y,
3913                                  GtkSelectionData *selection_data,
3914                                  guint             info,
3915                                  guint             time_,
3916                                  gpointer          data)
3917 {
3918   GtkFileChooserDefault *impl;
3919   gchar **uris;
3920   char *uri;
3921   GFile *file;
3922
3923   impl = GTK_FILE_CHOOSER_DEFAULT (data);
3924
3925   /* Allow only drags from other widgets; see bug #533891. */
3926   if (gtk_drag_get_source_widget (context) == widget)
3927     {
3928       g_signal_stop_emission_by_name (widget, "drag-data-received");
3929       return;
3930     }
3931
3932   /* Parse the text/uri-list string, navigate to the first one */
3933   uris = gtk_selection_data_get_uris (selection_data);
3934   if (uris && uris[0])
3935     {
3936       struct FileListDragData *data;
3937
3938       uri = uris[0];
3939       file = g_file_new_for_uri (uri);
3940
3941       data = g_new0 (struct FileListDragData, 1);
3942       data->impl = g_object_ref (impl);
3943       data->uris = uris;
3944       data->file = file;
3945
3946       if (impl->file_list_drag_data_received_cancellable)
3947         g_cancellable_cancel (impl->file_list_drag_data_received_cancellable);
3948
3949       impl->file_list_drag_data_received_cancellable =
3950         _gtk_file_system_get_info (impl->file_system, file,
3951                                    "standard::type",
3952                                    file_list_drag_data_received_get_info_cb,
3953                                    data);
3954     }
3955
3956   g_signal_stop_emission_by_name (widget, "drag-data-received");
3957 }
3958
3959 /* Don't do anything with the drag_drop signal */
3960 static gboolean
3961 file_list_drag_drop_cb (GtkWidget             *widget,
3962                         GdkDragContext        *context,
3963                         gint                   x,
3964                         gint                   y,
3965                         guint                  time_,
3966                         GtkFileChooserDefault *impl)
3967 {
3968   g_signal_stop_emission_by_name (widget, "drag-drop");
3969   return TRUE;
3970 }
3971
3972 /* Disable the normal tree drag motion handler, it makes it look like you're
3973    dropping the dragged item onto a tree item */
3974 static gboolean
3975 file_list_drag_motion_cb (GtkWidget             *widget,
3976                           GdkDragContext        *context,
3977                           gint                   x,
3978                           gint                   y,
3979                           guint                  time_,
3980                           GtkFileChooserDefault *impl)
3981 {
3982   g_signal_stop_emission_by_name (widget, "drag-motion");
3983   return TRUE;
3984 }
3985
3986 /* Constructs the popup menu for the file list if needed */
3987 static void
3988 file_list_build_popup_menu (GtkFileChooserDefault *impl)
3989 {
3990   GtkWidget *item;
3991
3992   if (impl->browse_files_popup_menu)
3993     return;
3994
3995   impl->browse_files_popup_menu = gtk_menu_new ();
3996   gtk_menu_attach_to_widget (GTK_MENU (impl->browse_files_popup_menu),
3997                              impl->browse_files_tree_view,
3998                              popup_menu_detach_cb);
3999
4000   item = gtk_image_menu_item_new_with_mnemonic (_("_Add to Bookmarks"));
4001   impl->browse_files_popup_menu_add_shortcut_item = item;
4002   gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item),
4003                                  gtk_image_new_from_stock (GTK_STOCK_ADD, GTK_ICON_SIZE_MENU));
4004   g_signal_connect (item, "activate",
4005                     G_CALLBACK (add_to_shortcuts_cb), impl);
4006   gtk_widget_show (item);
4007   gtk_menu_shell_append (GTK_MENU_SHELL (impl->browse_files_popup_menu), item);
4008
4009   item = gtk_separator_menu_item_new ();
4010   gtk_widget_show (item);
4011   gtk_menu_shell_append (GTK_MENU_SHELL (impl->browse_files_popup_menu), item);
4012
4013   item = gtk_check_menu_item_new_with_mnemonic (_("Show _Hidden Files"));
4014   impl->browse_files_popup_menu_hidden_files_item = item;
4015   g_signal_connect (item, "toggled",
4016                     G_CALLBACK (show_hidden_toggled_cb), impl);
4017   gtk_widget_show (item);
4018   gtk_menu_shell_append (GTK_MENU_SHELL (impl->browse_files_popup_menu), item);
4019
4020   item = gtk_check_menu_item_new_with_mnemonic (_("Show _Size Column"));
4021   impl->browse_files_popup_menu_size_column_item = item;
4022   g_signal_connect (item, "toggled",
4023                     G_CALLBACK (show_size_column_toggled_cb), impl);
4024   gtk_widget_show (item);
4025   gtk_menu_shell_append (GTK_MENU_SHELL (impl->browse_files_popup_menu), item);
4026
4027   bookmarks_check_add_sensitivity (impl);
4028 }
4029
4030 /* Updates the popup menu for the file list, creating it if necessary */
4031 static void
4032 file_list_update_popup_menu (GtkFileChooserDefault *impl)
4033 {
4034   file_list_build_popup_menu (impl);
4035
4036   /* FIXME - handle OPERATION_MODE_SEARCH and OPERATION_MODE_RECENT */
4037
4038   /* The sensitivity of the Add to Bookmarks item is set in
4039    * bookmarks_check_add_sensitivity()
4040    */
4041
4042   /* 'Show Hidden Files' */
4043   g_signal_handlers_block_by_func (impl->browse_files_popup_menu_hidden_files_item,
4044                                    G_CALLBACK (show_hidden_toggled_cb), impl);
4045   gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (impl->browse_files_popup_menu_hidden_files_item),
4046                                   impl->show_hidden);
4047   g_signal_handlers_unblock_by_func (impl->browse_files_popup_menu_hidden_files_item,
4048                                      G_CALLBACK (show_hidden_toggled_cb), impl);
4049
4050   /* 'Show Size Column' */
4051   g_signal_handlers_block_by_func (impl->browse_files_popup_menu_size_column_item,
4052                                    G_CALLBACK (show_size_column_toggled_cb), impl);
4053   gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (impl->browse_files_popup_menu_size_column_item),
4054                                   impl->show_size_column);
4055   g_signal_handlers_unblock_by_func (impl->browse_files_popup_menu_size_column_item,
4056                                      G_CALLBACK (show_size_column_toggled_cb), impl);
4057 }
4058
4059 static void
4060 popup_position_func (GtkMenu   *menu,
4061                      gint      *x,
4062                      gint      *y,
4063                      gboolean  *push_in,
4064                      gpointer   user_data)
4065 {
4066   GtkAllocation allocation;
4067   GtkWidget *widget = GTK_WIDGET (user_data);
4068   GdkScreen *screen = gtk_widget_get_screen (widget);
4069   GtkRequisition req;
4070   gint monitor_num;
4071   GdkRectangle monitor;
4072
4073   g_return_if_fail (gtk_widget_get_realized (widget));
4074
4075   gdk_window_get_origin (gtk_widget_get_window (widget), x, y);
4076
4077   gtk_widget_get_preferred_size (GTK_WIDGET (menu),
4078                                  &req, NULL);
4079
4080   gtk_widget_get_allocation (widget, &allocation);
4081   *x += (allocation.width - req.width) / 2;
4082   *y += (allocation.height - req.height) / 2;
4083
4084   monitor_num = gdk_screen_get_monitor_at_point (screen, *x, *y);
4085   gtk_menu_set_monitor (menu, monitor_num);
4086   gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor);
4087
4088   *x = CLAMP (*x, monitor.x, monitor.x + MAX (0, monitor.width - req.width));
4089   *y = CLAMP (*y, monitor.y, monitor.y + MAX (0, monitor.height - req.height));
4090
4091   *push_in = FALSE;
4092 }
4093
4094 static void
4095 file_list_popup_menu (GtkFileChooserDefault *impl,
4096                       GdkEventButton        *event)
4097 {
4098   file_list_update_popup_menu (impl);
4099   if (event)
4100     gtk_menu_popup (GTK_MENU (impl->browse_files_popup_menu),
4101                     NULL, NULL, NULL, NULL,
4102                     event->button, event->time);
4103   else
4104     {
4105       gtk_menu_popup (GTK_MENU (impl->browse_files_popup_menu),
4106                       NULL, NULL,
4107                       popup_position_func, impl->browse_files_tree_view,
4108                       0, GDK_CURRENT_TIME);
4109       gtk_menu_shell_select_first (GTK_MENU_SHELL (impl->browse_files_popup_menu),
4110                                    FALSE);
4111     }
4112
4113 }
4114
4115 /* Callback used for the GtkWidget::popup-menu signal of the file list */
4116 static gboolean
4117 list_popup_menu_cb (GtkWidget *widget,
4118                     GtkFileChooserDefault *impl)
4119 {
4120   file_list_popup_menu (impl, NULL);
4121   return TRUE;
4122 }
4123
4124 /* Callback used when a button is pressed on the file list.  We trap button 3 to
4125  * bring up a popup menu.
4126  */
4127 static gboolean
4128 list_button_press_event_cb (GtkWidget             *widget,
4129                             GdkEventButton        *event,
4130                             GtkFileChooserDefault *impl)
4131 {
4132   static gboolean in_press = FALSE;
4133
4134   if (in_press)
4135     return FALSE;
4136
4137   if (event->button != 3)
4138     return FALSE;
4139
4140   in_press = TRUE;
4141   gtk_widget_event (impl->browse_files_tree_view, (GdkEvent *) event);
4142   in_press = FALSE;
4143
4144   file_list_popup_menu (impl, event);
4145   return TRUE;
4146 }
4147
4148 typedef struct {
4149   OperationMode operation_mode;
4150   gint general_column;
4151   gint model_column;
4152 } ColumnMap;
4153
4154 /* Sets the sort column IDs for the file list based on the operation mode */
4155 static void
4156 file_list_set_sort_column_ids (GtkFileChooserDefault *impl)
4157 {
4158   gtk_tree_view_column_set_sort_column_id (impl->list_name_column, MODEL_COL_NAME);
4159   gtk_tree_view_column_set_sort_column_id (impl->list_mtime_column, MODEL_COL_MTIME);
4160   gtk_tree_view_column_set_sort_column_id (impl->list_size_column, MODEL_COL_SIZE);
4161 }
4162
4163 static gboolean
4164 file_list_query_tooltip_cb (GtkWidget  *widget,
4165                             gint        x,
4166                             gint        y,
4167                             gboolean    keyboard_tip,
4168                             GtkTooltip *tooltip,
4169                             gpointer    user_data)
4170 {
4171   GtkFileChooserDefault *impl = user_data;
4172   GtkTreeModel *model;
4173   GtkTreePath *path;
4174   GtkTreeIter iter;
4175   GFile *file;
4176   gchar *filename;
4177
4178   if (impl->operation_mode == OPERATION_MODE_BROWSE)
4179     return FALSE;
4180
4181
4182   if (!gtk_tree_view_get_tooltip_context (GTK_TREE_VIEW (impl->browse_files_tree_view),
4183                                           &x, &y,
4184                                           keyboard_tip,
4185                                           &model, &path, &iter))
4186     return FALSE;
4187                                        
4188   gtk_tree_model_get (model, &iter,
4189                       MODEL_COL_FILE, &file,
4190                       -1);
4191
4192   if (file == NULL)
4193     {
4194       gtk_tree_path_free (path);
4195       return FALSE;
4196     }
4197
4198   filename = g_file_get_path (file);
4199   gtk_tooltip_set_text (tooltip, filename);
4200   gtk_tree_view_set_tooltip_row (GTK_TREE_VIEW (impl->browse_files_tree_view),
4201                                  tooltip,
4202                                  path);
4203
4204   g_free (filename);
4205   g_object_unref (file);
4206   gtk_tree_path_free (path);
4207
4208   return TRUE;
4209 }
4210
4211 static void
4212 set_icon_cell_renderer_fixed_size (GtkFileChooserDefault *impl, GtkCellRenderer *renderer)
4213 {
4214   gint xpad, ypad;
4215
4216   gtk_cell_renderer_get_padding (renderer, &xpad, &ypad);
4217   gtk_cell_renderer_set_fixed_size (renderer, 
4218                                     xpad * 2 + impl->icon_size,
4219                                     ypad * 2 + impl->icon_size);
4220 }
4221
4222 /* Creates the widgets for the file list */
4223 static GtkWidget *
4224 create_file_list (GtkFileChooserDefault *impl)
4225 {
4226   GtkWidget *swin;
4227   GtkTreeSelection *selection;
4228   GtkTreeViewColumn *column;
4229   GtkCellRenderer *renderer;
4230
4231   /* Scrolled window */
4232   swin = gtk_scrolled_window_new (NULL, NULL);
4233   gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swin),
4234                                   GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
4235   gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (swin),
4236                                        GTK_SHADOW_IN);
4237
4238   /* Tree/list view */
4239
4240   impl->browse_files_tree_view = gtk_tree_view_new ();
4241 #ifdef PROFILE_FILE_CHOOSER
4242   g_object_set_data (G_OBJECT (impl->browse_files_tree_view), "fmq-name", "file_list");
4243 #endif
4244   g_object_set_data (G_OBJECT (impl->browse_files_tree_view), I_("GtkFileChooserDefault"), impl);
4245   atk_object_set_name (gtk_widget_get_accessible (impl->browse_files_tree_view), _("Files"));
4246
4247   gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (impl->browse_files_tree_view), TRUE);
4248   gtk_container_add (GTK_CONTAINER (swin), impl->browse_files_tree_view);
4249
4250   gtk_drag_dest_set (impl->browse_files_tree_view,
4251                      GTK_DEST_DEFAULT_ALL,
4252                      NULL, 0,
4253                      GDK_ACTION_COPY | GDK_ACTION_MOVE);
4254   gtk_drag_dest_add_uri_targets (impl->browse_files_tree_view);
4255   
4256   g_signal_connect (impl->browse_files_tree_view, "row-activated",
4257                     G_CALLBACK (list_row_activated), impl);
4258   g_signal_connect (impl->browse_files_tree_view, "key-press-event",
4259                     G_CALLBACK (browse_files_key_press_event_cb), impl);
4260   g_signal_connect (impl->browse_files_tree_view, "popup-menu",
4261                     G_CALLBACK (list_popup_menu_cb), impl);
4262   g_signal_connect (impl->browse_files_tree_view, "button-press-event",
4263                     G_CALLBACK (list_button_press_event_cb), impl);
4264
4265   g_signal_connect (impl->browse_files_tree_view, "drag-data-received",
4266                     G_CALLBACK (file_list_drag_data_received_cb), impl);
4267   g_signal_connect (impl->browse_files_tree_view, "drag-drop",
4268                     G_CALLBACK (file_list_drag_drop_cb), impl);
4269   g_signal_connect (impl->browse_files_tree_view, "drag-motion",
4270                     G_CALLBACK (file_list_drag_motion_cb), impl);
4271
4272   g_object_set (impl->browse_files_tree_view, "has-tooltip", TRUE, NULL);
4273   g_signal_connect (impl->browse_files_tree_view, "query-tooltip",
4274                     G_CALLBACK (file_list_query_tooltip_cb), impl);
4275
4276   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
4277   gtk_tree_selection_set_select_function (selection,
4278                                           list_select_func,
4279                                           impl, NULL);
4280   gtk_tree_view_enable_model_drag_source (GTK_TREE_VIEW (impl->browse_files_tree_view),
4281                                           GDK_BUTTON1_MASK,
4282                                           NULL, 0,
4283                                           GDK_ACTION_COPY | GDK_ACTION_MOVE);
4284   gtk_drag_source_add_uri_targets (impl->browse_files_tree_view);
4285
4286   g_signal_connect (selection, "changed",
4287                     G_CALLBACK (list_selection_changed), impl);
4288
4289   /* Keep the column order in sync with update_cell_renderer_attributes() */
4290
4291   /* Filename column */
4292
4293   impl->list_name_column = gtk_tree_view_column_new ();
4294   gtk_tree_view_column_set_expand (impl->list_name_column, TRUE);
4295   gtk_tree_view_column_set_resizable (impl->list_name_column, TRUE);
4296   gtk_tree_view_column_set_title (impl->list_name_column, _("Name"));
4297
4298   renderer = gtk_cell_renderer_pixbuf_new ();
4299   /* We set a fixed size so that we get an empty slot even if no icons are loaded yet */
4300   set_icon_cell_renderer_fixed_size (impl, renderer);
4301   gtk_tree_view_column_pack_start (impl->list_name_column, renderer, FALSE);
4302
4303   impl->list_name_renderer = gtk_cell_renderer_text_new ();
4304   g_object_set (impl->list_name_renderer,
4305                 "ellipsize", PANGO_ELLIPSIZE_END,
4306                 NULL);
4307   g_signal_connect (impl->list_name_renderer, "edited",
4308                     G_CALLBACK (renderer_edited_cb), impl);
4309   g_signal_connect (impl->list_name_renderer, "editing-canceled",
4310                     G_CALLBACK (renderer_editing_canceled_cb), impl);
4311   gtk_tree_view_column_pack_start (impl->list_name_column, impl->list_name_renderer, TRUE);
4312
4313   gtk_tree_view_append_column (GTK_TREE_VIEW (impl->browse_files_tree_view), impl->list_name_column);
4314
4315   /* Size column */
4316
4317   column = gtk_tree_view_column_new ();
4318   gtk_tree_view_column_set_resizable (column, TRUE);
4319   gtk_tree_view_column_set_title (column, _("Size"));
4320
4321   renderer = gtk_cell_renderer_text_new ();
4322   g_object_set (renderer, 
4323                 "alignment", PANGO_ALIGN_RIGHT,
4324                 NULL);
4325   gtk_tree_view_column_pack_start (column, renderer, TRUE); /* bug: it doesn't expand */
4326   gtk_tree_view_append_column (GTK_TREE_VIEW (impl->browse_files_tree_view), column);
4327   impl->list_size_column = column;
4328
4329   /* Modification time column */
4330
4331   column = gtk_tree_view_column_new ();
4332   gtk_tree_view_column_set_resizable (column, TRUE);
4333   gtk_tree_view_column_set_title (column, _("Modified"));
4334
4335   renderer = gtk_cell_renderer_text_new ();
4336   gtk_tree_view_column_pack_start (column, renderer, TRUE);
4337   gtk_tree_view_append_column (GTK_TREE_VIEW (impl->browse_files_tree_view), column);
4338   impl->list_mtime_column = column;
4339   
4340   file_list_set_sort_column_ids (impl);
4341   update_cell_renderer_attributes (impl);
4342
4343   gtk_widget_show_all (swin);
4344
4345   return swin;
4346 }
4347
4348 /* Creates the widgets for the files/folders pane */
4349 static GtkWidget *
4350 file_pane_create (GtkFileChooserDefault *impl,
4351                   GtkSizeGroup          *size_group)
4352 {
4353   GtkWidget *vbox;
4354   GtkWidget *hbox;
4355   GtkWidget *widget;
4356
4357   vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
4358   gtk_widget_show (vbox);
4359
4360   /* Box for lists and preview */
4361
4362   hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, PREVIEW_HBOX_SPACING);
4363   gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 0);
4364   gtk_widget_show (hbox);
4365
4366   /* File list */
4367
4368   widget = create_file_list (impl);
4369   gtk_box_pack_start (GTK_BOX (hbox), widget, TRUE, TRUE, 0);
4370   gtk_size_group_add_widget (size_group, widget);
4371
4372   /* Preview */
4373
4374   impl->preview_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
4375   gtk_box_pack_start (GTK_BOX (hbox), impl->preview_box, FALSE, FALSE, 0);
4376   /* Don't show preview box initially */
4377
4378   /* Filter combo */
4379
4380   impl->filter_combo_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
4381
4382   widget = filter_create (impl);
4383
4384   gtk_widget_show (widget);
4385   gtk_box_pack_end (GTK_BOX (impl->filter_combo_hbox), widget, FALSE, FALSE, 0);
4386
4387   gtk_box_pack_end (GTK_BOX (vbox), impl->filter_combo_hbox, FALSE, FALSE, 0);
4388
4389   return vbox;
4390 }
4391
4392 /* Creates the widgets specific to Save mode */
4393 static void
4394 save_widgets_create (GtkFileChooserDefault *impl)
4395 {
4396   GtkWidget *vbox;
4397   GtkWidget *widget;
4398
4399   if (impl->save_widgets != NULL)
4400     return;
4401
4402   location_switch_to_path_bar (impl);
4403
4404   vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
4405
4406   impl->save_widgets_table = gtk_table_new (2, 2, FALSE);
4407   gtk_box_pack_start (GTK_BOX (vbox), impl->save_widgets_table, FALSE, FALSE, 0);
4408   gtk_widget_show (impl->save_widgets_table);
4409   gtk_table_set_row_spacings (GTK_TABLE (impl->save_widgets_table), 12);
4410   gtk_table_set_col_spacings (GTK_TABLE (impl->save_widgets_table), 12);
4411
4412   /* Label */
4413
4414   widget = gtk_label_new_with_mnemonic (_("_Name:"));
4415   gtk_widget_set_halign (widget, GTK_ALIGN_START);
4416   gtk_widget_set_valign (widget, GTK_ALIGN_CENTER);
4417   gtk_table_attach (GTK_TABLE (impl->save_widgets_table), widget,
4418                     0, 1, 0, 1,
4419                     GTK_FILL, GTK_FILL,
4420                     0, 0);
4421   gtk_widget_show (widget);
4422
4423   /* Location entry */
4424
4425   impl->location_entry = _gtk_file_chooser_entry_new (TRUE);
4426   _gtk_file_chooser_entry_set_file_system (GTK_FILE_CHOOSER_ENTRY (impl->location_entry),
4427                                            impl->file_system);
4428   _gtk_file_chooser_entry_set_local_only (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), impl->local_only);
4429   gtk_entry_set_width_chars (GTK_ENTRY (impl->location_entry), 45);
4430   gtk_entry_set_activates_default (GTK_ENTRY (impl->location_entry), TRUE);
4431   gtk_table_attach (GTK_TABLE (impl->save_widgets_table), impl->location_entry,
4432                     1, 2, 0, 1,
4433                     GTK_EXPAND | GTK_FILL, 0,
4434                     0, 0);
4435   gtk_widget_show (impl->location_entry);
4436   gtk_label_set_mnemonic_widget (GTK_LABEL (widget), impl->location_entry);
4437
4438   /* Folder combo */
4439   impl->save_folder_label = gtk_label_new (NULL);
4440   gtk_widget_set_halign (impl->save_folder_label, GTK_ALIGN_START);
4441   gtk_widget_set_valign (impl->save_folder_label, GTK_ALIGN_CENTER);
4442   gtk_table_attach (GTK_TABLE (impl->save_widgets_table), impl->save_folder_label,
4443                     0, 1, 1, 2,
4444                     GTK_FILL, GTK_FILL,
4445                     0, 0);
4446   gtk_widget_show (impl->save_folder_label);
4447
4448   impl->save_widgets = vbox;
4449   gtk_box_pack_start (GTK_BOX (impl), impl->save_widgets, FALSE, FALSE, 0);
4450   gtk_box_reorder_child (GTK_BOX (impl), impl->save_widgets, 0);
4451   gtk_widget_show (impl->save_widgets);
4452 }
4453
4454 /* Destroys the widgets specific to Save mode */
4455 static void
4456 save_widgets_destroy (GtkFileChooserDefault *impl)
4457 {
4458   if (impl->save_widgets == NULL)
4459     return;
4460
4461   gtk_widget_destroy (impl->save_widgets);
4462   impl->save_widgets = NULL;
4463   impl->save_widgets_table = NULL;
4464   impl->location_entry = NULL;
4465   impl->save_folder_label = NULL;
4466 }
4467
4468 /* Turns on the path bar widget.  Can be called even if we are already in that
4469  * mode.
4470  */
4471 static void
4472 location_switch_to_path_bar (GtkFileChooserDefault *impl)
4473 {
4474   if (impl->location_entry)
4475     {
4476       gtk_widget_destroy (impl->location_entry);
4477       impl->location_entry = NULL;
4478     }
4479
4480   gtk_widget_hide (impl->location_entry_box);
4481 }
4482
4483 /* Sets the full path of the current folder as the text in the location entry. */
4484 static void
4485 location_entry_set_initial_text (GtkFileChooserDefault *impl)
4486 {
4487   gchar *text, *filename;
4488
4489   if (!impl->current_folder)
4490     return;
4491
4492   filename = g_file_get_path (impl->current_folder);
4493
4494   if (filename)
4495     {
4496       text = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
4497       g_free (filename);
4498     }
4499   else
4500     text = g_file_get_uri (impl->current_folder);
4501
4502   if (text)
4503     {
4504       gboolean need_slash;
4505       int len;
4506
4507       len = strlen (text);
4508       need_slash = (text[len - 1] != G_DIR_SEPARATOR);
4509
4510       if (need_slash)
4511         {
4512           char *slash_text;
4513
4514           slash_text = g_new (char, len + 2);
4515           strcpy (slash_text, text);
4516           slash_text[len] = G_DIR_SEPARATOR;
4517           slash_text[len + 1] = 0;
4518
4519           g_free (text);
4520           text = slash_text;
4521         }
4522
4523       _gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), text);
4524       g_free (text);
4525     }
4526
4527   g_free (filename);
4528 }
4529
4530 /* Turns on the location entry.  Can be called even if we are already in that
4531  * mode.
4532  */
4533 static void
4534 location_switch_to_filename_entry (GtkFileChooserDefault *impl)
4535 {
4536   /* when in search or recent files mode, we are not showing the
4537    * location_entry_box container, so there's no point in switching
4538    * to it.
4539    */
4540   if (impl->operation_mode == OPERATION_MODE_SEARCH ||
4541       impl->operation_mode == OPERATION_MODE_RECENT)
4542     return;
4543
4544   if (impl->location_entry)
4545     gtk_widget_destroy (impl->location_entry);
4546
4547   /* Box */
4548
4549   gtk_widget_show (impl->location_entry_box);
4550
4551   /* Entry */
4552
4553   impl->location_entry = _gtk_file_chooser_entry_new (TRUE);
4554   _gtk_file_chooser_entry_set_file_system (GTK_FILE_CHOOSER_ENTRY (impl->location_entry),
4555                                            impl->file_system);
4556   gtk_entry_set_activates_default (GTK_ENTRY (impl->location_entry), TRUE);
4557   _gtk_file_chooser_entry_set_action (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), impl->action);
4558
4559   gtk_box_pack_start (GTK_BOX (impl->location_entry_box), impl->location_entry, TRUE, TRUE, 0);
4560   gtk_label_set_mnemonic_widget (GTK_LABEL (impl->location_label), impl->location_entry);
4561
4562   /* Configure the entry */
4563
4564   _gtk_file_chooser_entry_set_base_folder (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), impl->current_folder);
4565   _gtk_file_chooser_entry_set_local_only (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), impl->local_only);
4566
4567   /* Done */
4568
4569   gtk_widget_show (impl->location_entry);
4570   gtk_widget_grab_focus (impl->location_entry);
4571 }
4572
4573 /* Sets a new location mode.  set_buttons determines whether the toggle button
4574  * for the mode will also be changed.
4575  */
4576 static void
4577 location_mode_set (GtkFileChooserDefault *impl,
4578                    LocationMode new_mode,
4579                    gboolean set_button)
4580 {
4581   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
4582       impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
4583     {
4584       GtkWindow *toplevel;
4585       GtkWidget *current_focus;
4586       gboolean button_active;
4587       gboolean switch_to_file_list;
4588
4589       switch (new_mode)
4590         {
4591         case LOCATION_MODE_PATH_BAR:
4592           button_active = FALSE;
4593
4594           /* The location_entry will disappear when we switch to path bar mode.  So,
4595            * we'll focus the file list in that case, to avoid having a window with
4596            * no focused widget.
4597            */
4598           toplevel = get_toplevel (GTK_WIDGET (impl));
4599           switch_to_file_list = FALSE;
4600           if (toplevel)
4601             {
4602               current_focus = gtk_window_get_focus (toplevel);
4603               if (!current_focus || current_focus == impl->location_entry)
4604                 switch_to_file_list = TRUE;
4605             }
4606
4607           location_switch_to_path_bar (impl);
4608
4609           if (switch_to_file_list)
4610             gtk_widget_grab_focus (impl->browse_files_tree_view);
4611
4612           break;
4613
4614         case LOCATION_MODE_FILENAME_ENTRY:
4615           button_active = TRUE;
4616           location_switch_to_filename_entry (impl);
4617           break;
4618
4619         default:
4620           g_assert_not_reached ();
4621           return;
4622         }
4623
4624       if (set_button)
4625         {
4626           g_signal_handlers_block_by_func (impl->location_button,
4627                                            G_CALLBACK (location_button_toggled_cb), impl);
4628
4629           gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (impl->location_button), button_active);
4630
4631           g_signal_handlers_unblock_by_func (impl->location_button,
4632                                              G_CALLBACK (location_button_toggled_cb), impl);
4633         }
4634     }
4635
4636   impl->location_mode = new_mode;
4637 }
4638
4639 static void
4640 location_toggle_popup_handler (GtkFileChooserDefault *impl)
4641 {
4642   /* when in search or recent files mode, we are not showing the
4643    * location_entry_box container, so there's no point in switching
4644    * to it.
4645    */
4646   if (impl->operation_mode == OPERATION_MODE_SEARCH ||
4647       impl->operation_mode == OPERATION_MODE_RECENT)
4648     return;
4649
4650   /* If the file entry is not visible, show it.
4651    * If it is visible, turn it off only if it is focused.  Otherwise, switch to the entry.
4652    */
4653   if (impl->location_mode == LOCATION_MODE_PATH_BAR)
4654     {
4655       location_mode_set (impl, LOCATION_MODE_FILENAME_ENTRY, TRUE);
4656     }
4657   else if (impl->location_mode == LOCATION_MODE_FILENAME_ENTRY)
4658     {
4659       if (gtk_widget_has_focus (impl->location_entry))
4660         {
4661           location_mode_set (impl, LOCATION_MODE_PATH_BAR, TRUE);
4662         }
4663       else
4664         {
4665           gtk_widget_grab_focus (impl->location_entry);
4666         }
4667     }
4668 }
4669
4670 /* Callback used when one of the location mode buttons is toggled */
4671 static void
4672 location_button_toggled_cb (GtkToggleButton *toggle,
4673                             GtkFileChooserDefault *impl)
4674 {
4675   gboolean is_active;
4676   LocationMode new_mode;
4677
4678   is_active = gtk_toggle_button_get_active (toggle);
4679
4680   if (is_active)
4681     {
4682       g_assert (impl->location_mode == LOCATION_MODE_PATH_BAR);
4683       new_mode = LOCATION_MODE_FILENAME_ENTRY;
4684     }
4685   else
4686     {
4687       g_assert (impl->location_mode == LOCATION_MODE_FILENAME_ENTRY);
4688       new_mode = LOCATION_MODE_PATH_BAR;
4689     }
4690
4691   location_mode_set (impl, new_mode, FALSE);
4692 }
4693
4694 /* Creates a toggle button for the location entry. */
4695 static void
4696 location_button_create (GtkFileChooserDefault *impl)
4697 {
4698   GtkWidget *image;
4699   const char *str;
4700
4701   image = gtk_image_new_from_stock (GTK_STOCK_EDIT, GTK_ICON_SIZE_BUTTON);
4702   gtk_widget_show (image);
4703
4704   impl->location_button = g_object_new (GTK_TYPE_TOGGLE_BUTTON,
4705                                         "image", image,
4706                                         NULL);
4707
4708   g_signal_connect (impl->location_button, "toggled",
4709                     G_CALLBACK (location_button_toggled_cb), impl);
4710
4711   str = _("Type a file name");
4712
4713   gtk_widget_set_tooltip_text (impl->location_button, str);
4714   atk_object_set_name (gtk_widget_get_accessible (impl->location_button), str);
4715 }
4716
4717 typedef enum {
4718   PATH_BAR_FOLDER_PATH,
4719   PATH_BAR_SELECT_A_FOLDER,
4720   PATH_BAR_ERROR_NO_FILENAME,
4721   PATH_BAR_ERROR_NO_FOLDER,
4722   PATH_BAR_RECENTLY_USED,
4723   PATH_BAR_SEARCH
4724 } PathBarMode;
4725
4726 /* Creates the info bar for informational messages or warnings, with its icon and label */
4727 static void
4728 info_bar_create (GtkFileChooserDefault *impl)
4729 {
4730   GtkWidget *content_area;
4731
4732   impl->browse_select_a_folder_info_bar = gtk_info_bar_new ();
4733   impl->browse_select_a_folder_icon = gtk_image_new_from_stock (GTK_STOCK_DIRECTORY, GTK_ICON_SIZE_MENU);
4734   impl->browse_select_a_folder_label = gtk_label_new (NULL);
4735
4736   content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (impl->browse_select_a_folder_info_bar));
4737
4738   gtk_box_pack_start (GTK_BOX (content_area), impl->browse_select_a_folder_icon, FALSE, FALSE, 0);
4739   gtk_box_pack_start (GTK_BOX (content_area), impl->browse_select_a_folder_label, FALSE, FALSE, 0);
4740
4741   gtk_widget_show (impl->browse_select_a_folder_icon);
4742   gtk_widget_show (impl->browse_select_a_folder_label);
4743 }
4744
4745 /* Sets the info bar to show the appropriate informational or warning message */
4746 static void
4747 info_bar_set (GtkFileChooserDefault *impl, PathBarMode mode)
4748 {
4749   char *str;
4750   gboolean free_str;
4751   GtkMessageType message_type;
4752
4753   free_str = FALSE;
4754
4755   switch (mode)
4756     {
4757     case PATH_BAR_SELECT_A_FOLDER:
4758       str = g_strconcat ("<i>", _("Please select a folder below"), "</i>", NULL);
4759       free_str = TRUE;
4760       message_type = GTK_MESSAGE_OTHER;
4761       break;
4762
4763     case PATH_BAR_ERROR_NO_FILENAME:
4764       str = _("Please type a file name");
4765       message_type = GTK_MESSAGE_WARNING;
4766       break;
4767
4768     case PATH_BAR_ERROR_NO_FOLDER:
4769       str = _("Please select a folder below");
4770       message_type = GTK_MESSAGE_WARNING;
4771       break;
4772
4773     default:
4774       g_assert_not_reached ();
4775       return;
4776     }
4777
4778   gtk_info_bar_set_message_type (GTK_INFO_BAR (impl->browse_select_a_folder_info_bar), message_type);
4779   gtk_image_set_from_stock (GTK_IMAGE (impl->browse_select_a_folder_icon),
4780                             (message_type == GTK_MESSAGE_WARNING) ? GTK_STOCK_DIALOG_WARNING : GTK_STOCK_DIRECTORY,
4781                             GTK_ICON_SIZE_MENU);
4782   gtk_label_set_markup (GTK_LABEL (impl->browse_select_a_folder_label), str);
4783
4784   if (free_str)
4785     g_free (str);
4786 }
4787
4788 /* Creates the icon and label used to show that the file chooser is in Search or Recently-used mode */
4789 static void
4790 special_mode_widgets_create (GtkFileChooserDefault *impl)
4791 {
4792   impl->browse_special_mode_icon = gtk_image_new ();
4793   gtk_size_group_add_widget (impl->browse_path_bar_size_group, impl->browse_special_mode_icon);
4794   gtk_box_pack_start (GTK_BOX (impl->browse_path_bar_hbox), impl->browse_special_mode_icon, FALSE, FALSE, 0);
4795
4796   impl->browse_special_mode_label = gtk_label_new (NULL);
4797   gtk_size_group_add_widget (impl->browse_path_bar_size_group, impl->browse_special_mode_label);
4798   gtk_box_pack_start (GTK_BOX (impl->browse_path_bar_hbox), impl->browse_special_mode_label, FALSE, FALSE, 0);
4799 }
4800
4801 /* Creates the path bar's container and eveyrthing that goes in it: location button, pathbar, info bar, and Create Folder button */
4802 static void
4803 path_bar_widgets_create (GtkFileChooserDefault *impl)
4804 {
4805   /* Location widgets - note browse_path_bar_hbox is packed in the right place until switch_path_bar() */
4806   impl->browse_path_bar_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
4807   gtk_widget_show (impl->browse_path_bar_hbox);
4808
4809   /* Size group that allows the path bar to be the same size between modes */
4810   impl->browse_path_bar_size_group = gtk_size_group_new (GTK_SIZE_GROUP_VERTICAL);
4811   gtk_size_group_set_ignore_hidden (impl->browse_path_bar_size_group, FALSE);
4812
4813   /* Location button */
4814   location_button_create (impl);
4815   gtk_size_group_add_widget (impl->browse_path_bar_size_group, impl->location_button);
4816   gtk_box_pack_start (GTK_BOX (impl->browse_path_bar_hbox), impl->location_button, FALSE, FALSE, 0);
4817
4818   /* Path bar */
4819   impl->browse_path_bar = g_object_new (GTK_TYPE_PATH_BAR, NULL);
4820   _gtk_path_bar_set_file_system (GTK_PATH_BAR (impl->browse_path_bar), impl->file_system);
4821   g_signal_connect (impl->browse_path_bar, "path-clicked", G_CALLBACK (path_bar_clicked), impl);
4822
4823   gtk_size_group_add_widget (impl->browse_path_bar_size_group, impl->browse_path_bar);
4824   gtk_box_pack_start (GTK_BOX (impl->browse_path_bar_hbox), impl->browse_path_bar, TRUE, TRUE, 0);
4825
4826   /* Info bar */
4827   info_bar_create (impl);
4828   gtk_size_group_add_widget (impl->browse_path_bar_size_group, impl->browse_select_a_folder_info_bar);
4829   gtk_box_pack_start (GTK_BOX (impl->browse_path_bar_hbox), impl->browse_select_a_folder_info_bar, TRUE, TRUE, 0);
4830
4831   /* Widgets for special modes (recently-used in Open mode, Search mode) */
4832   special_mode_widgets_create (impl);
4833
4834   /* Create Folder */
4835   impl->browse_new_folder_button = gtk_button_new_with_mnemonic (_("Create Fo_lder"));
4836   g_signal_connect (impl->browse_new_folder_button, "clicked",
4837                     G_CALLBACK (new_folder_button_clicked), impl);
4838   gtk_size_group_add_widget (impl->browse_path_bar_size_group, impl->browse_new_folder_button);
4839   gtk_box_pack_end (GTK_BOX (impl->browse_path_bar_hbox), impl->browse_new_folder_button, FALSE, FALSE, 0);
4840 }
4841
4842 /* Sets the path bar's mode to show a label, the actual folder path, or a
4843  * warning message.  You may call this function with PATH_BAR_ERROR_* directly
4844  * if the pathbar is already showing the widgets you expect; otherwise, call
4845  * path_bar_update() instead to set the appropriate widgets automatically.
4846  */
4847 static void
4848 path_bar_set_mode (GtkFileChooserDefault *impl, PathBarMode mode)
4849 {
4850   gboolean path_bar_visible             = FALSE;
4851   gboolean special_mode_widgets_visible = FALSE;
4852   gboolean info_bar_visible             = FALSE;
4853   gboolean create_folder_visible        = FALSE;
4854
4855   char *tmp;
4856
4857   switch (mode)
4858     {
4859     case PATH_BAR_FOLDER_PATH:
4860       path_bar_visible = TRUE;
4861       break;
4862
4863     case PATH_BAR_SELECT_A_FOLDER:
4864     case PATH_BAR_ERROR_NO_FILENAME:
4865     case PATH_BAR_ERROR_NO_FOLDER:
4866       info_bar_set (impl, mode);
4867       info_bar_visible = TRUE;
4868       break;
4869
4870     case PATH_BAR_RECENTLY_USED:
4871       gtk_image_set_from_icon_name (GTK_IMAGE (impl->browse_special_mode_icon), "document-open-recent", GTK_ICON_SIZE_BUTTON);
4872
4873       tmp = g_strdup_printf ("<b>%s</b>", _("Recently Used"));
4874       gtk_label_set_markup (GTK_LABEL (impl->browse_special_mode_label), tmp);
4875       g_free (tmp);
4876
4877       special_mode_widgets_visible = TRUE;
4878       break;
4879
4880     case PATH_BAR_SEARCH:
4881       gtk_image_set_from_stock (GTK_IMAGE (impl->browse_special_mode_icon), GTK_STOCK_FIND, GTK_ICON_SIZE_BUTTON);
4882
4883       tmp = g_strdup_printf ("<b>%s</b>", _("Search:"));
4884       gtk_label_set_markup (GTK_LABEL (impl->browse_special_mode_label), tmp);
4885       g_free (tmp);
4886
4887       special_mode_widgets_visible = TRUE;
4888       break;
4889
4890     default:
4891       g_assert_not_reached ();
4892     }
4893
4894   gtk_widget_set_visible (impl->browse_path_bar,                        path_bar_visible);
4895   gtk_widget_set_visible (impl->browse_special_mode_icon,               special_mode_widgets_visible);
4896   gtk_widget_set_visible (impl->browse_special_mode_label,              special_mode_widgets_visible);
4897   gtk_widget_set_visible (impl->browse_select_a_folder_info_bar,        info_bar_visible);
4898
4899   if (path_bar_visible)
4900     {
4901       if (impl->create_folders
4902           && impl->action != GTK_FILE_CHOOSER_ACTION_OPEN
4903           && impl->operation_mode != OPERATION_MODE_RECENT)
4904         create_folder_visible = TRUE;
4905     }
4906
4907   gtk_widget_set_visible (impl->browse_new_folder_button,               create_folder_visible);
4908 }
4909
4910 /* Creates the main hpaned with the widgets shared by Open and Save mode */
4911 static void
4912 browse_widgets_create (GtkFileChooserDefault *impl)
4913 {
4914   GtkWidget *hpaned;
4915   GtkWidget *widget;
4916   GtkSizeGroup *size_group;
4917
4918   /* size group is used by the scrolled windows of the panes */
4919   size_group = gtk_size_group_new (GTK_SIZE_GROUP_VERTICAL);
4920   impl->browse_widgets_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
4921
4922   /* Path bar, info bar, and their respective machinery - the browse_path_bar_hbox will get packed elsewhere */
4923   path_bar_widgets_create (impl);
4924
4925   /* Box for the location label and entry */
4926
4927   impl->location_entry_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
4928   gtk_box_pack_start (GTK_BOX (impl->browse_widgets_box), impl->location_entry_box, FALSE, FALSE, 0);
4929
4930   impl->location_label = gtk_label_new_with_mnemonic (_("_Location:"));
4931   gtk_widget_show (impl->location_label);
4932   gtk_box_pack_start (GTK_BOX (impl->location_entry_box), impl->location_label, FALSE, FALSE, 0);
4933
4934   /* Paned widget */
4935
4936   hpaned = gtk_paned_new (GTK_ORIENTATION_HORIZONTAL);
4937   gtk_widget_show (hpaned);
4938   gtk_box_pack_start (GTK_BOX (impl->browse_widgets_box), hpaned, TRUE, TRUE, 0);
4939
4940   widget = shortcuts_pane_create (impl, size_group);
4941   gtk_paned_pack1 (GTK_PANED (hpaned), widget, FALSE, FALSE);
4942   widget = file_pane_create (impl, size_group);
4943   gtk_paned_pack2 (GTK_PANED (hpaned), widget, TRUE, FALSE);
4944   gtk_paned_set_position (GTK_PANED (hpaned), 148);
4945   g_object_unref (size_group);
4946 }
4947
4948 static GObject*
4949 gtk_file_chooser_default_constructor (GType                  type,
4950                                       guint                  n_construct_properties,
4951                                       GObjectConstructParam *construct_params)
4952 {
4953   GtkFileChooserDefault *impl;
4954   GObject *object;
4955
4956   profile_start ("start", NULL);
4957
4958   object = G_OBJECT_CLASS (_gtk_file_chooser_default_parent_class)->constructor (type,
4959                                                                                 n_construct_properties,
4960                                                                                 construct_params);
4961   impl = GTK_FILE_CHOOSER_DEFAULT (object);
4962
4963   g_assert (impl->file_system);
4964
4965   gtk_widget_push_composite_child ();
4966
4967   /* Shortcuts model */
4968   shortcuts_model_create (impl);
4969
4970   /* The browse widgets */
4971   browse_widgets_create (impl);
4972   gtk_box_pack_start (GTK_BOX (impl), impl->browse_widgets_box, TRUE, TRUE, 0);
4973
4974   /* Alignment to hold extra widget */
4975   impl->extra_align = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
4976   gtk_widget_set_halign (impl->extra_align, GTK_ALIGN_START);
4977   gtk_widget_set_valign (impl->extra_align, GTK_ALIGN_CENTER);
4978   gtk_box_pack_start (GTK_BOX (impl), impl->extra_align, FALSE, FALSE, 0);
4979
4980   gtk_widget_pop_composite_child ();
4981   update_appearance (impl);
4982
4983   profile_end ("end", NULL);
4984
4985   return object;
4986 }
4987
4988 /* Sets the extra_widget by packing it in the appropriate place */
4989 static void
4990 set_extra_widget (GtkFileChooserDefault *impl,
4991                   GtkWidget             *extra_widget)
4992 {
4993   if (extra_widget)
4994     {
4995       g_object_ref (extra_widget);
4996       /* FIXME: is this right ? */
4997       gtk_widget_show (extra_widget);
4998     }
4999
5000   if (impl->extra_widget)
5001     {
5002       gtk_container_remove (GTK_CONTAINER (impl->extra_align), impl->extra_widget);
5003       g_object_unref (impl->extra_widget);
5004     }
5005
5006   impl->extra_widget = extra_widget;
5007   if (impl->extra_widget)
5008     {
5009       gtk_container_add (GTK_CONTAINER (impl->extra_align), impl->extra_widget);
5010       gtk_widget_show (impl->extra_align);
5011     }
5012   else
5013     gtk_widget_hide (impl->extra_align);
5014 }
5015
5016 static void
5017 set_local_only (GtkFileChooserDefault *impl,
5018                 gboolean               local_only)
5019 {
5020   if (local_only != impl->local_only)
5021     {
5022       impl->local_only = local_only;
5023
5024       if (impl->location_entry)
5025         _gtk_file_chooser_entry_set_local_only (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), local_only);
5026
5027       if (impl->shortcuts_model && impl->file_system)
5028         {
5029           shortcuts_add_volumes (impl);
5030           shortcuts_add_bookmarks (impl);
5031         }
5032
5033       if (local_only && impl->current_folder &&
5034            !g_file_is_native (impl->current_folder))
5035         {
5036           /* If we are pointing to a non-local folder, make an effort to change
5037            * back to a local folder, but it's really up to the app to not cause
5038            * such a situation, so we ignore errors.
5039            */
5040           const gchar *home = g_get_home_dir ();
5041           GFile *home_file;
5042
5043           if (home == NULL)
5044             return;
5045
5046           home_file = g_file_new_for_path (home);
5047
5048           gtk_file_chooser_set_current_folder_file (GTK_FILE_CHOOSER (impl), home_file, NULL);
5049
5050           g_object_unref (home_file);
5051         }
5052     }
5053 }
5054
5055 static void
5056 volumes_bookmarks_changed_cb (GtkFileSystem         *file_system,
5057                               GtkFileChooserDefault *impl)
5058 {
5059   shortcuts_add_volumes (impl);
5060   shortcuts_add_bookmarks (impl);
5061
5062   bookmarks_check_add_sensitivity (impl);
5063   bookmarks_check_remove_sensitivity (impl);
5064   shortcuts_check_popup_sensitivity (impl);
5065 }
5066
5067 /* Sets the file chooser to multiple selection mode */
5068 static void
5069 set_select_multiple (GtkFileChooserDefault *impl,
5070                      gboolean               select_multiple,
5071                      gboolean               property_notify)
5072 {
5073   GtkTreeSelection *selection;
5074   GtkSelectionMode mode;
5075
5076   if (select_multiple == impl->select_multiple)
5077     return;
5078
5079   mode = select_multiple ? GTK_SELECTION_MULTIPLE : GTK_SELECTION_BROWSE;
5080
5081   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
5082   gtk_tree_selection_set_mode (selection, mode);
5083
5084   gtk_tree_view_set_rubber_banding (GTK_TREE_VIEW (impl->browse_files_tree_view), select_multiple);
5085
5086   impl->select_multiple = select_multiple;
5087   g_object_notify (G_OBJECT (impl), "select-multiple");
5088
5089   check_preview_change (impl);
5090 }
5091
5092 static void
5093 set_file_system_backend (GtkFileChooserDefault *impl)
5094 {
5095   profile_start ("start for backend", "default");
5096
5097   impl->file_system = _gtk_file_system_new ();
5098
5099   g_signal_connect (impl->file_system, "volumes-changed",
5100                     G_CALLBACK (volumes_bookmarks_changed_cb), impl);
5101   g_signal_connect (impl->file_system, "bookmarks-changed",
5102                     G_CALLBACK (volumes_bookmarks_changed_cb), impl);
5103
5104   profile_end ("end", NULL);
5105 }
5106
5107 static void
5108 unset_file_system_backend (GtkFileChooserDefault *impl)
5109 {
5110   g_signal_handlers_disconnect_by_func (impl->file_system,
5111                                         G_CALLBACK (volumes_bookmarks_changed_cb), impl);
5112
5113   g_object_unref (impl->file_system);
5114
5115   impl->file_system = NULL;
5116 }
5117
5118 /* Saves the widgets around the pathbar so they can be reparented later
5119  * in the correct place.  This function must be called paired with
5120  * restore_path_bar().
5121  */
5122 static void
5123 save_path_bar (GtkFileChooserDefault *impl)
5124 {
5125   GtkWidget *parent;
5126
5127   g_object_ref (impl->browse_path_bar_hbox);
5128
5129   parent = gtk_widget_get_parent (impl->browse_path_bar_hbox);
5130   if (parent)
5131     gtk_container_remove (GTK_CONTAINER (parent), impl->browse_path_bar_hbox);
5132 }
5133
5134 /* Reparents the path bar and the "Create folder" button to the right place:
5135  * Above the file list in Open mode, or to the right of the "Save in folder:"
5136  * label in Save mode.  The save_path_bar() function must be called before this
5137  * one.
5138  */
5139 static void
5140 restore_path_bar (GtkFileChooserDefault *impl)
5141 {
5142   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN
5143       || impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
5144     {
5145       gtk_box_pack_start (GTK_BOX (impl->browse_widgets_box), impl->browse_path_bar_hbox, FALSE, FALSE, 0);
5146       gtk_box_reorder_child (GTK_BOX (impl->browse_widgets_box), impl->browse_path_bar_hbox, 0);
5147     }
5148   else if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE
5149            || impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
5150     {
5151       gtk_table_attach (GTK_TABLE (impl->save_widgets_table), impl->browse_path_bar_hbox,
5152                         1, 2, 1, 2,
5153                         GTK_EXPAND | GTK_FILL, GTK_FILL,
5154                         0, 0);
5155       gtk_label_set_mnemonic_widget (GTK_LABEL (impl->save_folder_label), impl->browse_path_bar);
5156     }
5157   else
5158     g_assert_not_reached ();
5159
5160   g_object_unref (impl->browse_path_bar_hbox);
5161 }
5162
5163 /* Takes the folder stored in a row in the recent_model, and puts it in the pathbar */
5164 static void
5165 put_recent_folder_in_pathbar (GtkFileChooserDefault *impl, GtkTreeIter *iter)
5166 {
5167   GFile *file;
5168
5169   gtk_tree_model_get (GTK_TREE_MODEL (impl->recent_model), iter,
5170                       MODEL_COL_FILE, &file,
5171                       -1);
5172   _gtk_path_bar_set_file (GTK_PATH_BAR (impl->browse_path_bar), file, FALSE, NULL); /* NULL-GError */
5173   g_object_unref (file);
5174 }
5175
5176 /* Sets the pathbar in the appropriate mode according to the current operation mode and action.  This is the central function for
5177  * dealing with the pathbar's widgets; as long as impl->action and impl->operation_mode are set correctly, then calling this
5178  * function will update all the pathbar's widgets.
5179  */
5180 static void
5181 path_bar_update (GtkFileChooserDefault *impl)
5182 {
5183   PathBarMode mode;
5184
5185   switch (impl->operation_mode)
5186     {
5187     case OPERATION_MODE_BROWSE:
5188       mode = PATH_BAR_FOLDER_PATH;
5189       break;
5190
5191     case OPERATION_MODE_RECENT:
5192       if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
5193         {
5194           GtkTreeSelection *selection;
5195           gboolean have_selected;
5196           GtkTreeIter iter;
5197
5198           selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
5199
5200           /* Save mode means single-selection mode, so the following is valid */
5201           have_selected = gtk_tree_selection_get_selected (selection, NULL, &iter);
5202
5203           if (have_selected)
5204             {
5205               mode = PATH_BAR_FOLDER_PATH;
5206               put_recent_folder_in_pathbar (impl, &iter);
5207             }
5208           else
5209             mode = PATH_BAR_SELECT_A_FOLDER;
5210         }
5211       else
5212         mode = PATH_BAR_RECENTLY_USED;
5213
5214       break;
5215
5216     case OPERATION_MODE_SEARCH:
5217       mode = PATH_BAR_SEARCH;
5218       break;
5219
5220     default:
5221       g_assert_not_reached ();
5222       return;
5223     }
5224
5225   path_bar_set_mode (impl, mode);
5226 }
5227
5228 /* This function is basically a do_all function.
5229  *
5230  * It sets the visibility on all the widgets based on the current state, and
5231  * moves the custom_widget if needed.
5232  */
5233 static void
5234 update_appearance (GtkFileChooserDefault *impl)
5235 {
5236   save_path_bar (impl);
5237
5238   if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE ||
5239       impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
5240     {
5241       const char *text;
5242
5243       gtk_widget_hide (impl->location_button);
5244       save_widgets_create (impl);
5245
5246       if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
5247         text = _("Save in _folder:");
5248       else
5249         text = _("Create in _folder:");
5250
5251       gtk_label_set_text_with_mnemonic (GTK_LABEL (impl->save_folder_label), text);
5252
5253       if (impl->select_multiple)
5254         {
5255           g_warning ("Save mode cannot be set in conjunction with multiple selection mode.  "
5256                      "Re-setting to single selection mode.");
5257           set_select_multiple (impl, FALSE, TRUE);
5258         }
5259     }
5260   else if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
5261            impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
5262     {
5263       gtk_widget_show (impl->location_button);
5264       save_widgets_destroy (impl);
5265       gtk_widget_show (impl->browse_widgets_box);
5266       location_mode_set (impl, impl->location_mode, TRUE);
5267     }
5268
5269   if (impl->location_entry)
5270     _gtk_file_chooser_entry_set_action (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), impl->action);
5271
5272   restore_path_bar (impl);
5273   path_bar_update (impl);
5274
5275   /* This *is* needed; we need to redraw the file list because the "sensitivity"
5276    * of files may change depending whether we are in a file or folder-only mode.
5277    */
5278   gtk_widget_queue_draw (impl->browse_files_tree_view);
5279
5280   emit_default_size_changed (impl);
5281 }
5282
5283 static void
5284 gtk_file_chooser_default_set_property (GObject      *object,
5285                                        guint         prop_id,
5286                                        const GValue *value,
5287                                        GParamSpec   *pspec)
5288
5289 {
5290   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (object);
5291
5292   switch (prop_id)
5293     {
5294     case GTK_FILE_CHOOSER_PROP_ACTION:
5295       {
5296         GtkFileChooserAction action = g_value_get_enum (value);
5297
5298         if (action != impl->action)
5299           {
5300             gtk_file_chooser_default_unselect_all (GTK_FILE_CHOOSER (impl));
5301             
5302             if ((action == GTK_FILE_CHOOSER_ACTION_SAVE ||
5303                  action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
5304                 && impl->select_multiple)
5305               {
5306                 g_warning ("Tried to change the file chooser action to SAVE or CREATE_FOLDER, but "
5307                            "this is not allowed in multiple selection mode.  Resetting the file chooser "
5308                            "to single selection mode.");
5309                 set_select_multiple (impl, FALSE, TRUE);
5310               }
5311             impl->action = action;
5312             update_cell_renderer_attributes (impl);
5313             update_appearance (impl);
5314             settings_load (impl);
5315           }
5316       }
5317       break;
5318
5319     case GTK_FILE_CHOOSER_PROP_FILTER:
5320       set_current_filter (impl, g_value_get_object (value));
5321       break;
5322
5323     case GTK_FILE_CHOOSER_PROP_LOCAL_ONLY:
5324       set_local_only (impl, g_value_get_boolean (value));
5325       break;
5326
5327     case GTK_FILE_CHOOSER_PROP_PREVIEW_WIDGET:
5328       set_preview_widget (impl, g_value_get_object (value));
5329       break;
5330
5331     case GTK_FILE_CHOOSER_PROP_PREVIEW_WIDGET_ACTIVE:
5332       impl->preview_widget_active = g_value_get_boolean (value);
5333       update_preview_widget_visibility (impl);
5334       break;
5335
5336     case GTK_FILE_CHOOSER_PROP_USE_PREVIEW_LABEL:
5337       impl->use_preview_label = g_value_get_boolean (value);
5338       update_preview_widget_visibility (impl);
5339       break;
5340
5341     case GTK_FILE_CHOOSER_PROP_EXTRA_WIDGET:
5342       set_extra_widget (impl, g_value_get_object (value));
5343       break;
5344
5345     case GTK_FILE_CHOOSER_PROP_SELECT_MULTIPLE:
5346       {
5347         gboolean select_multiple = g_value_get_boolean (value);
5348         if ((impl->action == GTK_FILE_CHOOSER_ACTION_SAVE ||
5349              impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
5350             && select_multiple)
5351           {
5352             g_warning ("Tried to set the file chooser to multiple selection mode, but this is "
5353                        "not allowed in SAVE or CREATE_FOLDER modes.  Ignoring the change and "
5354                        "leaving the file chooser in single selection mode.");
5355             return;
5356           }
5357
5358         set_select_multiple (impl, select_multiple, FALSE);
5359       }
5360       break;
5361
5362     case GTK_FILE_CHOOSER_PROP_SHOW_HIDDEN:
5363       {
5364         gboolean show_hidden = g_value_get_boolean (value);
5365         if (show_hidden != impl->show_hidden)
5366           {
5367             impl->show_hidden = show_hidden;
5368
5369             if (impl->browse_files_model)
5370               _gtk_file_system_model_set_show_hidden (impl->browse_files_model, show_hidden);
5371           }
5372       }
5373       break;
5374
5375     case GTK_FILE_CHOOSER_PROP_DO_OVERWRITE_CONFIRMATION:
5376       {
5377         gboolean do_overwrite_confirmation = g_value_get_boolean (value);
5378         impl->do_overwrite_confirmation = do_overwrite_confirmation;
5379       }
5380       break;
5381
5382     case GTK_FILE_CHOOSER_PROP_CREATE_FOLDERS:
5383       {
5384         gboolean create_folders = g_value_get_boolean (value);
5385         impl->create_folders = create_folders;
5386         update_appearance (impl);
5387       }
5388       break;
5389
5390     default:
5391       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5392       break;
5393     }
5394 }
5395
5396 static void
5397 gtk_file_chooser_default_get_property (GObject    *object,
5398                                        guint       prop_id,
5399                                        GValue     *value,
5400                                        GParamSpec *pspec)
5401 {
5402   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (object);
5403
5404   switch (prop_id)
5405     {
5406     case GTK_FILE_CHOOSER_PROP_ACTION:
5407       g_value_set_enum (value, impl->action);
5408       break;
5409
5410     case GTK_FILE_CHOOSER_PROP_FILTER:
5411       g_value_set_object (value, impl->current_filter);
5412       break;
5413
5414     case GTK_FILE_CHOOSER_PROP_LOCAL_ONLY:
5415       g_value_set_boolean (value, impl->local_only);
5416       break;
5417
5418     case GTK_FILE_CHOOSER_PROP_PREVIEW_WIDGET:
5419       g_value_set_object (value, impl->preview_widget);
5420       break;
5421
5422     case GTK_FILE_CHOOSER_PROP_PREVIEW_WIDGET_ACTIVE:
5423       g_value_set_boolean (value, impl->preview_widget_active);
5424       break;
5425
5426     case GTK_FILE_CHOOSER_PROP_USE_PREVIEW_LABEL:
5427       g_value_set_boolean (value, impl->use_preview_label);
5428       break;
5429
5430     case GTK_FILE_CHOOSER_PROP_EXTRA_WIDGET:
5431       g_value_set_object (value, impl->extra_widget);
5432       break;
5433
5434     case GTK_FILE_CHOOSER_PROP_SELECT_MULTIPLE:
5435       g_value_set_boolean (value, impl->select_multiple);
5436       break;
5437
5438     case GTK_FILE_CHOOSER_PROP_SHOW_HIDDEN:
5439       g_value_set_boolean (value, impl->show_hidden);
5440       break;
5441
5442     case GTK_FILE_CHOOSER_PROP_DO_OVERWRITE_CONFIRMATION:
5443       g_value_set_boolean (value, impl->do_overwrite_confirmation);
5444       break;
5445
5446     case GTK_FILE_CHOOSER_PROP_CREATE_FOLDERS:
5447       g_value_set_boolean (value, impl->create_folders);
5448       break;
5449
5450     default:
5451       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5452       break;
5453     }
5454 }
5455
5456 /* This cancels everything that may be going on in the background. */
5457 static void
5458 cancel_all_operations (GtkFileChooserDefault *impl)
5459 {
5460   GSList *l;
5461
5462   pending_select_files_free (impl);
5463
5464   /* cancel all pending operations */
5465   if (impl->pending_cancellables)
5466     {
5467       for (l = impl->pending_cancellables; l; l = l->next)
5468         {
5469           GCancellable *cancellable = G_CANCELLABLE (l->data);
5470           g_cancellable_cancel (cancellable);
5471         }
5472       g_slist_free (impl->pending_cancellables);
5473       impl->pending_cancellables = NULL;
5474     }
5475
5476   if (impl->reload_icon_cancellables)
5477     {
5478       for (l = impl->reload_icon_cancellables; l; l = l->next)
5479         {
5480           GCancellable *cancellable = G_CANCELLABLE (l->data);
5481           g_cancellable_cancel (cancellable);
5482         }
5483       g_slist_free (impl->reload_icon_cancellables);
5484       impl->reload_icon_cancellables = NULL;
5485     }
5486
5487   if (impl->loading_shortcuts)
5488     {
5489       for (l = impl->loading_shortcuts; l; l = l->next)
5490         {
5491           GCancellable *cancellable = G_CANCELLABLE (l->data);
5492           g_cancellable_cancel (cancellable);
5493         }
5494       g_slist_free (impl->loading_shortcuts);
5495       impl->loading_shortcuts = NULL;
5496     }
5497
5498   if (impl->file_list_drag_data_received_cancellable)
5499     {
5500       g_cancellable_cancel (impl->file_list_drag_data_received_cancellable);
5501       impl->file_list_drag_data_received_cancellable = NULL;
5502     }
5503
5504   if (impl->update_current_folder_cancellable)
5505     {
5506       g_cancellable_cancel (impl->update_current_folder_cancellable);
5507       impl->update_current_folder_cancellable = NULL;
5508     }
5509
5510   if (impl->should_respond_get_info_cancellable)
5511     {
5512       g_cancellable_cancel (impl->should_respond_get_info_cancellable);
5513       impl->should_respond_get_info_cancellable = NULL;
5514     }
5515
5516   if (impl->update_from_entry_cancellable)
5517     {
5518       g_cancellable_cancel (impl->update_from_entry_cancellable);
5519       impl->update_from_entry_cancellable = NULL;
5520     }
5521
5522   if (impl->shortcuts_activate_iter_cancellable)
5523     {
5524       g_cancellable_cancel (impl->shortcuts_activate_iter_cancellable);
5525       impl->shortcuts_activate_iter_cancellable = NULL;
5526     }
5527
5528   search_stop_searching (impl, TRUE);
5529   recent_stop_loading (impl);
5530 }
5531
5532 /* Removes the settings signal handler.  It's safe to call multiple times */
5533 static void
5534 remove_settings_signal (GtkFileChooserDefault *impl,
5535                         GdkScreen             *screen)
5536 {
5537   if (impl->settings_signal_id)
5538     {
5539       GtkSettings *settings;
5540
5541       settings = gtk_settings_get_for_screen (screen);
5542       g_signal_handler_disconnect (settings,
5543                                    impl->settings_signal_id);
5544       impl->settings_signal_id = 0;
5545     }
5546 }
5547
5548 static void
5549 gtk_file_chooser_default_dispose (GObject *object)
5550 {
5551   GtkFileChooserDefault *impl = (GtkFileChooserDefault *) object;
5552
5553   cancel_all_operations (impl);
5554
5555   if (impl->extra_widget)
5556     {
5557       g_object_unref (impl->extra_widget);
5558       impl->extra_widget = NULL;
5559     }
5560
5561   remove_settings_signal (impl, gtk_widget_get_screen (GTK_WIDGET (impl)));
5562
5563   G_OBJECT_CLASS (_gtk_file_chooser_default_parent_class)->dispose (object);
5564 }
5565
5566 /* We override show-all since we have internal widgets that
5567  * shouldn't be shown when you call show_all(), like the filter
5568  * combo box.
5569  */
5570 static void
5571 gtk_file_chooser_default_show_all (GtkWidget *widget)
5572 {
5573   GtkFileChooserDefault *impl = (GtkFileChooserDefault *) widget;
5574
5575   gtk_widget_show (widget);
5576
5577   if (impl->extra_widget)
5578     gtk_widget_show_all (impl->extra_widget);
5579 }
5580
5581 /* Handler for GtkWindow::set-focus; this is where we save the last-focused
5582  * widget on our toplevel.  See gtk_file_chooser_default_hierarchy_changed()
5583  */
5584 static void
5585 toplevel_set_focus_cb (GtkWindow             *window,
5586                        GtkWidget             *focus,
5587                        GtkFileChooserDefault *impl)
5588 {
5589   impl->toplevel_last_focus_widget = gtk_window_get_focus (window);
5590 }
5591
5592 /* We monitor the focus widget on our toplevel to be able to know which widget
5593  * was last focused at the time our "should_respond" method gets called.
5594  */
5595 static void
5596 gtk_file_chooser_default_hierarchy_changed (GtkWidget *widget,
5597                                             GtkWidget *previous_toplevel)
5598 {
5599   GtkFileChooserDefault *impl;
5600   GtkWidget *toplevel;
5601
5602   impl = GTK_FILE_CHOOSER_DEFAULT (widget);
5603   toplevel = gtk_widget_get_toplevel (widget);
5604
5605   if (previous_toplevel && 
5606       impl->toplevel_set_focus_id != 0)
5607     {
5608       g_signal_handler_disconnect (previous_toplevel,
5609                                    impl->toplevel_set_focus_id);
5610       impl->toplevel_set_focus_id = 0;
5611       impl->toplevel_last_focus_widget = NULL;
5612     }
5613
5614   if (gtk_widget_is_toplevel (toplevel))
5615     {
5616       g_assert (impl->toplevel_set_focus_id == 0);
5617       impl->toplevel_set_focus_id = g_signal_connect (toplevel, "set-focus",
5618                                                       G_CALLBACK (toplevel_set_focus_cb), impl);
5619       impl->toplevel_last_focus_widget = gtk_window_get_focus (GTK_WINDOW (toplevel));
5620     }
5621 }
5622
5623 /* Changes the icons wherever it is needed */
5624 static void
5625 change_icon_theme (GtkFileChooserDefault *impl)
5626 {
5627   GtkSettings *settings;
5628   gint width, height;
5629   GtkCellRenderer *renderer;
5630   GList *cells;
5631
5632   profile_start ("start", NULL);
5633
5634   settings = gtk_settings_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (impl)));
5635
5636   if (gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU, &width, &height))
5637     impl->icon_size = MAX (width, height);
5638   else
5639     impl->icon_size = FALLBACK_ICON_SIZE;
5640
5641   shortcuts_reload_icons (impl);
5642   /* the first cell in the first column is the icon column, and we have a fixed size there */
5643   cells = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (
5644         gtk_tree_view_get_column (GTK_TREE_VIEW (impl->browse_files_tree_view), 0)));
5645   renderer = GTK_CELL_RENDERER (cells->data);
5646   set_icon_cell_renderer_fixed_size (impl, renderer);
5647   g_list_free (cells);
5648   if (impl->browse_files_model)
5649     _gtk_file_system_model_clear_cache (impl->browse_files_model, MODEL_COL_PIXBUF);
5650   gtk_widget_queue_resize (impl->browse_files_tree_view);
5651
5652   profile_end ("end", NULL);
5653 }
5654
5655 /* Callback used when a GtkSettings value changes */
5656 static void
5657 settings_notify_cb (GObject               *object,
5658                     GParamSpec            *pspec,
5659                     GtkFileChooserDefault *impl)
5660 {
5661   const char *name;
5662
5663   profile_start ("start", NULL);
5664
5665   name = g_param_spec_get_name (pspec);
5666
5667   if (strcmp (name, "gtk-icon-theme-name") == 0 ||
5668       strcmp (name, "gtk-icon-sizes") == 0)
5669     change_icon_theme (impl);
5670
5671   profile_end ("end", NULL);
5672 }
5673
5674 /* Installs a signal handler for GtkSettings so that we can monitor changes in
5675  * the icon theme.
5676  */
5677 static void
5678 check_icon_theme (GtkFileChooserDefault *impl)
5679 {
5680   GtkSettings *settings;
5681
5682   profile_start ("start", NULL);
5683
5684   if (impl->settings_signal_id)
5685     {
5686       profile_end ("end", NULL);
5687       return;
5688     }
5689
5690   if (gtk_widget_has_screen (GTK_WIDGET (impl)))
5691     {
5692       settings = gtk_settings_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (impl)));
5693       impl->settings_signal_id = g_signal_connect (settings, "notify",
5694                                                    G_CALLBACK (settings_notify_cb), impl);
5695
5696       change_icon_theme (impl);
5697     }
5698
5699   profile_end ("end", NULL);
5700 }
5701
5702 static void
5703 gtk_file_chooser_default_style_updated (GtkWidget *widget)
5704 {
5705   GtkFileChooserDefault *impl;
5706
5707   profile_start ("start", NULL);
5708
5709   impl = GTK_FILE_CHOOSER_DEFAULT (widget);
5710
5711   profile_msg ("    parent class style_udpated start", NULL);
5712   GTK_WIDGET_CLASS (_gtk_file_chooser_default_parent_class)->style_updated (widget);
5713   profile_msg ("    parent class style_updated end", NULL);
5714
5715   if (gtk_widget_has_screen (GTK_WIDGET (impl)))
5716     change_icon_theme (impl);
5717
5718   emit_default_size_changed (impl);
5719
5720   profile_end ("end", NULL);
5721 }
5722
5723 static void
5724 gtk_file_chooser_default_screen_changed (GtkWidget *widget,
5725                                          GdkScreen *previous_screen)
5726 {
5727   GtkFileChooserDefault *impl;
5728
5729   profile_start ("start", NULL);
5730
5731   impl = GTK_FILE_CHOOSER_DEFAULT (widget);
5732
5733   if (GTK_WIDGET_CLASS (_gtk_file_chooser_default_parent_class)->screen_changed)
5734     GTK_WIDGET_CLASS (_gtk_file_chooser_default_parent_class)->screen_changed (widget, previous_screen);
5735
5736   remove_settings_signal (impl, previous_screen);
5737   check_icon_theme (impl);
5738
5739   emit_default_size_changed (impl);
5740
5741   profile_end ("end", NULL);
5742 }
5743
5744 static void
5745 gtk_file_chooser_default_size_allocate (GtkWidget     *widget,
5746                                         GtkAllocation *allocation)
5747 {
5748   GTK_WIDGET_CLASS (_gtk_file_chooser_default_parent_class)->size_allocate (widget, allocation);
5749 }
5750
5751 static void
5752 set_sort_column (GtkFileChooserDefault *impl)
5753 {
5754   GtkTreeSortable *sortable;
5755
5756   sortable = GTK_TREE_SORTABLE (gtk_tree_view_get_model (GTK_TREE_VIEW (impl->browse_files_tree_view)));
5757
5758   /* can happen when we're still populating the model */
5759   if (sortable == NULL)
5760     return;
5761
5762   gtk_tree_sortable_set_sort_column_id (sortable,
5763                                         impl->sort_column,
5764                                         impl->sort_order);
5765 }
5766
5767 static void
5768 settings_ensure (GtkFileChooserDefault *impl)
5769 {
5770   if (impl->settings != NULL)
5771     return;
5772
5773   impl->settings = g_settings_new_with_path ("org.gtk.Settings.FileChooser",
5774                                              "/org/gtk/settings/file-chooser/");
5775   g_settings_delay (impl->settings);
5776 }
5777
5778 static void
5779 settings_load (GtkFileChooserDefault *impl)
5780 {
5781   LocationMode location_mode;
5782   gboolean show_hidden;
5783   gboolean show_size_column;
5784   gint sort_column;
5785   GtkSortType sort_order;
5786
5787   settings_ensure (impl);
5788
5789   location_mode = g_settings_get_enum (impl->settings, SETTINGS_KEY_LOCATION_MODE);
5790   show_hidden = g_settings_get_boolean (impl->settings, SETTINGS_KEY_SHOW_HIDDEN);
5791   show_size_column = g_settings_get_boolean (impl->settings, SETTINGS_KEY_SHOW_SIZE_COLUMN);
5792   sort_column = g_settings_get_enum (impl->settings, SETTINGS_KEY_SORT_COLUMN);
5793   sort_order = g_settings_get_enum (impl->settings, SETTINGS_KEY_SORT_ORDER);
5794
5795   location_mode_set (impl, location_mode, TRUE);
5796
5797   gtk_file_chooser_set_show_hidden (GTK_FILE_CHOOSER (impl), show_hidden);
5798
5799   impl->show_size_column = show_size_column;
5800   gtk_tree_view_column_set_visible (impl->list_size_column, show_size_column);
5801
5802   impl->sort_column = sort_column;
5803   impl->sort_order = sort_order;
5804   /* We don't call set_sort_column() here as the models may not have been
5805    * created yet.  The individual functions that create and set the models will
5806    * call set_sort_column() themselves.
5807    */
5808 }
5809
5810 static void
5811 save_dialog_geometry (GtkFileChooserDefault *impl)
5812 {
5813   GtkWindow *toplevel;
5814   int x, y, width, height;
5815
5816   toplevel = get_toplevel (GTK_WIDGET (impl));
5817
5818   if (!(toplevel && GTK_IS_FILE_CHOOSER_DIALOG (toplevel)))
5819     return;
5820
5821   gtk_window_get_position (toplevel, &x, &y);
5822   gtk_window_get_size (toplevel, &width, &height);
5823
5824   g_settings_set (impl->settings, "window-position", "(ii)", x, y);
5825   g_settings_set (impl->settings, "window-size", "(ii)", width, height);
5826 }
5827
5828 static void
5829 settings_save (GtkFileChooserDefault *impl)
5830 {
5831   char *current_folder_uri;
5832
5833   settings_ensure (impl);
5834
5835   /* Current folder */
5836
5837   if (impl->current_folder)
5838     current_folder_uri = g_file_get_uri (impl->current_folder);
5839   else
5840     current_folder_uri = "";
5841
5842   g_settings_set_string (impl->settings, SETTINGS_KEY_LAST_FOLDER_URI, current_folder_uri);
5843
5844   if (impl->current_folder)
5845     g_free (current_folder_uri);
5846
5847   /* All the other state */
5848
5849   g_settings_set_enum (impl->settings, SETTINGS_KEY_LOCATION_MODE, impl->location_mode);
5850   g_settings_set_boolean (impl->settings, SETTINGS_KEY_SHOW_HIDDEN,
5851                           gtk_file_chooser_get_show_hidden (GTK_FILE_CHOOSER (impl)));
5852   g_settings_set_boolean (impl->settings, SETTINGS_KEY_SHOW_SIZE_COLUMN, impl->show_size_column);
5853   g_settings_set_enum (impl->settings, SETTINGS_KEY_SORT_COLUMN, impl->sort_column);
5854   g_settings_set_enum (impl->settings, SETTINGS_KEY_SORT_ORDER, impl->sort_order);
5855
5856   save_dialog_geometry (impl);
5857
5858   /* Now apply the settings */
5859   g_settings_apply (impl->settings);
5860
5861   g_object_unref (impl->settings);
5862   impl->settings = NULL;
5863 }
5864
5865 /* GtkWidget::realize method */
5866 static void
5867 gtk_file_chooser_default_realize (GtkWidget *widget)
5868 {
5869   GtkFileChooserDefault *impl;
5870
5871   impl = GTK_FILE_CHOOSER_DEFAULT (widget);
5872
5873   GTK_WIDGET_CLASS (_gtk_file_chooser_default_parent_class)->realize (widget);
5874
5875   emit_default_size_changed (impl);
5876 }
5877
5878 static GFile *
5879 get_file_for_last_folder_opened (GtkFileChooserDefault *impl)
5880 {
5881   char *last_folder_uri;
5882   GFile *file;
5883
5884   settings_ensure (impl);
5885
5886   last_folder_uri = g_settings_get_string (impl->settings, SETTINGS_KEY_LAST_FOLDER_URI);
5887
5888   /* If no last folder is set, we use the user's home directory, since
5889    * this is the starting point for most documents.
5890    */
5891   if (last_folder_uri[0] == '\0')
5892     file = g_file_new_for_path (g_get_home_dir ());
5893   else
5894     file = g_file_new_for_uri (last_folder_uri);
5895
5896   g_free (last_folder_uri);
5897
5898   return file;
5899 }
5900
5901 /* GtkWidget::map method */
5902 static void
5903 gtk_file_chooser_default_map (GtkWidget *widget)
5904 {
5905   GtkFileChooserDefault *impl;
5906
5907   profile_start ("start", NULL);
5908
5909   impl = GTK_FILE_CHOOSER_DEFAULT (widget);
5910
5911   GTK_WIDGET_CLASS (_gtk_file_chooser_default_parent_class)->map (widget);
5912
5913   if (impl->operation_mode == OPERATION_MODE_BROWSE)
5914     {
5915       switch (impl->reload_state)
5916         {
5917         case RELOAD_EMPTY:
5918           recent_shortcut_handler (impl);
5919           break;
5920         
5921         case RELOAD_HAS_FOLDER:
5922           /* Nothing; we are already loading or loaded, so we
5923            * don't need to reload
5924            */
5925           break;
5926
5927         default:
5928           g_assert_not_reached ();
5929       }
5930     }
5931
5932   volumes_bookmarks_changed_cb (impl->file_system, impl);
5933
5934   settings_load (impl);
5935
5936   profile_end ("end", NULL);
5937 }
5938
5939 /* GtkWidget::unmap method */
5940 static void
5941 gtk_file_chooser_default_unmap (GtkWidget *widget)
5942 {
5943   GtkFileChooserDefault *impl;
5944
5945   impl = GTK_FILE_CHOOSER_DEFAULT (widget);
5946
5947   settings_save (impl);
5948
5949   cancel_all_operations (impl);
5950   impl->reload_state = RELOAD_EMPTY;
5951
5952   GTK_WIDGET_CLASS (_gtk_file_chooser_default_parent_class)->unmap (widget);
5953 }
5954
5955 static void
5956 install_list_model_filter (GtkFileChooserDefault *impl)
5957 {
5958   _gtk_file_system_model_set_filter (impl->browse_files_model,
5959                                      impl->current_filter);
5960 }
5961
5962 #define COMPARE_DIRECTORIES                                                                                    \
5963   GtkFileChooserDefault *impl = user_data;                                                                     \
5964   GtkFileSystemModel *fs_model = GTK_FILE_SYSTEM_MODEL (model);                                                \
5965   gboolean dir_a, dir_b;                                                                                       \
5966                                                                                                                \
5967   dir_a = g_value_get_boolean (_gtk_file_system_model_get_value (fs_model, a, MODEL_COL_IS_FOLDER));           \
5968   dir_b = g_value_get_boolean (_gtk_file_system_model_get_value (fs_model, b, MODEL_COL_IS_FOLDER));           \
5969                                                                                                                \
5970   if (dir_a != dir_b)                                                                                          \
5971     return impl->list_sort_ascending ? (dir_a ? -1 : 1) : (dir_a ? 1 : -1) /* Directories *always* go first */
5972
5973 /* Sort callback for the filename column */
5974 static gint
5975 name_sort_func (GtkTreeModel *model,
5976                 GtkTreeIter  *a,
5977                 GtkTreeIter  *b,
5978                 gpointer      user_data)
5979 {
5980   COMPARE_DIRECTORIES;
5981   else
5982     {
5983       const char *key_a, *key_b;
5984       gint result;
5985
5986       key_a = g_value_get_string (_gtk_file_system_model_get_value (fs_model, a, MODEL_COL_NAME_COLLATED));
5987       key_b = g_value_get_string (_gtk_file_system_model_get_value (fs_model, b, MODEL_COL_NAME_COLLATED));
5988
5989       if (key_a && key_b)
5990         result = strcmp (key_a, key_b);
5991       else if (key_a)
5992         result = 1;
5993       else if (key_b)
5994         result = -1;
5995       else
5996         result = 0;
5997
5998       return result;
5999     }
6000 }
6001
6002 /* Sort callback for the size column */
6003 static gint
6004 size_sort_func (GtkTreeModel *model,
6005                 GtkTreeIter  *a,
6006                 GtkTreeIter  *b,
6007                 gpointer      user_data)
6008 {
6009   COMPARE_DIRECTORIES;
6010   else
6011     {
6012       gint64 size_a, size_b;
6013
6014       size_a = g_value_get_int64 (_gtk_file_system_model_get_value (fs_model, a, MODEL_COL_SIZE));
6015       size_b = g_value_get_int64 (_gtk_file_system_model_get_value (fs_model, b, MODEL_COL_SIZE));
6016
6017       return size_a < size_b ? -1 : (size_a == size_b ? 0 : 1);
6018     }
6019 }
6020
6021 /* Sort callback for the mtime column */
6022 static gint
6023 mtime_sort_func (GtkTreeModel *model,
6024                  GtkTreeIter  *a,
6025                  GtkTreeIter  *b,
6026                  gpointer      user_data)
6027 {
6028   COMPARE_DIRECTORIES;
6029   else
6030     {
6031       glong ta, tb;
6032
6033       ta = g_value_get_long (_gtk_file_system_model_get_value (fs_model, a, MODEL_COL_MTIME));
6034       tb = g_value_get_long (_gtk_file_system_model_get_value (fs_model, b, MODEL_COL_MTIME));
6035
6036       return ta < tb ? -1 : (ta == tb ? 0 : 1);
6037     }
6038 }
6039
6040 /* Callback used when the sort column changes.  We cache the sort order for use
6041  * in name_sort_func().
6042  */
6043 static void
6044 list_sort_column_changed_cb (GtkTreeSortable       *sortable,
6045                              GtkFileChooserDefault *impl)
6046 {
6047   gint sort_column_id;
6048   GtkSortType sort_type;
6049
6050   if (gtk_tree_sortable_get_sort_column_id (sortable, &sort_column_id, &sort_type))
6051     {
6052       impl->list_sort_ascending = (sort_type == GTK_SORT_ASCENDING);
6053       impl->sort_column = sort_column_id;
6054       impl->sort_order = sort_type;
6055     }
6056 }
6057
6058 static void
6059 set_busy_cursor (GtkFileChooserDefault *impl,
6060                  gboolean               busy)
6061 {
6062   GtkWidget *widget;
6063   GtkWindow *toplevel;
6064   GdkDisplay *display;
6065   GdkCursor *cursor;
6066
6067   toplevel = get_toplevel (GTK_WIDGET (impl));
6068   widget = GTK_WIDGET (toplevel);
6069   if (!toplevel || !gtk_widget_get_realized (widget))
6070     return;
6071
6072   display = gtk_widget_get_display (widget);
6073
6074   if (busy)
6075     cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
6076   else
6077     cursor = NULL;
6078
6079   gdk_window_set_cursor (gtk_widget_get_window (widget), cursor);
6080   gdk_display_flush (display);
6081
6082   if (cursor)
6083     g_object_unref (cursor);
6084 }
6085
6086 /* Creates a sort model to wrap the file system model and sets it on the tree view */
6087 static void
6088 load_set_model (GtkFileChooserDefault *impl)
6089 {
6090   profile_start ("start", NULL);
6091
6092   g_assert (impl->browse_files_model != NULL);
6093
6094   profile_msg ("    gtk_tree_view_set_model start", NULL);
6095   gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_files_tree_view),
6096                            GTK_TREE_MODEL (impl->browse_files_model));
6097   gtk_tree_view_columns_autosize (GTK_TREE_VIEW (impl->browse_files_tree_view));
6098   gtk_tree_view_set_search_column (GTK_TREE_VIEW (impl->browse_files_tree_view),
6099                                    MODEL_COL_NAME);
6100   set_sort_column (impl);
6101   profile_msg ("    gtk_tree_view_set_model end", NULL);
6102   impl->list_sort_ascending = TRUE;
6103
6104   profile_end ("end", NULL);
6105 }
6106
6107 /* Timeout callback used when the loading timer expires */
6108 static gboolean
6109 load_timeout_cb (gpointer data)
6110 {
6111   GtkFileChooserDefault *impl;
6112
6113   profile_start ("start", NULL);
6114
6115   impl = GTK_FILE_CHOOSER_DEFAULT (data);
6116   g_assert (impl->load_state == LOAD_PRELOAD);
6117   g_assert (impl->load_timeout_id != 0);
6118   g_assert (impl->browse_files_model != NULL);
6119
6120   impl->load_timeout_id = 0;
6121   impl->load_state = LOAD_LOADING;
6122
6123   load_set_model (impl);
6124
6125   profile_end ("end", NULL);
6126
6127   return FALSE;
6128 }
6129
6130 /* Sets up a new load timer for the model and switches to the LOAD_PRELOAD state */
6131 static void
6132 load_setup_timer (GtkFileChooserDefault *impl)
6133 {
6134   g_assert (impl->load_timeout_id == 0);
6135   g_assert (impl->load_state != LOAD_PRELOAD);
6136
6137   impl->load_timeout_id = gdk_threads_add_timeout (MAX_LOADING_TIME, load_timeout_cb, impl);
6138   impl->load_state = LOAD_PRELOAD;
6139 }
6140
6141 /* Removes the load timeout and switches to the LOAD_FINISHED state */
6142 static void
6143 load_remove_timer (GtkFileChooserDefault *impl)
6144 {
6145   if (impl->load_timeout_id != 0)
6146     {
6147       g_assert (impl->load_state == LOAD_PRELOAD);
6148
6149       g_source_remove (impl->load_timeout_id);
6150       impl->load_timeout_id = 0;
6151       impl->load_state = LOAD_EMPTY;
6152     }
6153   else
6154     g_assert (impl->load_state == LOAD_EMPTY ||
6155               impl->load_state == LOAD_LOADING ||
6156               impl->load_state == LOAD_FINISHED);
6157 }
6158
6159 /* Selects the first row in the file list */
6160 static void
6161 browse_files_select_first_row (GtkFileChooserDefault *impl)
6162 {
6163   GtkTreePath *path;
6164   GtkTreeIter dummy_iter;
6165   GtkTreeModel *tree_model;
6166
6167   tree_model = gtk_tree_view_get_model (GTK_TREE_VIEW (impl->browse_files_tree_view));
6168
6169   if (!tree_model)
6170     return;
6171
6172   path = gtk_tree_path_new_from_indices (0, -1);
6173
6174   /* If the list is empty, do nothing. */
6175   if (gtk_tree_model_get_iter (tree_model, &dummy_iter, path))
6176       gtk_tree_view_set_cursor (GTK_TREE_VIEW (impl->browse_files_tree_view), path, NULL, FALSE);
6177
6178   gtk_tree_path_free (path);
6179 }
6180
6181 struct center_selected_row_closure {
6182   GtkFileChooserDefault *impl;
6183   gboolean already_centered;
6184 };
6185
6186 /* Callback used from gtk_tree_selection_selected_foreach(); centers the
6187  * selected row in the tree view.
6188  */
6189 static void
6190 center_selected_row_foreach_cb (GtkTreeModel      *model,
6191                                 GtkTreePath       *path,
6192                                 GtkTreeIter       *iter,
6193                                 gpointer           data)
6194 {
6195   struct center_selected_row_closure *closure;
6196
6197   closure = data;
6198   if (closure->already_centered)
6199     return;
6200
6201   gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (closure->impl->browse_files_tree_view), path, NULL, TRUE, 0.5, 0.0);
6202   closure->already_centered = TRUE;
6203 }
6204
6205 /* Centers the selected row in the tree view */
6206 static void
6207 browse_files_center_selected_row (GtkFileChooserDefault *impl)
6208 {
6209   struct center_selected_row_closure closure;
6210   GtkTreeSelection *selection;
6211
6212   closure.impl = impl;
6213   closure.already_centered = FALSE;
6214
6215   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
6216   gtk_tree_selection_selected_foreach (selection, center_selected_row_foreach_cb, &closure);
6217 }
6218
6219 static gboolean
6220 show_and_select_files (GtkFileChooserDefault *impl,
6221                        GSList                *files)
6222 {
6223   GtkTreeSelection *selection;
6224   GtkFileSystemModel *fsmodel;
6225   gboolean enabled_hidden, removed_filters;
6226   gboolean selected_a_file;
6227   GSList *walk;
6228
6229   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
6230   fsmodel = GTK_FILE_SYSTEM_MODEL (gtk_tree_view_get_model (GTK_TREE_VIEW (impl->browse_files_tree_view)));
6231
6232   enabled_hidden = impl->show_hidden;
6233   removed_filters = (impl->current_filter == NULL);
6234
6235   selected_a_file = FALSE;
6236
6237   for (walk = files; walk; walk = walk->next)
6238     {
6239       GFile *file = walk->data;
6240       GtkTreeIter iter;
6241
6242       /* Is it a hidden file? */
6243
6244       if (!_gtk_file_system_model_get_iter_for_file (fsmodel, &iter, file))
6245         continue;
6246
6247       if (!_gtk_file_system_model_iter_is_visible (fsmodel, &iter))
6248         {
6249           GFileInfo *info = _gtk_file_system_model_get_info (fsmodel, &iter);
6250
6251           if (!enabled_hidden &&
6252               (g_file_info_get_is_hidden (info) ||
6253                g_file_info_get_is_backup (info)))
6254             {
6255               g_object_set (impl, "show-hidden", TRUE, NULL);
6256               enabled_hidden = TRUE;
6257             }
6258         }
6259
6260       /* Is it a filtered file? */
6261
6262       if (!_gtk_file_system_model_get_iter_for_file (fsmodel, &iter, file))
6263         continue; /* re-get the iter as it may change when the model refilters */
6264
6265       if (!_gtk_file_system_model_iter_is_visible (fsmodel, &iter))
6266         {
6267           /* Maybe we should have a way to ask the fsmodel if it had filtered a file */
6268           if (!removed_filters)
6269             {
6270               set_current_filter (impl, NULL);
6271               removed_filters = TRUE;
6272             }
6273         }
6274
6275       /* Okay, can we select the file now? */
6276           
6277       if (!_gtk_file_system_model_get_iter_for_file (fsmodel, &iter, file))
6278         continue;
6279
6280       if (_gtk_file_system_model_iter_is_visible (fsmodel, &iter))
6281         {
6282           GtkTreePath *path;
6283
6284           gtk_tree_selection_select_iter (selection, &iter);
6285
6286           path = gtk_tree_model_get_path (GTK_TREE_MODEL (fsmodel), &iter);
6287           gtk_tree_view_set_cursor (GTK_TREE_VIEW (impl->browse_files_tree_view),
6288                                     path, NULL, FALSE);
6289           gtk_tree_path_free (path);
6290
6291           selected_a_file = TRUE;
6292         }
6293     }
6294
6295   browse_files_center_selected_row (impl);
6296
6297   return selected_a_file;
6298 }
6299
6300 /* Processes the pending operation when a folder is finished loading */
6301 static void
6302 pending_select_files_process (GtkFileChooserDefault *impl)
6303 {
6304   g_assert (impl->load_state == LOAD_FINISHED);
6305   g_assert (impl->browse_files_model != NULL);
6306
6307   if (impl->pending_select_files)
6308     {
6309       show_and_select_files (impl, impl->pending_select_files);
6310       pending_select_files_free (impl);
6311       browse_files_center_selected_row (impl);
6312     }
6313   else
6314     {
6315       /* We only select the first row if the chooser is actually mapped ---
6316        * selecting the first row is to help the user when he is interacting with
6317        * the chooser, but sometimes a chooser works not on behalf of the user,
6318        * but rather on behalf of something else like GtkFileChooserButton.  In
6319        * that case, the chooser's selection should be what the caller expects,
6320        * as the user can't see that something else got selected.  See bug #165264.
6321        */
6322       if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN &&
6323           gtk_widget_get_mapped (GTK_WIDGET (impl)))
6324         browse_files_select_first_row (impl);
6325     }
6326
6327   g_assert (impl->pending_select_files == NULL);
6328 }
6329
6330 static void
6331 show_error_on_reading_current_folder (GtkFileChooserDefault *impl, GError *error)
6332 {
6333   GFileInfo *info;
6334   char *msg;
6335
6336   info = g_file_query_info (impl->current_folder,
6337                             G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME,
6338                             G_FILE_QUERY_INFO_NONE,
6339                             NULL,
6340                             NULL);
6341   if (info)
6342     {
6343       msg = g_strdup_printf (_("Could not read the contents of %s"), g_file_info_get_display_name (info));
6344       g_object_unref (info);
6345     }
6346   else
6347     msg = g_strdup (_("Could not read the contents of the folder"));
6348
6349   error_message (impl, msg, error->message);
6350   g_free (msg);
6351 }
6352
6353 /* Callback used when the file system model finishes loading */
6354 static void
6355 browse_files_model_finished_loading_cb (GtkFileSystemModel    *model,
6356                                         GError                *error,
6357                                         GtkFileChooserDefault *impl)
6358 {
6359   profile_start ("start", NULL);
6360
6361   if (error)
6362     show_error_on_reading_current_folder (impl, error);
6363
6364   if (impl->load_state == LOAD_PRELOAD)
6365     {
6366       load_remove_timer (impl);
6367       load_set_model (impl);
6368     }
6369   else if (impl->load_state == LOAD_LOADING)
6370     {
6371       /* Nothing */
6372     }
6373   else
6374     {
6375       /* We can't g_assert_not_reached(), as something other than us may have
6376        *  initiated a folder reload.  See #165556.
6377        */
6378       profile_end ("end", NULL);
6379       return;
6380     }
6381
6382   g_assert (impl->load_timeout_id == 0);
6383
6384   impl->load_state = LOAD_FINISHED;
6385
6386   pending_select_files_process (impl);
6387   set_busy_cursor (impl, FALSE);
6388 #ifdef PROFILE_FILE_CHOOSER
6389   access ("MARK: *** FINISHED LOADING", F_OK);
6390 #endif
6391
6392   profile_end ("end", NULL);
6393 }
6394
6395 static void
6396 stop_loading_and_clear_list_model (GtkFileChooserDefault *impl,
6397                                    gboolean remove_from_treeview)
6398 {
6399   load_remove_timer (impl); /* This changes the state to LOAD_EMPTY */
6400   
6401   if (impl->browse_files_model)
6402     {
6403       g_object_unref (impl->browse_files_model);
6404       impl->browse_files_model = NULL;
6405     }
6406
6407   if (remove_from_treeview)
6408     gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_files_tree_view), NULL);
6409 }
6410
6411 static char *
6412 my_g_format_time_for_display (glong secs)
6413 {
6414   GDate mtime, now;
6415   gint days_diff;
6416   struct tm tm_mtime;
6417   time_t time_mtime, time_now;
6418   const gchar *format;
6419   gchar *locale_format = NULL;
6420   gchar buf[256];
6421   char *date_str = NULL;
6422 #ifdef G_OS_WIN32
6423   const char *locale, *dot = NULL;
6424   gint64 codepage = -1;
6425   char charset[20];
6426 #endif
6427
6428   time_mtime = secs;
6429
6430 #ifdef HAVE_LOCALTIME_R
6431   localtime_r ((time_t *) &time_mtime, &tm_mtime);
6432 #else
6433   {
6434     struct tm *ptm = localtime ((time_t *) &time_mtime);
6435
6436     if (!ptm)
6437       {
6438         g_warning ("ptm != NULL failed");
6439         
6440         return g_strdup (_("Unknown"));
6441       }
6442     else
6443       memcpy ((void *) &tm_mtime, (void *) ptm, sizeof (struct tm));
6444   }
6445 #endif /* HAVE_LOCALTIME_R */
6446
6447   g_date_set_time_t (&mtime, time_mtime);
6448   time_now = time (NULL);
6449   g_date_set_time_t (&now, time_now);
6450
6451   days_diff = g_date_get_julian (&now) - g_date_get_julian (&mtime);
6452
6453   /* Translators: %H means "hours" and %M means "minutes" */
6454   if (days_diff == 0)
6455     format = _("%H:%M");
6456   else if (days_diff == 1)
6457     format = _("Yesterday at %H:%M");
6458   else
6459     {
6460       if (days_diff > 1 && days_diff < 7)
6461         format = "%A"; /* Days from last week */
6462       else
6463         format = "%x"; /* Any other date */
6464     }
6465
6466 #ifdef G_OS_WIN32
6467   /* g_locale_from_utf8() returns a string in the system
6468    * code-page, which is not always the same as that used by the C
6469    * library. For instance when running a GTK+ program with
6470    * LANG=ko on an English version of Windows, the system
6471    * code-page is 1252, but the code-page used by the C library is
6472    * 949. (It's GTK+ itself that sets the C library locale when it
6473    * notices the LANG environment variable. See gtkmain.c The
6474    * Microsoft C library doesn't look at any locale environment
6475    * variables.) We need to pass strftime() a string in the C
6476    * library's code-page. See bug #509885.
6477    */
6478   locale = setlocale (LC_ALL, NULL);
6479   if (locale != NULL)
6480     dot = strchr (locale, '.');
6481   if (dot != NULL)
6482     {
6483       codepage = g_ascii_strtoll (dot+1, NULL, 10);
6484       
6485       /* All codepages should fit in 16 bits AFAIK */
6486       if (codepage > 0 && codepage < 65536)
6487         {
6488           sprintf (charset, "CP%u", (guint) codepage);
6489           locale_format = g_convert (format, -1, charset, "UTF-8", NULL, NULL, NULL);
6490         }
6491     }
6492 #else
6493   locale_format = g_locale_from_utf8 (format, -1, NULL, NULL, NULL);
6494 #endif
6495   if (locale_format != NULL &&
6496       strftime (buf, sizeof (buf), locale_format, &tm_mtime) != 0)
6497     {
6498 #ifdef G_OS_WIN32
6499       /* As above but in opposite direction... */
6500       if (codepage > 0 && codepage < 65536)
6501         date_str = g_convert (buf, -1, "UTF-8", charset, NULL, NULL, NULL);
6502 #else
6503       date_str = g_locale_to_utf8 (buf, -1, NULL, NULL, NULL);
6504 #endif
6505     }
6506
6507   if (date_str == NULL)
6508     date_str = g_strdup (_("Unknown"));
6509
6510   g_free (locale_format);
6511   return date_str;
6512 }
6513
6514 static void
6515 copy_attribute (GFileInfo *to, GFileInfo *from, const char *attribute)
6516 {
6517   GFileAttributeType type;
6518   gpointer value;
6519
6520   if (g_file_info_get_attribute_data (from, attribute, &type, &value, NULL))
6521     g_file_info_set_attribute (to, attribute, type, value);
6522 }
6523
6524 static void
6525 file_system_model_got_thumbnail (GObject *object, GAsyncResult *res, gpointer data)
6526 {
6527   GtkFileSystemModel *model = data; /* might be unreffed if operation was cancelled */
6528   GFile *file = G_FILE (object);
6529   GFileInfo *queried, *info;
6530   GtkTreeIter iter;
6531
6532   queried = g_file_query_info_finish (file, res, NULL);
6533   if (queried == NULL)
6534     return;
6535
6536   GDK_THREADS_ENTER ();
6537
6538   /* now we know model is valid */
6539
6540   /* file was deleted */
6541   if (!_gtk_file_system_model_get_iter_for_file (model, &iter, file))
6542     {
6543       GDK_THREADS_LEAVE ();
6544       return;
6545     }
6546
6547   info = g_file_info_dup (_gtk_file_system_model_get_info (model, &iter));
6548
6549   copy_attribute (info, queried, G_FILE_ATTRIBUTE_THUMBNAIL_PATH);
6550   copy_attribute (info, queried, G_FILE_ATTRIBUTE_THUMBNAILING_FAILED);
6551   copy_attribute (info, queried, G_FILE_ATTRIBUTE_STANDARD_ICON);
6552
6553   _gtk_file_system_model_update_file (model, file, info, FALSE);
6554
6555   g_object_unref (info);
6556
6557   GDK_THREADS_LEAVE ();
6558 }
6559
6560 static gboolean
6561 file_system_model_set (GtkFileSystemModel *model,
6562                        GFile              *file,
6563                        GFileInfo          *info,
6564                        int                 column,
6565                        GValue             *value,
6566                        gpointer            data)
6567 {
6568   GtkFileChooserDefault *impl = data;
6569  
6570   switch (column)
6571     {
6572     case MODEL_COL_FILE:
6573       g_value_set_object (value, file);
6574       break;
6575     case MODEL_COL_NAME:
6576       if (info == NULL)
6577         g_value_set_string (value, DEFAULT_NEW_FOLDER_NAME);
6578       else 
6579         g_value_set_string (value, g_file_info_get_display_name (info));
6580       break;
6581     case MODEL_COL_NAME_COLLATED:
6582       if (info == NULL)
6583         g_value_take_string (value, g_utf8_collate_key_for_filename (DEFAULT_NEW_FOLDER_NAME, -1));
6584       else 
6585         g_value_take_string (value, g_utf8_collate_key_for_filename (g_file_info_get_display_name (info), -1));
6586       break;
6587     case MODEL_COL_IS_FOLDER:
6588       g_value_set_boolean (value, info == NULL || _gtk_file_info_consider_as_directory (info));
6589       break;
6590     case MODEL_COL_PIXBUF:
6591       if (info)
6592         {
6593           if (g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_STANDARD_ICON))
6594             {
6595               g_value_take_object (value, _gtk_file_info_render_icon (info, GTK_WIDGET (impl), impl->icon_size));
6596             }
6597           else
6598             {
6599               GtkTreeModel *tree_model;
6600               GtkTreePath *path, *start, *end;
6601               GtkTreeIter iter;
6602
6603               if (impl->browse_files_tree_view == NULL ||
6604                   g_file_info_has_attribute (info, "filechooser::queried"))
6605                 return FALSE;
6606
6607               tree_model = gtk_tree_view_get_model (GTK_TREE_VIEW (impl->browse_files_tree_view));
6608               if (tree_model != GTK_TREE_MODEL (model))
6609                 return FALSE;
6610
6611               if (!_gtk_file_system_model_get_iter_for_file (model,
6612                                                              &iter,
6613                                                              file))
6614                 g_assert_not_reached ();
6615               if (!gtk_tree_view_get_visible_range (GTK_TREE_VIEW (impl->browse_files_tree_view), &start, &end))
6616                 return FALSE;
6617               path = gtk_tree_model_get_path (tree_model, &iter);
6618               if (gtk_tree_path_compare (start, path) != 1 &&
6619                   gtk_tree_path_compare (path, end) != 1)
6620                 {
6621                   g_file_info_set_attribute_boolean (info, "filechooser::queried", TRUE);
6622                   g_file_query_info_async (file,
6623                                            G_FILE_ATTRIBUTE_THUMBNAIL_PATH ","
6624                                            G_FILE_ATTRIBUTE_THUMBNAILING_FAILED ","
6625                                            G_FILE_ATTRIBUTE_STANDARD_ICON,
6626                                            G_FILE_QUERY_INFO_NONE,
6627                                            G_PRIORITY_DEFAULT,
6628                                            _gtk_file_system_model_get_cancellable (model),
6629                                            file_system_model_got_thumbnail,
6630                                            model);
6631                 }
6632               gtk_tree_path_free (path);
6633               gtk_tree_path_free (start);
6634               gtk_tree_path_free (end);
6635               return FALSE;
6636             }
6637         }
6638       else
6639         g_value_set_object (value, NULL);
6640       break;
6641     case MODEL_COL_SIZE:
6642       g_value_set_int64 (value, info ? g_file_info_get_size (info) : 0);
6643       break;
6644     case MODEL_COL_SIZE_TEXT:
6645       if (info == NULL || _gtk_file_info_consider_as_directory (info))
6646         g_value_set_string (value, NULL);
6647       else
6648         g_value_take_string (value, g_format_size_for_display (g_file_info_get_size (info)));
6649       break;
6650     case MODEL_COL_MTIME:
6651     case MODEL_COL_MTIME_TEXT:
6652       {
6653         GTimeVal tv;
6654         if (info == NULL)
6655           break;
6656         g_file_info_get_modification_time (info, &tv);
6657         if (column == MODEL_COL_MTIME)
6658           g_value_set_long (value, tv.tv_sec);
6659         else if (tv.tv_sec == 0)
6660           g_value_set_static_string (value, _("Unknown"));
6661         else
6662           g_value_take_string (value, my_g_format_time_for_display (tv.tv_sec));
6663         break;
6664       }
6665     case MODEL_COL_ELLIPSIZE:
6666       g_value_set_enum (value, info ? PANGO_ELLIPSIZE_END : PANGO_ELLIPSIZE_NONE);
6667       break;
6668     default:
6669       g_assert_not_reached ();
6670       break;
6671     }
6672
6673   return TRUE;
6674 }
6675
6676 /* Gets rid of the old list model and creates a new one for the current folder */
6677 static gboolean
6678 set_list_model (GtkFileChooserDefault *impl,
6679                 GError               **error)
6680 {
6681   g_assert (impl->current_folder != NULL);
6682
6683   profile_start ("start", NULL);
6684
6685   stop_loading_and_clear_list_model (impl, TRUE);
6686
6687   set_busy_cursor (impl, TRUE);
6688
6689   impl->browse_files_model = 
6690     _gtk_file_system_model_new_for_directory (impl->current_folder,
6691                                               MODEL_ATTRIBUTES,
6692                                               file_system_model_set,
6693                                               impl,
6694                                               MODEL_COLUMN_TYPES);
6695
6696   _gtk_file_system_model_set_show_hidden (impl->browse_files_model, impl->show_hidden);
6697
6698   profile_msg ("    set sort function", NULL);
6699   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->browse_files_model), MODEL_COL_NAME, name_sort_func, impl, NULL);
6700   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->browse_files_model), MODEL_COL_SIZE, size_sort_func, impl, NULL);
6701   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->browse_files_model), MODEL_COL_MTIME, mtime_sort_func, impl, NULL);
6702   gtk_tree_sortable_set_default_sort_func (GTK_TREE_SORTABLE (impl->browse_files_model), NULL, NULL, NULL);
6703   set_sort_column (impl);
6704   impl->list_sort_ascending = TRUE;
6705   g_signal_connect (impl->browse_files_model, "sort-column-changed",
6706                     G_CALLBACK (list_sort_column_changed_cb), impl);
6707
6708   load_setup_timer (impl); /* This changes the state to LOAD_PRELOAD */
6709
6710   g_signal_connect (impl->browse_files_model, "finished-loading",
6711                     G_CALLBACK (browse_files_model_finished_loading_cb), impl);
6712
6713   install_list_model_filter (impl);
6714
6715   profile_end ("end", NULL);
6716
6717   return TRUE;
6718 }
6719
6720 struct update_chooser_entry_selected_foreach_closure {
6721   int num_selected;
6722   GtkTreeIter first_selected_iter;
6723 };
6724
6725 static gint
6726 compare_utf8_filenames (const gchar *a,
6727                         const gchar *b)
6728 {
6729   gchar *a_folded, *b_folded;
6730   gint retval;
6731
6732   a_folded = g_utf8_strdown (a, -1);
6733   b_folded = g_utf8_strdown (b, -1);
6734
6735   retval = strcmp (a_folded, b_folded);
6736
6737   g_free (a_folded);
6738   g_free (b_folded);
6739
6740   return retval;
6741 }
6742
6743 static void
6744 update_chooser_entry_selected_foreach (GtkTreeModel *model,
6745                                        GtkTreePath *path,
6746                                        GtkTreeIter *iter,
6747                                        gpointer data)
6748 {
6749   struct update_chooser_entry_selected_foreach_closure *closure;
6750
6751   closure = data;
6752   closure->num_selected++;
6753
6754   if (closure->num_selected == 1)
6755     closure->first_selected_iter = *iter;
6756 }
6757
6758 static void
6759 update_chooser_entry (GtkFileChooserDefault *impl)
6760 {
6761   GtkTreeSelection *selection;
6762   struct update_chooser_entry_selected_foreach_closure closure;
6763
6764   /* no need to update the file chooser's entry if there's no entry */
6765   if (impl->operation_mode == OPERATION_MODE_SEARCH ||
6766       !impl->location_entry)
6767     return;
6768
6769   if (!(impl->action == GTK_FILE_CHOOSER_ACTION_SAVE
6770         || impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
6771         || ((impl->action == GTK_FILE_CHOOSER_ACTION_OPEN
6772              || impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
6773             && impl->location_mode == LOCATION_MODE_FILENAME_ENTRY)))
6774     return;
6775
6776   g_assert (impl->location_entry != NULL);
6777
6778   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
6779   closure.num_selected = 0;
6780   gtk_tree_selection_selected_foreach (selection, update_chooser_entry_selected_foreach, &closure);
6781
6782   if (closure.num_selected == 0)
6783     {
6784       if (impl->operation_mode == OPERATION_MODE_RECENT)
6785         _gtk_file_chooser_entry_set_base_folder (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), NULL);
6786       else
6787         goto maybe_clear_entry;
6788     }
6789   else if (closure.num_selected == 1)
6790     {
6791       if (impl->operation_mode == OPERATION_MODE_BROWSE)
6792         {
6793           GFileInfo *info;
6794           gboolean change_entry;
6795
6796           info = _gtk_file_system_model_get_info (impl->browse_files_model, &closure.first_selected_iter);
6797
6798           /* If the cursor moved to the row of the newly created folder,
6799            * retrieving info will return NULL.
6800            */
6801           if (!info)
6802             return;
6803
6804           g_free (impl->browse_files_last_selected_name);
6805           impl->browse_files_last_selected_name =
6806             g_strdup (g_file_info_get_display_name (info));
6807
6808           if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
6809               impl->action == GTK_FILE_CHOOSER_ACTION_SAVE ||
6810               impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
6811             {
6812               /* Don't change the name when clicking on a folder... */
6813               change_entry = (! _gtk_file_info_consider_as_directory (info));
6814             }
6815           else
6816             change_entry = TRUE; /* ... unless we are in SELECT_FOLDER mode */
6817
6818           if (change_entry)
6819             {
6820               _gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), impl->browse_files_last_selected_name);
6821
6822               if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
6823                 _gtk_file_chooser_entry_select_filename (GTK_FILE_CHOOSER_ENTRY (impl->location_entry));
6824             }
6825
6826           return;
6827         }
6828       else if (impl->operation_mode == OPERATION_MODE_RECENT
6829                && impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
6830         {
6831           GFile *folder;
6832
6833           /* Set the base folder on the name entry, so it will do completion relative to the correct recent-folder */
6834
6835           gtk_tree_model_get (GTK_TREE_MODEL (impl->recent_model), &closure.first_selected_iter,
6836                               MODEL_COL_FILE, &folder,
6837                               -1);
6838           _gtk_file_chooser_entry_set_base_folder (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), folder);
6839           g_object_unref (folder);
6840           return;
6841         }
6842     }
6843   else
6844     {
6845       g_assert (!(impl->action == GTK_FILE_CHOOSER_ACTION_SAVE ||
6846                   impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER));
6847
6848       /* Multiple selection, so just clear the entry. */
6849       g_free (impl->browse_files_last_selected_name);
6850       impl->browse_files_last_selected_name = NULL;
6851
6852       _gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), "");
6853       return;
6854     }
6855
6856  maybe_clear_entry:
6857
6858   if ((impl->action == GTK_FILE_CHOOSER_ACTION_OPEN || impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
6859       && impl->browse_files_last_selected_name)
6860     {
6861       const char *entry_text;
6862       int len;
6863       gboolean clear_entry;
6864
6865       entry_text = gtk_entry_get_text (GTK_ENTRY (impl->location_entry));
6866       len = strlen (entry_text);
6867       if (len != 0)
6868         {
6869           /* The file chooser entry may have appended a "/" to its text.
6870            * So take it out, and compare the result to the old selection.
6871            */
6872           if (entry_text[len - 1] == G_DIR_SEPARATOR)
6873             {
6874               gchar *tmp;
6875
6876               tmp = g_strndup (entry_text, len - 1);
6877               clear_entry = (compare_utf8_filenames (impl->browse_files_last_selected_name, tmp) == 0);
6878               g_free (tmp);
6879             }
6880           else
6881             clear_entry = (compare_utf8_filenames (impl->browse_files_last_selected_name, entry_text) == 0);
6882         }
6883       else
6884         clear_entry = FALSE;
6885
6886       if (clear_entry)
6887         _gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), "");
6888     }
6889 }
6890
6891 static gboolean
6892 gtk_file_chooser_default_set_current_folder (GtkFileChooser  *chooser,
6893                                              GFile           *file,
6894                                              GError         **error)
6895 {
6896   return gtk_file_chooser_default_update_current_folder (chooser, file, FALSE, FALSE, error);
6897 }
6898
6899
6900 struct UpdateCurrentFolderData
6901 {
6902   GtkFileChooserDefault *impl;
6903   GFile *file;
6904   gboolean keep_trail;
6905   gboolean clear_entry;
6906   GFile *original_file;
6907   GError *original_error;
6908 };
6909
6910 static void
6911 update_current_folder_mount_enclosing_volume_cb (GCancellable        *cancellable,
6912                                                  GtkFileSystemVolume *volume,
6913                                                  const GError        *error,
6914                                                  gpointer             user_data)
6915 {
6916   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
6917   struct UpdateCurrentFolderData *data = user_data;
6918   GtkFileChooserDefault *impl = data->impl;
6919
6920   if (cancellable != impl->update_current_folder_cancellable)
6921     goto out;
6922
6923   impl->update_current_folder_cancellable = NULL;
6924   set_busy_cursor (impl, FALSE);
6925
6926   if (cancelled)
6927     goto out;
6928
6929   if (error)
6930     {
6931       error_changing_folder_dialog (data->impl, data->file, g_error_copy (error));
6932       impl->reload_state = RELOAD_EMPTY;
6933       goto out;
6934     }
6935
6936   change_folder_and_display_error (impl, data->file, data->clear_entry);
6937
6938 out:
6939   g_object_unref (data->file);
6940   g_free (data);
6941
6942   g_object_unref (cancellable);
6943 }
6944
6945 static void
6946 update_current_folder_get_info_cb (GCancellable *cancellable,
6947                                    GFileInfo    *info,
6948                                    const GError *error,
6949                                    gpointer      user_data)
6950 {
6951   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
6952   struct UpdateCurrentFolderData *data = user_data;
6953   GtkFileChooserDefault *impl = data->impl;
6954
6955   if (cancellable != impl->update_current_folder_cancellable)
6956     goto out;
6957
6958   impl->update_current_folder_cancellable = NULL;
6959   impl->reload_state = RELOAD_EMPTY;
6960
6961   set_busy_cursor (impl, FALSE);
6962
6963   if (cancelled)
6964     goto out;
6965
6966   if (error)
6967     {
6968       GFile *parent_file;
6969
6970       if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_MOUNTED))
6971         {
6972           GMountOperation *mount_operation;
6973           GtkWidget *toplevel;
6974
6975           g_object_unref (cancellable);
6976           toplevel = gtk_widget_get_toplevel (GTK_WIDGET (impl));
6977
6978           mount_operation = gtk_mount_operation_new (GTK_WINDOW (toplevel));
6979
6980           set_busy_cursor (impl, TRUE);
6981
6982           impl->update_current_folder_cancellable =
6983             _gtk_file_system_mount_enclosing_volume (impl->file_system, data->file,
6984                                                      mount_operation,
6985                                                      update_current_folder_mount_enclosing_volume_cb,
6986                                                      data);
6987
6988           return;
6989         }
6990
6991       if (!data->original_file)
6992         {
6993           data->original_file = g_object_ref (data->file);
6994           data->original_error = g_error_copy (error);
6995         }
6996
6997       parent_file = g_file_get_parent (data->file);
6998
6999       /* get parent path and try to change the folder to that */
7000       if (parent_file)
7001         {
7002           g_object_unref (data->file);
7003           data->file = parent_file;
7004
7005           g_object_unref (cancellable);
7006
7007           /* restart the update current folder operation */
7008           impl->reload_state = RELOAD_HAS_FOLDER;
7009
7010           impl->update_current_folder_cancellable =
7011             _gtk_file_system_get_info (impl->file_system, data->file,
7012                                        "standard::type",
7013                                        update_current_folder_get_info_cb,
7014                                        data);
7015
7016           set_busy_cursor (impl, TRUE);
7017
7018           return;
7019         }
7020       else
7021         {
7022           /* Error and bail out, ignoring "not found" errors since they're useless:
7023            * they only happen when a program defaults to a folder that has been (re)moved.
7024            */
7025           if (!g_error_matches (data->original_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
7026             error_changing_folder_dialog (impl, data->original_file, data->original_error);
7027           else
7028             g_error_free (data->original_error);
7029
7030           g_object_unref (data->original_file);
7031
7032           goto out;
7033         }
7034     }
7035
7036   if (data->original_file)
7037     {
7038       /* Error and bail out, ignoring "not found" errors since they're useless:
7039        * they only happen when a program defaults to a folder that has been (re)moved.
7040        */
7041       if (!g_error_matches (data->original_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
7042         error_changing_folder_dialog (impl, data->original_file, data->original_error);
7043       else
7044         g_error_free (data->original_error);
7045
7046       g_object_unref (data->original_file);
7047     }
7048
7049   if (! _gtk_file_info_consider_as_directory (info))
7050     goto out;
7051
7052   if (!_gtk_path_bar_set_file (GTK_PATH_BAR (impl->browse_path_bar), data->file, data->keep_trail, NULL))
7053     goto out;
7054
7055   if (impl->current_folder != data->file)
7056     {
7057       if (impl->current_folder)
7058         g_object_unref (impl->current_folder);
7059
7060       impl->current_folder = g_object_ref (data->file);
7061     }
7062
7063   impl->reload_state = RELOAD_HAS_FOLDER;
7064
7065   /* Update the widgets that may trigger a folder change themselves.  */
7066
7067   if (!impl->changing_folder)
7068     {
7069       impl->changing_folder = TRUE;
7070
7071       shortcuts_update_current_folder (impl);
7072
7073       impl->changing_folder = FALSE;
7074     }
7075
7076   /* Set the folder on the save entry */
7077
7078   if (impl->location_entry)
7079     {
7080       _gtk_file_chooser_entry_set_base_folder (GTK_FILE_CHOOSER_ENTRY (impl->location_entry),
7081                                                impl->current_folder);
7082
7083       if (data->clear_entry)
7084         _gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), "");
7085     }
7086
7087   /* Create a new list model.  This is slightly evil; we store the result value
7088    * but perform more actions rather than returning immediately even if it
7089    * generates an error.
7090    */
7091   set_list_model (impl, NULL);
7092
7093   /* Refresh controls */
7094
7095   shortcuts_find_current_folder (impl);
7096
7097   g_signal_emit_by_name (impl, "current-folder-changed", 0);
7098
7099   check_preview_change (impl);
7100   bookmarks_check_add_sensitivity (impl);
7101
7102   g_signal_emit_by_name (impl, "selection-changed", 0);
7103
7104 out:
7105   g_object_unref (data->file);
7106   g_free (data);
7107
7108   g_object_unref (cancellable);
7109 }
7110
7111 static gboolean
7112 gtk_file_chooser_default_update_current_folder (GtkFileChooser    *chooser,
7113                                                 GFile             *file,
7114                                                 gboolean           keep_trail,
7115                                                 gboolean           clear_entry,
7116                                                 GError           **error)
7117 {
7118   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7119   struct UpdateCurrentFolderData *data;
7120
7121   profile_start ("start", NULL);
7122
7123   g_object_ref (file);
7124
7125   switch (impl->operation_mode)
7126     {
7127     case OPERATION_MODE_SEARCH:
7128       search_switch_to_browse_mode (impl);
7129       break;
7130     case OPERATION_MODE_RECENT:
7131       recent_switch_to_browse_mode (impl);
7132       break;
7133     case OPERATION_MODE_BROWSE:
7134       break;
7135     }
7136
7137   if (impl->local_only && !g_file_is_native (file))
7138     {
7139       g_set_error_literal (error,
7140                            GTK_FILE_CHOOSER_ERROR,
7141                            GTK_FILE_CHOOSER_ERROR_BAD_FILENAME,
7142                            _("Cannot change to folder because it is not local"));
7143
7144       g_object_unref (file);
7145       profile_end ("end - not local", NULL);
7146       return FALSE;
7147     }
7148
7149   if (impl->update_current_folder_cancellable)
7150     g_cancellable_cancel (impl->update_current_folder_cancellable);
7151
7152   /* Test validity of path here.  */
7153   data = g_new0 (struct UpdateCurrentFolderData, 1);
7154   data->impl = impl;
7155   data->file = g_object_ref (file);
7156   data->keep_trail = keep_trail;
7157   data->clear_entry = clear_entry;
7158
7159   impl->reload_state = RELOAD_HAS_FOLDER;
7160
7161   impl->update_current_folder_cancellable =
7162     _gtk_file_system_get_info (impl->file_system, file,
7163                                "standard::type",
7164                                update_current_folder_get_info_cb,
7165                                data);
7166
7167   set_busy_cursor (impl, TRUE);
7168   g_object_unref (file);
7169
7170   profile_end ("end", NULL);
7171   return TRUE;
7172 }
7173
7174 static GFile *
7175 gtk_file_chooser_default_get_current_folder (GtkFileChooser *chooser)
7176 {
7177   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7178
7179   if (impl->operation_mode == OPERATION_MODE_SEARCH ||
7180       impl->operation_mode == OPERATION_MODE_RECENT)
7181     return NULL;
7182  
7183   if (impl->reload_state == RELOAD_EMPTY)
7184     {
7185       /* We are unmapped, or we had an error while loading the last folder.
7186        * We'll return the folder used by the last invocation of the file chooser
7187        * since once we get (re)mapped, we'll load *that* folder anyway unless
7188        * the caller explicitly calls set_current_folder() on us.
7189        */
7190       return get_file_for_last_folder_opened (impl);
7191     }
7192
7193   if (impl->current_folder)
7194     return g_object_ref (impl->current_folder);
7195
7196   return NULL;
7197 }
7198
7199 static void
7200 gtk_file_chooser_default_set_current_name (GtkFileChooser *chooser,
7201                                            const gchar    *name)
7202 {
7203   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7204
7205   g_return_if_fail (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE ||
7206                     impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER);
7207
7208   pending_select_files_free (impl);
7209   _gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), name);
7210 }
7211
7212 static gboolean
7213 gtk_file_chooser_default_select_file (GtkFileChooser  *chooser,
7214                                       GFile           *file,
7215                                       GError         **error)
7216 {
7217   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7218   GFile *parent_file;
7219   gboolean same_path;
7220
7221   parent_file = g_file_get_parent (file);
7222
7223   if (!parent_file)
7224     return gtk_file_chooser_set_current_folder_file (chooser, file, error);
7225
7226   if (impl->operation_mode == OPERATION_MODE_SEARCH ||
7227       impl->operation_mode == OPERATION_MODE_RECENT ||
7228       impl->load_state == LOAD_EMPTY)
7229     {
7230       same_path = FALSE;
7231     }
7232   else
7233     {
7234       g_assert (impl->current_folder != NULL);
7235
7236       same_path = g_file_equal (parent_file, impl->current_folder);
7237     }
7238
7239   if (same_path && impl->load_state == LOAD_FINISHED)
7240     {
7241       gboolean result;
7242       GSList files;
7243
7244       files.data = (gpointer) file;
7245       files.next = NULL;
7246
7247       result = show_and_select_files (impl, &files);
7248       g_object_unref (parent_file);
7249       return result;
7250     }
7251
7252   pending_select_files_add (impl, file);
7253
7254   if (!same_path)
7255     {
7256       gboolean result;
7257
7258       result = gtk_file_chooser_set_current_folder_file (chooser, parent_file, error);
7259       g_object_unref (parent_file);
7260       return result;
7261     }
7262
7263   g_object_unref (parent_file);
7264   return TRUE;
7265 }
7266
7267 static void
7268 gtk_file_chooser_default_unselect_file (GtkFileChooser *chooser,
7269                                         GFile          *file)
7270 {
7271   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7272   GtkTreeView *tree_view = GTK_TREE_VIEW (impl->browse_files_tree_view);
7273   GtkTreeIter iter;
7274
7275   if (!impl->browse_files_model)
7276     return;
7277
7278   if (!_gtk_file_system_model_get_iter_for_file (impl->browse_files_model,
7279                                                  &iter,
7280                                                  file))
7281     return;
7282
7283   gtk_tree_selection_unselect_iter (gtk_tree_view_get_selection (tree_view),
7284                                     &iter);
7285 }
7286
7287 static gboolean
7288 maybe_select (GtkTreeModel *model, 
7289               GtkTreePath  *path, 
7290               GtkTreeIter  *iter, 
7291               gpointer     data)
7292 {
7293   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (data);
7294   GtkTreeSelection *selection;
7295   gboolean is_folder;
7296   
7297   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
7298   
7299   gtk_tree_model_get (model, iter,
7300                       MODEL_COL_IS_FOLDER, &is_folder,
7301                       -1);
7302
7303   if ((is_folder && impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER) ||
7304       (!is_folder && impl->action == GTK_FILE_CHOOSER_ACTION_OPEN))
7305     gtk_tree_selection_select_iter (selection, iter);
7306   else
7307     gtk_tree_selection_unselect_iter (selection, iter);
7308     
7309   return FALSE;
7310 }
7311
7312 static void
7313 gtk_file_chooser_default_select_all (GtkFileChooser *chooser)
7314 {
7315   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7316
7317   if (impl->operation_mode == OPERATION_MODE_SEARCH ||
7318       impl->operation_mode == OPERATION_MODE_RECENT)
7319     {
7320       GtkTreeSelection *selection;
7321       
7322       selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
7323       gtk_tree_selection_select_all (selection);
7324       return;
7325     }
7326
7327   if (impl->select_multiple)
7328     gtk_tree_model_foreach (GTK_TREE_MODEL (impl->browse_files_model), 
7329                             maybe_select, impl);
7330 }
7331
7332 static void
7333 gtk_file_chooser_default_unselect_all (GtkFileChooser *chooser)
7334 {
7335   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7336   GtkTreeSelection *selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
7337
7338   gtk_tree_selection_unselect_all (selection);
7339   pending_select_files_free (impl);
7340 }
7341
7342 /* Checks whether the filename entry for the Save modes contains a well-formed filename.
7343  *
7344  * is_well_formed_ret - whether what the user typed passes gkt_file_system_make_path()
7345  *
7346  * is_empty_ret - whether the file entry is totally empty
7347  *
7348  * is_file_part_empty_ret - whether the file part is empty (will be if user types "foobar/", and
7349  *                          the path will be "$cwd/foobar")
7350  */
7351 static void
7352 check_save_entry (GtkFileChooserDefault *impl,
7353                   GFile                **file_ret,
7354                   gboolean              *is_well_formed_ret,
7355                   gboolean              *is_empty_ret,
7356                   gboolean              *is_file_part_empty_ret,
7357                   gboolean              *is_folder)
7358 {
7359   GtkFileChooserEntry *chooser_entry;
7360   GFile *current_folder;
7361   const char *file_part;
7362   GFile *file;
7363   GError *error;
7364
7365   g_assert (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE
7366             || impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
7367             || ((impl->action == GTK_FILE_CHOOSER_ACTION_OPEN
7368                  || impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
7369                 && impl->location_mode == LOCATION_MODE_FILENAME_ENTRY));
7370
7371   chooser_entry = GTK_FILE_CHOOSER_ENTRY (impl->location_entry);
7372
7373   if (strlen (gtk_entry_get_text (GTK_ENTRY (chooser_entry))) == 0)
7374     {
7375       *file_ret = NULL;
7376       *is_well_formed_ret = TRUE;
7377       *is_empty_ret = TRUE;
7378       *is_file_part_empty_ret = TRUE;
7379       *is_folder = FALSE;
7380
7381       return;
7382     }
7383
7384   *is_empty_ret = FALSE;
7385
7386   current_folder = _gtk_file_chooser_entry_get_current_folder (chooser_entry);
7387   if (!current_folder)
7388     {
7389       *file_ret = NULL;
7390       *is_well_formed_ret = FALSE;
7391       *is_file_part_empty_ret = FALSE;
7392       *is_folder = FALSE;
7393
7394       return;
7395     }
7396
7397   file_part = _gtk_file_chooser_entry_get_file_part (chooser_entry);
7398
7399   if (!file_part || file_part[0] == '\0')
7400     {
7401       *file_ret = g_object_ref (current_folder);
7402       *is_well_formed_ret = TRUE;
7403       *is_file_part_empty_ret = TRUE;
7404       *is_folder = TRUE;
7405
7406       return;
7407     }
7408
7409   *is_file_part_empty_ret = FALSE;
7410
7411   error = NULL;
7412   file = g_file_get_child_for_display_name (current_folder, file_part, &error);
7413
7414   if (!file)
7415     {
7416       error_building_filename_dialog (impl, error);
7417       *file_ret = NULL;
7418       *is_well_formed_ret = FALSE;
7419       *is_folder = FALSE;
7420
7421       return;
7422     }
7423
7424   *file_ret = file;
7425   *is_well_formed_ret = TRUE;
7426   *is_folder = _gtk_file_chooser_entry_get_is_folder (chooser_entry, file);
7427 }
7428
7429 struct get_files_closure {
7430   GtkFileChooserDefault *impl;
7431   GSList *result;
7432   GFile *file_from_entry;
7433 };
7434
7435 static void
7436 get_files_foreach (GtkTreeModel *model,
7437                    GtkTreePath  *path,
7438                    GtkTreeIter  *iter,
7439                    gpointer      data)
7440 {
7441   struct get_files_closure *info;
7442   GFile *file;
7443   GtkFileSystemModel *fs_model;
7444
7445   info = data;
7446   fs_model = info->impl->browse_files_model;
7447
7448   file = _gtk_file_system_model_get_file (fs_model, iter);
7449   if (!file)
7450     return; /* We are on the editable row */
7451
7452   if (!info->file_from_entry || !g_file_equal (info->file_from_entry, file))
7453     info->result = g_slist_prepend (info->result, g_object_ref (file));
7454 }
7455
7456 static GSList *
7457 gtk_file_chooser_default_get_files (GtkFileChooser *chooser)
7458 {
7459   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7460   struct get_files_closure info;
7461   GtkWindow *toplevel;
7462   GtkWidget *current_focus;
7463   gboolean file_list_seen;
7464
7465   info.impl = impl;
7466   info.result = NULL;
7467   info.file_from_entry = NULL;
7468
7469   if (impl->operation_mode == OPERATION_MODE_SEARCH)
7470     return search_get_selected_files (impl);
7471
7472   if (impl->operation_mode == OPERATION_MODE_RECENT)
7473     {
7474       if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
7475         {
7476           file_list_seen = TRUE;
7477           goto file_entry;
7478         }
7479       else
7480         return recent_get_selected_files (impl);
7481     }
7482
7483   toplevel = get_toplevel (GTK_WIDGET (impl));
7484   if (toplevel)
7485     current_focus = gtk_window_get_focus (toplevel);
7486   else
7487     current_focus = NULL;
7488
7489   file_list_seen = FALSE;
7490   if (current_focus == impl->browse_files_tree_view)
7491     {
7492       GtkTreeSelection *selection;
7493
7494     file_list:
7495
7496       file_list_seen = TRUE;
7497       selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
7498       gtk_tree_selection_selected_foreach (selection, get_files_foreach, &info);
7499
7500       /* If there is no selection in the file list, we probably have this situation:
7501        *
7502        * 1. The user typed a filename in the SAVE filename entry ("foo.txt").
7503        * 2. He then double-clicked on a folder ("bar") in the file list
7504        *
7505        * So we want the selection to be "bar/foo.txt".  Jump to the case for the
7506        * filename entry to see if that is the case.
7507        */
7508       if (info.result == NULL && impl->location_entry)
7509         goto file_entry;
7510     }
7511   else if (impl->location_entry && current_focus == impl->location_entry)
7512     {
7513       gboolean is_well_formed, is_empty, is_file_part_empty, is_folder;
7514
7515     file_entry:
7516
7517       check_save_entry (impl, &info.file_from_entry, &is_well_formed, &is_empty, &is_file_part_empty, &is_folder);
7518
7519       if (is_empty)
7520         goto out;
7521
7522       if (!is_well_formed)
7523         return NULL;
7524
7525       if (is_file_part_empty && impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
7526         {
7527           g_object_unref (info.file_from_entry);
7528           return NULL;
7529         }
7530
7531       if (info.file_from_entry)
7532         info.result = g_slist_prepend (info.result, info.file_from_entry);
7533       else if (!file_list_seen) 
7534         goto file_list;
7535       else
7536         return NULL;
7537     }
7538   else if (impl->toplevel_last_focus_widget == impl->browse_files_tree_view)
7539     goto file_list;
7540   else if (impl->location_entry && impl->toplevel_last_focus_widget == impl->location_entry)
7541     goto file_entry;
7542   else
7543     {
7544       /* The focus is on a dialog's action area button or something else */
7545       if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE ||
7546           impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
7547         goto file_entry;
7548       else
7549         goto file_list; 
7550     }
7551
7552  out:
7553
7554   /* If there's no folder selected, and we're in SELECT_FOLDER mode, then we
7555    * fall back to the current directory */
7556   if (impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER &&
7557       info.result == NULL)
7558     {
7559       GFile *current_folder;
7560
7561       current_folder = gtk_file_chooser_get_current_folder_file (chooser);
7562
7563       if (current_folder)
7564         info.result = g_slist_prepend (info.result, current_folder);
7565     }
7566
7567   return g_slist_reverse (info.result);
7568 }
7569
7570 GFile *
7571 gtk_file_chooser_default_get_preview_file (GtkFileChooser *chooser)
7572 {
7573   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7574
7575   if (impl->preview_file)
7576     return g_object_ref (impl->preview_file);
7577   else
7578     return NULL;
7579 }
7580
7581 static GtkFileSystem *
7582 gtk_file_chooser_default_get_file_system (GtkFileChooser *chooser)
7583 {
7584   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7585
7586   return impl->file_system;
7587 }
7588
7589 /* Shows or hides the filter widgets */
7590 static void
7591 show_filters (GtkFileChooserDefault *impl,
7592               gboolean               show)
7593 {
7594   if (show)
7595     gtk_widget_show (impl->filter_combo_hbox);
7596   else
7597     gtk_widget_hide (impl->filter_combo_hbox);
7598 }
7599
7600 static void
7601 gtk_file_chooser_default_add_filter (GtkFileChooser *chooser,
7602                                      GtkFileFilter  *filter)
7603 {
7604   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7605   const gchar *name;
7606
7607   if (g_slist_find (impl->filters, filter))
7608     {
7609       g_warning ("gtk_file_chooser_add_filter() called on filter already in list\n");
7610       return;
7611     }
7612
7613   g_object_ref_sink (filter);
7614   impl->filters = g_slist_append (impl->filters, filter);
7615
7616   name = gtk_file_filter_get_name (filter);
7617   if (!name)
7618     name = "Untitled filter";   /* Place-holder, doesn't need to be marked for translation */
7619
7620   gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (impl->filter_combo), name);
7621
7622   if (!g_slist_find (impl->filters, impl->current_filter))
7623     set_current_filter (impl, filter);
7624
7625   show_filters (impl, TRUE);
7626 }
7627
7628 static void
7629 gtk_file_chooser_default_remove_filter (GtkFileChooser *chooser,
7630                                         GtkFileFilter  *filter)
7631 {
7632   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7633   GtkTreeModel *model;
7634   GtkTreeIter iter;
7635   gint filter_index;
7636
7637   filter_index = g_slist_index (impl->filters, filter);
7638
7639   if (filter_index < 0)
7640     {
7641       g_warning ("gtk_file_chooser_remove_filter() called on filter not in list\n");
7642       return;
7643     }
7644
7645   impl->filters = g_slist_remove (impl->filters, filter);
7646
7647   if (filter == impl->current_filter)
7648     {
7649       if (impl->filters)
7650         set_current_filter (impl, impl->filters->data);
7651       else
7652         set_current_filter (impl, NULL);
7653     }
7654
7655   /* Remove row from the combo box */
7656   model = gtk_combo_box_get_model (GTK_COMBO_BOX (impl->filter_combo));
7657   if (!gtk_tree_model_iter_nth_child  (model, &iter, NULL, filter_index))
7658     g_assert_not_reached ();
7659
7660   gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
7661
7662   g_object_unref (filter);
7663
7664   if (!impl->filters)
7665     show_filters (impl, FALSE);
7666 }
7667
7668 static GSList *
7669 gtk_file_chooser_default_list_filters (GtkFileChooser *chooser)
7670 {
7671   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7672
7673   return g_slist_copy (impl->filters);
7674 }
7675
7676 /* Returns the position in the shortcuts tree where the nth specified shortcut would appear */
7677 static int
7678 shortcuts_get_pos_for_shortcut_folder (GtkFileChooserDefault *impl,
7679                                        int                    pos)
7680 {
7681   return pos + shortcuts_get_index (impl, SHORTCUTS_SHORTCUTS);
7682 }
7683
7684 struct AddShortcutData
7685 {
7686   GtkFileChooserDefault *impl;
7687   GFile *file;
7688 };
7689
7690 static void
7691 add_shortcut_get_info_cb (GCancellable *cancellable,
7692                           GFileInfo    *info,
7693                           const GError *error,
7694                           gpointer      user_data)
7695 {
7696   int pos;
7697   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
7698   struct AddShortcutData *data = user_data;
7699
7700   if (!g_slist_find (data->impl->loading_shortcuts, cancellable))
7701     goto out;
7702
7703   data->impl->loading_shortcuts = g_slist_remove (data->impl->loading_shortcuts, cancellable);
7704
7705   if (cancelled || error || (! _gtk_file_info_consider_as_directory (info)))
7706     goto out;
7707
7708   pos = shortcuts_get_pos_for_shortcut_folder (data->impl, data->impl->num_shortcuts);
7709
7710   shortcuts_insert_file (data->impl, pos, SHORTCUT_TYPE_FILE, NULL, data->file, NULL, FALSE, SHORTCUTS_SHORTCUTS);
7711
7712 out:
7713   g_object_unref (data->impl);
7714   g_object_unref (data->file);
7715   g_free (data);
7716
7717   g_object_unref (cancellable);
7718 }
7719
7720 static gboolean
7721 gtk_file_chooser_default_add_shortcut_folder (GtkFileChooser  *chooser,
7722                                               GFile           *file,
7723                                               GError         **error)
7724 {
7725   GCancellable *cancellable;
7726   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7727   struct AddShortcutData *data;
7728   GSList *l;
7729   int pos;
7730
7731   /* Avoid adding duplicates */
7732   pos = shortcut_find_position (impl, file);
7733   if (pos >= 0 && pos < shortcuts_get_index (impl, SHORTCUTS_BOOKMARKS_SEPARATOR))
7734     {
7735       gchar *uri;
7736
7737       uri = g_file_get_uri (file);
7738       /* translators, "Shortcut" means "Bookmark" here */
7739       g_set_error (error,
7740                    GTK_FILE_CHOOSER_ERROR,
7741                    GTK_FILE_CHOOSER_ERROR_ALREADY_EXISTS,
7742                    _("Shortcut %s already exists"),
7743                    uri);
7744       g_free (uri);
7745
7746       return FALSE;
7747     }
7748
7749   for (l = impl->loading_shortcuts; l; l = l->next)
7750     {
7751       GCancellable *c = l->data;
7752       GFile *f;
7753
7754       f = g_object_get_data (G_OBJECT (c), "add-shortcut-path-key");
7755       if (f && g_file_equal (file, f))
7756         {
7757           gchar *uri;
7758
7759           uri = g_file_get_uri (file);
7760           g_set_error (error,
7761                        GTK_FILE_CHOOSER_ERROR,
7762                        GTK_FILE_CHOOSER_ERROR_ALREADY_EXISTS,
7763                        _("Shortcut %s already exists"),
7764                        uri);
7765           g_free (uri);
7766
7767           return FALSE;
7768         }
7769     }
7770
7771   data = g_new0 (struct AddShortcutData, 1);
7772   data->impl = g_object_ref (impl);
7773   data->file = g_object_ref (file);
7774
7775   cancellable = _gtk_file_system_get_info (impl->file_system, file,
7776                                            "standard::type",
7777                                            add_shortcut_get_info_cb, data);
7778
7779   if (!cancellable)
7780     return FALSE;
7781
7782   impl->loading_shortcuts = g_slist_append (impl->loading_shortcuts, cancellable);
7783   g_object_set_data (G_OBJECT (cancellable), "add-shortcut-path-key", data->file);
7784
7785   return TRUE;
7786 }
7787
7788 static gboolean
7789 gtk_file_chooser_default_remove_shortcut_folder (GtkFileChooser  *chooser,
7790                                                  GFile           *file,
7791                                                  GError         **error)
7792 {
7793   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7794   int pos;
7795   GtkTreeIter iter;
7796   GSList *l;
7797   char *uri;
7798   int i;
7799
7800   for (l = impl->loading_shortcuts; l; l = l->next)
7801     {
7802       GCancellable *c = l->data;
7803       GFile *f;
7804
7805       f = g_object_get_data (G_OBJECT (c), "add-shortcut-path-key");
7806       if (f && g_file_equal (file, f))
7807         {
7808           impl->loading_shortcuts = g_slist_remove (impl->loading_shortcuts, c);
7809           g_cancellable_cancel (c);
7810           return TRUE;
7811         }
7812     }
7813
7814   if (impl->num_shortcuts == 0)
7815     goto out;
7816
7817   pos = shortcuts_get_pos_for_shortcut_folder (impl, 0);
7818   if (!gtk_tree_model_iter_nth_child (GTK_TREE_MODEL (impl->shortcuts_model), &iter, NULL, pos))
7819     g_assert_not_reached ();
7820
7821   for (i = 0; i < impl->num_shortcuts; i++)
7822     {
7823       gpointer col_data;
7824       ShortcutType shortcut_type;
7825       GFile *shortcut;
7826
7827       gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
7828                           SHORTCUTS_COL_DATA, &col_data,
7829                           SHORTCUTS_COL_TYPE, &shortcut_type,
7830                           -1);
7831       g_assert (col_data != NULL);
7832       g_assert (shortcut_type == SHORTCUT_TYPE_FILE);
7833
7834       shortcut = col_data;
7835       if (g_file_equal (shortcut, file))
7836         {
7837           shortcuts_remove_rows (impl, pos + i, 1);
7838           impl->num_shortcuts--;
7839           return TRUE;
7840         }
7841
7842       if (!gtk_tree_model_iter_next (GTK_TREE_MODEL (impl->shortcuts_model), &iter))
7843         g_assert_not_reached ();
7844     }
7845
7846  out:
7847
7848   uri = g_file_get_uri (file);
7849   /* translators, "Shortcut" means "Bookmark" here */
7850   g_set_error (error,
7851                GTK_FILE_CHOOSER_ERROR,
7852                GTK_FILE_CHOOSER_ERROR_NONEXISTENT,
7853                _("Shortcut %s does not exist"),
7854                uri);
7855   g_free (uri);
7856
7857   return FALSE;
7858 }
7859
7860 static GSList *
7861 gtk_file_chooser_default_list_shortcut_folders (GtkFileChooser *chooser)
7862 {
7863   GtkFileChooserDefault *impl = GTK_FILE_CHOOSER_DEFAULT (chooser);
7864   int pos;
7865   GtkTreeIter iter;
7866   int i;
7867   GSList *list;
7868
7869   if (impl->num_shortcuts == 0)
7870     return NULL;
7871
7872   pos = shortcuts_get_pos_for_shortcut_folder (impl, 0);
7873   if (!gtk_tree_model_iter_nth_child (GTK_TREE_MODEL (impl->shortcuts_model), &iter, NULL, pos))
7874     g_assert_not_reached ();
7875
7876   list = NULL;
7877
7878   for (i = 0; i < impl->num_shortcuts; i++)
7879     {
7880       gpointer col_data;
7881       ShortcutType shortcut_type;
7882       GFile *shortcut;
7883
7884       gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), &iter,
7885                           SHORTCUTS_COL_DATA, &col_data,
7886                           SHORTCUTS_COL_TYPE, &shortcut_type,
7887                           -1);
7888       g_assert (col_data != NULL);
7889       g_assert (shortcut_type == SHORTCUT_TYPE_FILE);
7890
7891       shortcut = col_data;
7892       list = g_slist_prepend (list, g_object_ref (shortcut));
7893
7894       if (i != impl->num_shortcuts - 1)
7895         {
7896           if (!gtk_tree_model_iter_next (GTK_TREE_MODEL (impl->shortcuts_model), &iter))
7897             g_assert_not_reached ();
7898         }
7899     }
7900
7901   return g_slist_reverse (list);
7902 }
7903
7904 /* Guesses a size based upon font sizes */
7905 static void
7906 find_good_size_from_style (GtkWidget *widget,
7907                            gint      *width,
7908                            gint      *height)
7909 {
7910   GtkStyleContext *context;
7911   GtkStateFlags state;
7912   int font_size;
7913   GdkScreen *screen;
7914   double resolution;
7915
7916   context = gtk_widget_get_style_context (widget);
7917   state = gtk_widget_get_state_flags (widget);
7918
7919   screen = gtk_widget_get_screen (widget);
7920   if (screen)
7921     {
7922       resolution = gdk_screen_get_resolution (screen);
7923       if (resolution < 0.0) /* will be -1 if the resolution is not defined in the GdkScreen */
7924         resolution = 96.0;
7925     }
7926   else
7927     resolution = 96.0; /* wheeee */
7928
7929   font_size = pango_font_description_get_size (gtk_style_context_get_font (context, state));
7930   font_size = PANGO_PIXELS (font_size) * resolution / 72.0;
7931
7932   *width = font_size * NUM_CHARS;
7933   *height = font_size * NUM_LINES;
7934 }
7935
7936 static void
7937 gtk_file_chooser_default_get_default_size (GtkFileChooserEmbed *chooser_embed,
7938                                            gint                *default_width,
7939                                            gint                *default_height)
7940 {
7941   GtkFileChooserDefault *impl;
7942   GtkRequisition req;
7943   int x, y, width, height;
7944
7945   impl = GTK_FILE_CHOOSER_DEFAULT (chooser_embed);
7946
7947   settings_ensure (impl);
7948
7949   g_settings_get (impl->settings, SETTINGS_KEY_WINDOW_POSITION, "(ii)", &x, &y);
7950   g_settings_get (impl->settings, SETTINGS_KEY_WINDOW_SIZE, "(ii)", &width, &height);
7951
7952   if (x >= 0 && y >= 0 && width > 0 && height > 0)
7953     {
7954       *default_width = width;
7955       *default_height = height;
7956       return;
7957     }
7958
7959   find_good_size_from_style (GTK_WIDGET (chooser_embed), default_width, default_height);
7960
7961   if (impl->preview_widget_active &&
7962       impl->preview_widget &&
7963       gtk_widget_get_visible (impl->preview_widget))
7964     {
7965       gtk_widget_get_preferred_size (impl->preview_box,
7966                                      &req, NULL);
7967       *default_width += PREVIEW_HBOX_SPACING + req.width;
7968     }
7969
7970   if (impl->extra_widget &&
7971       gtk_widget_get_visible (impl->extra_widget))
7972     {
7973       gtk_widget_get_preferred_size (impl->extra_align,
7974                                      &req, NULL);
7975       *default_height += gtk_box_get_spacing (GTK_BOX (chooser_embed)) + req.height;
7976     }
7977 }
7978
7979 struct switch_folder_closure {
7980   GtkFileChooserDefault *impl;
7981   GFile *file;
7982   int num_selected;
7983 };
7984
7985 /* Used from gtk_tree_selection_selected_foreach() in switch_to_selected_folder() */
7986 static void
7987 switch_folder_foreach_cb (GtkTreeModel      *model,
7988                           GtkTreePath       *path,
7989                           GtkTreeIter       *iter,
7990                           gpointer           data)
7991 {
7992   struct switch_folder_closure *closure;
7993
7994   closure = data;
7995
7996   closure->file = _gtk_file_system_model_get_file (closure->impl->browse_files_model, iter);
7997   closure->num_selected++;
7998 }
7999
8000 /* Changes to the selected folder in the list view */
8001 static void
8002 switch_to_selected_folder (GtkFileChooserDefault *impl)
8003 {
8004   GtkTreeSelection *selection;
8005   struct switch_folder_closure closure;
8006
8007   /* We do this with foreach() rather than get_selected() as we may be in
8008    * multiple selection mode
8009    */
8010
8011   closure.impl = impl;
8012   closure.file = NULL;
8013   closure.num_selected = 0;
8014
8015   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
8016   gtk_tree_selection_selected_foreach (selection, switch_folder_foreach_cb, &closure);
8017
8018   g_assert (closure.file && closure.num_selected == 1);
8019
8020   change_folder_and_display_error (impl, closure.file, FALSE);
8021 }
8022
8023 /* Gets the GFileInfo for the selected row in the file list; assumes single
8024  * selection mode.
8025  */
8026 static GFileInfo *
8027 get_selected_file_info_from_file_list (GtkFileChooserDefault *impl,
8028                                        gboolean              *had_selection)
8029 {
8030   GtkTreeSelection *selection;
8031   GtkTreeIter iter;
8032   GFileInfo *info;
8033
8034   g_assert (!impl->select_multiple);
8035   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
8036   if (!gtk_tree_selection_get_selected (selection, NULL, &iter))
8037     {
8038       *had_selection = FALSE;
8039       return NULL;
8040     }
8041
8042   *had_selection = TRUE;
8043
8044   info = _gtk_file_system_model_get_info (impl->browse_files_model, &iter);
8045   return info;
8046 }
8047
8048 /* Gets the display name of the selected file in the file list; assumes single
8049  * selection mode and that something is selected.
8050  */
8051 static const gchar *
8052 get_display_name_from_file_list (GtkFileChooserDefault *impl)
8053 {
8054   GFileInfo *info;
8055   gboolean had_selection;
8056
8057   info = get_selected_file_info_from_file_list (impl, &had_selection);
8058   g_assert (had_selection);
8059   g_assert (info != NULL);
8060
8061   return g_file_info_get_display_name (info);
8062 }
8063
8064 static void
8065 add_custom_button_to_dialog (GtkDialog   *dialog,
8066                              const gchar *mnemonic_label,
8067                              const gchar *stock_id,
8068                              gint         response_id)
8069 {
8070   GtkWidget *button;
8071
8072   button = gtk_button_new_with_mnemonic (mnemonic_label);
8073   gtk_widget_set_can_default (button, TRUE);
8074   gtk_button_set_image (GTK_BUTTON (button),
8075                         gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_BUTTON));
8076   gtk_widget_show (button);
8077
8078   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, response_id);
8079 }
8080
8081 /* Presents an overwrite confirmation dialog; returns whether we should accept
8082  * the filename.
8083  */
8084 static gboolean
8085 confirm_dialog_should_accept_filename (GtkFileChooserDefault *impl,
8086                                        const gchar           *file_part,
8087                                        const gchar           *folder_display_name)
8088 {
8089   GtkWindow *toplevel;
8090   GtkWidget *dialog;
8091   int response;
8092
8093   toplevel = get_toplevel (GTK_WIDGET (impl));
8094
8095   dialog = gtk_message_dialog_new (toplevel,
8096                                    GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
8097                                    GTK_MESSAGE_QUESTION,
8098                                    GTK_BUTTONS_NONE,
8099                                    _("A file named \"%s\" already exists.  Do you want to replace it?"),
8100                                    file_part);
8101   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
8102                                             _("The file already exists in \"%s\".  Replacing it will "
8103                                               "overwrite its contents."),
8104                                             folder_display_name);
8105
8106   gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
8107   add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Replace"),
8108                                GTK_STOCK_SAVE_AS, GTK_RESPONSE_ACCEPT);
8109   gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
8110                                            GTK_RESPONSE_ACCEPT,
8111                                            GTK_RESPONSE_CANCEL,
8112                                            -1);
8113   gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT);
8114
8115   if (gtk_window_has_group (toplevel))
8116     gtk_window_group_add_window (gtk_window_get_group (toplevel),
8117                                  GTK_WINDOW (dialog));
8118
8119   response = gtk_dialog_run (GTK_DIALOG (dialog));
8120
8121   gtk_widget_destroy (dialog);
8122
8123   return (response == GTK_RESPONSE_ACCEPT);
8124 }
8125
8126 struct GetDisplayNameData
8127 {
8128   GtkFileChooserDefault *impl;
8129   gchar *file_part;
8130 };
8131
8132 static void
8133 confirmation_confirm_get_info_cb (GCancellable *cancellable,
8134                                   GFileInfo    *info,
8135                                   const GError *error,
8136                                   gpointer      user_data)
8137 {
8138   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
8139   gboolean should_respond = FALSE;
8140   struct GetDisplayNameData *data = user_data;
8141
8142   if (cancellable != data->impl->should_respond_get_info_cancellable)
8143     goto out;
8144
8145   data->impl->should_respond_get_info_cancellable = NULL;
8146
8147   if (cancelled)
8148     goto out;
8149
8150   if (error)
8151     /* Huh?  Did the folder disappear?  Let the caller deal with it */
8152     should_respond = TRUE;
8153   else
8154     should_respond = confirm_dialog_should_accept_filename (data->impl, data->file_part, g_file_info_get_display_name (info));
8155
8156   set_busy_cursor (data->impl, FALSE);
8157   if (should_respond)
8158     g_signal_emit_by_name (data->impl, "response-requested");
8159
8160 out:
8161   g_object_unref (data->impl);
8162   g_free (data->file_part);
8163   g_free (data);
8164
8165   g_object_unref (cancellable);
8166 }
8167
8168 /* Does overwrite confirmation if appropriate, and returns whether the dialog
8169  * should respond.  Can get the file part from the file list or the save entry.
8170  */
8171 static gboolean
8172 should_respond_after_confirm_overwrite (GtkFileChooserDefault *impl,
8173                                         const gchar           *file_part,
8174                                         GFile                 *parent_file)
8175 {
8176   GtkFileChooserConfirmation conf;
8177
8178   if (!impl->do_overwrite_confirmation)
8179     return TRUE;
8180
8181   conf = GTK_FILE_CHOOSER_CONFIRMATION_CONFIRM;
8182
8183   g_signal_emit_by_name (impl, "confirm-overwrite", &conf);
8184
8185   switch (conf)
8186     {
8187     case GTK_FILE_CHOOSER_CONFIRMATION_CONFIRM:
8188       {
8189         struct GetDisplayNameData *data;
8190
8191         g_assert (file_part != NULL);
8192
8193         data = g_new0 (struct GetDisplayNameData, 1);
8194         data->impl = g_object_ref (impl);
8195         data->file_part = g_strdup (file_part);
8196
8197         if (impl->should_respond_get_info_cancellable)
8198           g_cancellable_cancel (impl->should_respond_get_info_cancellable);
8199
8200         impl->should_respond_get_info_cancellable =
8201           _gtk_file_system_get_info (impl->file_system, parent_file,
8202                                      "standard::display-name",
8203                                      confirmation_confirm_get_info_cb,
8204                                      data);
8205         set_busy_cursor (data->impl, TRUE);
8206         return FALSE;
8207       }
8208
8209     case GTK_FILE_CHOOSER_CONFIRMATION_ACCEPT_FILENAME:
8210       return TRUE;
8211
8212     case GTK_FILE_CHOOSER_CONFIRMATION_SELECT_AGAIN:
8213       return FALSE;
8214
8215     default:
8216       g_assert_not_reached ();
8217       return FALSE;
8218     }
8219 }
8220
8221 struct FileExistsData
8222 {
8223   GtkFileChooserDefault *impl;
8224   gboolean file_exists_and_is_not_folder;
8225   GFile *parent_file;
8226   GFile *file;
8227 };
8228
8229 static void
8230 name_entry_get_parent_info_cb (GCancellable *cancellable,
8231                                GFileInfo    *info,
8232                                const GError *error,
8233                                gpointer      user_data)
8234 {
8235   gboolean parent_is_folder;
8236   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
8237   struct FileExistsData *data = user_data;
8238
8239   if (cancellable != data->impl->should_respond_get_info_cancellable)
8240     goto out;
8241
8242   data->impl->should_respond_get_info_cancellable = NULL;
8243
8244   set_busy_cursor (data->impl, FALSE);
8245
8246   if (cancelled)
8247     goto out;
8248
8249   if (!info)
8250     parent_is_folder = FALSE;
8251   else
8252     parent_is_folder = _gtk_file_info_consider_as_directory (info);
8253
8254   if (parent_is_folder)
8255     {
8256       if (data->impl->action == GTK_FILE_CHOOSER_ACTION_OPEN)
8257         {
8258           g_signal_emit_by_name (data->impl, "response-requested"); /* even if the file doesn't exist, apps can make good use of that (e.g. Emacs) */
8259         }
8260       else if (data->impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
8261         {
8262           if (data->file_exists_and_is_not_folder)
8263             {
8264               gboolean retval;
8265               char *file_part;
8266
8267               /* Dup the string because the string may be modified
8268                * depending on what clients do in the confirm-overwrite
8269                * signal and this corrupts the pointer
8270                */
8271               file_part = g_strdup (_gtk_file_chooser_entry_get_file_part (GTK_FILE_CHOOSER_ENTRY (data->impl->location_entry)));
8272               retval = should_respond_after_confirm_overwrite (data->impl, file_part, data->parent_file);
8273               g_free (file_part);
8274
8275               if (retval)
8276                 g_signal_emit_by_name (data->impl, "response-requested");
8277             }
8278           else
8279             g_signal_emit_by_name (data->impl, "response-requested");
8280         }
8281       else if (data->impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
8282                || data->impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
8283         {
8284           GError *mkdir_error = NULL;
8285
8286           /* In both cases (SELECT_FOLDER and CREATE_FOLDER), if you type
8287            * "/blah/nonexistent" you *will* want a folder created.
8288            */
8289
8290           set_busy_cursor (data->impl, TRUE);
8291           g_file_make_directory (data->file, NULL, &mkdir_error);
8292           set_busy_cursor (data->impl, FALSE);
8293
8294           if (!mkdir_error)
8295             g_signal_emit_by_name (data->impl, "response-requested");
8296           else
8297             error_creating_folder_dialog (data->impl, data->file, mkdir_error);
8298         }
8299       else
8300         g_assert_not_reached ();
8301     }
8302   else
8303     {
8304       if (info)
8305         {
8306           /* The parent exists, but it's not a folder!  Someone probably typed existing_file.txt/subfile.txt */
8307           error_with_file_under_nonfolder (data->impl, data->parent_file);
8308         }
8309       else
8310         {
8311           GError *error_copy;
8312
8313           /* The parent folder is not readable for some reason */
8314
8315           error_copy = g_error_copy (error);
8316           error_changing_folder_dialog (data->impl, data->parent_file, error_copy);
8317         }
8318     }
8319
8320 out:
8321   g_object_unref (data->impl);
8322   g_object_unref (data->file);
8323   g_object_unref (data->parent_file);
8324   g_free (data);
8325
8326   g_object_unref (cancellable);
8327 }
8328
8329 static void
8330 file_exists_get_info_cb (GCancellable *cancellable,
8331                          GFileInfo    *info,
8332                          const GError *error,
8333                          gpointer      user_data)
8334 {
8335   gboolean data_ownership_taken = FALSE;
8336   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
8337   gboolean file_exists;
8338   gboolean is_folder;
8339   gboolean needs_parent_check = FALSE;
8340   struct FileExistsData *data = user_data;
8341
8342   if (cancellable != data->impl->file_exists_get_info_cancellable)
8343     goto out;
8344
8345   data->impl->file_exists_get_info_cancellable = NULL;
8346
8347   set_busy_cursor (data->impl, FALSE);
8348
8349   if (cancelled)
8350     goto out;
8351
8352   file_exists = (info != NULL);
8353   is_folder = (file_exists && _gtk_file_info_consider_as_directory (info));
8354
8355   if (data->impl->action == GTK_FILE_CHOOSER_ACTION_OPEN)
8356     {
8357       if (is_folder)
8358         change_folder_and_display_error (data->impl, data->file, TRUE);
8359       else
8360         {
8361           if (file_exists)
8362             g_signal_emit_by_name (data->impl, "response-requested"); /* user typed an existing filename; we are done */
8363           else
8364             needs_parent_check = TRUE; /* file doesn't exist; see if its parent exists */
8365         }
8366     }
8367   else if (data->impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
8368     {
8369       if (file_exists && !is_folder)
8370         {
8371           /* Oops, the user typed the name of an existing path which is not
8372            * a folder
8373            */
8374           error_creating_folder_over_existing_file_dialog (data->impl, data->file,
8375                                                            g_error_copy (error));
8376         }
8377       else
8378         {
8379           needs_parent_check = TRUE;
8380         }
8381     }
8382   else if (data->impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
8383     {
8384       if (!file_exists)
8385         {
8386           needs_parent_check = TRUE;
8387         }
8388       else
8389         {
8390           if (is_folder)
8391             {
8392               /* User typed a folder; we are done */
8393               g_signal_emit_by_name (data->impl, "response-requested");
8394             }
8395           else
8396             error_selecting_folder_over_existing_file_dialog (data->impl, data->file);
8397         }
8398     }
8399   else if (data->impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
8400     {
8401       if (is_folder)
8402         change_folder_and_display_error (data->impl, data->file, TRUE);
8403       else
8404         needs_parent_check = TRUE;
8405     }
8406   else
8407     {
8408       g_assert_not_reached();
8409     }
8410
8411   if (needs_parent_check) {
8412     /* check that everything up to the last path component exists (i.e. the parent) */
8413
8414     data->file_exists_and_is_not_folder = file_exists && !is_folder;
8415     data_ownership_taken = TRUE;
8416
8417     if (data->impl->should_respond_get_info_cancellable)
8418       g_cancellable_cancel (data->impl->should_respond_get_info_cancellable);
8419
8420       data->impl->should_respond_get_info_cancellable =
8421         _gtk_file_system_get_info (data->impl->file_system,
8422                                    data->parent_file,
8423                                    "standard::type",
8424                                    name_entry_get_parent_info_cb,
8425                                    data);
8426       set_busy_cursor (data->impl, TRUE);
8427     }
8428
8429 out:
8430   if (!data_ownership_taken)
8431     {
8432       g_object_unref (data->impl);
8433       g_object_unref (data->file);
8434       g_object_unref (data->parent_file);
8435       g_free (data);
8436     }
8437
8438   g_object_unref (cancellable);
8439 }
8440
8441 static void
8442 paste_text_received (GtkClipboard          *clipboard,
8443                      const gchar           *text,
8444                      GtkFileChooserDefault *impl)
8445 {
8446   GFile *file;
8447
8448   if (!text)
8449     return;
8450
8451   file = g_file_new_for_uri (text);
8452
8453   if (!gtk_file_chooser_default_select_file (GTK_FILE_CHOOSER (impl), file, NULL))
8454     location_popup_handler (impl, text);
8455
8456   g_object_unref (file);
8457 }
8458
8459 /* Handler for the "location-popup-on-paste" keybinding signal */
8460 static void
8461 location_popup_on_paste_handler (GtkFileChooserDefault *impl)
8462 {
8463   GtkClipboard *clipboard = gtk_widget_get_clipboard (GTK_WIDGET (impl),
8464                                                       GDK_SELECTION_CLIPBOARD);
8465   gtk_clipboard_request_text (clipboard,
8466                               (GtkClipboardTextReceivedFunc) paste_text_received,
8467                               impl);
8468 }
8469
8470 /* Implementation for GtkFileChooserEmbed::should_respond() */
8471 static gboolean
8472 gtk_file_chooser_default_should_respond (GtkFileChooserEmbed *chooser_embed)
8473 {
8474   GtkFileChooserDefault *impl;
8475   GtkWidget *toplevel;
8476   GtkWidget *current_focus;
8477
8478   impl = GTK_FILE_CHOOSER_DEFAULT (chooser_embed);
8479
8480   toplevel = gtk_widget_get_toplevel (GTK_WIDGET (impl));
8481   g_assert (GTK_IS_WINDOW (toplevel));
8482
8483   current_focus = gtk_window_get_focus (GTK_WINDOW (toplevel));
8484
8485   if (current_focus == impl->browse_files_tree_view)
8486     {
8487       /* The following array encodes what we do based on the impl->action and the
8488        * number of files selected.
8489        */
8490       typedef enum {
8491         NOOP,                   /* Do nothing (don't respond) */
8492         RESPOND,                /* Respond immediately */
8493         RESPOND_OR_SWITCH,      /* Respond immediately if the selected item is a file; switch to it if it is a folder */
8494         ALL_FILES,              /* Respond only if everything selected is a file */
8495         ALL_FOLDERS,            /* Respond only if everything selected is a folder */
8496         SAVE_ENTRY,             /* Go to the code for handling the save entry */
8497         NOT_REACHED             /* Sanity check */
8498       } ActionToTake;
8499       static const ActionToTake what_to_do[4][3] = {
8500         /*                                0 selected            1 selected              many selected */
8501         /* ACTION_OPEN */               { NOOP,                 RESPOND_OR_SWITCH,      ALL_FILES   },
8502         /* ACTION_SAVE */               { SAVE_ENTRY,           RESPOND_OR_SWITCH,      NOT_REACHED },
8503         /* ACTION_SELECT_FOLDER */      { RESPOND,              ALL_FOLDERS,            ALL_FOLDERS },
8504         /* ACTION_CREATE_FOLDER */      { SAVE_ENTRY,           ALL_FOLDERS,            NOT_REACHED }
8505       };
8506
8507       int num_selected;
8508       gboolean all_files, all_folders;
8509       int k;
8510       ActionToTake action;
8511
8512     file_list:
8513
8514       g_assert (impl->action >= GTK_FILE_CHOOSER_ACTION_OPEN && impl->action <= GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER);
8515
8516       if (impl->operation_mode == OPERATION_MODE_SEARCH)
8517         return search_should_respond (impl);
8518
8519       if (impl->operation_mode == OPERATION_MODE_RECENT)
8520         {
8521           if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
8522             goto save_entry;
8523           else
8524             return recent_should_respond (impl);
8525         }
8526
8527       selection_check (impl, &num_selected, &all_files, &all_folders);
8528
8529       if (num_selected > 2)
8530         k = 2;
8531       else
8532         k = num_selected;
8533
8534       action = what_to_do [impl->action] [k];
8535
8536       switch (action)
8537         {
8538         case NOOP:
8539           return FALSE;
8540
8541         case RESPOND:
8542           return TRUE;
8543
8544         case RESPOND_OR_SWITCH:
8545           g_assert (num_selected == 1);
8546
8547           if (all_folders)
8548             {
8549               switch_to_selected_folder (impl);
8550               return FALSE;
8551             }
8552           else if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
8553             return should_respond_after_confirm_overwrite (impl,
8554                                                            get_display_name_from_file_list (impl),
8555                                                            impl->current_folder);
8556           else
8557             return TRUE;
8558
8559         case ALL_FILES:
8560           return all_files;
8561
8562         case ALL_FOLDERS:
8563           return all_folders;
8564
8565         case SAVE_ENTRY:
8566           goto save_entry;
8567
8568         default:
8569           g_assert_not_reached ();
8570         }
8571     }
8572   else if ((impl->location_entry != NULL) && (current_focus == impl->location_entry))
8573     {
8574       GFile *file;
8575       gboolean is_well_formed, is_empty, is_file_part_empty;
8576       gboolean is_folder;
8577       gboolean retval;
8578       GtkFileChooserEntry *entry;
8579       GError *error;
8580
8581     save_entry:
8582
8583       g_assert (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE
8584                 || impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
8585                 || ((impl->action == GTK_FILE_CHOOSER_ACTION_OPEN
8586                      || impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
8587                     && impl->location_mode == LOCATION_MODE_FILENAME_ENTRY));
8588
8589       entry = GTK_FILE_CHOOSER_ENTRY (impl->location_entry);
8590       check_save_entry (impl, &file, &is_well_formed, &is_empty, &is_file_part_empty, &is_folder);
8591
8592       if (!is_well_formed)
8593         {
8594           if (!is_empty
8595               && impl->action == GTK_FILE_CHOOSER_ACTION_SAVE
8596               && impl->operation_mode == OPERATION_MODE_RECENT)
8597             {
8598               path_bar_set_mode (impl, PATH_BAR_ERROR_NO_FOLDER);
8599 #if 0
8600               /* We'll #ifdef this out, as the fucking treeview selects its first row,
8601                * thus changing our assumption that no selection is present - setting
8602                * a selection causes the error message from path_bar_set_mode() to go away,
8603                * but we want the user to see that message!
8604                */
8605               gtk_widget_grab_focus (impl->browse_files_tree_view);
8606 #endif
8607             }
8608           /* FIXME: else show an "invalid filename" error as the pathbar mode? */
8609
8610           return FALSE;
8611         }
8612
8613       if (is_empty)
8614         {
8615           if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE
8616               || impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
8617             {
8618               path_bar_set_mode (impl, PATH_BAR_ERROR_NO_FILENAME);
8619               gtk_widget_grab_focus (impl->location_entry);
8620               return FALSE;
8621             }
8622
8623           goto file_list;
8624         }
8625
8626       g_assert (file != NULL);
8627
8628       error = NULL;
8629       if (is_folder)
8630         {
8631           if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
8632               impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
8633             {
8634               change_folder_and_display_error (impl, file, TRUE);
8635               retval = FALSE;
8636             }
8637           else if (impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER ||
8638                    impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
8639             {
8640               /* The folder already exists, so we do not need to create it.
8641                * Just respond to terminate the dialog.
8642                */
8643               retval = TRUE;
8644             }
8645           else
8646             {
8647               g_assert_not_reached ();
8648               retval = FALSE;
8649             }
8650         }
8651       else
8652         {
8653           struct FileExistsData *data;
8654
8655           /* We need to check whether file exists and whether it is a folder -
8656            * the GtkFileChooserEntry *does* report is_folder==FALSE as a false
8657            * negative (it doesn't know yet if your last path component is a
8658            * folder).
8659            */
8660
8661           data = g_new0 (struct FileExistsData, 1);
8662           data->impl = g_object_ref (impl);
8663           data->file = g_object_ref (file);
8664           data->parent_file = g_object_ref (_gtk_file_chooser_entry_get_current_folder (entry));
8665
8666           if (impl->file_exists_get_info_cancellable)
8667             g_cancellable_cancel (impl->file_exists_get_info_cancellable);
8668
8669           impl->file_exists_get_info_cancellable =
8670             _gtk_file_system_get_info (impl->file_system, file,
8671                                        "standard::type",
8672                                        file_exists_get_info_cb,
8673                                        data);
8674
8675           set_busy_cursor (impl, TRUE);
8676           retval = FALSE;
8677
8678           if (error != NULL)
8679             g_error_free (error);
8680         }
8681
8682       g_object_unref (file);
8683       return retval;
8684     }
8685   else if (impl->toplevel_last_focus_widget == impl->browse_files_tree_view)
8686     {
8687       /* The focus is on a dialog's action area button, *and* the widget that
8688        * was focused immediately before it is the file list.  
8689        */
8690       goto file_list;
8691     }
8692   else if (impl->operation_mode == OPERATION_MODE_SEARCH && impl->toplevel_last_focus_widget == impl->search_entry)
8693     {
8694       search_entry_activate_cb (GTK_ENTRY (impl->search_entry), impl);
8695       return FALSE;
8696     }
8697   else if (impl->location_entry && impl->toplevel_last_focus_widget == impl->location_entry)
8698     {
8699       /* The focus is on a dialog's action area button, *and* the widget that
8700        * was focused immediately before it is the location entry.
8701        */
8702       goto save_entry;
8703     }
8704   else
8705     /* The focus is on a dialog's action area button or something else */
8706     if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE
8707         || impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
8708       goto save_entry;
8709     else
8710       goto file_list; 
8711   
8712   g_assert_not_reached ();
8713   return FALSE;
8714 }
8715
8716 /* Implementation for GtkFileChooserEmbed::initial_focus() */
8717 static void
8718 gtk_file_chooser_default_initial_focus (GtkFileChooserEmbed *chooser_embed)
8719 {
8720   GtkFileChooserDefault *impl;
8721   GtkWidget *widget;
8722
8723   impl = GTK_FILE_CHOOSER_DEFAULT (chooser_embed);
8724
8725   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
8726       impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
8727     {
8728       if (impl->location_mode == LOCATION_MODE_PATH_BAR)
8729         widget = impl->browse_files_tree_view;
8730       else
8731         widget = impl->location_entry;
8732     }
8733   else if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE ||
8734            impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
8735     widget = impl->location_entry;
8736   else
8737     {
8738       g_assert_not_reached ();
8739       widget = NULL;
8740     }
8741
8742   g_assert (widget != NULL);
8743   gtk_widget_grab_focus (widget);
8744 }
8745
8746 /* Callback used from gtk_tree_selection_selected_foreach(); gets the selected GFiles */
8747 static void
8748 search_selected_foreach_get_file_cb (GtkTreeModel *model,
8749                                      GtkTreePath  *path,
8750                                      GtkTreeIter  *iter,
8751                                      gpointer      data)
8752 {
8753   GSList **list;
8754   GFile *file;
8755
8756   list = data;
8757
8758   gtk_tree_model_get (model, iter, MODEL_COL_FILE, &file, -1);
8759   *list = g_slist_prepend (*list, file); /* The file already has a new ref courtesy of gtk_tree_model_get(); this will be unreffed by the caller */
8760 }
8761
8762 /* Constructs a list of the selected paths in search mode */
8763 static GSList *
8764 search_get_selected_files (GtkFileChooserDefault *impl)
8765 {
8766   GSList *result;
8767   GtkTreeSelection *selection;
8768
8769   result = NULL;
8770
8771   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
8772   gtk_tree_selection_selected_foreach (selection, search_selected_foreach_get_file_cb, &result);
8773   result = g_slist_reverse (result);
8774
8775   return result;
8776 }
8777
8778 /* Called from ::should_respond().  We return whether there are selected files
8779  * in the search list.
8780  */
8781 static gboolean
8782 search_should_respond (GtkFileChooserDefault *impl)
8783 {
8784   GtkTreeSelection *selection;
8785
8786   g_assert (impl->operation_mode == OPERATION_MODE_SEARCH);
8787
8788   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
8789   return (gtk_tree_selection_count_selected_rows (selection) != 0);
8790 }
8791
8792 /* Adds one hit from the search engine to the search_model */
8793 static void
8794 search_add_hit (GtkFileChooserDefault *impl,
8795                 gchar                 *uri)
8796 {
8797   GFile *file;
8798
8799   file = g_file_new_for_uri (uri);
8800   if (!file)
8801     return;
8802
8803   if (!g_file_is_native (file))
8804     {
8805       g_object_unref (file);
8806       return;
8807     }
8808
8809   _gtk_file_system_model_add_and_query_file (impl->search_model,
8810                                              file,
8811                                              MODEL_ATTRIBUTES);
8812
8813   g_object_unref (file);
8814 }
8815
8816 /* Callback used from GtkSearchEngine when we get new hits */
8817 static void
8818 search_engine_hits_added_cb (GtkSearchEngine *engine,
8819                              GList           *hits,
8820                              gpointer         data)
8821 {
8822   GtkFileChooserDefault *impl;
8823   GList *l;
8824   
8825   impl = GTK_FILE_CHOOSER_DEFAULT (data);
8826
8827   for (l = hits; l; l = l->next)
8828     search_add_hit (impl, (gchar*)l->data);
8829 }
8830
8831 /* Callback used from GtkSearchEngine when the query is done running */
8832 static void
8833 search_engine_finished_cb (GtkSearchEngine *engine,
8834                            gpointer         data)
8835 {
8836   GtkFileChooserDefault *impl;
8837   
8838   impl = GTK_FILE_CHOOSER_DEFAULT (data);
8839   
8840 #if 0
8841   /* EB: setting the model here will avoid loads of row events,
8842    * but it'll make the search look like blocked.
8843    */
8844   gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_files_tree_view),
8845                            GTK_TREE_MODEL (impl->search_model));
8846 #endif
8847
8848   /* FMQ: if search was empty, say that we got no hits */
8849   set_busy_cursor (impl, FALSE);
8850 }
8851
8852 /* Displays a generic error when we cannot create a GtkSearchEngine.  
8853  * It would be better if _gtk_search_engine_new() gave us a GError 
8854  * with a better message, but it doesn't do that right now.
8855  */
8856 static void
8857 search_error_could_not_create_client (GtkFileChooserDefault *impl)
8858 {
8859   error_message (impl,
8860                  _("Could not start the search process"),
8861                  _("The program was not able to create a connection to the indexer "
8862                    "daemon.  Please make sure it is running."));
8863 }
8864
8865 static void
8866 search_engine_error_cb (GtkSearchEngine *engine,
8867                         const gchar     *message,
8868                         gpointer         data)
8869 {
8870   GtkFileChooserDefault *impl;
8871   
8872   impl = GTK_FILE_CHOOSER_DEFAULT (data);
8873
8874   search_stop_searching (impl, TRUE);
8875   error_message (impl, _("Could not send the search request"), message);
8876
8877   set_busy_cursor (impl, FALSE);
8878 }
8879
8880 /* Frees the data in the search_model */
8881 static void
8882 search_clear_model (GtkFileChooserDefault *impl, 
8883                     gboolean               remove_from_treeview)
8884 {
8885   if (!impl->search_model)
8886     return;
8887
8888   g_object_unref (impl->search_model);
8889   impl->search_model = NULL;
8890   
8891   if (remove_from_treeview)
8892     gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_files_tree_view), NULL);
8893 }
8894
8895 /* Stops any ongoing searches; does not touch the search_model */
8896 static void
8897 search_stop_searching (GtkFileChooserDefault *impl,
8898                        gboolean               remove_query)
8899 {
8900   if (remove_query && impl->search_query)
8901     {
8902       g_object_unref (impl->search_query);
8903       impl->search_query = NULL;
8904     }
8905   
8906   if (impl->search_engine)
8907     {
8908       _gtk_search_engine_stop (impl->search_engine);
8909       
8910       g_object_unref (impl->search_engine);
8911       impl->search_engine = NULL;
8912     }
8913 }
8914
8915 /* Stops any pending searches, clears the file list, and switches back to OPERATION_MODE_BROWSE */
8916 static void
8917 search_switch_to_browse_mode (GtkFileChooserDefault *impl)
8918 {
8919   g_assert (impl->operation_mode != OPERATION_MODE_BROWSE);
8920
8921   search_stop_searching (impl, FALSE);
8922   search_clear_model (impl, TRUE);
8923
8924   gtk_widget_destroy (impl->search_hbox);
8925   impl->search_hbox = NULL;
8926   impl->search_entry = NULL;
8927
8928   impl->operation_mode = OPERATION_MODE_BROWSE;
8929   path_bar_update (impl);
8930
8931   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
8932       impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
8933     {
8934       gtk_widget_show (impl->location_button);
8935
8936       if (impl->location_mode == LOCATION_MODE_FILENAME_ENTRY)
8937         gtk_widget_show (impl->location_entry_box);
8938     }
8939
8940   file_list_set_sort_column_ids (impl);
8941 }
8942
8943 /* Creates the search_model and puts it in the tree view */
8944 static void
8945 search_setup_model (GtkFileChooserDefault *impl)
8946 {
8947   g_assert (impl->search_model == NULL);
8948
8949   impl->search_model = _gtk_file_system_model_new (file_system_model_set,
8950                                                    impl,
8951                                                    MODEL_COLUMN_TYPES);
8952
8953   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->search_model),
8954                                    MODEL_COL_NAME,
8955                                    name_sort_func,
8956                                    impl, NULL);
8957   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->search_model),
8958                                    MODEL_COL_MTIME,
8959                                    mtime_sort_func,
8960                                    impl, NULL);
8961   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->search_model),
8962                                    MODEL_COL_SIZE,
8963                                    size_sort_func,
8964                                    impl, NULL);
8965   set_sort_column (impl);
8966
8967   /* EB: setting the model here will make the hits list update feel
8968    * more "alive" than setting the model at the end of the search
8969    * run
8970    */
8971   gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_files_tree_view),
8972                            GTK_TREE_MODEL (impl->search_model));
8973 }
8974
8975 /* Creates a new query with the specified text and launches it */
8976 static void
8977 search_start_query (GtkFileChooserDefault *impl,
8978                     const gchar           *query_text)
8979 {
8980   search_stop_searching (impl, FALSE);
8981   search_clear_model (impl, TRUE);
8982   search_setup_model (impl);
8983   set_busy_cursor (impl, TRUE);
8984
8985   if (impl->search_engine == NULL)
8986     impl->search_engine = _gtk_search_engine_new ();
8987
8988   if (!impl->search_engine)
8989     {
8990       set_busy_cursor (impl, FALSE);
8991       search_error_could_not_create_client (impl); /* lame; we don't get an error code or anything */
8992       return;
8993     }
8994
8995   if (!impl->search_query)
8996     {
8997       impl->search_query = _gtk_query_new ();
8998       _gtk_query_set_text (impl->search_query, query_text);
8999     }
9000   
9001   _gtk_search_engine_set_query (impl->search_engine, impl->search_query);
9002
9003   g_signal_connect (impl->search_engine, "hits-added",
9004                     G_CALLBACK (search_engine_hits_added_cb), impl);
9005   g_signal_connect (impl->search_engine, "finished",
9006                     G_CALLBACK (search_engine_finished_cb), impl);
9007   g_signal_connect (impl->search_engine, "error",
9008                     G_CALLBACK (search_engine_error_cb), impl);
9009
9010   _gtk_search_engine_start (impl->search_engine);
9011 }
9012
9013 /* Callback used when the user presses Enter while typing on the search
9014  * entry; starts the query
9015  */
9016 static void
9017 search_entry_activate_cb (GtkEntry *entry,
9018                           gpointer data)
9019 {
9020   GtkFileChooserDefault *impl;
9021   const char *text;
9022
9023   impl = GTK_FILE_CHOOSER_DEFAULT (data);
9024
9025   text = gtk_entry_get_text (GTK_ENTRY (impl->search_entry));
9026   if (strlen (text) == 0)
9027     return;
9028
9029   /* reset any existing query object */
9030   if (impl->search_query)
9031     {
9032       g_object_unref (impl->search_query);
9033       impl->search_query = NULL;
9034     }
9035
9036   search_start_query (impl, text);
9037 }
9038
9039 static gboolean
9040 focus_entry_idle_cb (GtkFileChooserDefault *impl)
9041 {
9042   GDK_THREADS_ENTER ();
9043   
9044   g_source_destroy (impl->focus_entry_idle);
9045   impl->focus_entry_idle = NULL;
9046
9047   if (impl->search_entry)
9048     gtk_widget_grab_focus (impl->search_entry);
9049
9050   GDK_THREADS_LEAVE ();
9051
9052   return FALSE;
9053 }
9054
9055 static void
9056 focus_search_entry_in_idle (GtkFileChooserDefault *impl)
9057 {
9058   /* bgo#634558 - When the user clicks on the Search entry in the shortcuts
9059    * pane, we get a selection-changed signal and we set up the search widgets.
9060    * However, gtk_tree_view_button_press() focuses the treeview *after* making
9061    * the change to the selection.  So, we need to re-focus the search entry
9062    * after the treeview has finished doing its work; we'll do that in an idle
9063    * handler.
9064    */
9065
9066   if (!impl->focus_entry_idle)
9067     impl->focus_entry_idle = add_idle_while_impl_is_alive (impl, G_CALLBACK (focus_entry_idle_cb));
9068 }
9069
9070 /* Hides the path bar and creates the search entry */
9071 static void
9072 search_setup_widgets (GtkFileChooserDefault *impl)
9073 {
9074   impl->search_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
9075
9076   path_bar_update (impl);
9077
9078   impl->search_entry = gtk_entry_new ();
9079   g_signal_connect (impl->search_entry, "activate",
9080                     G_CALLBACK (search_entry_activate_cb),
9081                     impl);
9082   gtk_box_pack_start (GTK_BOX (impl->search_hbox), impl->search_entry, TRUE, TRUE, 0);
9083
9084   /* if there already is a query, restart it */
9085   if (impl->search_query)
9086     {
9087       gchar *query = _gtk_query_get_text (impl->search_query);
9088
9089       if (query)
9090         {
9091           gtk_entry_set_text (GTK_ENTRY (impl->search_entry), query);
9092           search_start_query (impl, query);
9093
9094           g_free (query);
9095         }
9096       else
9097         {
9098           g_object_unref (impl->search_query);
9099           impl->search_query = NULL;
9100         }
9101     }
9102
9103   /* Box for search widgets */
9104   gtk_box_pack_start (GTK_BOX (impl->browse_path_bar_hbox), impl->search_hbox, TRUE, TRUE, 0);
9105   gtk_widget_show_all (impl->search_hbox);
9106   gtk_size_group_add_widget (GTK_SIZE_GROUP (impl->browse_path_bar_size_group), impl->search_hbox);
9107
9108   /* Hide the location widgets temporarily */
9109
9110   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
9111       impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
9112     {
9113       gtk_widget_hide (impl->location_button);
9114       gtk_widget_hide (impl->location_entry_box);
9115     }
9116
9117   focus_search_entry_in_idle (impl);
9118
9119   /* FMQ: hide the filter combo? */
9120 }
9121
9122 /* Stops running operations like populating the browse model, searches, and the recent-files model */
9123 static void
9124 stop_operation (GtkFileChooserDefault *impl, OperationMode mode)
9125 {
9126   switch (mode)
9127     {
9128     case OPERATION_MODE_BROWSE:
9129       stop_loading_and_clear_list_model (impl, TRUE);
9130       break;
9131
9132     case OPERATION_MODE_SEARCH:
9133       search_stop_searching (impl, FALSE);
9134       search_clear_model (impl, TRUE);
9135
9136       gtk_widget_destroy (impl->search_hbox);
9137       impl->search_hbox = NULL;
9138       impl->search_entry = NULL;
9139       break;
9140
9141     case OPERATION_MODE_RECENT:
9142       recent_stop_loading (impl);
9143       recent_clear_model (impl, TRUE);
9144       break;
9145     }
9146 }
9147
9148 /* Sometimes we need to frob the selection in the shortcuts list manually */
9149 static void
9150 shortcuts_select_item_without_activating (GtkFileChooserDefault *impl, int pos)
9151 {
9152   GtkTreeSelection *selection;
9153   GtkTreePath *path;
9154
9155   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view));
9156
9157   g_signal_handlers_block_by_func (selection, G_CALLBACK (shortcuts_selection_changed_cb), impl);
9158
9159   path = gtk_tree_path_new_from_indices (pos, -1);
9160   gtk_tree_selection_select_path (selection, path);
9161   gtk_tree_path_free (path);
9162
9163   g_signal_handlers_unblock_by_func (selection, G_CALLBACK (shortcuts_selection_changed_cb), impl);
9164 }
9165
9166 /* Main entry point to the searching functions; this gets called when the user
9167  * activates the Search shortcut.
9168  */
9169 static void
9170 search_activate (GtkFileChooserDefault *impl)
9171 {
9172   OperationMode previous_mode;
9173   
9174   if (impl->operation_mode == OPERATION_MODE_SEARCH)
9175     {
9176       focus_search_entry_in_idle (impl);
9177       return;
9178     }
9179
9180   previous_mode = impl->operation_mode;
9181   impl->operation_mode = OPERATION_MODE_SEARCH;
9182
9183   shortcuts_select_item_without_activating (impl, shortcuts_get_index (impl, SHORTCUTS_SEARCH));
9184
9185   stop_operation (impl, previous_mode);
9186
9187   g_assert (impl->search_hbox == NULL);
9188   g_assert (impl->search_entry == NULL);
9189   g_assert (impl->search_model == NULL);
9190
9191   search_setup_widgets (impl);
9192   file_list_set_sort_column_ids (impl);
9193 }
9194
9195 /*
9196  * Recent files support
9197  */
9198
9199 /* Frees the data in the recent_model */
9200 static void
9201 recent_clear_model (GtkFileChooserDefault *impl,
9202                     gboolean               remove_from_treeview)
9203 {
9204   if (!impl->recent_model)
9205     return;
9206
9207   if (remove_from_treeview)
9208     gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_files_tree_view), NULL);
9209
9210   g_object_unref (impl->recent_model);
9211   impl->recent_model = NULL;
9212 }
9213
9214 /* Stops any ongoing loading of the recent files list; does
9215  * not touch the recent_model
9216  */
9217 static void
9218 recent_stop_loading (GtkFileChooserDefault *impl)
9219 {
9220   if (impl->load_recent_id)
9221     {
9222       g_source_remove (impl->load_recent_id);
9223       impl->load_recent_id = 0;
9224     }
9225 }
9226
9227 /* Stops any pending load, clears the file list, and switches
9228  * back to OPERATION_MODE_BROWSE
9229  */
9230 static void
9231 recent_switch_to_browse_mode (GtkFileChooserDefault *impl)
9232 {
9233   g_assert (impl->operation_mode != OPERATION_MODE_BROWSE);
9234
9235   recent_stop_loading (impl);
9236   recent_clear_model (impl, TRUE);
9237
9238   impl->operation_mode = OPERATION_MODE_BROWSE;
9239   path_bar_update (impl);
9240
9241   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
9242       impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
9243     {
9244       gtk_widget_show (impl->location_button);
9245
9246       if (impl->location_mode == LOCATION_MODE_FILENAME_ENTRY)
9247         gtk_widget_show (impl->location_entry_box);
9248     }
9249
9250   gtk_tree_view_column_set_visible (impl->list_size_column, impl->show_size_column);
9251
9252   file_list_set_sort_column_ids (impl);
9253 }
9254
9255 static void
9256 recent_setup_model (GtkFileChooserDefault *impl)
9257 {
9258   g_assert (impl->recent_model == NULL);
9259
9260   impl->recent_model = _gtk_file_system_model_new (file_system_model_set,
9261                                                    impl,
9262                                                    MODEL_COLUMN_TYPES);
9263
9264   _gtk_file_system_model_set_filter (impl->recent_model,
9265                                      impl->current_filter);
9266   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->recent_model),
9267                                    MODEL_COL_NAME,
9268                                    name_sort_func,
9269                                    impl, NULL);
9270   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->recent_model),
9271                                    MODEL_COL_SIZE,
9272                                    size_sort_func,
9273                                    impl, NULL);
9274   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (impl->recent_model),
9275                                    MODEL_COL_MTIME,
9276                                    mtime_sort_func,
9277                                    impl, NULL);
9278   set_sort_column (impl);
9279 }
9280
9281 typedef struct
9282 {
9283   GtkFileChooserDefault *impl;
9284   GList *items;
9285   guint needs_sorting : 1;
9286 } RecentLoadData;
9287
9288 static void
9289 recent_idle_cleanup (gpointer data)
9290 {
9291   RecentLoadData *load_data = data;
9292   GtkFileChooserDefault *impl = load_data->impl;
9293
9294   gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_files_tree_view),
9295                            GTK_TREE_MODEL (impl->recent_model));
9296
9297   set_busy_cursor (impl, FALSE);
9298   
9299   impl->load_recent_id = 0;
9300   
9301   g_free (load_data);
9302 }
9303
9304 static gint
9305 recent_sort_mru (gconstpointer a,
9306                  gconstpointer b)
9307 {
9308   GtkRecentInfo *info_a = (GtkRecentInfo *) a;
9309   GtkRecentInfo *info_b = (GtkRecentInfo *) b;
9310
9311   return (gtk_recent_info_get_modified (info_b) - gtk_recent_info_get_modified (info_a));
9312 }
9313
9314 static gint
9315 get_recent_files_limit (GtkWidget *widget)
9316 {
9317   GtkSettings *settings;
9318   gint limit;
9319
9320   if (gtk_widget_has_screen (widget))
9321     settings = gtk_settings_get_for_screen (gtk_widget_get_screen (widget));
9322   else
9323     settings = gtk_settings_get_default ();
9324
9325   g_object_get (G_OBJECT (settings), "gtk-recent-files-limit", &limit, NULL);
9326
9327   return limit;
9328 }
9329
9330 /* Populates the file system model with the GtkRecentInfo* items in the provided list; frees the items */
9331 static void
9332 populate_model_with_recent_items (GtkFileChooserDefault *impl, GList *items)
9333 {
9334   gint limit;
9335   GList *l;
9336   int n;
9337
9338   limit = get_recent_files_limit (GTK_WIDGET (impl));
9339
9340   n = 0;
9341
9342   for (l = items; l; l = l->next)
9343     {
9344       GtkRecentInfo *info = l->data;
9345       GFile *file;
9346
9347       file = g_file_new_for_uri (gtk_recent_info_get_uri (info));
9348       _gtk_file_system_model_add_and_query_file (impl->recent_model,
9349                                                  file,
9350                                                  MODEL_ATTRIBUTES);
9351       g_object_unref (file);
9352
9353       n++;
9354       if (limit != -1 && n >= limit)
9355         break;
9356     }
9357 }
9358
9359 static void
9360 populate_model_with_folders (GtkFileChooserDefault *impl, GList *items)
9361 {
9362   GList *folders;
9363   GList *l;
9364
9365   folders = _gtk_file_chooser_extract_recent_folders (items);
9366
9367   for (l = folders; l; l = l->next)
9368     {
9369       GFile *folder = l->data;
9370
9371       _gtk_file_system_model_add_and_query_file (impl->recent_model,
9372                                                  folder,
9373                                                  MODEL_ATTRIBUTES);
9374     }
9375
9376   g_list_foreach (folders, (GFunc) g_object_unref, NULL);
9377   g_list_free (folders);
9378 }
9379
9380 static gboolean
9381 recent_idle_load (gpointer data)
9382 {
9383   RecentLoadData *load_data = data;
9384   GtkFileChooserDefault *impl = load_data->impl;
9385
9386   if (!impl->recent_manager)
9387     return FALSE;
9388
9389   /* first iteration: load all the items */
9390   if (!load_data->items)
9391     {
9392       load_data->items = gtk_recent_manager_get_items (impl->recent_manager);
9393       if (!load_data->items)
9394         return FALSE;
9395
9396       load_data->needs_sorting = TRUE;
9397
9398       return TRUE;
9399     }
9400   
9401   /* second iteration: MRU sorting and clamping, and populating the model */
9402   if (load_data->needs_sorting)
9403     {
9404       load_data->items = g_list_sort (load_data->items, recent_sort_mru);
9405
9406       if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN)
9407         populate_model_with_recent_items (impl, load_data->items);
9408       else
9409         populate_model_with_folders (impl, load_data->items);
9410
9411       g_list_foreach (load_data->items, (GFunc) gtk_recent_info_unref, NULL);
9412       g_list_free (load_data->items);
9413       load_data->items = NULL;
9414     }
9415
9416   return FALSE;
9417 }
9418
9419 static void
9420 recent_start_loading (GtkFileChooserDefault *impl)
9421 {
9422   RecentLoadData *load_data;
9423
9424   recent_stop_loading (impl);
9425   recent_clear_model (impl, TRUE);
9426   recent_setup_model (impl);
9427   set_busy_cursor (impl, TRUE);
9428
9429   g_assert (impl->load_recent_id == 0);
9430
9431   load_data = g_new (RecentLoadData, 1);
9432   load_data->impl = impl;
9433   load_data->items = NULL;
9434   load_data->needs_sorting = TRUE;
9435
9436   /* begin lazy loading the recent files into the model */
9437   impl->load_recent_id = gdk_threads_add_idle_full (G_PRIORITY_HIGH_IDLE + 30,
9438                                                     recent_idle_load,
9439                                                     load_data,
9440                                                     recent_idle_cleanup);
9441 }
9442
9443 static void
9444 recent_selected_foreach_get_file_cb (GtkTreeModel *model,
9445                                      GtkTreePath  *path,
9446                                      GtkTreeIter  *iter,
9447                                      gpointer      data)
9448 {
9449   GSList **list;
9450   GFile *file;
9451
9452   list = data;
9453
9454   gtk_tree_model_get (model, iter, MODEL_COL_FILE, &file, -1);
9455   *list = g_slist_prepend (*list, file);
9456 }
9457
9458 /* Constructs a list of the selected paths in recent files mode */
9459 static GSList *
9460 recent_get_selected_files (GtkFileChooserDefault *impl)
9461 {
9462   GSList *result;
9463   GtkTreeSelection *selection;
9464
9465   result = NULL;
9466
9467   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
9468   gtk_tree_selection_selected_foreach (selection, recent_selected_foreach_get_file_cb, &result);
9469   result = g_slist_reverse (result);
9470
9471   return result;
9472 }
9473
9474 /* Called from ::should_respond().  We return whether there are selected
9475  * files in the recent files list.
9476  */
9477 static gboolean
9478 recent_should_respond (GtkFileChooserDefault *impl)
9479 {
9480   GtkTreeSelection *selection;
9481
9482   g_assert (impl->operation_mode == OPERATION_MODE_RECENT);
9483
9484   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_files_tree_view));
9485   return (gtk_tree_selection_count_selected_rows (selection) != 0);
9486 }
9487
9488 /* Hide the location widgets temporarily */
9489 static void
9490 recent_hide_entry (GtkFileChooserDefault *impl)
9491 {
9492   path_bar_update (impl);
9493
9494   /* Hide the location widgets temporarily */
9495   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
9496       impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
9497     {
9498       gtk_widget_hide (impl->location_button);
9499       gtk_widget_hide (impl->location_entry_box);
9500     }
9501 }
9502
9503 /* Main entry point to the recent files functions; this gets called when
9504  * the user activates the Recently Used shortcut.
9505  */
9506 static void
9507 recent_activate (GtkFileChooserDefault *impl)
9508 {
9509   OperationMode previous_mode;
9510
9511   if (impl->operation_mode == OPERATION_MODE_RECENT)
9512     return;
9513
9514   previous_mode = impl->operation_mode;
9515   impl->operation_mode = OPERATION_MODE_RECENT;
9516
9517   shortcuts_select_item_without_activating (impl, shortcuts_get_index (impl, SHORTCUTS_RECENT));
9518
9519   stop_operation (impl, previous_mode);
9520
9521   recent_hide_entry (impl);
9522
9523   file_list_set_sort_column_ids (impl);
9524   recent_start_loading (impl);
9525 }
9526
9527 static void
9528 set_current_filter (GtkFileChooserDefault *impl,
9529                     GtkFileFilter         *filter)
9530 {
9531   if (impl->current_filter != filter)
9532     {
9533       int filter_index;
9534
9535       /* NULL filters are allowed to reset to non-filtered status
9536        */
9537       filter_index = g_slist_index (impl->filters, filter);
9538       if (impl->filters && filter && filter_index < 0)
9539         return;
9540
9541       if (impl->current_filter)
9542         g_object_unref (impl->current_filter);
9543       impl->current_filter = filter;
9544       if (impl->current_filter)
9545         {
9546           g_object_ref_sink (impl->current_filter);
9547         }
9548
9549       if (impl->filters)
9550         gtk_combo_box_set_active (GTK_COMBO_BOX (impl->filter_combo),
9551                                   filter_index);
9552
9553       if (impl->browse_files_model)
9554         install_list_model_filter (impl);
9555
9556       if (impl->search_model)
9557         _gtk_file_system_model_set_filter (impl->search_model, filter);
9558
9559       if (impl->recent_model)
9560         _gtk_file_system_model_set_filter (impl->recent_model, filter);
9561
9562       g_object_notify (G_OBJECT (impl), "filter");
9563     }
9564 }
9565
9566 static void
9567 filter_combo_changed (GtkComboBox           *combo_box,
9568                       GtkFileChooserDefault *impl)
9569 {
9570   gint new_index = gtk_combo_box_get_active (combo_box);
9571   GtkFileFilter *new_filter = g_slist_nth_data (impl->filters, new_index);
9572
9573   set_current_filter (impl, new_filter);
9574 }
9575
9576 static void
9577 check_preview_change (GtkFileChooserDefault *impl)
9578 {
9579   GtkTreePath *cursor_path;
9580   GFile *new_file;
9581   char *new_display_name;
9582   GtkTreeModel *model;
9583
9584   gtk_tree_view_get_cursor (GTK_TREE_VIEW (impl->browse_files_tree_view), &cursor_path, NULL);
9585   model = gtk_tree_view_get_model (GTK_TREE_VIEW (impl->browse_files_tree_view));
9586   if (cursor_path)
9587     {
9588       GtkTreeIter iter;
9589
9590       gtk_tree_model_get_iter (model, &iter, cursor_path);
9591       gtk_tree_model_get (model, &iter,
9592                           MODEL_COL_FILE, &new_file,
9593                           MODEL_COL_NAME, &new_display_name,
9594                           -1);
9595       
9596       gtk_tree_path_free (cursor_path);
9597     }
9598   else
9599     {
9600       new_file = NULL;
9601       new_display_name = NULL;
9602     }
9603
9604   if (new_file != impl->preview_file &&
9605       !(new_file && impl->preview_file &&
9606         g_file_equal (new_file, impl->preview_file)))
9607     {
9608       if (impl->preview_file)
9609         {
9610           g_object_unref (impl->preview_file);
9611           g_free (impl->preview_display_name);
9612         }
9613
9614       if (new_file)
9615         {
9616           impl->preview_file = new_file;
9617           impl->preview_display_name = new_display_name;
9618         }
9619       else
9620         {
9621           impl->preview_file = NULL;
9622           impl->preview_display_name = NULL;
9623           g_free (new_display_name);
9624         }
9625
9626       if (impl->use_preview_label && impl->preview_label)
9627         gtk_label_set_text (GTK_LABEL (impl->preview_label), impl->preview_display_name);
9628
9629       g_signal_emit_by_name (impl, "update-preview");
9630     }
9631   else
9632     {
9633       if (new_file)
9634         g_object_unref (new_file);
9635
9636       g_free (new_display_name);
9637     }
9638 }
9639
9640 static void
9641 shortcuts_activate_volume_mount_cb (GCancellable        *cancellable,
9642                                     GtkFileSystemVolume *volume,
9643                                     const GError        *error,
9644                                     gpointer             data)
9645 {
9646   GFile *file;
9647   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
9648   GtkFileChooserDefault *impl = data;
9649
9650   if (cancellable != impl->shortcuts_activate_iter_cancellable)
9651     goto out;
9652
9653   impl->shortcuts_activate_iter_cancellable = NULL;
9654
9655   set_busy_cursor (impl, FALSE);
9656
9657   if (cancelled)
9658     goto out;
9659
9660   if (error)
9661     {
9662       if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_FAILED_HANDLED))
9663         {
9664           char *msg, *name;
9665
9666           name = _gtk_file_system_volume_get_display_name (volume);
9667           msg = g_strdup_printf (_("Could not mount %s"), name);
9668
9669           error_message (impl, msg, error->message);
9670
9671           g_free (msg);
9672           g_free (name);
9673         }
9674
9675       goto out;
9676     }
9677
9678   file = _gtk_file_system_volume_get_root (volume);
9679   if (file != NULL)
9680     {
9681       change_folder_and_display_error (impl, file, FALSE);
9682       g_object_unref (file);
9683     }
9684
9685 out:
9686   g_object_unref (impl);
9687   g_object_unref (cancellable);
9688 }
9689
9690
9691 /* Activates a volume by mounting it if necessary and then switching to its
9692  * base path.
9693  */
9694 static void
9695 shortcuts_activate_volume (GtkFileChooserDefault *impl,
9696                            GtkFileSystemVolume   *volume)
9697 {
9698   GFile *file;
9699
9700   switch (impl->operation_mode)
9701     {
9702     case OPERATION_MODE_BROWSE:
9703       break;
9704     case OPERATION_MODE_SEARCH:
9705       search_switch_to_browse_mode (impl);
9706       break;
9707     case OPERATION_MODE_RECENT:
9708       recent_switch_to_browse_mode (impl);
9709       break;
9710     }
9711
9712   /* We ref the file chooser since volume_mount() may run a main loop, and the
9713    * user could close the file chooser window in the meantime.
9714    */
9715   g_object_ref (impl);
9716
9717   if (!_gtk_file_system_volume_is_mounted (volume))
9718     {
9719       GMountOperation *mount_op;
9720
9721       set_busy_cursor (impl, TRUE);
9722    
9723       mount_op = gtk_mount_operation_new (get_toplevel (GTK_WIDGET (impl)));
9724       impl->shortcuts_activate_iter_cancellable =
9725         _gtk_file_system_mount_volume (impl->file_system, volume, mount_op,
9726                                        shortcuts_activate_volume_mount_cb,
9727                                        g_object_ref (impl));
9728       g_object_unref (mount_op);
9729     }
9730   else
9731     {
9732       file = _gtk_file_system_volume_get_root (volume);
9733       if (file != NULL)
9734         {
9735           change_folder_and_display_error (impl, file, FALSE);
9736           g_object_unref (file);
9737         }
9738     }
9739
9740   g_object_unref (impl);
9741 }
9742
9743 /* Opens the folder or volume at the specified iter in the shortcuts model */
9744 struct ShortcutsActivateData
9745 {
9746   GtkFileChooserDefault *impl;
9747   GFile *file;
9748 };
9749
9750 static void
9751 shortcuts_activate_get_info_cb (GCancellable *cancellable,
9752                                 GFileInfo    *info,
9753                                 const GError *error,
9754                                 gpointer      user_data)
9755 {
9756   gboolean cancelled = g_cancellable_is_cancelled (cancellable);
9757   struct ShortcutsActivateData *data = user_data;
9758
9759   if (cancellable != data->impl->shortcuts_activate_iter_cancellable)
9760     goto out;
9761
9762   data->impl->shortcuts_activate_iter_cancellable = NULL;
9763
9764   if (cancelled)
9765     goto out;
9766
9767   if (!error && _gtk_file_info_consider_as_directory (info))
9768     change_folder_and_display_error (data->impl, data->file, FALSE);
9769   else
9770     gtk_file_chooser_default_select_file (GTK_FILE_CHOOSER (data->impl),
9771                                           data->file,
9772                                           NULL);
9773
9774 out:
9775   g_object_unref (data->impl);
9776   g_object_unref (data->file);
9777   g_free (data);
9778
9779   g_object_unref (cancellable);
9780 }
9781
9782 static void
9783 shortcuts_activate_mount_enclosing_volume (GCancellable        *cancellable,
9784                                            GtkFileSystemVolume *volume,
9785                                            const GError        *error,
9786                                            gpointer             user_data)
9787 {
9788   struct ShortcutsActivateData *data = user_data;
9789
9790   if (error)
9791     {
9792       error_changing_folder_dialog (data->impl, data->file, g_error_copy (error));
9793
9794       g_object_unref (data->impl);
9795       g_object_unref (data->file);
9796       g_free (data);
9797
9798       return;
9799     }
9800
9801   data->impl->shortcuts_activate_iter_cancellable =
9802     _gtk_file_system_get_info (data->impl->file_system, data->file,
9803                                "standard::type",
9804                                shortcuts_activate_get_info_cb, data);
9805
9806   if (volume)
9807     _gtk_file_system_volume_unref (volume);
9808 }
9809
9810 static void
9811 shortcuts_activate_iter (GtkFileChooserDefault *impl,
9812                          GtkTreeIter           *iter)
9813 {
9814   gpointer col_data;
9815   ShortcutType shortcut_type;
9816
9817   if (impl->location_mode == LOCATION_MODE_FILENAME_ENTRY
9818       && !(impl->action == GTK_FILE_CHOOSER_ACTION_SAVE
9819            || impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER))
9820     _gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), "");
9821
9822   gtk_tree_model_get (GTK_TREE_MODEL (impl->shortcuts_model), iter,
9823                       SHORTCUTS_COL_DATA, &col_data,
9824                       SHORTCUTS_COL_TYPE, &shortcut_type,
9825                       -1);
9826
9827   if (impl->shortcuts_activate_iter_cancellable)
9828     {
9829       g_cancellable_cancel (impl->shortcuts_activate_iter_cancellable);
9830       impl->shortcuts_activate_iter_cancellable = NULL;
9831     }
9832
9833   if (shortcut_type == SHORTCUT_TYPE_SEPARATOR)
9834     return;
9835   else if (shortcut_type == SHORTCUT_TYPE_VOLUME)
9836     {
9837       GtkFileSystemVolume *volume;
9838
9839       volume = col_data;
9840
9841       shortcuts_activate_volume (impl, volume);
9842     }
9843   else if (shortcut_type == SHORTCUT_TYPE_FILE)
9844     {
9845       struct ShortcutsActivateData *data;
9846       GtkFileSystemVolume *volume;
9847
9848       volume = _gtk_file_system_get_volume_for_file (impl->file_system, col_data);
9849
9850       data = g_new0 (struct ShortcutsActivateData, 1);
9851       data->impl = g_object_ref (impl);
9852       data->file = g_object_ref (col_data);
9853
9854       if (!volume || !_gtk_file_system_volume_is_mounted (volume))
9855         {
9856           GMountOperation *mount_operation;
9857           GtkWidget *toplevel;
9858
9859           toplevel = gtk_widget_get_toplevel (GTK_WIDGET (impl));
9860
9861           mount_operation = gtk_mount_operation_new (GTK_WINDOW (toplevel));
9862
9863           impl->shortcuts_activate_iter_cancellable =
9864             _gtk_file_system_mount_enclosing_volume (impl->file_system, col_data,
9865                                                      mount_operation,
9866                                                      shortcuts_activate_mount_enclosing_volume,
9867                                                      data);
9868         }
9869       else
9870         {
9871           impl->shortcuts_activate_iter_cancellable =
9872             _gtk_file_system_get_info (impl->file_system, data->file,
9873                                        "standard::type",
9874                                        shortcuts_activate_get_info_cb, data);
9875         }
9876     }
9877   else if (shortcut_type == SHORTCUT_TYPE_SEARCH)
9878     {
9879       search_activate (impl);
9880     }
9881   else if (shortcut_type == SHORTCUT_TYPE_RECENT)
9882     {
9883       recent_activate (impl);
9884     }
9885 }
9886
9887 /* Handler for GtkWidget::key-press-event on the shortcuts list */
9888 static gboolean
9889 shortcuts_key_press_event_cb (GtkWidget             *widget,
9890                               GdkEventKey           *event,
9891                               GtkFileChooserDefault *impl)
9892 {
9893   guint modifiers;
9894
9895   modifiers = gtk_accelerator_get_default_mod_mask ();
9896
9897   if (key_is_left_or_right (event))
9898     {
9899       gtk_widget_grab_focus (impl->browse_files_tree_view);
9900       return TRUE;
9901     }
9902
9903   if ((event->keyval == GDK_KEY_BackSpace
9904       || event->keyval == GDK_KEY_Delete
9905       || event->keyval == GDK_KEY_KP_Delete)
9906       && (event->state & modifiers) == 0)
9907     {
9908       remove_selected_bookmarks (impl);
9909       return TRUE;
9910     }
9911
9912   if ((event->keyval == GDK_KEY_F2)
9913       && (event->state & modifiers) == 0)
9914     {
9915       rename_selected_bookmark (impl);
9916       return TRUE;
9917     }
9918
9919   return FALSE;
9920 }
9921
9922 static gboolean
9923 shortcuts_select_func  (GtkTreeSelection  *selection,
9924                         GtkTreeModel      *model,
9925                         GtkTreePath       *path,
9926                         gboolean           path_currently_selected,
9927                         gpointer           data)
9928 {
9929   GtkFileChooserDefault *impl = data;
9930   GtkTreeIter filter_iter;
9931   ShortcutType shortcut_type;
9932
9933   if (!gtk_tree_model_get_iter (impl->shortcuts_pane_filter_model, &filter_iter, path))
9934     g_assert_not_reached ();
9935
9936   gtk_tree_model_get (impl->shortcuts_pane_filter_model, &filter_iter, SHORTCUTS_COL_TYPE, &shortcut_type, -1);
9937
9938   return shortcut_type != SHORTCUT_TYPE_SEPARATOR;
9939 }
9940
9941 static gboolean
9942 list_select_func  (GtkTreeSelection  *selection,
9943                    GtkTreeModel      *model,
9944                    GtkTreePath       *path,
9945                    gboolean           path_currently_selected,
9946                    gpointer           data)
9947 {
9948   GtkFileChooserDefault *impl = data;
9949
9950   if (impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER ||
9951       impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
9952     {
9953       GtkTreeIter iter;
9954       gboolean is_folder;
9955
9956       if (!gtk_tree_model_get_iter (model, &iter, path))
9957         return FALSE;
9958       gtk_tree_model_get (model, &iter,
9959                           MODEL_COL_IS_FOLDER, &is_folder,
9960                           -1);
9961       if (!is_folder)
9962         return FALSE;
9963     }
9964     
9965   return TRUE;
9966 }
9967
9968 static void
9969 list_selection_changed (GtkTreeSelection      *selection,
9970                         GtkFileChooserDefault *impl)
9971 {
9972   /* See if we are in the new folder editable row for Save mode */
9973   if (impl->operation_mode == OPERATION_MODE_BROWSE &&
9974       impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
9975     {
9976       GFileInfo *info;
9977       gboolean had_selection;
9978
9979       info = get_selected_file_info_from_file_list (impl, &had_selection);
9980       if (!had_selection)
9981         goto out; /* normal processing */
9982
9983       if (!info)
9984         return; /* We are on the editable row for New Folder */
9985     }
9986
9987  out:
9988
9989   if (impl->location_entry)
9990     update_chooser_entry (impl);
9991
9992   path_bar_update (impl);
9993
9994   check_preview_change (impl);
9995   bookmarks_check_add_sensitivity (impl);
9996
9997   g_signal_emit_by_name (impl, "selection-changed", 0);
9998 }
9999
10000 /* Callback used when a row in the file list is activated */
10001 static void
10002 list_row_activated (GtkTreeView           *tree_view,
10003                     GtkTreePath           *path,
10004                     GtkTreeViewColumn     *column,
10005                     GtkFileChooserDefault *impl)
10006 {
10007   GFile *file;
10008   GtkTreeIter iter;
10009   GtkTreeModel *model;
10010   gboolean is_folder;
10011
10012   model = gtk_tree_view_get_model (tree_view);
10013
10014   if (!gtk_tree_model_get_iter (model, &iter, path))
10015     return;
10016
10017   gtk_tree_model_get (model, &iter,
10018                       MODEL_COL_FILE, &file,
10019                       MODEL_COL_IS_FOLDER, &is_folder,
10020                       -1);
10021         
10022   if (is_folder && file)
10023     {
10024       change_folder_and_display_error (impl, file, FALSE);
10025       g_object_unref (file);
10026       goto out;
10027     }
10028
10029   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
10030       impl->action == GTK_FILE_CHOOSER_ACTION_SAVE)
10031     g_signal_emit_by_name (impl, "file-activated");
10032
10033  out:
10034
10035   if (file)
10036     g_object_unref (file);
10037 }
10038
10039 static void
10040 path_bar_clicked (GtkPathBar            *path_bar,
10041                   GFile                 *file,
10042                   GFile                 *child_file,
10043                   gboolean               child_is_hidden,
10044                   GtkFileChooserDefault *impl)
10045 {
10046   if (child_file)
10047     pending_select_files_add (impl, child_file);
10048
10049   if (!change_folder_and_display_error (impl, file, FALSE))
10050     return;
10051
10052   /* Say we have "/foo/bar/[.baz]" and the user clicks on "bar".  We should then
10053    * show hidden files so that ".baz" appears in the file list, as it will still
10054    * be shown in the path bar: "/foo/[bar]/.baz"
10055    */
10056   if (child_is_hidden)
10057     g_object_set (impl, "show-hidden", TRUE, NULL);
10058 }
10059
10060 static void
10061 update_cell_renderer_attributes (GtkFileChooserDefault *impl)
10062 {
10063   GtkTreeViewColumn *column;
10064   GtkCellRenderer *renderer;
10065   GList *walk, *list;
10066   gboolean always_sensitive;
10067
10068   always_sensitive = impl->action != GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER &&
10069                      impl->action != GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER;
10070
10071   /* Keep the following column numbers in sync with create_file_list() */
10072
10073   /* name */
10074   column = gtk_tree_view_get_column (GTK_TREE_VIEW (impl->browse_files_tree_view), 0);
10075   list = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (column));
10076   for (walk = list; walk; walk = walk->next)
10077     {
10078       renderer = walk->data;
10079       if (GTK_IS_CELL_RENDERER_PIXBUF (renderer))
10080         {
10081           gtk_tree_view_column_set_attributes (column, renderer, 
10082                                                "pixbuf", MODEL_COL_PIXBUF,
10083                                                NULL);
10084         }
10085       else
10086         {
10087           gtk_tree_view_column_set_attributes (column, renderer, 
10088                                                "text", MODEL_COL_NAME,
10089                                                "ellipsize", MODEL_COL_ELLIPSIZE,
10090                                                NULL);
10091         }
10092       if (always_sensitive)
10093         g_object_set (renderer, "sensitive", TRUE, NULL);
10094       else
10095         gtk_tree_view_column_add_attribute (column, renderer, "sensitive", MODEL_COL_IS_FOLDER);
10096     }
10097   g_list_free (list);
10098
10099   /* size */
10100   column = gtk_tree_view_get_column (GTK_TREE_VIEW (impl->browse_files_tree_view), 1);
10101   list = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (column));
10102   renderer = list->data;
10103   gtk_tree_view_column_set_attributes (column, renderer, 
10104                                        "text", MODEL_COL_SIZE_TEXT,
10105                                        NULL);
10106   if (always_sensitive)
10107     g_object_set (renderer, "sensitive", TRUE, NULL);
10108   else
10109     gtk_tree_view_column_add_attribute (column, renderer, "sensitive", MODEL_COL_IS_FOLDER);
10110   g_list_free (list);
10111
10112   /* mtime */
10113   column = gtk_tree_view_get_column (GTK_TREE_VIEW (impl->browse_files_tree_view), 2);
10114   list = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (column));
10115   renderer = list->data;
10116   gtk_tree_view_column_set_attributes (column, renderer, 
10117                                        "text", MODEL_COL_MTIME_TEXT,
10118                                        NULL);
10119   if (always_sensitive)
10120     g_object_set (renderer, "sensitive", TRUE, NULL);
10121   else
10122     gtk_tree_view_column_add_attribute (column, renderer, "sensitive", MODEL_COL_IS_FOLDER);
10123   g_list_free (list);
10124 }
10125
10126 GtkWidget *
10127 _gtk_file_chooser_default_new (void)
10128 {
10129   return g_object_new (GTK_TYPE_FILE_CHOOSER_DEFAULT, NULL);
10130 }
10131
10132 static void
10133 location_set_user_text (GtkFileChooserDefault *impl,
10134                         const gchar           *path)
10135 {
10136   _gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->location_entry), path);
10137   gtk_editable_set_position (GTK_EDITABLE (impl->location_entry), -1);
10138 }
10139
10140 static void
10141 location_popup_handler (GtkFileChooserDefault *impl,
10142                         const gchar           *path)
10143
10144   if (impl->operation_mode != OPERATION_MODE_BROWSE)
10145     {
10146       GtkWidget *widget_to_focus;
10147       
10148       /* This will give us the location widgets back */
10149       switch (impl->operation_mode)
10150         {
10151         case OPERATION_MODE_SEARCH:
10152           search_switch_to_browse_mode (impl);
10153           break;
10154         case OPERATION_MODE_RECENT:
10155           recent_switch_to_browse_mode (impl);
10156           break;
10157         case OPERATION_MODE_BROWSE:
10158           g_assert_not_reached ();
10159           break;
10160         }
10161
10162       if (impl->current_folder)
10163         change_folder_and_display_error (impl, impl->current_folder, FALSE);
10164
10165       if (impl->location_mode == LOCATION_MODE_PATH_BAR)
10166         widget_to_focus = impl->browse_files_tree_view;
10167       else
10168         widget_to_focus = impl->location_entry;
10169
10170       gtk_widget_grab_focus (widget_to_focus);
10171       return; 
10172     }
10173   
10174   if (impl->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
10175       impl->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
10176     {
10177       LocationMode new_mode;
10178
10179       if (path != NULL)
10180         {
10181           /* since the user typed something, we unconditionally want to turn on the entry */
10182           new_mode = LOCATION_MODE_FILENAME_ENTRY;
10183         }
10184       else if (impl->location_mode == LOCATION_MODE_PATH_BAR)
10185         new_mode = LOCATION_MODE_FILENAME_ENTRY;
10186       else if (impl->location_mode == LOCATION_MODE_FILENAME_ENTRY)
10187         new_mode = LOCATION_MODE_PATH_BAR;
10188       else
10189         {
10190           g_assert_not_reached ();
10191           return;
10192         }
10193
10194       location_mode_set (impl, new_mode, TRUE);
10195       if (new_mode == LOCATION_MODE_FILENAME_ENTRY)
10196         {
10197           if (path != NULL)
10198             location_set_user_text (impl, path);
10199           else
10200             {
10201               location_entry_set_initial_text (impl);
10202               gtk_editable_select_region (GTK_EDITABLE (impl->location_entry), 0, -1);
10203             }
10204         }
10205     }
10206   else if (impl->action == GTK_FILE_CHOOSER_ACTION_SAVE ||
10207            impl->action == GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER)
10208     {
10209       gtk_widget_grab_focus (impl->location_entry);
10210       if (path != NULL)
10211         location_set_user_text (impl, path);
10212     }
10213   else
10214     g_assert_not_reached ();
10215 }
10216
10217 /* Handler for the "up-folder" keybinding signal */
10218 static void
10219 up_folder_handler (GtkFileChooserDefault *impl)
10220 {
10221   _gtk_path_bar_up (GTK_PATH_BAR (impl->browse_path_bar));
10222 }
10223
10224 /* Handler for the "down-folder" keybinding signal */
10225 static void
10226 down_folder_handler (GtkFileChooserDefault *impl)
10227 {
10228   _gtk_path_bar_down (GTK_PATH_BAR (impl->browse_path_bar));
10229 }
10230
10231 /* Switches to the shortcut in the specified index */
10232 static void
10233 switch_to_shortcut (GtkFileChooserDefault *impl,
10234                     int pos)
10235 {
10236   GtkTreeIter iter;
10237
10238   if (!gtk_tree_model_iter_nth_child (GTK_TREE_MODEL (impl->shortcuts_model), &iter, NULL, pos))
10239     g_assert_not_reached ();
10240
10241   shortcuts_activate_iter (impl, &iter);
10242 }
10243
10244 /* Handler for the "home-folder" keybinding signal */
10245 static void
10246 home_folder_handler (GtkFileChooserDefault *impl)
10247 {
10248   if (impl->has_home)
10249     switch_to_shortcut (impl, shortcuts_get_index (impl, SHORTCUTS_HOME));
10250 }
10251
10252 /* Handler for the "desktop-folder" keybinding signal */
10253 static void
10254 desktop_folder_handler (GtkFileChooserDefault *impl)
10255 {
10256   if (impl->has_desktop)
10257     switch_to_shortcut (impl, shortcuts_get_index (impl, SHORTCUTS_DESKTOP));
10258 }
10259
10260 /* Handler for the "search-shortcut" keybinding signal */
10261 static void
10262 search_shortcut_handler (GtkFileChooserDefault *impl)
10263 {
10264   if (impl->has_search)
10265     {
10266       switch_to_shortcut (impl, shortcuts_get_index (impl, SHORTCUTS_SEARCH));
10267
10268       /* we want the entry widget to grab the focus the first
10269        * time, not the browse_files_tree_view widget.
10270        */
10271       if (impl->search_entry)
10272         gtk_widget_grab_focus (impl->search_entry);
10273     }
10274 }
10275
10276 /* Handler for the "recent-shortcut" keybinding signal */
10277 static void
10278 recent_shortcut_handler (GtkFileChooserDefault *impl)
10279 {
10280   switch_to_shortcut (impl, shortcuts_get_index (impl, SHORTCUTS_RECENT));
10281 }
10282
10283 static void
10284 quick_bookmark_handler (GtkFileChooserDefault *impl,
10285                         gint bookmark_index)
10286 {
10287   int bookmark_pos;
10288   GtkTreePath *path;
10289
10290   if (bookmark_index < 0 || bookmark_index >= impl->num_bookmarks)
10291     return;
10292
10293   bookmark_pos = shortcuts_get_index (impl, SHORTCUTS_BOOKMARKS) + bookmark_index;
10294
10295   path = gtk_tree_path_new_from_indices (bookmark_pos, -1);
10296   gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view),
10297                                 path, NULL,
10298                                 FALSE, 0.0, 0.0);
10299   gtk_tree_path_free (path);
10300
10301   switch_to_shortcut (impl, bookmark_pos);
10302 }
10303
10304 static void
10305 show_hidden_handler (GtkFileChooserDefault *impl)
10306 {
10307   g_object_set (impl,
10308                 "show-hidden", !impl->show_hidden,
10309                 NULL);
10310 }
10311
10312
10313 /* Drag and drop interfaces */
10314
10315 static void
10316 _shortcuts_pane_model_filter_class_init (ShortcutsPaneModelFilterClass *class)
10317 {
10318 }
10319
10320 static void
10321 _shortcuts_pane_model_filter_init (ShortcutsPaneModelFilter *model)
10322 {
10323   model->impl = NULL;
10324 }
10325
10326 /* GtkTreeDragSource::row_draggable implementation for the shortcuts filter model */
10327 static gboolean
10328 shortcuts_pane_model_filter_row_draggable (GtkTreeDragSource *drag_source,
10329                                            GtkTreePath       *path)
10330 {
10331   ShortcutsPaneModelFilter *model;
10332   int pos;
10333   int bookmarks_pos;
10334
10335   model = SHORTCUTS_PANE_MODEL_FILTER (drag_source);
10336
10337   pos = *gtk_tree_path_get_indices (path);
10338   bookmarks_pos = shortcuts_get_index (model->impl, SHORTCUTS_BOOKMARKS);
10339
10340   return (pos >= bookmarks_pos && pos < bookmarks_pos + model->impl->num_bookmarks);
10341 }
10342
10343 /* GtkTreeDragSource::drag_data_get implementation for the shortcuts
10344  * filter model
10345  */
10346 static gboolean
10347 shortcuts_pane_model_filter_drag_data_get (GtkTreeDragSource *drag_source,
10348                                            GtkTreePath       *path,
10349                                            GtkSelectionData  *selection_data)
10350 {
10351   /* FIXME */
10352
10353   return FALSE;
10354 }
10355
10356 /* Fill the GtkTreeDragSourceIface vtable */
10357 static void
10358 shortcuts_pane_model_filter_drag_source_iface_init (GtkTreeDragSourceIface *iface)
10359 {
10360   iface->row_draggable = shortcuts_pane_model_filter_row_draggable;
10361   iface->drag_data_get = shortcuts_pane_model_filter_drag_data_get;
10362 }
10363
10364 #if 0
10365 /* Fill the GtkTreeDragDestIface vtable */
10366 static void
10367 shortcuts_pane_model_filter_drag_dest_iface_init (GtkTreeDragDestIface *iface)
10368 {
10369   iface->drag_data_received = shortcuts_pane_model_filter_drag_data_received;
10370   iface->row_drop_possible = shortcuts_pane_model_filter_row_drop_possible;
10371 }
10372 #endif
10373
10374 static GtkTreeModel *
10375 shortcuts_pane_model_filter_new (GtkFileChooserDefault *impl,
10376                                  GtkTreeModel          *child_model,
10377                                  GtkTreePath           *root)
10378 {
10379   ShortcutsPaneModelFilter *model;
10380
10381   model = g_object_new (SHORTCUTS_PANE_MODEL_FILTER_TYPE,
10382                         "child-model", child_model,
10383                         "virtual-root", root,
10384                         NULL);
10385
10386   model->impl = impl;
10387
10388   return GTK_TREE_MODEL (model);
10389 }
10390