]> Pileus Git - ~andy/gtk/blob - gtk/gtkfilechooserbutton.c
Fix some memory handling issues. (#347043, Chris Wilson)
[~andy/gtk] / gtk / gtkfilechooserbutton.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 2 -*- */
2
3 /* GTK+: gtkfilechooserbutton.c
4  * 
5  * Copyright (c) 2004 James M. Cape <jcape@ignore-your.tv>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <config.h>
24
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #ifdef HAVE_UNISTD_H
28 #include <unistd.h>
29 #endif
30
31 #include <string.h>
32
33 #include "gtkintl.h"
34 #include "gtkbutton.h"
35 #include "gtkcelllayout.h"
36 #include "gtkcellrenderertext.h"
37 #include "gtkcellrendererpixbuf.h"
38 #include "gtkcombobox.h"
39 #include "gtkdnd.h"
40 #include "gtkicontheme.h"
41 #include "gtkiconfactory.h"
42 #include "gtkimage.h"
43 #include "gtklabel.h"
44 #include "gtkliststore.h"
45 #include "gtkstock.h"
46 #include "gtktreemodelfilter.h"
47 #include "gtkvseparator.h"
48 #include "gtkfilechooserdialog.h"
49 #include "gtkfilechooserprivate.h"
50 #include "gtkfilechooserutils.h"
51
52 #include "gtkfilechooserbutton.h"
53
54 #ifdef G_OS_WIN32
55 #include "gtkfilesystemwin32.h"
56 #endif
57
58 #include "gtkprivate.h"
59 #include "gtkalias.h"
60
61 /* **************** *
62  *  Private Macros  *
63  * **************** */
64
65 #define GTK_FILE_CHOOSER_BUTTON_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GTK_TYPE_FILE_CHOOSER_BUTTON, GtkFileChooserButtonPrivate))
66
67 #define DEFAULT_TITLE           N_("Select A File")
68 #define DESKTOP_DISPLAY_NAME    N_("Desktop")
69 #define FALLBACK_DISPLAY_NAME   N_("(None)")
70 #define FALLBACK_ICON_NAME      "stock_unknown"
71 #define FALLBACK_ICON_SIZE      16
72
73
74 /* ********************** *
75  *  Private Enumerations  *
76  * ********************** */
77
78 /* Property IDs */
79 enum
80 {
81   PROP_0,
82
83   PROP_DIALOG,
84   PROP_FOCUS_ON_CLICK,
85   PROP_TITLE,
86   PROP_WIDTH_CHARS
87 };
88
89 /* TreeModel Columns */
90 enum
91 {
92   ICON_COLUMN,
93   DISPLAY_NAME_COLUMN,
94   TYPE_COLUMN,
95   DATA_COLUMN,
96   IS_FOLDER_COLUMN,
97   HANDLE_COLUMN,
98   NUM_COLUMNS
99 };
100
101 /* TreeModel Row Types */
102 typedef enum
103 {
104   ROW_TYPE_SPECIAL,
105   ROW_TYPE_VOLUME,
106   ROW_TYPE_SHORTCUT,
107   ROW_TYPE_BOOKMARK_SEPARATOR,
108   ROW_TYPE_BOOKMARK,
109   ROW_TYPE_CURRENT_FOLDER_SEPARATOR,
110   ROW_TYPE_CURRENT_FOLDER,
111   ROW_TYPE_OTHER_SEPARATOR,
112   ROW_TYPE_OTHER,
113
114   ROW_TYPE_INVALID = -1
115 }
116 RowType;
117
118
119 /* ******************** *
120  *  Private Structures  *
121  * ******************** */
122
123 struct _GtkFileChooserButtonPrivate
124 {
125   GtkWidget *dialog;
126   GtkWidget *button;
127   GtkWidget *image;
128   GtkWidget *label;
129   GtkWidget *combo_box;
130   GtkCellRenderer *icon_cell;
131   GtkCellRenderer *name_cell;
132
133   GtkTreeModel *model;
134   GtkTreeModel *filter_model;
135
136   gchar *backend;
137   GtkFileSystem *fs;
138   GtkFilePath *old_path;
139
140   gulong combo_box_changed_id;
141   gulong dialog_file_activated_id;
142   gulong dialog_folder_changed_id;
143   gulong dialog_selection_changed_id;
144   gulong fs_volumes_changed_id;
145   gulong fs_bookmarks_changed_id;
146
147   GtkFileSystemHandle *dnd_select_folder_handle;
148   GtkFileSystemHandle *update_button_handle;
149   GSList *change_icon_theme_handles;
150
151   gint icon_size;
152
153   guint8 n_special;
154   guint8 n_volumes;
155   guint8 n_shortcuts;
156   guint8 n_bookmarks;
157   guint8 has_bookmark_separator       : 1;
158   guint8 has_current_folder_separator : 1;
159   guint8 has_current_folder           : 1;
160   guint8 has_other_separator          : 1;
161
162   /* Used for hiding/showing the dialog when the button is hidden */
163   guint8 active                       : 1;
164
165   /* Used to remember whether a title has been set yet, so we can use the default if it has not been set. */
166   guint8 has_title                    : 1;
167
168   /* Used to track whether we need to set a default current folder on ::map() */
169   guint8 folder_has_been_set          : 1;
170
171   guint8 focus_on_click               : 1;
172 };
173
174
175 /* ************* *
176  *  DnD Support  *
177  * ************* */
178
179 enum
180 {
181   TEXT_PLAIN,
182   TEXT_URI_LIST
183 };
184
185
186 /* ********************* *
187  *  Function Prototypes  *
188  * ********************* */
189
190 /* GtkFileChooserIface Functions */
191 static void     gtk_file_chooser_button_file_chooser_iface_init (GtkFileChooserIface *iface);
192 static gboolean gtk_file_chooser_button_add_shortcut_folder     (GtkFileChooser      *chooser,
193                                                                  const GtkFilePath   *path,
194                                                                  GError             **error);
195 static gboolean gtk_file_chooser_button_remove_shortcut_folder  (GtkFileChooser      *chooser,
196                                                                  const GtkFilePath   *path,
197                                                                  GError             **error);
198
199 /* GObject Functions */
200 static GObject *gtk_file_chooser_button_constructor        (GType             type,
201                                                             guint             n_params,
202                                                             GObjectConstructParam *params);
203 static void     gtk_file_chooser_button_set_property       (GObject          *object,
204                                                             guint             param_id,
205                                                             const GValue     *value,
206                                                             GParamSpec       *pspec);
207 static void     gtk_file_chooser_button_get_property       (GObject          *object,
208                                                             guint             param_id,
209                                                             GValue           *value,
210                                                             GParamSpec       *pspec);
211 static void     gtk_file_chooser_button_finalize           (GObject          *object);
212
213 /* GtkObject Functions */
214 static void     gtk_file_chooser_button_destroy            (GtkObject        *object);
215
216 /* GtkWidget Functions */
217 static void     gtk_file_chooser_button_drag_data_received (GtkWidget        *widget,
218                                                             GdkDragContext   *context,
219                                                             gint              x,
220                                                             gint              y,
221                                                             GtkSelectionData *data,
222                                                             guint             info,
223                                                             guint             drag_time);
224 static void     gtk_file_chooser_button_show_all           (GtkWidget        *widget);
225 static void     gtk_file_chooser_button_hide_all           (GtkWidget        *widget);
226 static void     gtk_file_chooser_button_show               (GtkWidget        *widget);
227 static void     gtk_file_chooser_button_hide               (GtkWidget        *widget);
228 static void     gtk_file_chooser_button_map                (GtkWidget        *widget);
229 static gboolean gtk_file_chooser_button_mnemonic_activate  (GtkWidget        *widget,
230                                                             gboolean          group_cycling);
231 static void     gtk_file_chooser_button_style_set          (GtkWidget        *widget,
232                                                             GtkStyle         *old_style);
233 static void     gtk_file_chooser_button_screen_changed     (GtkWidget        *widget,
234                                                             GdkScreen        *old_screen);
235
236 /* Utility Functions */
237 static GtkIconTheme *get_icon_theme               (GtkWidget            *widget);
238 static void          set_info_for_path_at_iter         (GtkFileChooserButton *fs,
239                                                         const GtkFilePath    *path,
240                                                         GtkTreeIter          *iter);
241
242 static gint          model_get_type_position      (GtkFileChooserButton *button,
243                                                    RowType               row_type);
244 static void          model_free_row_data          (GtkFileChooserButton *button,
245                                                    GtkTreeIter          *iter);
246 static inline void   model_add_special            (GtkFileChooserButton *button);
247 static inline void   model_add_other              (GtkFileChooserButton *button);
248 static void          model_add_volumes            (GtkFileChooserButton *button,
249                                                    GSList               *volumes);
250 static void          model_add_bookmarks          (GtkFileChooserButton *button,
251                                                    GSList               *bookmarks);
252 static void          model_update_current_folder  (GtkFileChooserButton *button,
253                                                    const GtkFilePath    *path);
254 static void          model_remove_rows            (GtkFileChooserButton *button,
255                                                    gint                  pos,
256                                                    gint                  n_rows);
257
258 static gboolean      filter_model_visible_func    (GtkTreeModel         *model,
259                                                    GtkTreeIter          *iter,
260                                                    gpointer              user_data);
261
262 static gboolean      combo_box_row_separator_func (GtkTreeModel         *model,
263                                                    GtkTreeIter          *iter,
264                                                    gpointer              user_data);
265 static void          name_cell_data_func          (GtkCellLayout        *layout,
266                                                    GtkCellRenderer      *cell,
267                                                    GtkTreeModel         *model,
268                                                    GtkTreeIter          *iter,
269                                                    gpointer              user_data);
270 static void          open_dialog                  (GtkFileChooserButton *button);
271 static void          update_combo_box             (GtkFileChooserButton *button);
272 static void          update_label_and_image       (GtkFileChooserButton *button);
273
274 /* Child Object Callbacks */
275 static void     fs_volumes_changed_cb            (GtkFileSystem  *fs,
276                                                   gpointer        user_data);
277 static void     fs_bookmarks_changed_cb          (GtkFileSystem  *fs,
278                                                   gpointer        user_data);
279
280 static void     combo_box_changed_cb             (GtkComboBox    *combo_box,
281                                                   gpointer        user_data);
282
283 static void     button_clicked_cb                (GtkButton      *real_button,
284                                                   gpointer        user_data);
285
286 static void     dialog_update_preview_cb         (GtkFileChooser *dialog,
287                                                   gpointer        user_data);
288 static void     dialog_selection_changed_cb      (GtkFileChooser *dialog,
289                                                   gpointer        user_data);
290 static void     dialog_file_activated_cb         (GtkFileChooser *dialog,
291                                                   gpointer        user_data);
292 static void     dialog_current_folder_changed_cb (GtkFileChooser *dialog,
293                                                   gpointer        user_data);
294 static void     dialog_notify_cb                 (GObject        *dialog,
295                                                   GParamSpec     *pspec,
296                                                   gpointer        user_data);
297 static gboolean dialog_delete_event_cb           (GtkWidget      *dialog,
298                                                   GdkEvent       *event,
299                                                   gpointer        user_data);
300 static void     dialog_response_cb               (GtkDialog      *dialog,
301                                                   gint            response,
302                                                   gpointer        user_data);
303
304
305 /* ******************* *
306  *  GType Declaration  *
307  * ******************* */
308
309 G_DEFINE_TYPE_WITH_CODE (GtkFileChooserButton, gtk_file_chooser_button, GTK_TYPE_HBOX, { \
310     G_IMPLEMENT_INTERFACE (GTK_TYPE_FILE_CHOOSER, gtk_file_chooser_button_file_chooser_iface_init) \
311 })
312
313
314 /* ***************** *
315  *  GType Functions  *
316  * ***************** */
317
318 static void
319 gtk_file_chooser_button_class_init (GtkFileChooserButtonClass * class)
320 {
321   GObjectClass *gobject_class;
322   GtkObjectClass *gtkobject_class;
323   GtkWidgetClass *widget_class;
324
325   gobject_class = G_OBJECT_CLASS (class);
326   gtkobject_class = GTK_OBJECT_CLASS (class);
327   widget_class = GTK_WIDGET_CLASS (class);
328
329   gobject_class->constructor = gtk_file_chooser_button_constructor;
330   gobject_class->set_property = gtk_file_chooser_button_set_property;
331   gobject_class->get_property = gtk_file_chooser_button_get_property;
332   gobject_class->finalize = gtk_file_chooser_button_finalize;
333
334   gtkobject_class->destroy = gtk_file_chooser_button_destroy;
335
336   widget_class->drag_data_received = gtk_file_chooser_button_drag_data_received;
337   widget_class->show_all = gtk_file_chooser_button_show_all;
338   widget_class->hide_all = gtk_file_chooser_button_hide_all;
339   widget_class->show = gtk_file_chooser_button_show;
340   widget_class->hide = gtk_file_chooser_button_hide;
341   widget_class->map = gtk_file_chooser_button_map;
342   widget_class->style_set = gtk_file_chooser_button_style_set;
343   widget_class->screen_changed = gtk_file_chooser_button_screen_changed;
344   widget_class->mnemonic_activate = gtk_file_chooser_button_mnemonic_activate;
345
346   /**
347    * GtkFileChooserButton:dialog:
348    * 
349    * Instance of the #GtkFileChooserDialog associated with the button.
350    *
351    * Since: 2.6
352    */
353   g_object_class_install_property (gobject_class, PROP_DIALOG,
354                                    g_param_spec_object ("dialog",
355                                                         P_("Dialog"),
356                                                         P_("The file chooser dialog to use."),
357                                                         GTK_TYPE_FILE_CHOOSER_DIALOG,
358                                                         (GTK_PARAM_WRITABLE |
359                                                          G_PARAM_CONSTRUCT_ONLY)));
360
361   /**
362    * GtkFileChooserButton:focus-on-click:
363    * 
364    * Whether the #GtkFileChooserButton button grabs focus when it is clicked
365    * with the mouse.
366    *
367    * Since: 2.10
368    */
369   g_object_class_install_property (gobject_class,
370                                    PROP_FOCUS_ON_CLICK,
371                                    g_param_spec_boolean ("focus-on-click",
372                                                          P_("Focus on click"),
373                                                          P_("Whether the button grabs focus when it is clicked with the mouse"),
374                                                          TRUE,
375                                                          GTK_PARAM_READWRITE));
376   
377   /**
378    * GtkFileChooserButton:title:
379    * 
380    * Title to put on the #GtkFileChooserDialog associated with the button.
381    *
382    * Since: 2.6
383    */
384   g_object_class_install_property (gobject_class, PROP_TITLE,
385                                    g_param_spec_string ("title",
386                                                         P_("Title"),
387                                                         P_("The title of the file chooser dialog."),
388                                                         _(DEFAULT_TITLE),
389                                                         GTK_PARAM_READWRITE));
390
391   /**
392    * GtkFileChooserButton:width-chars:
393    * 
394    * The width of the entry and label inside the button, in characters.
395    *
396    * Since: 2.6
397    */
398   g_object_class_install_property (gobject_class, PROP_WIDTH_CHARS,
399                                    g_param_spec_int ("width-chars",
400                                                      P_("Width In Characters"),
401                                                      P_("The desired width of the button widget, in characters."),
402                                                      -1, G_MAXINT, -1,
403                                                      GTK_PARAM_READWRITE));
404
405   _gtk_file_chooser_install_properties (gobject_class);
406
407   g_type_class_add_private (class, sizeof (GtkFileChooserButtonPrivate));
408 }
409
410 static void
411 gtk_file_chooser_button_init (GtkFileChooserButton *button)
412 {
413   GtkFileChooserButtonPrivate *priv;
414   GtkWidget *box, *image, *sep;
415   GtkTargetList *target_list;
416
417   priv = button->priv = GTK_FILE_CHOOSER_BUTTON_GET_PRIVATE (button);
418
419   priv->icon_size = FALLBACK_ICON_SIZE;
420   priv->focus_on_click = TRUE;
421
422   gtk_widget_push_composite_child ();
423
424   /* Button */
425   priv->button = gtk_button_new ();
426   g_signal_connect (priv->button, "clicked", G_CALLBACK (button_clicked_cb),
427                     button);
428   gtk_container_add (GTK_CONTAINER (button), priv->button);
429   gtk_widget_show (priv->button);
430
431   box = gtk_hbox_new (FALSE, 4);
432   gtk_container_add (GTK_CONTAINER (priv->button), box);
433   gtk_widget_show (box);
434
435   priv->image = gtk_image_new ();
436   gtk_box_pack_start (GTK_BOX (box), priv->image, FALSE, FALSE, 0);
437   gtk_widget_show (priv->image);
438
439   priv->label = gtk_label_new (_(FALLBACK_DISPLAY_NAME));
440   gtk_label_set_ellipsize (GTK_LABEL (priv->label), PANGO_ELLIPSIZE_END);
441   gtk_misc_set_alignment (GTK_MISC (priv->label), 0.0, 0.5);
442   gtk_container_add (GTK_CONTAINER (box), priv->label);
443   gtk_widget_show (priv->label);
444
445   sep = gtk_vseparator_new ();
446   gtk_box_pack_start (GTK_BOX (box), sep, FALSE, FALSE, 0);
447   gtk_widget_show (sep);
448
449   image = gtk_image_new_from_stock (GTK_STOCK_OPEN,
450                                     GTK_ICON_SIZE_MENU);
451   gtk_box_pack_start (GTK_BOX (box), image, FALSE, FALSE, 0);
452   gtk_widget_show (image);
453
454   /* Combo Box */
455   /* Keep in sync with columns enum, line 88 */
456   priv->model =
457     GTK_TREE_MODEL (gtk_list_store_new (NUM_COLUMNS,
458                                         GDK_TYPE_PIXBUF, /* Icon */
459                                         G_TYPE_STRING,   /* Display Name */
460                                         G_TYPE_CHAR,     /* Row Type */
461                                         G_TYPE_POINTER   /* Volume || Path */,
462                                         G_TYPE_BOOLEAN   /* Is Folder? */,
463                                         G_TYPE_POINTER   /* handle */));
464
465   priv->combo_box = gtk_combo_box_new ();
466   priv->combo_box_changed_id =
467     g_signal_connect (priv->combo_box, "changed",
468                       G_CALLBACK (combo_box_changed_cb), button);
469   gtk_container_add (GTK_CONTAINER (button), priv->combo_box);
470
471   priv->icon_cell = gtk_cell_renderer_pixbuf_new ();
472   gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (priv->combo_box),
473                               priv->icon_cell, FALSE);
474   gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (priv->combo_box),
475                                  priv->icon_cell, "pixbuf", ICON_COLUMN);
476
477   priv->name_cell = gtk_cell_renderer_text_new ();
478   gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (priv->combo_box),
479                               priv->name_cell, TRUE);
480   gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (priv->combo_box),
481                                  priv->name_cell, "text", DISPLAY_NAME_COLUMN);
482   gtk_cell_layout_set_cell_data_func (GTK_CELL_LAYOUT (priv->combo_box),
483                                       priv->name_cell, name_cell_data_func,
484                                       NULL, NULL);
485
486   gtk_widget_pop_composite_child ();
487
488   /* DnD */
489   gtk_drag_dest_set (GTK_WIDGET (button),
490                      (GTK_DEST_DEFAULT_ALL),
491                      NULL, 0,
492                      GDK_ACTION_COPY);
493   target_list = gtk_target_list_new (NULL, 0);
494   gtk_target_list_add_uri_targets (target_list, TEXT_URI_LIST);
495   gtk_target_list_add_text_targets (target_list, TEXT_PLAIN);
496   gtk_drag_dest_set_target_list (GTK_WIDGET (button), target_list);
497   gtk_target_list_unref (target_list);
498 }
499
500
501 /* ******************************* *
502  *  GtkFileChooserIface Functions  *
503  * ******************************* */
504 static void
505 gtk_file_chooser_button_file_chooser_iface_init (GtkFileChooserIface *iface)
506 {
507   _gtk_file_chooser_delegate_iface_init (iface);
508
509   iface->add_shortcut_folder = gtk_file_chooser_button_add_shortcut_folder;
510   iface->remove_shortcut_folder = gtk_file_chooser_button_remove_shortcut_folder;
511 }
512
513 static gboolean
514 gtk_file_chooser_button_add_shortcut_folder (GtkFileChooser     *chooser,
515                                              const GtkFilePath  *path,
516                                              GError            **error)
517 {
518   GtkFileChooser *delegate;
519   gboolean retval;
520
521   delegate = g_object_get_qdata (G_OBJECT (chooser),
522                                  GTK_FILE_CHOOSER_DELEGATE_QUARK);
523   retval = _gtk_file_chooser_add_shortcut_folder (delegate, path, error);
524
525   if (retval)
526     {
527       GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (chooser);
528       GtkFileChooserButtonPrivate *priv = button->priv;
529       GtkTreeIter iter;
530       gint pos;
531
532       pos = model_get_type_position (button, ROW_TYPE_SHORTCUT);
533       pos += priv->n_shortcuts;
534
535       gtk_list_store_insert (GTK_LIST_STORE (priv->model), &iter, pos);
536       gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter,
537                           ICON_COLUMN, NULL,
538                           DISPLAY_NAME_COLUMN, _(FALLBACK_DISPLAY_NAME),
539                           TYPE_COLUMN, ROW_TYPE_SHORTCUT,
540                           DATA_COLUMN, gtk_file_path_copy (path),
541                           IS_FOLDER_COLUMN, FALSE,
542                           -1);
543       set_info_for_path_at_iter (button, path, &iter);
544       priv->n_shortcuts++;
545
546       gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (priv->filter_model));
547     }
548
549   return retval;
550 }
551
552 static gboolean
553 gtk_file_chooser_button_remove_shortcut_folder (GtkFileChooser     *chooser,
554                                                 const GtkFilePath  *path,
555                                                 GError            **error)
556 {
557   GtkFileChooser *delegate;
558   gboolean retval;
559
560   delegate = g_object_get_qdata (G_OBJECT (chooser),
561                                  GTK_FILE_CHOOSER_DELEGATE_QUARK);
562
563   retval = _gtk_file_chooser_remove_shortcut_folder (delegate, path, error);
564
565   if (retval)
566     {
567       GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (chooser);
568       GtkFileChooserButtonPrivate *priv = button->priv;
569       GtkTreeIter iter;
570       gint pos;
571       gchar type;
572
573       pos = model_get_type_position (button, ROW_TYPE_SHORTCUT);
574       gtk_tree_model_iter_nth_child (priv->model, &iter, NULL, pos);
575
576       do
577         {
578           gpointer data;
579
580           gtk_tree_model_get (priv->model, &iter,
581                               TYPE_COLUMN, &type,
582                               DATA_COLUMN, &data,
583                               -1);
584
585           if (type == ROW_TYPE_SHORTCUT &&
586               data &&
587               gtk_file_path_compare (data, path) == 0)
588             {
589               model_free_row_data (GTK_FILE_CHOOSER_BUTTON (chooser), &iter);
590               gtk_list_store_remove (GTK_LIST_STORE (priv->model), &iter);
591               priv->n_shortcuts--;
592               gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (priv->filter_model));
593               update_combo_box (GTK_FILE_CHOOSER_BUTTON (chooser));
594               break;
595             }
596         }
597       while (type == ROW_TYPE_SHORTCUT &&
598              gtk_tree_model_iter_next (priv->model, &iter));
599     }
600
601   return retval;
602 }
603
604
605 /* ******************* *
606  *  GObject Functions  *
607  * ******************* */
608
609 static GObject *
610 gtk_file_chooser_button_constructor (GType                  type,
611                                      guint                  n_params,
612                                      GObjectConstructParam *params)
613 {
614   GObject *object;
615   GtkFileChooserButton *button;
616   GtkFileChooserButtonPrivate *priv;
617   GSList *list;
618   char *current_folder;
619
620   object = (*G_OBJECT_CLASS (gtk_file_chooser_button_parent_class)->constructor) (type,
621                                                                                   n_params,
622                                                                                   params);
623   button = GTK_FILE_CHOOSER_BUTTON (object);
624   priv = button->priv;
625
626   if (!priv->dialog)
627     {
628       if (priv->backend)
629         priv->dialog = gtk_file_chooser_dialog_new_with_backend (NULL, NULL,
630                                                                  GTK_FILE_CHOOSER_ACTION_OPEN,
631                                                                  priv->backend,
632                                                                  GTK_STOCK_CANCEL,
633                                                                  GTK_RESPONSE_CANCEL,
634                                                                  GTK_STOCK_OPEN,
635                                                                  GTK_RESPONSE_ACCEPT,
636                                                                  NULL);
637       else
638         priv->dialog = gtk_file_chooser_dialog_new (NULL, NULL,
639                                                     GTK_FILE_CHOOSER_ACTION_OPEN,
640                                                     GTK_STOCK_CANCEL,
641                                                     GTK_RESPONSE_CANCEL,
642                                                     GTK_STOCK_OPEN,
643                                                     GTK_RESPONSE_ACCEPT,
644                                                     NULL);
645
646       gtk_dialog_set_default_response (GTK_DIALOG (priv->dialog),
647                                        GTK_RESPONSE_ACCEPT);
648       gtk_dialog_set_alternative_button_order (GTK_DIALOG (priv->dialog),
649                                                GTK_RESPONSE_ACCEPT,
650                                                GTK_RESPONSE_CANCEL,
651                                                -1);
652     }
653
654   /* Set the default title if necessary. We must wait until the dialog has been created to do this. */
655   if (!priv->has_title)
656     gtk_file_chooser_button_set_title (button, _(DEFAULT_TITLE));
657
658   current_folder = gtk_file_chooser_get_current_folder_uri (GTK_FILE_CHOOSER (priv->dialog));
659   if (current_folder != NULL)
660     {
661       priv->folder_has_been_set = TRUE;
662       g_free (current_folder);
663     }
664
665   g_free (priv->backend);
666   priv->backend = NULL;
667
668   g_signal_connect (priv->dialog, "delete_event",
669                     G_CALLBACK (dialog_delete_event_cb), object);
670   g_signal_connect (priv->dialog, "response",
671                     G_CALLBACK (dialog_response_cb), object);
672
673   /* This is used, instead of the standard delegate, to ensure that signals are only
674    * delegated when the OK button is pressed. */
675   g_object_set_qdata (object, GTK_FILE_CHOOSER_DELEGATE_QUARK, priv->dialog);
676   priv->dialog_folder_changed_id =
677     g_signal_connect (priv->dialog, "current-folder-changed",
678                       G_CALLBACK (dialog_current_folder_changed_cb), object);
679   priv->dialog_file_activated_id =
680     g_signal_connect (priv->dialog, "file-activated",
681                       G_CALLBACK (dialog_file_activated_cb), object);
682   priv->dialog_selection_changed_id =
683     g_signal_connect (priv->dialog, "selection-changed",
684                       G_CALLBACK (dialog_selection_changed_cb), object);
685   g_signal_connect (priv->dialog, "update-preview",
686                     G_CALLBACK (dialog_update_preview_cb), object);
687   g_signal_connect (priv->dialog, "notify",
688                     G_CALLBACK (dialog_notify_cb), object);
689   g_object_add_weak_pointer (G_OBJECT (priv->dialog),
690                              (gpointer *) (&priv->dialog));
691
692   priv->fs =
693     g_object_ref (_gtk_file_chooser_get_file_system (GTK_FILE_CHOOSER (priv->dialog)));
694
695   model_add_special (button);
696
697   list = gtk_file_system_list_volumes (priv->fs);
698   model_add_volumes (button, list);
699   g_slist_free (list);
700
701   list = gtk_file_system_list_bookmarks (priv->fs);
702   model_add_bookmarks (button, list);
703   gtk_file_paths_free (list);
704
705   model_add_other (button);
706
707   priv->filter_model = gtk_tree_model_filter_new (priv->model, NULL);
708   gtk_tree_model_filter_set_visible_func (GTK_TREE_MODEL_FILTER (priv->filter_model),
709                                           filter_model_visible_func,
710                                           object, NULL);
711
712   gtk_combo_box_set_model (GTK_COMBO_BOX (priv->combo_box), priv->filter_model);
713   gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (priv->combo_box),
714                                         combo_box_row_separator_func,
715                                         NULL, NULL);
716
717   /* set up the action for a user-provided dialog, this also updates
718    * the label, image and combobox
719    */
720   g_object_set (object, 
721                 "action", gtk_file_chooser_get_action (GTK_FILE_CHOOSER (priv->dialog)),
722                 NULL);
723
724   priv->fs_volumes_changed_id =
725     g_signal_connect (priv->fs, "volumes-changed",
726                       G_CALLBACK (fs_volumes_changed_cb), object);
727   priv->fs_bookmarks_changed_id =
728     g_signal_connect (priv->fs, "bookmarks-changed",
729                       G_CALLBACK (fs_bookmarks_changed_cb), object);
730
731   return object;
732 }
733
734 static void
735 gtk_file_chooser_button_set_property (GObject      *object,
736                                       guint         param_id,
737                                       const GValue *value,
738                                       GParamSpec   *pspec)
739 {
740   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (object);
741   GtkFileChooserButtonPrivate *priv = button->priv;
742
743   switch (param_id)
744     {
745     case PROP_DIALOG:
746       /* Construct-only */
747       priv->dialog = g_value_get_object (value);
748       break;
749     case PROP_FOCUS_ON_CLICK:
750       gtk_file_chooser_button_set_focus_on_click (button, g_value_get_boolean (value));
751       break;
752     case PROP_WIDTH_CHARS:
753       gtk_file_chooser_button_set_width_chars (GTK_FILE_CHOOSER_BUTTON (object),
754                                                g_value_get_int (value));
755       break;
756     case GTK_FILE_CHOOSER_PROP_ACTION:
757       switch (g_value_get_enum (value))
758         {
759         case GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER:
760         case GTK_FILE_CHOOSER_ACTION_SAVE:
761           {
762             GEnumClass *eclass;
763             GEnumValue *eval;
764
765             eclass = g_type_class_peek (GTK_TYPE_FILE_CHOOSER_ACTION);
766             eval = g_enum_get_value (eclass, g_value_get_enum (value));
767             g_warning ("%s: Choosers of type `%s' do not support `%s'.",
768                        G_STRFUNC, G_OBJECT_TYPE_NAME (object), eval->value_name);
769
770             g_value_set_enum ((GValue *) value, GTK_FILE_CHOOSER_ACTION_OPEN);
771           }
772           break;
773         }
774
775       g_object_set_property (G_OBJECT (priv->dialog), pspec->name, value);
776       update_label_and_image (GTK_FILE_CHOOSER_BUTTON (object));
777       update_combo_box (GTK_FILE_CHOOSER_BUTTON (object));
778
779       switch (g_value_get_enum (value))
780         {
781         case GTK_FILE_CHOOSER_ACTION_OPEN:
782           gtk_widget_hide (priv->combo_box);
783           gtk_widget_show (priv->button);
784           break;
785         case GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
786           gtk_widget_hide (priv->button);
787           gtk_widget_show (priv->combo_box);
788           break;
789         default:
790           g_assert_not_reached ();
791           break;
792         }
793       break;
794
795     case PROP_TITLE:
796       /* Remember that a title has been set, so we do no try to set it to the default in _init(). */
797       priv->has_title = TRUE;
798       /* Intentionally fall through instead of breaking here, to actually set the property. */
799     case GTK_FILE_CHOOSER_PROP_FILTER:
800     case GTK_FILE_CHOOSER_PROP_LOCAL_ONLY:
801     case GTK_FILE_CHOOSER_PROP_PREVIEW_WIDGET:
802     case GTK_FILE_CHOOSER_PROP_PREVIEW_WIDGET_ACTIVE:
803     case GTK_FILE_CHOOSER_PROP_USE_PREVIEW_LABEL:
804     case GTK_FILE_CHOOSER_PROP_EXTRA_WIDGET:
805     case GTK_FILE_CHOOSER_PROP_SHOW_HIDDEN:
806     case GTK_FILE_CHOOSER_PROP_DO_OVERWRITE_CONFIRMATION:
807       g_object_set_property (G_OBJECT (priv->dialog), pspec->name, value);
808       break;
809
810     case GTK_FILE_CHOOSER_PROP_FILE_SYSTEM_BACKEND:
811       /* Construct-only */
812       priv->backend = g_value_dup_string (value);
813       break;
814
815     case GTK_FILE_CHOOSER_PROP_SELECT_MULTIPLE:
816       g_warning ("%s: Choosers of type `%s` do not support selecting multiple files.",
817                  G_STRFUNC, G_OBJECT_TYPE_NAME (object));
818       break;
819     default:
820       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
821       break;
822     }
823 }
824
825 static void
826 gtk_file_chooser_button_get_property (GObject    *object,
827                                       guint       param_id,
828                                       GValue     *value,
829                                       GParamSpec *pspec)
830 {
831   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (object);
832   GtkFileChooserButtonPrivate *priv = button->priv;
833
834   switch (param_id)
835     {
836     case PROP_WIDTH_CHARS:
837       g_value_set_int (value,
838                        gtk_label_get_width_chars (GTK_LABEL (priv->label)));
839       break;
840     case PROP_FOCUS_ON_CLICK:
841       g_value_set_boolean (value,
842                            gtk_file_chooser_button_get_focus_on_click (button));
843       break;
844
845     case PROP_TITLE:
846     case GTK_FILE_CHOOSER_PROP_ACTION:
847     case GTK_FILE_CHOOSER_PROP_FILE_SYSTEM_BACKEND:
848     case GTK_FILE_CHOOSER_PROP_FILTER:
849     case GTK_FILE_CHOOSER_PROP_LOCAL_ONLY:
850     case GTK_FILE_CHOOSER_PROP_PREVIEW_WIDGET:
851     case GTK_FILE_CHOOSER_PROP_PREVIEW_WIDGET_ACTIVE:
852     case GTK_FILE_CHOOSER_PROP_USE_PREVIEW_LABEL:
853     case GTK_FILE_CHOOSER_PROP_EXTRA_WIDGET:
854     case GTK_FILE_CHOOSER_PROP_SELECT_MULTIPLE:
855     case GTK_FILE_CHOOSER_PROP_SHOW_HIDDEN:
856     case GTK_FILE_CHOOSER_PROP_DO_OVERWRITE_CONFIRMATION:
857       g_object_get_property (G_OBJECT (priv->dialog), pspec->name, value);
858       break;
859
860     default:
861       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
862       break;
863     }
864 }
865
866 static void
867 gtk_file_chooser_button_finalize (GObject *object)
868 {
869   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (object);
870   GtkFileChooserButtonPrivate *priv = button->priv;
871
872   if (priv->old_path)
873     gtk_file_path_free (priv->old_path);
874
875   if (G_OBJECT_CLASS (gtk_file_chooser_button_parent_class)->finalize != NULL)
876     (*G_OBJECT_CLASS (gtk_file_chooser_button_parent_class)->finalize) (object);
877 }
878
879 /* ********************* *
880  *  GtkObject Functions  *
881  * ********************* */
882
883 static void
884 gtk_file_chooser_button_destroy (GtkObject *object)
885 {
886   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (object);
887   GtkFileChooserButtonPrivate *priv = button->priv;
888   GtkTreeIter iter;
889   GSList *l;
890
891   if (priv->dialog != NULL)
892     {
893       gtk_widget_destroy (priv->dialog);
894       priv->dialog = NULL;
895     }
896
897   if (priv->model && gtk_tree_model_get_iter_first (priv->model, &iter)) do
898     {
899       model_free_row_data (button, &iter);
900     }
901   while (gtk_tree_model_iter_next (priv->model, &iter));
902
903   if (priv->dnd_select_folder_handle)
904     {
905       gtk_file_system_cancel_operation (priv->dnd_select_folder_handle);
906       priv->dnd_select_folder_handle = NULL;
907     }
908
909   if (priv->update_button_handle)
910     {
911       gtk_file_system_cancel_operation (priv->update_button_handle);
912       priv->update_button_handle = NULL;
913     }
914
915   if (priv->change_icon_theme_handles)
916     {
917       for (l = priv->change_icon_theme_handles; l; l = l->next)
918         {
919           GtkFileSystemHandle *handle = GTK_FILE_SYSTEM_HANDLE (l->data);
920           gtk_file_system_cancel_operation (handle);
921         }
922       g_slist_free (priv->change_icon_theme_handles);
923       priv->change_icon_theme_handles = NULL;
924     }
925
926   if (priv->model)
927     {
928       g_object_unref (priv->model);
929       priv->model = NULL;
930     }
931
932   if (priv->filter_model)
933     {
934       g_object_unref (priv->filter_model);
935       priv->filter_model = NULL;
936     }
937
938   if (priv->fs)
939     {
940       g_signal_handler_disconnect (priv->fs, priv->fs_volumes_changed_id);
941       g_signal_handler_disconnect (priv->fs, priv->fs_bookmarks_changed_id);
942       g_object_unref (priv->fs);
943       priv->fs = NULL;
944     }
945
946   if (GTK_OBJECT_CLASS (gtk_file_chooser_button_parent_class)->destroy != NULL)
947     (*GTK_OBJECT_CLASS (gtk_file_chooser_button_parent_class)->destroy) (object);
948 }
949
950
951 /* ********************* *
952  *  GtkWidget Functions  *
953  * ********************* */
954
955 struct DndSelectFolderData
956 {
957   GtkFileChooserButton *button;
958   GtkFileChooserAction action;
959   GtkFilePath *path;
960   gchar **uris;
961   guint i;
962   gboolean selected;
963 };
964
965 static void
966 dnd_select_folder_get_info_cb (GtkFileSystemHandle *handle,
967                                const GtkFileInfo   *info,
968                                const GError        *error,
969                                gpointer             user_data)
970 {
971   gboolean cancelled = handle->cancelled;
972   struct DndSelectFolderData *data = user_data;
973
974   if (handle != data->button->priv->dnd_select_folder_handle)
975     {
976       g_object_unref (data->button);
977       gtk_file_path_free (data->path);
978       g_strfreev (data->uris);
979       g_free (data);
980
981       g_object_unref (handle);
982       return;
983     }
984
985   data->button->priv->dnd_select_folder_handle = NULL;
986
987   if (!cancelled && !error && info != NULL)
988     {
989       data->selected = 
990         (((data->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER &&
991            gtk_file_info_get_is_folder (info)) ||
992           (data->action == GTK_FILE_CHOOSER_ACTION_OPEN &&
993            !gtk_file_info_get_is_folder (info))) &&
994          _gtk_file_chooser_select_path (GTK_FILE_CHOOSER (data->button->priv->dialog),
995                                         data->path, NULL));
996     }
997   else
998     data->selected = FALSE;
999
1000   if (data->selected || data->uris[++data->i] == NULL)
1001     {
1002       g_object_unref (data->button);
1003       gtk_file_path_free (data->path);
1004       g_strfreev (data->uris);
1005       g_free (data);
1006
1007       g_object_unref (handle);
1008       return;
1009     }
1010
1011   if (data->path)
1012     gtk_file_path_free (data->path);
1013
1014   data->path = gtk_file_system_uri_to_path (handle->file_system,
1015                                             data->uris[data->i]);
1016
1017   data->button->priv->dnd_select_folder_handle =
1018     gtk_file_system_get_info (handle->file_system, data->path,
1019                               GTK_FILE_INFO_IS_FOLDER,
1020                               dnd_select_folder_get_info_cb, user_data);
1021
1022   g_object_unref (handle);
1023 }
1024
1025 static void
1026 gtk_file_chooser_button_drag_data_received (GtkWidget        *widget,
1027                                             GdkDragContext   *context,
1028                                             gint              x,
1029                                             gint              y,
1030                                             GtkSelectionData *data,
1031                                             guint             info,
1032                                             guint             drag_time)
1033 {
1034   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (widget);
1035   GtkFileChooserButtonPrivate *priv = button->priv;
1036   GtkFilePath *path;
1037   gchar *text;
1038
1039   if (GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->drag_data_received != NULL)
1040     (*GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->drag_data_received) (widget,
1041                                                                                     context,
1042                                                                                     x, y,
1043                                                                                     data, info,
1044                                                                                     drag_time);
1045
1046   if (widget == NULL || context == NULL || data == NULL || data->length < 0)
1047     return;
1048
1049   switch (info)
1050     {
1051     case TEXT_URI_LIST:
1052       {
1053         gchar **uris;
1054         struct DndSelectFolderData *info;
1055
1056         uris = gtk_selection_data_get_uris (data);
1057         
1058         if (uris == NULL)
1059           break;
1060
1061         info = g_new0 (struct DndSelectFolderData, 1);
1062         info->button = g_object_ref (button);
1063         info->i = 0;
1064         info->uris = uris;
1065         info->selected = FALSE;
1066         g_object_get (priv->dialog, "action", &info->action, NULL);
1067
1068         info->path = gtk_file_system_uri_to_path (priv->fs,
1069                                                   info->uris[info->i]);
1070
1071         if (priv->dnd_select_folder_handle)
1072           gtk_file_system_cancel_operation (priv->dnd_select_folder_handle);
1073
1074         priv->dnd_select_folder_handle =
1075           gtk_file_system_get_info (priv->fs, info->path,
1076                                     GTK_FILE_INFO_IS_FOLDER,
1077                                     dnd_select_folder_get_info_cb, info);
1078       }
1079       break;
1080
1081     case TEXT_PLAIN:
1082       text = (char*) gtk_selection_data_get_text (data);
1083       path = gtk_file_path_new_steal (text);
1084       _gtk_file_chooser_select_path (GTK_FILE_CHOOSER (priv->dialog), path,
1085                                      NULL);
1086       gtk_file_path_free (path);
1087       break;
1088
1089     default:
1090       break;
1091     }
1092
1093   gtk_drag_finish (context, TRUE, FALSE, drag_time);
1094 }
1095
1096 static void
1097 gtk_file_chooser_button_show_all (GtkWidget *widget)
1098 {
1099   gtk_widget_show (widget);
1100 }
1101
1102 static void
1103 gtk_file_chooser_button_hide_all (GtkWidget *widget)
1104 {
1105   gtk_widget_hide (widget);
1106 }
1107
1108 static void
1109 gtk_file_chooser_button_show (GtkWidget *widget)
1110 {
1111   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (widget);
1112   GtkFileChooserButtonPrivate *priv = button->priv;
1113
1114   if (GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->show)
1115     (*GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->show) (widget);
1116
1117   if (priv->active)
1118     open_dialog (GTK_FILE_CHOOSER_BUTTON (widget));
1119 }
1120
1121 static void
1122 gtk_file_chooser_button_hide (GtkWidget *widget)
1123 {
1124   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (widget);
1125   GtkFileChooserButtonPrivate *priv = button->priv;
1126
1127   gtk_widget_hide (priv->dialog);
1128
1129   if (GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->hide)
1130     (*GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->hide) (widget);
1131 }
1132
1133 static void
1134 gtk_file_chooser_button_map (GtkWidget *widget)
1135 {
1136   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (widget);
1137   GtkFileChooserButtonPrivate *priv = button->priv;
1138
1139   if (!priv->folder_has_been_set)
1140     {
1141       char *current_working_dir;
1142
1143       current_working_dir = g_get_current_dir ();
1144       gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (widget), current_working_dir);
1145       g_free (current_working_dir);
1146
1147       priv->folder_has_been_set = TRUE;
1148     }
1149
1150   if (GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->map)
1151     (*GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->map) (widget);
1152 }
1153
1154 static gboolean
1155 gtk_file_chooser_button_mnemonic_activate (GtkWidget *widget,
1156                                            gboolean   group_cycling)
1157 {
1158   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (widget);
1159   GtkFileChooserButtonPrivate *priv = button->priv;
1160
1161   switch (gtk_file_chooser_get_action (GTK_FILE_CHOOSER (priv->dialog)))
1162     {
1163     case GTK_FILE_CHOOSER_ACTION_OPEN:
1164       gtk_widget_grab_focus (priv->button);
1165       break;
1166     case GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
1167       return gtk_widget_mnemonic_activate (priv->combo_box, group_cycling);
1168       break;
1169     default:
1170       g_assert_not_reached ();
1171       break;
1172     }
1173
1174   return TRUE;
1175 }
1176
1177 /* Changes the icons wherever it is needed */
1178 struct ChangeIconThemeData
1179 {
1180   GtkFileChooserButton *button;
1181   GtkTreeRowReference *row_ref;
1182 };
1183
1184 static void
1185 change_icon_theme_get_info_cb (GtkFileSystemHandle *handle,
1186                                const GtkFileInfo   *info,
1187                                const GError        *error,
1188                                gpointer             user_data)
1189 {
1190   gboolean cancelled = handle->cancelled;
1191   GdkPixbuf *pixbuf;
1192   struct ChangeIconThemeData *data = user_data;
1193
1194   if (!g_slist_find (data->button->priv->change_icon_theme_handles, handle))
1195     goto out;
1196
1197   data->button->priv->change_icon_theme_handles =
1198     g_slist_remove (data->button->priv->change_icon_theme_handles, handle);
1199
1200   if (cancelled || error)
1201     goto out;
1202
1203   pixbuf = gtk_file_info_render_icon (info, GTK_WIDGET (data->button),
1204                                       data->button->priv->icon_size, NULL);
1205
1206   if (pixbuf)
1207     {
1208       gint width = 0;
1209       GtkTreeIter iter;
1210       GtkTreePath *path;
1211
1212       width = MAX (width, gdk_pixbuf_get_width (pixbuf));
1213
1214       path = gtk_tree_row_reference_get_path (data->row_ref);
1215       gtk_tree_model_get_iter (data->button->priv->model, &iter, path);
1216       gtk_tree_path_free (path);
1217
1218       gtk_list_store_set (GTK_LIST_STORE (data->button->priv->model), &iter,
1219                           ICON_COLUMN, pixbuf,
1220                           -1);
1221       g_object_unref (pixbuf);
1222
1223       g_object_set (data->button->priv->icon_cell,
1224                     "width", width,
1225                     NULL);
1226     }
1227
1228 out:
1229   g_object_unref (data->button);
1230   gtk_tree_row_reference_free (data->row_ref);
1231   g_free (data);
1232
1233   g_object_unref (handle);
1234 }
1235
1236 static void
1237 change_icon_theme (GtkFileChooserButton *button)
1238 {
1239   GtkFileChooserButtonPrivate *priv = button->priv;
1240   GtkSettings *settings;
1241   GtkIconTheme *theme;
1242   GtkTreeIter iter;
1243   GSList *l;
1244   gint width = 0, height = 0;
1245
1246   for (l = button->priv->change_icon_theme_handles; l; l = l->next)
1247     {
1248       GtkFileSystemHandle *handle = GTK_FILE_SYSTEM_HANDLE (l->data);
1249       gtk_file_system_cancel_operation (handle);
1250     }
1251   g_slist_free (button->priv->change_icon_theme_handles);
1252   button->priv->change_icon_theme_handles = NULL;
1253
1254   settings = gtk_settings_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (button)));
1255
1256   if (gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
1257                                          &width, &height))
1258     priv->icon_size = MAX (width, height);
1259   else
1260     priv->icon_size = FALLBACK_ICON_SIZE;
1261
1262   update_label_and_image (button);
1263
1264   gtk_tree_model_get_iter_first (priv->model, &iter);
1265
1266   theme = get_icon_theme (GTK_WIDGET (button));
1267
1268   do
1269     {
1270       GdkPixbuf *pixbuf;
1271       gchar type;
1272       gpointer data;
1273
1274       type = ROW_TYPE_INVALID;
1275       gtk_tree_model_get (priv->model, &iter,
1276                           TYPE_COLUMN, &type,
1277                           DATA_COLUMN, &data,
1278                           -1);
1279
1280       switch (type)
1281         {
1282         case ROW_TYPE_SPECIAL:
1283         case ROW_TYPE_SHORTCUT:
1284         case ROW_TYPE_BOOKMARK:
1285         case ROW_TYPE_CURRENT_FOLDER:
1286           if (data)
1287             {
1288               GtkTreePath *path;
1289               GtkFileSystemHandle *handle;
1290               struct ChangeIconThemeData *info;
1291
1292               info = g_new0 (struct ChangeIconThemeData, 1);
1293               info->button = g_object_ref (button);
1294               path = gtk_tree_model_get_path (priv->model, &iter);
1295               info->row_ref = gtk_tree_row_reference_new (priv->model, path);
1296               gtk_tree_path_free (path);
1297
1298               handle =
1299                 gtk_file_system_get_info (priv->fs, data, GTK_FILE_INFO_ICON,
1300                                           change_icon_theme_get_info_cb,
1301                                           info);
1302               button->priv->change_icon_theme_handles =
1303                 g_slist_append (button->priv->change_icon_theme_handles, handle);
1304               pixbuf = NULL;
1305             }
1306           else
1307             pixbuf = gtk_icon_theme_load_icon (theme, FALLBACK_ICON_NAME,
1308                                                priv->icon_size, 0, NULL);
1309           break;
1310         case ROW_TYPE_VOLUME:
1311           if (data)
1312             pixbuf = gtk_file_system_volume_render_icon (priv->fs, data,
1313                                                          GTK_WIDGET (button),
1314                                                          priv->icon_size,
1315                                                          NULL);
1316           else
1317             pixbuf = gtk_icon_theme_load_icon (theme, FALLBACK_ICON_NAME,
1318                                                priv->icon_size, 0, NULL);
1319           break;
1320         default:
1321           continue;
1322           break;
1323         }
1324
1325       if (pixbuf)
1326         width = MAX (width, gdk_pixbuf_get_width (pixbuf));
1327
1328       gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter,
1329                           ICON_COLUMN, pixbuf,
1330                           -1);
1331
1332       if (pixbuf)
1333         g_object_unref (pixbuf);
1334     }
1335   while (gtk_tree_model_iter_next (priv->model, &iter));
1336
1337   g_object_set (button->priv->icon_cell,
1338                 "width", width,
1339                 NULL);
1340 }
1341
1342 static void
1343 gtk_file_chooser_button_style_set (GtkWidget *widget,
1344                                    GtkStyle  *old_style)
1345 {
1346   if (GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->style_set)
1347     (*GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->style_set) (widget,
1348                                                                            old_style);
1349
1350   if (gtk_widget_has_screen (widget))
1351     change_icon_theme (GTK_FILE_CHOOSER_BUTTON (widget));
1352 }
1353
1354 static void
1355 gtk_file_chooser_button_screen_changed (GtkWidget *widget,
1356                                         GdkScreen *old_screen)
1357 {
1358   if (GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->screen_changed)
1359     (*GTK_WIDGET_CLASS (gtk_file_chooser_button_parent_class)->screen_changed) (widget,
1360                                                                                 old_screen);
1361
1362   change_icon_theme (GTK_FILE_CHOOSER_BUTTON (widget)); 
1363 }
1364
1365
1366 /* ******************* *
1367  *  Utility Functions  *
1368  * ******************* */
1369
1370 /* General */
1371 static GtkIconTheme *
1372 get_icon_theme (GtkWidget *widget)
1373 {
1374   if (gtk_widget_has_screen (widget))
1375     return gtk_icon_theme_get_for_screen (gtk_widget_get_screen (widget));
1376
1377   return gtk_icon_theme_get_default ();
1378 }
1379
1380
1381 struct SetDisplayNameData
1382 {
1383   GtkFileChooserButton *button;
1384   GtkTreeRowReference *row_ref;
1385 };
1386
1387 static void
1388 set_info_get_info_cb (GtkFileSystemHandle *handle,
1389                       const GtkFileInfo   *info,
1390                       const GError        *error,
1391                       gpointer             callback_data)
1392 {
1393   gboolean cancelled = handle->cancelled;
1394   GdkPixbuf *pixbuf;
1395   GtkTreePath *path;
1396   GtkTreeIter iter;
1397   GtkFileSystemHandle *model_handle;
1398   struct SetDisplayNameData *data = callback_data;
1399
1400   path = gtk_tree_row_reference_get_path (data->row_ref);
1401   if (!path)
1402     /* Handle doesn't exist anymore in the model */
1403     goto out;
1404
1405   gtk_tree_model_get_iter (data->button->priv->model, &iter, path);
1406   gtk_tree_path_free (path);
1407
1408   /* Validate the handle */
1409   gtk_tree_model_get (data->button->priv->model, &iter,
1410                       HANDLE_COLUMN, &model_handle,
1411                       -1);
1412   if (handle != model_handle)
1413     goto out;
1414
1415   gtk_list_store_set (GTK_LIST_STORE (data->button->priv->model), &iter,
1416                       HANDLE_COLUMN, NULL,
1417                       -1);
1418
1419   if (cancelled || error)
1420     /* There was an error, leave the fallback name in there */
1421     goto out;
1422
1423   pixbuf = gtk_file_info_render_icon (info, GTK_WIDGET (data->button),
1424                                       data->button->priv->icon_size, NULL);
1425
1426   gtk_list_store_set (GTK_LIST_STORE (data->button->priv->model), &iter,
1427                       ICON_COLUMN, pixbuf,
1428                       DISPLAY_NAME_COLUMN, gtk_file_info_get_display_name (info),
1429                       IS_FOLDER_COLUMN, gtk_file_info_get_is_folder (info),
1430                       -1);
1431
1432   if (pixbuf)
1433     g_object_unref (pixbuf);
1434
1435 out:
1436   g_object_unref (data->button);
1437   gtk_tree_row_reference_free (data->row_ref);
1438   g_free (data);
1439
1440   g_object_unref (handle);
1441 }
1442
1443 static void
1444 set_info_for_path_at_iter (GtkFileChooserButton *button,
1445                            const GtkFilePath    *path,
1446                            GtkTreeIter          *iter)
1447 {
1448   struct SetDisplayNameData *data;
1449   GtkTreePath *tree_path;
1450   GtkFileSystemHandle *handle;
1451
1452   data = g_new0 (struct SetDisplayNameData, 1);
1453   data->button = g_object_ref (button);
1454
1455   tree_path = gtk_tree_model_get_path (button->priv->model, iter);
1456   data->row_ref = gtk_tree_row_reference_new (button->priv->model, tree_path);
1457   gtk_tree_path_free (tree_path);
1458
1459   handle = gtk_file_system_get_info (button->priv->fs, path,
1460                                      GTK_FILE_INFO_DISPLAY_NAME | GTK_FILE_INFO_IS_FOLDER | GTK_FILE_INFO_ICON,
1461                                      set_info_get_info_cb, data);
1462
1463   gtk_list_store_set (GTK_LIST_STORE (button->priv->model), iter,
1464                       HANDLE_COLUMN, handle,
1465                       -1);
1466 }
1467
1468 /* Shortcuts Model */
1469 static gint
1470 model_get_type_position (GtkFileChooserButton *button,
1471                          RowType               row_type)
1472 {
1473   gint retval = 0;
1474
1475   if (row_type == ROW_TYPE_SPECIAL)
1476     return retval;
1477
1478   retval += button->priv->n_special;
1479
1480   if (row_type == ROW_TYPE_VOLUME)
1481     return retval;
1482
1483   retval += button->priv->n_volumes;
1484
1485   if (row_type == ROW_TYPE_SHORTCUT)
1486     return retval;
1487
1488   retval += button->priv->n_shortcuts;
1489
1490   if (row_type == ROW_TYPE_BOOKMARK_SEPARATOR)
1491     return retval;
1492
1493   retval += button->priv->has_bookmark_separator;
1494
1495   if (row_type == ROW_TYPE_BOOKMARK)
1496     return retval;
1497
1498   retval += button->priv->n_bookmarks;
1499
1500   if (row_type == ROW_TYPE_CURRENT_FOLDER_SEPARATOR)
1501     return retval;
1502
1503   retval += button->priv->has_current_folder_separator;
1504
1505   if (row_type == ROW_TYPE_CURRENT_FOLDER)
1506     return retval;
1507
1508   retval += button->priv->has_current_folder;
1509
1510   if (row_type == ROW_TYPE_OTHER_SEPARATOR)
1511     return retval;
1512
1513   retval += button->priv->has_other_separator;
1514
1515   if (row_type == ROW_TYPE_OTHER)
1516     return retval;
1517
1518   g_assert_not_reached ();
1519   return -1;
1520 }
1521
1522 static void
1523 model_free_row_data (GtkFileChooserButton *button,
1524                      GtkTreeIter          *iter)
1525 {
1526   gchar type;
1527   gpointer data;
1528   GtkFileSystemHandle *handle;
1529
1530   gtk_tree_model_get (button->priv->model, iter,
1531                       TYPE_COLUMN, &type,
1532                       DATA_COLUMN, &data,
1533                       HANDLE_COLUMN, &handle,
1534                       -1);
1535
1536   if (handle)
1537     gtk_file_system_cancel_operation (handle);
1538
1539   switch (type)
1540     {
1541     case ROW_TYPE_SPECIAL:
1542     case ROW_TYPE_SHORTCUT:
1543     case ROW_TYPE_BOOKMARK:
1544     case ROW_TYPE_CURRENT_FOLDER:
1545       gtk_file_path_free (data);
1546       break;
1547     case ROW_TYPE_VOLUME:
1548       gtk_file_system_volume_free (button->priv->fs, data);
1549       break;
1550     default:
1551       break;
1552     }
1553 }
1554
1555 static void
1556 model_add_special_get_info_cb (GtkFileSystemHandle *handle,
1557                                const GtkFileInfo   *info,
1558                                const GError        *error,
1559                                gpointer             user_data)
1560 {
1561   gboolean cancelled = handle->cancelled;
1562   GtkTreeIter iter;
1563   GtkTreePath *path;
1564   GdkPixbuf *pixbuf;
1565   GtkFileSystemHandle *model_handle;
1566   struct ChangeIconThemeData *data = user_data;
1567
1568   path = gtk_tree_row_reference_get_path (data->row_ref);
1569   if (!path)
1570     /* Handle doesn't exist anymore in the model */
1571     goto out;
1572
1573   gtk_tree_model_get_iter (data->button->priv->model, &iter, path);
1574   gtk_tree_path_free (path);
1575
1576   gtk_tree_model_get (data->button->priv->model, &iter,
1577                       HANDLE_COLUMN, &model_handle,
1578                       -1);
1579   if (handle != model_handle)
1580     goto out;
1581
1582   gtk_list_store_set (GTK_LIST_STORE (data->button->priv->model), &iter,
1583                       HANDLE_COLUMN, NULL,
1584                       -1);
1585
1586   if (cancelled || error)
1587     goto out;
1588
1589   pixbuf = gtk_file_info_render_icon (info, GTK_WIDGET (data->button),
1590                                       data->button->priv->icon_size, NULL);
1591
1592   if (pixbuf)
1593     {
1594       gtk_list_store_set (GTK_LIST_STORE (data->button->priv->model), &iter,
1595                           ICON_COLUMN, pixbuf,
1596                           -1);
1597       g_object_unref (pixbuf);
1598     }
1599
1600   gtk_list_store_set (GTK_LIST_STORE (data->button->priv->model), &iter,
1601                       DISPLAY_NAME_COLUMN, gtk_file_info_get_display_name (info),
1602                       -1);
1603
1604 out:
1605   g_object_unref (data->button);
1606   gtk_tree_row_reference_free (data->row_ref);
1607   g_free (data);
1608
1609   g_object_unref (handle);
1610 }
1611
1612 static inline void
1613 model_add_special (GtkFileChooserButton *button)
1614 {
1615   const gchar *homedir;
1616   gchar *desktopdir = NULL;
1617   GtkListStore *store;
1618   GtkTreeIter iter;
1619   GtkFilePath *path;
1620   gint pos;
1621
1622   store = GTK_LIST_STORE (button->priv->model);
1623   pos = model_get_type_position (button, ROW_TYPE_SPECIAL);
1624
1625   homedir = g_get_home_dir ();
1626
1627   if (homedir)
1628     {
1629       GtkTreePath *tree_path;
1630       GtkFileSystemHandle *handle;
1631       struct ChangeIconThemeData *info;
1632
1633       path = gtk_file_system_filename_to_path (button->priv->fs, homedir);
1634       gtk_list_store_insert (store, &iter, pos);
1635       pos++;
1636
1637       info = g_new0 (struct ChangeIconThemeData, 1);
1638       info->button = g_object_ref (button);
1639       tree_path = gtk_tree_model_get_path (GTK_TREE_MODEL (store), &iter);
1640       info->row_ref = gtk_tree_row_reference_new (GTK_TREE_MODEL (store),
1641                                                   tree_path);
1642       gtk_tree_path_free (tree_path);
1643
1644       handle = gtk_file_system_get_info (button->priv->fs, path,
1645                                          GTK_FILE_INFO_DISPLAY_NAME | GTK_FILE_INFO_ICON,
1646                                          model_add_special_get_info_cb, info);
1647
1648       gtk_list_store_set (store, &iter,
1649                           ICON_COLUMN, NULL,
1650                           DISPLAY_NAME_COLUMN, NULL,
1651                           TYPE_COLUMN, ROW_TYPE_SPECIAL,
1652                           DATA_COLUMN, path,
1653                           IS_FOLDER_COLUMN, TRUE,
1654                           HANDLE_COLUMN, handle,
1655                           -1);
1656
1657       button->priv->n_special++;
1658
1659 #ifndef G_OS_WIN32
1660       desktopdir = g_build_filename (homedir, DESKTOP_DISPLAY_NAME, NULL);
1661 #endif
1662     }
1663
1664 #ifdef G_OS_WIN32
1665   desktopdir = _gtk_file_system_win32_get_desktop ();
1666 #endif
1667
1668   if (desktopdir)
1669     {
1670       GtkTreePath *tree_path;
1671       GtkFileSystemHandle *handle;
1672       struct ChangeIconThemeData *info;
1673
1674       path = gtk_file_system_filename_to_path (button->priv->fs, desktopdir);
1675       g_free (desktopdir);
1676       gtk_list_store_insert (store, &iter, pos);
1677       pos++;
1678
1679       info = g_new0 (struct ChangeIconThemeData, 1);
1680       info->button = g_object_ref (button);
1681       tree_path = gtk_tree_model_get_path (GTK_TREE_MODEL (store), &iter);
1682       info->row_ref = gtk_tree_row_reference_new (GTK_TREE_MODEL (store),
1683                                                   tree_path);
1684       gtk_tree_path_free (tree_path);
1685
1686       handle = gtk_file_system_get_info (button->priv->fs, path,
1687                                          GTK_FILE_INFO_ICON,
1688                                          model_add_special_get_info_cb, info);
1689
1690       gtk_list_store_set (store, &iter,
1691                           TYPE_COLUMN, ROW_TYPE_SPECIAL,
1692                           ICON_COLUMN, NULL,
1693                           DISPLAY_NAME_COLUMN, _(DESKTOP_DISPLAY_NAME),
1694                           DATA_COLUMN, path,
1695                           IS_FOLDER_COLUMN, TRUE,
1696                           -1);
1697
1698       button->priv->n_special++;
1699     }
1700 }
1701
1702 static void
1703 model_add_volumes (GtkFileChooserButton *button,
1704                    GSList               *volumes)
1705 {
1706   GtkListStore *store;
1707   gint pos;
1708
1709   if (!volumes)
1710     return;
1711
1712   store = GTK_LIST_STORE (button->priv->model);
1713   pos = model_get_type_position (button, ROW_TYPE_VOLUME);
1714
1715   do
1716     {
1717       GtkTreeIter iter;
1718       GdkPixbuf *pixbuf;
1719       gchar *display_name;
1720
1721       pixbuf = gtk_file_system_volume_render_icon (button->priv->fs,
1722                                                    volumes->data,
1723                                                    GTK_WIDGET (button),
1724                                                    button->priv->icon_size,
1725                                                    NULL);
1726       display_name = gtk_file_system_volume_get_display_name (button->priv->fs,
1727                                                               volumes->data);
1728
1729       gtk_list_store_insert (store, &iter, pos);
1730       gtk_list_store_set (store, &iter,
1731                           ICON_COLUMN, pixbuf,
1732                           DISPLAY_NAME_COLUMN, display_name,
1733                           TYPE_COLUMN, ROW_TYPE_VOLUME,
1734                           DATA_COLUMN, volumes->data,
1735                           IS_FOLDER_COLUMN, TRUE,
1736                           -1);
1737
1738       if (pixbuf)
1739         g_object_unref (pixbuf);
1740       g_free (display_name);
1741
1742       button->priv->n_volumes++;
1743       pos++;
1744       volumes = volumes->next;
1745     }
1746   while (volumes);
1747 }
1748
1749 static void
1750 model_add_bookmarks (GtkFileChooserButton *button,
1751                      GSList               *bookmarks)
1752 {
1753   GtkListStore *store;
1754   GtkTreeIter iter;
1755   gint pos;
1756
1757   if (!bookmarks)
1758     return;
1759
1760   store = GTK_LIST_STORE (button->priv->model);
1761   pos = model_get_type_position (button, ROW_TYPE_BOOKMARK_SEPARATOR);
1762
1763   if (!button->priv->has_bookmark_separator)
1764     {
1765       gtk_list_store_insert (store, &iter, pos);
1766       gtk_list_store_set (store, &iter,
1767                           ICON_COLUMN, NULL,
1768                           DISPLAY_NAME_COLUMN, NULL,
1769                           TYPE_COLUMN, ROW_TYPE_BOOKMARK_SEPARATOR,
1770                           DATA_COLUMN, NULL,
1771                           IS_FOLDER_COLUMN, FALSE,
1772                           -1);
1773       button->priv->has_bookmark_separator = TRUE;
1774     }
1775
1776   do
1777     {
1778       pos++;
1779
1780       gtk_list_store_insert (store, &iter, pos);
1781       gtk_list_store_set (store, &iter,
1782                           ICON_COLUMN, NULL,
1783                           DISPLAY_NAME_COLUMN, _(FALLBACK_DISPLAY_NAME),
1784                           TYPE_COLUMN, ROW_TYPE_BOOKMARK,
1785                           DATA_COLUMN, gtk_file_path_copy (bookmarks->data),
1786                           IS_FOLDER_COLUMN, FALSE,
1787                           -1);
1788       set_info_for_path_at_iter (button, bookmarks->data, &iter);
1789
1790       button->priv->n_bookmarks++;
1791       bookmarks = bookmarks->next;
1792     }
1793   while (bookmarks);
1794 }
1795
1796 static void
1797 model_update_current_folder (GtkFileChooserButton *button,
1798                              const GtkFilePath    *path)
1799 {
1800   GtkListStore *store;
1801   GtkTreeIter iter;
1802   gint pos;
1803
1804   if (!path) 
1805     return;
1806
1807   store = GTK_LIST_STORE (button->priv->model);
1808
1809   if (!button->priv->has_current_folder_separator)
1810     {
1811       pos = model_get_type_position (button, ROW_TYPE_CURRENT_FOLDER_SEPARATOR);
1812       gtk_list_store_insert (store, &iter, pos);
1813       gtk_list_store_set (store, &iter,
1814                           ICON_COLUMN, NULL,
1815                           DISPLAY_NAME_COLUMN, NULL,
1816                           TYPE_COLUMN, ROW_TYPE_CURRENT_FOLDER_SEPARATOR,
1817                           DATA_COLUMN, NULL,
1818                           IS_FOLDER_COLUMN, FALSE,
1819                           -1);
1820       button->priv->has_current_folder_separator = TRUE;
1821     }
1822
1823   pos = model_get_type_position (button, ROW_TYPE_CURRENT_FOLDER);
1824   if (!button->priv->has_current_folder)
1825     {
1826       gtk_list_store_insert (store, &iter, pos);
1827       button->priv->has_current_folder = TRUE;
1828     }
1829   else
1830     {
1831       gtk_tree_model_iter_nth_child (button->priv->model, &iter, NULL, pos);
1832       model_free_row_data (button, &iter);
1833     }
1834
1835   gtk_list_store_set (store, &iter,
1836                       ICON_COLUMN, NULL,
1837                       DISPLAY_NAME_COLUMN, _(FALLBACK_DISPLAY_NAME),
1838                       TYPE_COLUMN, ROW_TYPE_CURRENT_FOLDER,
1839                       DATA_COLUMN, gtk_file_path_copy (path),
1840                       IS_FOLDER_COLUMN, FALSE,
1841                       -1);
1842   set_info_for_path_at_iter (button, path, &iter);
1843 }
1844
1845 static inline void
1846 model_add_other (GtkFileChooserButton *button)
1847 {
1848   GtkListStore *store;
1849   GtkTreeIter iter;
1850   gint pos;
1851   
1852   store = GTK_LIST_STORE (button->priv->model);
1853   pos = model_get_type_position (button, ROW_TYPE_OTHER_SEPARATOR);
1854
1855   gtk_list_store_insert (store, &iter, pos);
1856   gtk_list_store_set (store, &iter,
1857                       ICON_COLUMN, NULL,
1858                       DISPLAY_NAME_COLUMN, NULL,
1859                       TYPE_COLUMN, ROW_TYPE_OTHER_SEPARATOR,
1860                       DATA_COLUMN, NULL,
1861                       IS_FOLDER_COLUMN, FALSE,
1862                       -1);
1863   button->priv->has_other_separator = TRUE;
1864   pos++;
1865
1866   gtk_list_store_insert (store, &iter, pos);
1867   gtk_list_store_set (store, &iter,
1868                       ICON_COLUMN, NULL,
1869                       DISPLAY_NAME_COLUMN, _("Other..."),
1870                       TYPE_COLUMN, ROW_TYPE_OTHER,
1871                       DATA_COLUMN, NULL,
1872                       IS_FOLDER_COLUMN, FALSE,
1873                       -1);
1874 }
1875
1876 static void
1877 model_remove_rows (GtkFileChooserButton *button,
1878                    gint                  pos,
1879                    gint                  n_rows)
1880 {
1881   GtkListStore *store;
1882
1883   if (!n_rows)
1884     return;
1885
1886   store = GTK_LIST_STORE (button->priv->model);
1887
1888   do
1889     {
1890       GtkTreeIter iter;
1891
1892       if (!gtk_tree_model_iter_nth_child (button->priv->model, &iter, NULL, pos))
1893         g_assert_not_reached ();
1894
1895       model_free_row_data (button, &iter);
1896       gtk_list_store_remove (store, &iter);
1897       n_rows--;
1898     }
1899   while (n_rows);
1900 }
1901
1902 /* Filter Model */
1903 static inline gboolean
1904 test_if_path_is_visible (GtkFileSystem     *fs,
1905                          const GtkFilePath *path,
1906                          gboolean           local_only,
1907                          gboolean           is_folder)
1908 {
1909   if (!path)
1910     return FALSE;
1911
1912   if (local_only && !gtk_file_system_path_is_local (fs, path))
1913     return FALSE;
1914
1915   if (!is_folder)
1916     return FALSE;
1917
1918   return TRUE;
1919 }
1920
1921 static gboolean
1922 filter_model_visible_func (GtkTreeModel *model,
1923                            GtkTreeIter  *iter,
1924                            gpointer      user_data)
1925 {
1926   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (user_data);
1927   GtkFileChooserButtonPrivate *priv = button->priv;
1928   gchar type;
1929   gpointer data;
1930   gboolean local_only, retval, is_folder;
1931
1932   type = ROW_TYPE_INVALID;
1933   data = NULL;
1934   local_only = gtk_file_chooser_get_local_only (GTK_FILE_CHOOSER (priv->dialog));
1935
1936   gtk_tree_model_get (model, iter,
1937                       TYPE_COLUMN, &type,
1938                       DATA_COLUMN, &data,
1939                       IS_FOLDER_COLUMN, &is_folder,
1940                       -1);
1941
1942   switch (type)
1943     {
1944     case ROW_TYPE_CURRENT_FOLDER:
1945       retval = TRUE;
1946       break;
1947     case ROW_TYPE_SPECIAL:
1948     case ROW_TYPE_SHORTCUT:
1949     case ROW_TYPE_BOOKMARK:
1950       retval = test_if_path_is_visible (priv->fs, data, local_only, is_folder);
1951       break;
1952     case ROW_TYPE_VOLUME:
1953       {
1954         GtkFilePath *base_path;
1955
1956         base_path = gtk_file_system_volume_get_base_path (priv->fs, data);
1957         if (base_path)
1958           {
1959             retval = (!local_only ||
1960                       gtk_file_system_path_is_local (priv->fs, base_path));
1961             gtk_file_path_free (base_path);
1962           }
1963         else
1964           retval = FALSE;
1965       }
1966       break;
1967     default:
1968       retval = TRUE;
1969       break;
1970     }
1971
1972   return retval;
1973 }
1974
1975 /* Combo Box */
1976 static void
1977 name_cell_data_func (GtkCellLayout   *layout,
1978                      GtkCellRenderer *cell,
1979                      GtkTreeModel    *model,
1980                      GtkTreeIter     *iter,
1981                      gpointer         user_data)
1982 {
1983   gchar type;
1984
1985   type = 0;
1986   gtk_tree_model_get (model, iter,
1987                       TYPE_COLUMN, &type,
1988                       -1);
1989
1990   if (type == ROW_TYPE_CURRENT_FOLDER)
1991     g_object_set (cell, "ellipsize", PANGO_ELLIPSIZE_END, NULL);
1992   else
1993     g_object_set (cell, "ellipsize", PANGO_ELLIPSIZE_NONE, NULL);
1994 }
1995
1996 static gboolean
1997 combo_box_row_separator_func (GtkTreeModel *model,
1998                               GtkTreeIter  *iter,
1999                               gpointer      user_data)
2000 {
2001   gchar type = ROW_TYPE_INVALID;
2002
2003   gtk_tree_model_get (model, iter, TYPE_COLUMN, &type, -1);
2004
2005   return (type == ROW_TYPE_BOOKMARK_SEPARATOR ||
2006           type == ROW_TYPE_CURRENT_FOLDER_SEPARATOR ||
2007           type == ROW_TYPE_OTHER_SEPARATOR);
2008 }                         
2009
2010 static void
2011 update_combo_box (GtkFileChooserButton *button)
2012 {
2013   GtkFileChooserButtonPrivate *priv = button->priv;
2014   GSList *paths;
2015   GtkTreeIter iter;
2016   gboolean row_found;
2017
2018   gtk_tree_model_get_iter_first (priv->filter_model, &iter);
2019
2020   paths = _gtk_file_chooser_get_paths (GTK_FILE_CHOOSER (priv->dialog));
2021
2022   row_found = FALSE;
2023
2024   do
2025     {
2026       gchar type;
2027       gpointer data;
2028
2029       type = ROW_TYPE_INVALID;
2030       data = NULL;
2031
2032       gtk_tree_model_get (priv->filter_model, &iter,
2033                           TYPE_COLUMN, &type,
2034                           DATA_COLUMN, &data,
2035                           -1);
2036     
2037       switch (type)
2038         {
2039         case ROW_TYPE_SPECIAL:
2040         case ROW_TYPE_SHORTCUT:
2041         case ROW_TYPE_BOOKMARK:
2042         case ROW_TYPE_CURRENT_FOLDER:
2043           row_found = (paths &&
2044                        paths->data &&
2045                        gtk_file_path_compare (data, paths->data) == 0);
2046           break;
2047         case ROW_TYPE_VOLUME:
2048           {
2049             GtkFilePath *base_path;
2050
2051             base_path = gtk_file_system_volume_get_base_path (priv->fs, data);
2052             row_found = (paths &&
2053                          paths->data &&
2054                          gtk_file_path_compare (base_path, paths->data) == 0);
2055             gtk_file_path_free (base_path);
2056           }
2057           break;
2058         default:
2059           row_found = FALSE;
2060           break;
2061         }
2062
2063       if (row_found)
2064         {
2065           g_signal_handler_block (priv->combo_box, priv->combo_box_changed_id);
2066           gtk_combo_box_set_active_iter (GTK_COMBO_BOX (priv->combo_box),
2067                                          &iter);
2068           g_signal_handler_unblock (priv->combo_box,
2069                                     priv->combo_box_changed_id);
2070         }
2071     }
2072   while (!row_found && gtk_tree_model_iter_next (priv->filter_model, &iter));
2073
2074   /* If it hasn't been found already, update & select the current-folder row. */
2075   if (!row_found && paths && paths->data)
2076     {
2077       GtkTreeIter filter_iter;
2078       gint pos;
2079     
2080       model_update_current_folder (button, paths->data);
2081       gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (priv->filter_model));
2082
2083       pos = model_get_type_position (button, ROW_TYPE_CURRENT_FOLDER);
2084       gtk_tree_model_iter_nth_child (priv->model, &iter, NULL, pos);
2085
2086       gtk_tree_model_filter_convert_child_iter_to_iter (GTK_TREE_MODEL_FILTER (priv->filter_model),
2087                                                         &filter_iter, &iter);
2088
2089       g_signal_handler_block (priv->combo_box, priv->combo_box_changed_id);
2090       gtk_combo_box_set_active_iter (GTK_COMBO_BOX (priv->combo_box), &filter_iter);
2091       g_signal_handler_unblock (priv->combo_box, priv->combo_box_changed_id);
2092     }
2093
2094   gtk_file_paths_free (paths);
2095 }
2096
2097 /* Button */
2098 static void
2099 update_label_get_info_cb (GtkFileSystemHandle *handle,
2100                           const GtkFileInfo   *info,
2101                           const GError        *error,
2102                           gpointer             data)
2103 {
2104   gboolean cancelled = handle->cancelled;
2105   GdkPixbuf *pixbuf;
2106   GtkFileChooserButton *button = data;
2107   GtkFileChooserButtonPrivate *priv = button->priv;
2108
2109   if (handle != priv->update_button_handle)
2110     goto out;
2111
2112   priv->update_button_handle = NULL;
2113
2114   if (cancelled || error)
2115     goto out;
2116
2117   gtk_label_set_text (GTK_LABEL (priv->label), gtk_file_info_get_display_name (info));
2118
2119   pixbuf = gtk_file_info_render_icon (info, GTK_WIDGET (priv->image),
2120                                       priv->icon_size, NULL);
2121   if (!pixbuf)
2122     pixbuf = gtk_icon_theme_load_icon (get_icon_theme (GTK_WIDGET (priv->image)),
2123                                        FALLBACK_ICON_NAME,
2124                                        priv->icon_size, 0, NULL);
2125
2126   gtk_image_set_from_pixbuf (GTK_IMAGE (priv->image), pixbuf);
2127   if (pixbuf)
2128     g_object_unref (pixbuf);
2129
2130 out:
2131   g_object_unref (button);
2132   g_object_unref (handle);
2133 }
2134
2135 static void
2136 update_label_and_image (GtkFileChooserButton *button)
2137 {
2138   GtkFileChooserButtonPrivate *priv = button->priv;
2139   GdkPixbuf *pixbuf;
2140   gchar *label_text;
2141   GSList *paths;
2142
2143   paths = _gtk_file_chooser_get_paths (GTK_FILE_CHOOSER (priv->dialog));
2144   label_text = NULL;
2145   pixbuf = NULL;
2146
2147   if (paths && paths->data)
2148     {
2149       GtkFilePath *path;
2150       GtkFileSystemVolume *volume = NULL;
2151     
2152       path = paths->data;
2153
2154       volume = gtk_file_system_get_volume_for_path (priv->fs, path);
2155       if (volume)
2156         {
2157           GtkFilePath *base_path;
2158
2159           base_path = gtk_file_system_volume_get_base_path (priv->fs, volume);
2160           if (base_path && gtk_file_path_compare (base_path, path) == 0)
2161             {
2162               label_text = gtk_file_system_volume_get_display_name (priv->fs,
2163                                                                     volume);
2164               pixbuf = gtk_file_system_volume_render_icon (priv->fs, volume,
2165                                                            GTK_WIDGET (button),
2166                                                            priv->icon_size,
2167                                                            NULL);
2168             }
2169
2170           if (base_path)
2171             gtk_file_path_free (base_path);
2172
2173           gtk_file_system_volume_free (priv->fs, volume);
2174
2175           if (label_text)
2176             goto out;
2177         }
2178
2179       if (priv->update_button_handle)
2180         gtk_file_system_cancel_operation (priv->update_button_handle);
2181
2182       priv->update_button_handle =
2183         gtk_file_system_get_info (priv->fs, path,
2184                                   GTK_FILE_INFO_DISPLAY_NAME | GTK_FILE_INFO_ICON,
2185                                   update_label_get_info_cb,
2186                                   g_object_ref (button));
2187     }
2188 out:
2189   gtk_file_paths_free (paths);
2190
2191   if (label_text)
2192     {
2193       gtk_label_set_text (GTK_LABEL (priv->label), label_text);
2194       g_free (label_text);
2195     }
2196   else
2197     gtk_label_set_text (GTK_LABEL (priv->label), _(FALLBACK_DISPLAY_NAME));
2198 }
2199
2200
2201 /* ************************ *
2202  *  Child Object Callbacks  *
2203  * ************************ */
2204
2205 /* File System */
2206 static void
2207 fs_volumes_changed_cb (GtkFileSystem *fs,
2208                        gpointer       user_data)
2209 {
2210   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (user_data);
2211   GtkFileChooserButtonPrivate *priv = button->priv;
2212   GSList *volumes;
2213
2214   model_remove_rows (user_data,
2215                      model_get_type_position (user_data, ROW_TYPE_VOLUME),
2216                      priv->n_volumes);
2217
2218   priv->n_volumes = 0;
2219
2220   volumes = gtk_file_system_list_volumes (fs);
2221   model_add_volumes (user_data, volumes);
2222   g_slist_free (volumes);
2223
2224   gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (priv->filter_model));
2225
2226   update_label_and_image (user_data);
2227   update_combo_box (user_data);
2228 }
2229
2230 static void
2231 fs_bookmarks_changed_cb (GtkFileSystem *fs,
2232                          gpointer       user_data)
2233 {
2234   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (user_data);
2235   GtkFileChooserButtonPrivate *priv = button->priv;
2236   GSList *bookmarks;
2237
2238   bookmarks = gtk_file_system_list_bookmarks (fs);
2239   if (!bookmarks)
2240     {
2241       model_remove_rows (user_data,
2242                          model_get_type_position (user_data,
2243                                                   ROW_TYPE_BOOKMARK_SEPARATOR),
2244                          (priv->n_bookmarks + priv->has_bookmark_separator));
2245       priv->has_bookmark_separator = FALSE;
2246     }
2247   else
2248     model_remove_rows (user_data,
2249                        model_get_type_position (user_data, ROW_TYPE_BOOKMARK),
2250                        priv->n_bookmarks);
2251
2252   priv->n_bookmarks = 0;
2253   model_add_bookmarks (user_data, bookmarks);
2254   gtk_file_paths_free (bookmarks);
2255
2256   gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (priv->filter_model));
2257
2258   update_label_and_image (user_data);
2259   update_combo_box (user_data);
2260 }
2261
2262 /* Dialog */
2263 static void
2264 open_dialog (GtkFileChooserButton *button)
2265 {
2266   GtkFileChooserButtonPrivate *priv = button->priv;
2267
2268   /* Setup the dialog parent to be chooser button's toplevel, and be modal
2269      as needed. */
2270   if (!GTK_WIDGET_VISIBLE (priv->dialog))
2271     {
2272       GtkWidget *toplevel;
2273
2274       toplevel = gtk_widget_get_toplevel (GTK_WIDGET (button));
2275
2276       if (GTK_WIDGET_TOPLEVEL (toplevel) && GTK_IS_WINDOW (toplevel))
2277         {
2278           if (GTK_WINDOW (toplevel) != gtk_window_get_transient_for (GTK_WINDOW (priv->dialog)))
2279             gtk_window_set_transient_for (GTK_WINDOW (priv->dialog),
2280                                           GTK_WINDOW (toplevel));
2281               
2282           gtk_window_set_modal (GTK_WINDOW (priv->dialog),
2283                                 gtk_window_get_modal (GTK_WINDOW (toplevel)));
2284         }
2285     }
2286
2287   if (!priv->active)
2288     {
2289       GSList *paths;
2290
2291       g_signal_handler_block (priv->dialog,
2292                               priv->dialog_folder_changed_id);
2293       g_signal_handler_block (priv->dialog,
2294                               priv->dialog_file_activated_id);
2295       g_signal_handler_block (priv->dialog,
2296                               priv->dialog_selection_changed_id);
2297       paths = _gtk_file_chooser_get_paths (GTK_FILE_CHOOSER (priv->dialog));
2298       if (paths)
2299         {
2300           if (paths->data)
2301             priv->old_path = gtk_file_path_copy (paths->data);
2302
2303           gtk_file_paths_free (paths);
2304         }
2305
2306       priv->active = TRUE;
2307     }
2308
2309   gtk_widget_set_sensitive (priv->combo_box, FALSE);
2310   gtk_window_present (GTK_WINDOW (priv->dialog));
2311 }
2312
2313 /* Combo Box */
2314 static void
2315 combo_box_changed_cb (GtkComboBox *combo_box,
2316                       gpointer     user_data)
2317 {
2318   GtkTreeIter iter;
2319
2320   if (gtk_combo_box_get_active_iter (combo_box, &iter))
2321     {
2322       GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (user_data);
2323       GtkFileChooserButtonPrivate *priv = button->priv;
2324       gchar type;
2325       gpointer data;
2326
2327       type = ROW_TYPE_INVALID;
2328       data = NULL;
2329
2330       gtk_tree_model_get (priv->filter_model, &iter,
2331                           TYPE_COLUMN, &type,
2332                           DATA_COLUMN, &data,
2333                           -1);
2334
2335       switch (type)
2336         {
2337         case ROW_TYPE_SPECIAL:
2338         case ROW_TYPE_SHORTCUT:
2339         case ROW_TYPE_BOOKMARK:
2340         case ROW_TYPE_CURRENT_FOLDER:
2341           gtk_file_chooser_unselect_all (GTK_FILE_CHOOSER (priv->dialog));
2342           if (data)
2343             _gtk_file_chooser_set_current_folder_path (GTK_FILE_CHOOSER (priv->dialog),
2344                                                        data, NULL);
2345           break;
2346         case ROW_TYPE_VOLUME:
2347           {
2348             GtkFilePath *base_path;
2349
2350             gtk_file_chooser_unselect_all (GTK_FILE_CHOOSER (priv->dialog));
2351             base_path = gtk_file_system_volume_get_base_path (priv->fs, data);
2352             if (base_path)
2353               {
2354                 _gtk_file_chooser_set_current_folder_path (GTK_FILE_CHOOSER (priv->dialog),
2355                                                            base_path, NULL);
2356                 gtk_file_path_free (base_path);
2357               }
2358           }
2359           break;
2360         case ROW_TYPE_OTHER:
2361           open_dialog (user_data);
2362           break;
2363         default:
2364           break;
2365         }
2366     }
2367 }
2368
2369 /* Button */
2370 static void
2371 button_clicked_cb (GtkButton *real_button,
2372                    gpointer   user_data)
2373 {
2374   open_dialog (user_data);
2375 }
2376
2377 /* Dialog */
2378 static void
2379 dialog_current_folder_changed_cb (GtkFileChooser *dialog,
2380                                   gpointer        user_data)
2381 {
2382   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (user_data);
2383   GtkFileChooserButtonPrivate *priv = button->priv;
2384
2385   priv->folder_has_been_set = TRUE;
2386
2387   g_signal_emit_by_name (button, "current-folder-changed");
2388 }
2389
2390 static void
2391 dialog_file_activated_cb (GtkFileChooser *dialog,
2392                           gpointer        user_data)
2393 {
2394   g_signal_emit_by_name (user_data, "file-activated");
2395 }
2396
2397 static void
2398 dialog_selection_changed_cb (GtkFileChooser *dialog,
2399                              gpointer        user_data)
2400 {
2401   update_label_and_image (user_data);
2402   update_combo_box (user_data);
2403   g_signal_emit_by_name (user_data, "selection-changed");
2404 }
2405
2406 static void
2407 dialog_update_preview_cb (GtkFileChooser *dialog,
2408                           gpointer        user_data)
2409 {
2410   g_signal_emit_by_name (user_data, "update-preview");
2411 }
2412
2413 static void
2414 dialog_notify_cb (GObject    *dialog,
2415                   GParamSpec *pspec,
2416                   gpointer    user_data)
2417 {
2418   gpointer iface;
2419
2420   iface = g_type_interface_peek (g_type_class_peek (G_OBJECT_TYPE (dialog)),
2421                                  GTK_TYPE_FILE_CHOOSER);
2422   if (g_object_interface_find_property (iface, pspec->name))
2423     g_object_notify (user_data, pspec->name);
2424
2425   if (g_ascii_strcasecmp (pspec->name, "local-only") == 0)
2426     {
2427       GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (user_data);
2428       GtkFileChooserButtonPrivate *priv = button->priv;
2429
2430       if (priv->has_current_folder)
2431         {
2432           GtkTreeIter iter;
2433           gint pos;
2434           gpointer data;
2435
2436           pos = model_get_type_position (user_data,
2437                                          ROW_TYPE_CURRENT_FOLDER);
2438           gtk_tree_model_iter_nth_child (priv->model, &iter, NULL, pos);
2439
2440           data = NULL;
2441           gtk_tree_model_get (priv->model, &iter, DATA_COLUMN, &data, -1);
2442
2443           /* If the path isn't local but we're in local-only mode now, remove
2444            * the custom-folder row */
2445           if (data &&
2446               (!gtk_file_system_path_is_local (priv->fs, data) &&
2447                gtk_file_chooser_get_local_only (GTK_FILE_CHOOSER (priv->dialog))))
2448             {
2449               pos--;
2450               model_remove_rows (user_data, pos, 2);
2451             }
2452         }
2453
2454       gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (priv->filter_model));
2455       update_combo_box (user_data);
2456     }
2457 }
2458
2459 static gboolean
2460 dialog_delete_event_cb (GtkWidget *dialog,
2461                         GdkEvent  *event,
2462                         gpointer   user_data)
2463 {
2464   g_signal_emit_by_name (dialog, "response", GTK_RESPONSE_DELETE_EVENT);
2465
2466   return TRUE;
2467 }
2468
2469 static void
2470 dialog_response_cb (GtkDialog *dialog,
2471                     gint       response,
2472                     gpointer   user_data)
2473 {
2474   GtkFileChooserButton *button = GTK_FILE_CHOOSER_BUTTON (user_data);
2475   GtkFileChooserButtonPrivate *priv = button->priv;
2476
2477   if (response == GTK_RESPONSE_ACCEPT)
2478     {
2479       g_signal_emit_by_name (user_data, "current-folder-changed");
2480       g_signal_emit_by_name (user_data, "selection-changed");
2481     }
2482   else if (priv->old_path)
2483     {
2484       switch (gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog)))
2485         {
2486         case GTK_FILE_CHOOSER_ACTION_OPEN:
2487           _gtk_file_chooser_select_path (GTK_FILE_CHOOSER (dialog), priv->old_path,
2488                                          NULL);
2489           break;
2490         case GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
2491           _gtk_file_chooser_set_current_folder_path (GTK_FILE_CHOOSER (dialog),
2492                                                      priv->old_path, NULL);
2493           break;
2494         default:
2495           g_assert_not_reached ();
2496           break;
2497         }
2498     }
2499   else
2500     gtk_file_chooser_unselect_all (GTK_FILE_CHOOSER (dialog));
2501
2502   if (priv->old_path)
2503     {
2504       gtk_file_path_free (priv->old_path);
2505       priv->old_path = NULL;
2506     }
2507
2508   update_label_and_image (user_data);
2509   update_combo_box (user_data);
2510   
2511   if (priv->active)
2512     {
2513       g_signal_handler_unblock (priv->dialog,
2514                                 priv->dialog_folder_changed_id);
2515       g_signal_handler_unblock (priv->dialog,
2516                                 priv->dialog_file_activated_id);
2517       g_signal_handler_unblock (priv->dialog,
2518                                 priv->dialog_selection_changed_id);
2519       priv->active = FALSE;
2520     }
2521
2522   gtk_widget_set_sensitive (priv->combo_box, TRUE);
2523   gtk_widget_hide (priv->dialog);
2524 }
2525
2526
2527 /* ************************************************************************** *
2528  *  Public API                                                                *
2529  * ************************************************************************** */
2530
2531 /**
2532  * gtk_file_chooser_button_new:
2533  * @title: the title of the browse dialog.
2534  * @action: the open mode for the widget.
2535  * 
2536  * Creates a new file-selecting button widget.
2537  * 
2538  * Returns: a new button widget.
2539  * 
2540  * Since: 2.6
2541  **/
2542 GtkWidget *
2543 gtk_file_chooser_button_new (const gchar          *title,
2544                              GtkFileChooserAction  action)
2545 {
2546   g_return_val_if_fail (action == GTK_FILE_CHOOSER_ACTION_OPEN ||
2547                         action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, NULL);
2548
2549   return g_object_new (GTK_TYPE_FILE_CHOOSER_BUTTON,
2550                        "action", action,
2551                        "title", (title ? title : _(DEFAULT_TITLE)),
2552                        NULL);
2553 }
2554
2555 /**
2556  * gtk_file_chooser_button_new_with_backend:
2557  * @title: the title of the browse dialog.
2558  * @action: the open mode for the widget.
2559  * @backend: the name of the #GtkFileSystem backend to use.
2560  * 
2561  * Creates a new file-selecting button widget using @backend.
2562  * 
2563  * Returns: a new button widget.
2564  * 
2565  * Since: 2.6
2566  **/
2567 GtkWidget *
2568 gtk_file_chooser_button_new_with_backend (const gchar          *title,
2569                                           GtkFileChooserAction  action,
2570                                           const gchar          *backend)
2571 {
2572   g_return_val_if_fail (action == GTK_FILE_CHOOSER_ACTION_OPEN ||
2573                         action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, NULL);
2574
2575   return g_object_new (GTK_TYPE_FILE_CHOOSER_BUTTON,
2576                        "action", action,
2577                        "title", (title ? title : _(DEFAULT_TITLE)),
2578                        "file-system-backend", backend,
2579                        NULL);
2580 }
2581
2582 /**
2583  * gtk_file_chooser_button_new_with_dialog:
2584  * @dialog: the #GtkFileChooserDialog widget to use.
2585  * 
2586  * Creates a #GtkFileChooserButton widget which uses @dialog as it's
2587  * file-picking window. Note that @dialog must be a #GtkFileChooserDialog (or
2588  * subclass) and must not have %GTK_DIALOG_DESTROY_WITH_PARENT set.
2589  * 
2590  * Returns: a new button widget.
2591  * 
2592  * Since: 2.6
2593  **/
2594 GtkWidget *
2595 gtk_file_chooser_button_new_with_dialog (GtkWidget *dialog)
2596 {
2597   g_return_val_if_fail (GTK_IS_FILE_CHOOSER_DIALOG (dialog), NULL);
2598
2599   return g_object_new (GTK_TYPE_FILE_CHOOSER_BUTTON,
2600                        "dialog", dialog,
2601                        NULL);
2602 }
2603
2604 /**
2605  * gtk_file_chooser_button_set_title:
2606  * @button: the button widget to modify.
2607  * @title: the new browse dialog title.
2608  * 
2609  * Modifies the @title of the browse dialog used by @button.
2610  * 
2611  * Since: 2.6
2612  **/
2613 void
2614 gtk_file_chooser_button_set_title (GtkFileChooserButton *button,
2615                                    const gchar          *title)
2616 {
2617   g_return_if_fail (GTK_IS_FILE_CHOOSER_BUTTON (button));
2618
2619   gtk_window_set_title (GTK_WINDOW (button->priv->dialog), title);
2620   g_object_notify (G_OBJECT (button), "title");
2621 }
2622
2623 /**
2624  * gtk_file_chooser_button_get_title:
2625  * @button: the button widget to examine.
2626  * 
2627  * Retrieves the title of the browse dialog used by @button. The returned value
2628  * should not be modified or freed.
2629  * 
2630  * Returns: a pointer to the browse dialog's title.
2631  * 
2632  * Since: 2.6
2633  **/
2634 G_CONST_RETURN gchar *
2635 gtk_file_chooser_button_get_title (GtkFileChooserButton *button)
2636 {
2637   g_return_val_if_fail (GTK_IS_FILE_CHOOSER_BUTTON (button), NULL);
2638
2639   return gtk_window_get_title (GTK_WINDOW (button->priv->dialog));
2640 }
2641
2642 /**
2643  * gtk_file_chooser_button_get_width_chars:
2644  * @button: the button widget to examine.
2645  * 
2646  * Retrieves the width in characters of the @button widget's entry and/or label.
2647  * 
2648  * Returns: an integer width (in characters) that the button will use to size itself.
2649  * 
2650  * Since: 2.6
2651  **/
2652 gint
2653 gtk_file_chooser_button_get_width_chars (GtkFileChooserButton *button)
2654 {
2655   g_return_val_if_fail (GTK_IS_FILE_CHOOSER_BUTTON (button), -1);
2656
2657   return gtk_label_get_width_chars (GTK_LABEL (button->priv->label));
2658 }
2659
2660 /**
2661  * gtk_file_chooser_button_set_width_chars:
2662  * @button: the button widget to examine.
2663  * @n_chars: the new width, in characters.
2664  * 
2665  * Sets the width (in characters) that @button will use to @n_chars.
2666  * 
2667  * Since: 2.6
2668  **/
2669 void
2670 gtk_file_chooser_button_set_width_chars (GtkFileChooserButton *button,
2671                                          gint                  n_chars)
2672 {
2673   g_return_if_fail (GTK_IS_FILE_CHOOSER_BUTTON (button));
2674
2675   gtk_label_set_width_chars (GTK_LABEL (button->priv->label), n_chars);
2676   g_object_notify (G_OBJECT (button), "width-chars");
2677 }
2678
2679 /**
2680  * gtk_file_chooser_button_set_focus_on_click:
2681  * @button: a #GtkFileChooserButton
2682  * @focus_on_click: whether the button grabs focus when clicked with the mouse
2683  * 
2684  * Sets whether the button will grab focus when it is clicked with the mouse.
2685  * Making mouse clicks not grab focus is useful in places like toolbars where
2686  * you don't want the keyboard focus removed from the main area of the
2687  * application.
2688  *
2689  * Since: 2.10
2690  **/
2691 void
2692 gtk_file_chooser_button_set_focus_on_click (GtkFileChooserButton *button,
2693                                             gboolean              focus_on_click)
2694 {
2695   GtkFileChooserButtonPrivate *priv;
2696
2697   g_return_if_fail (GTK_IS_FILE_CHOOSER_BUTTON (button));
2698
2699   priv = button->priv;
2700
2701   focus_on_click = focus_on_click != FALSE;
2702
2703   if (priv->focus_on_click != focus_on_click)
2704     {
2705       priv->focus_on_click = focus_on_click;
2706       gtk_button_set_focus_on_click (GTK_BUTTON (priv->button), focus_on_click);
2707       gtk_combo_box_set_focus_on_click (GTK_COMBO_BOX (priv->combo_box), focus_on_click);
2708       
2709       g_object_notify (G_OBJECT (button), "focus-on-click");
2710     }
2711 }
2712
2713 /**
2714  * gtk_file_chooser_button_get_focus_on_click:
2715  * @button: a #GtkFileChooserButton
2716  * 
2717  * Returns whether the button grabs focus when it is clicked with the mouse.
2718  * See gtk_file_chooser_button_set_focus_on_click().
2719  *
2720  * Return value: %TRUE if the button grabs focus when it is clicked with
2721  *               the mouse.
2722  *
2723  * Since: 2.10
2724  **/
2725 gboolean
2726 gtk_file_chooser_button_get_focus_on_click (GtkFileChooserButton *button)
2727 {
2728   g_return_val_if_fail (GTK_IS_FILE_CHOOSER_BUTTON (button), FALSE);
2729   
2730   return button->priv->focus_on_click;
2731 }
2732
2733 #define __GTK_FILE_CHOOSER_BUTTON_C__
2734 #include "gtkaliasdef.c"