]> Pileus Git - ~andy/gtk/blob - gtk/gtkfilechooserentry.c
88ddc30c41d55605537c98274a8135f7a8310858
[~andy/gtk] / gtk / gtkfilechooserentry.c
1 /* GTK - The GIMP Toolkit
2  * gtkfilechooserentry.c: Entry with filename completion
3  * Copyright (C) 2003, Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include "config.h"
22
23 #include "gtkfilechooserentry.h"
24
25 #include <string.h>
26
27 #include "gtkcelllayout.h"
28 #include "gtkcellrenderertext.h"
29 #include "gtkentry.h"
30 #include "gtkfilesystemmodel.h"
31 #include "gtklabel.h"
32 #include "gtkmain.h"
33 #include "gtksizerequest.h"
34 #include "gtkwindow.h"
35 #include "gtkintl.h"
36
37 typedef struct _GtkFileChooserEntryClass GtkFileChooserEntryClass;
38
39 #define GTK_FILE_CHOOSER_ENTRY_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FILE_CHOOSER_ENTRY, GtkFileChooserEntryClass))
40 #define GTK_IS_FILE_CHOOSER_ENTRY_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FILE_CHOOSER_ENTRY))
41 #define GTK_FILE_CHOOSER_ENTRY_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FILE_CHOOSER_ENTRY, GtkFileChooserEntryClass))
42
43 struct _GtkFileChooserEntryClass
44 {
45   GtkEntryClass parent_class;
46 };
47
48 /* Action to take when the current folder finishes loading (for explicit or automatic completion) */
49 typedef enum {
50   LOAD_COMPLETE_NOTHING,
51   LOAD_COMPLETE_EXPLICIT_COMPLETION
52 } LoadCompleteAction;
53
54 struct _GtkFileChooserEntry
55 {
56   GtkEntry parent_instance;
57
58   GtkFileChooserAction action;
59
60   GFile *base_folder;
61   GFile *current_folder_file;
62   gchar *dir_part;
63   gchar *file_part;
64
65   GtkTreeModel *completion_store;
66
67   guint current_folder_loaded : 1;
68   guint complete_on_load : 1;
69   guint eat_tabs       : 1;
70   guint local_only     : 1;
71 };
72
73 enum
74 {
75   DISPLAY_NAME_COLUMN,
76   FULL_PATH_COLUMN,
77   N_COLUMNS
78 };
79
80 static void     gtk_file_chooser_entry_finalize       (GObject          *object);
81 static void     gtk_file_chooser_entry_dispose        (GObject          *object);
82 static void     gtk_file_chooser_entry_grab_focus     (GtkWidget        *widget);
83 static gboolean gtk_file_chooser_entry_key_press_event (GtkWidget *widget,
84                                                         GdkEventKey *event);
85 static gboolean gtk_file_chooser_entry_focus_out_event (GtkWidget       *widget,
86                                                         GdkEventFocus   *event);
87
88 #ifdef G_OS_WIN32
89 static gint     insert_text_callback      (GtkFileChooserEntry *widget,
90                                            const gchar         *new_text,
91                                            gint                 new_text_length,
92                                            gint                *position,
93                                            gpointer             user_data);
94 static void     delete_text_callback      (GtkFileChooserEntry *widget,
95                                            gint                 start_pos,
96                                            gint                 end_pos,
97                                            gpointer             user_data);
98 #endif
99
100 static gboolean match_selected_callback   (GtkEntryCompletion  *completion,
101                                            GtkTreeModel        *model,
102                                            GtkTreeIter         *iter,
103                                            GtkFileChooserEntry *chooser_entry);
104
105 static void set_complete_on_load (GtkFileChooserEntry *chooser_entry,
106                                   gboolean             complete_on_load);
107 static void refresh_current_folder_and_file_part (GtkFileChooserEntry *chooser_entry);
108 static void set_completion_folder (GtkFileChooserEntry *chooser_entry,
109                                    GFile               *folder);
110 static void finished_loading_cb (GtkFileSystemModel  *model,
111                                  GError              *error,
112                                  GtkFileChooserEntry *chooser_entry);
113
114 G_DEFINE_TYPE (GtkFileChooserEntry, _gtk_file_chooser_entry, GTK_TYPE_ENTRY)
115
116 static char *
117 gtk_file_chooser_entry_get_completion_text (GtkFileChooserEntry *chooser_entry)
118 {
119   GtkEditable *editable = GTK_EDITABLE (chooser_entry);
120   int start, end;
121
122   gtk_editable_get_selection_bounds (editable, &start, &end);
123   return gtk_editable_get_chars (editable, 0, MIN (start, end));
124 }
125
126 static void
127 gtk_file_chooser_entry_dispatch_properties_changed (GObject     *object,
128                                                     guint        n_pspecs,
129                                                     GParamSpec **pspecs)
130 {
131   GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (object);
132   guint i;
133
134   G_OBJECT_CLASS (_gtk_file_chooser_entry_parent_class)->dispatch_properties_changed (object, n_pspecs, pspecs);
135
136   /* What we are after: The text in front of the cursor was modified.
137    * Unfortunately, there's no other way to catch this. */
138
139   for (i = 0; i < n_pspecs; i++)
140     {
141       if (pspecs[i]->name == I_("cursor-position") ||
142           pspecs[i]->name == I_("selection-bound") ||
143           pspecs[i]->name == I_("text"))
144         {
145           set_complete_on_load (chooser_entry, FALSE);
146           refresh_current_folder_and_file_part (chooser_entry);
147           break;
148         }
149     }
150 }
151
152 static void
153 _gtk_file_chooser_entry_class_init (GtkFileChooserEntryClass *class)
154 {
155   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
156   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
157
158   gobject_class->finalize = gtk_file_chooser_entry_finalize;
159   gobject_class->dispose = gtk_file_chooser_entry_dispose;
160   gobject_class->dispatch_properties_changed = gtk_file_chooser_entry_dispatch_properties_changed;
161
162   widget_class->grab_focus = gtk_file_chooser_entry_grab_focus;
163   widget_class->key_press_event = gtk_file_chooser_entry_key_press_event;
164   widget_class->focus_out_event = gtk_file_chooser_entry_focus_out_event;
165 }
166
167 static void
168 _gtk_file_chooser_entry_init (GtkFileChooserEntry *chooser_entry)
169 {
170   GtkEntryCompletion *comp;
171   GtkCellRenderer *cell;
172
173   chooser_entry->local_only = TRUE;
174   chooser_entry->base_folder = g_file_new_for_path (g_get_home_dir ());
175
176   g_object_set (chooser_entry, "truncate-multiline", TRUE, NULL);
177
178   comp = gtk_entry_completion_new ();
179   gtk_entry_completion_set_popup_single_match (comp, FALSE);
180   gtk_entry_completion_set_minimum_key_length (comp, 0);
181   /* see docs for gtk_entry_completion_set_text_column() */
182   g_object_set (comp, "text-column", FULL_PATH_COLUMN, NULL);
183
184   /* Need a match func here or entry completion uses a wrong one.
185    * We do our own filtering after all. */
186   gtk_entry_completion_set_match_func (comp,
187                                        (GtkEntryCompletionMatchFunc) gtk_true,
188                                        chooser_entry,
189                                        NULL);
190
191   cell = gtk_cell_renderer_text_new ();
192   gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (comp),
193                               cell, TRUE);
194   gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (comp),
195                                  cell,
196                                  "text", DISPLAY_NAME_COLUMN);
197
198   g_signal_connect (comp, "match-selected",
199                     G_CALLBACK (match_selected_callback), chooser_entry);
200
201   gtk_entry_set_completion (GTK_ENTRY (chooser_entry), comp);
202   g_object_unref (comp);
203
204 #ifdef G_OS_WIN32
205   g_signal_connect (chooser_entry, "insert-text",
206                     G_CALLBACK (insert_text_callback), NULL);
207   g_signal_connect (chooser_entry, "delete-text",
208                     G_CALLBACK (delete_text_callback), NULL);
209 #endif
210 }
211
212 static void
213 gtk_file_chooser_entry_finalize (GObject *object)
214 {
215   GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (object);
216
217   g_object_unref (chooser_entry->base_folder);
218
219   if (chooser_entry->current_folder_file)
220     g_object_unref (chooser_entry->current_folder_file);
221
222   g_free (chooser_entry->dir_part);
223   g_free (chooser_entry->file_part);
224
225   G_OBJECT_CLASS (_gtk_file_chooser_entry_parent_class)->finalize (object);
226 }
227
228 static void
229 gtk_file_chooser_entry_dispose (GObject *object)
230 {
231   GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (object);
232
233   set_completion_folder (chooser_entry, NULL);
234
235   G_OBJECT_CLASS (_gtk_file_chooser_entry_parent_class)->dispose (object);
236 }
237
238 /* Match functions for the GtkEntryCompletion */
239 static gboolean
240 match_selected_callback (GtkEntryCompletion  *completion,
241                          GtkTreeModel        *model,
242                          GtkTreeIter         *iter,
243                          GtkFileChooserEntry *chooser_entry)
244 {
245   char *path;
246   
247   gtk_tree_model_get (model, iter,
248                       FULL_PATH_COLUMN, &path,
249                       -1);
250
251   gtk_editable_delete_text (GTK_EDITABLE (chooser_entry),
252                             0,
253                             gtk_editable_get_position (GTK_EDITABLE (chooser_entry)));
254   gtk_editable_insert_text (GTK_EDITABLE (chooser_entry),
255                             path,
256                             0,
257                             NULL); 
258
259   g_free (path);
260
261   return TRUE;
262 }
263
264 static void
265 set_complete_on_load (GtkFileChooserEntry *chooser_entry,
266                       gboolean             complete_on_load)
267 {
268   /* a completion was triggered, but we couldn't do it.
269    * So no text was inserted when pressing tab, so we beep */
270   if (chooser_entry->complete_on_load && !complete_on_load)
271     gtk_widget_error_bell (GTK_WIDGET (chooser_entry));
272
273   chooser_entry->complete_on_load = complete_on_load;
274 }
275
276 static gboolean
277 is_valid_scheme_character (char c)
278 {
279   return g_ascii_isalnum (c) || c == '+' || c == '-' || c == '.';
280 }
281
282 static gboolean
283 has_uri_scheme (const char *str)
284 {
285   const char *p;
286
287   p = str;
288
289   if (!is_valid_scheme_character (*p))
290     return FALSE;
291
292   do
293     p++;
294   while (is_valid_scheme_character (*p));
295
296   return (strncmp (p, "://", 3) == 0);
297 }
298
299 static GFile *
300 gtk_file_chooser_get_file_for_text (GtkFileChooserEntry *chooser_entry,
301                                     const gchar         *str)
302 {
303   GFile *file;
304
305   if (str[0] == '~' || g_path_is_absolute (str) || has_uri_scheme (str))
306     file = g_file_parse_name (str);
307   else
308     file = g_file_resolve_relative_path (chooser_entry->base_folder, str);
309
310   return file;
311 }
312
313 static GFile *
314 gtk_file_chooser_get_directory_for_text (GtkFileChooserEntry *chooser_entry,
315                                          const char *         text)
316 {
317   GFile *file, *parent;
318
319   file = gtk_file_chooser_get_file_for_text (chooser_entry, text);
320
321   if (text[0] == 0 || text[strlen (text) - 1] == G_DIR_SEPARATOR)
322     return file;
323
324   parent = g_file_get_parent (file);
325   g_object_unref (file);
326
327   return parent;
328 }
329
330 /* Finds a common prefix based on the contents of the entry
331  * and mandatorily appends it
332  */
333 static void
334 explicitly_complete (GtkFileChooserEntry *chooser_entry)
335 {
336   chooser_entry->complete_on_load = FALSE;
337
338   if (chooser_entry->completion_store)
339     {
340       char *completion, *text;
341       gsize completion_len, text_len;
342       
343       text = gtk_file_chooser_entry_get_completion_text (chooser_entry);
344       text_len = strlen (text);
345       completion = gtk_entry_completion_compute_prefix (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)), text);
346       completion_len = completion ? strlen (completion) : 0;
347
348       if (completion_len > text_len)
349         {
350           GtkEditable *editable = GTK_EDITABLE (chooser_entry);
351           int pos = gtk_editable_get_position (editable);
352
353           gtk_editable_insert_text (editable,
354                                     completion + text_len,
355                                     completion_len - text_len,
356                                     &pos);
357           gtk_editable_set_position (editable, pos);
358           return;
359         }
360     }
361
362   gtk_widget_error_bell (GTK_WIDGET (chooser_entry));
363 }
364
365 static void
366 gtk_file_chooser_entry_grab_focus (GtkWidget *widget)
367 {
368   GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->grab_focus (widget);
369   _gtk_file_chooser_entry_select_filename (GTK_FILE_CHOOSER_ENTRY (widget));
370 }
371
372 static void
373 start_explicit_completion (GtkFileChooserEntry *chooser_entry)
374 {
375   if (chooser_entry->current_folder_loaded)
376     explicitly_complete (chooser_entry);
377   else
378     set_complete_on_load (chooser_entry, TRUE);
379 }
380
381 static gboolean
382 gtk_file_chooser_entry_key_press_event (GtkWidget *widget,
383                                         GdkEventKey *event)
384 {
385   GtkFileChooserEntry *chooser_entry;
386   GtkEditable *editable;
387   GdkModifierType state;
388   gboolean control_pressed;
389
390   chooser_entry = GTK_FILE_CHOOSER_ENTRY (widget);
391   editable = GTK_EDITABLE (widget);
392
393   if (!chooser_entry->eat_tabs)
394     return GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->key_press_event (widget, event);
395
396   control_pressed = FALSE;
397
398   if (gtk_get_current_event_state (&state))
399     {
400       if ((state & GDK_CONTROL_MASK) == GDK_CONTROL_MASK)
401         control_pressed = TRUE;
402     }
403
404   /* This is a bit evil -- it makes Tab never leave the entry. It basically
405    * makes it 'safe' for people to hit. */
406   if (event->keyval == GDK_KEY_Tab && !control_pressed)
407     {
408       gint start, end;
409
410       gtk_editable_get_selection_bounds (editable, &start, &end);
411       
412       if (start != end)
413         gtk_editable_set_position (editable, MAX (start, end));
414       else
415         start_explicit_completion (chooser_entry);
416
417       return TRUE;
418      }
419
420   return GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->key_press_event (widget, event);
421
422 }
423
424 static gboolean
425 gtk_file_chooser_entry_focus_out_event (GtkWidget     *widget,
426                                         GdkEventFocus *event)
427 {
428   GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (widget);
429
430   set_complete_on_load (chooser_entry, FALSE);
431  
432   return GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->focus_out_event (widget, event);
433 }
434
435 static void
436 discard_completion_store (GtkFileChooserEntry *chooser_entry)
437 {
438   if (!chooser_entry->completion_store)
439     return;
440
441   gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)), NULL);
442   gtk_entry_completion_set_inline_completion (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)), FALSE);
443   g_object_unref (chooser_entry->completion_store);
444   chooser_entry->completion_store = NULL;
445 }
446
447 static gboolean
448 completion_store_set (GtkFileSystemModel  *model,
449                       GFile               *file,
450                       GFileInfo           *info,
451                       int                  column,
452                       GValue              *value,
453                       gpointer             data)
454 {
455   GtkFileChooserEntry *chooser_entry = data;
456
457   const char *prefix = "";
458   const char *suffix = "";
459
460   switch (column)
461     {
462     case FULL_PATH_COLUMN:
463       prefix = chooser_entry->dir_part;
464       /* fall through */
465     case DISPLAY_NAME_COLUMN:
466       if (_gtk_file_info_consider_as_directory (info))
467         suffix = G_DIR_SEPARATOR_S;
468
469       g_value_take_string (value, g_strconcat (
470               prefix,
471               g_file_info_get_display_name (info),
472               suffix,
473               NULL));
474       break;
475     default:
476       g_assert_not_reached ();
477       break;
478     }
479
480   return TRUE;
481 }
482
483 /* Fills the completion store from the contents of the current folder */
484 static void
485 populate_completion_store (GtkFileChooserEntry *chooser_entry)
486 {
487   chooser_entry->completion_store = GTK_TREE_MODEL (
488       _gtk_file_system_model_new_for_directory (chooser_entry->current_folder_file,
489                                                 "standard::name,standard::display-name,standard::type",
490                                                 completion_store_set,
491                                                 chooser_entry,
492                                                 N_COLUMNS,
493                                                 G_TYPE_STRING,
494                                                 G_TYPE_STRING));
495   g_signal_connect (chooser_entry->completion_store, "finished-loading",
496                     G_CALLBACK (finished_loading_cb), chooser_entry);
497
498   _gtk_file_system_model_set_filter_folders (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
499                                              TRUE);
500   gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (chooser_entry->completion_store),
501                                         DISPLAY_NAME_COLUMN, GTK_SORT_ASCENDING);
502
503   gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)),
504                                   chooser_entry->completion_store);
505 }
506
507 /* Callback when the current folder finishes loading */
508 static void
509 finished_loading_cb (GtkFileSystemModel  *model,
510                      GError              *error,
511                      GtkFileChooserEntry *chooser_entry)
512 {
513   GtkEntryCompletion *completion;
514
515   chooser_entry->current_folder_loaded = TRUE;
516
517   if (error)
518     {
519       discard_completion_store (chooser_entry);
520       set_complete_on_load (chooser_entry, FALSE);
521       return;
522     }
523
524   if (chooser_entry->complete_on_load)
525     explicitly_complete (chooser_entry);
526
527   gtk_widget_set_tooltip_text (GTK_WIDGET (chooser_entry), NULL);
528
529   completion = gtk_entry_get_completion (GTK_ENTRY (chooser_entry));
530   gtk_entry_completion_set_inline_completion (completion, TRUE);
531   gtk_entry_completion_complete (completion);
532   gtk_entry_completion_insert_prefix (completion);
533 }
534
535 static void
536 set_completion_folder (GtkFileChooserEntry *chooser_entry,
537                        GFile               *folder_file)
538 {
539   if (folder_file &&
540       chooser_entry->local_only
541       && !g_file_is_native (folder_file))
542     folder_file = NULL;
543
544   if ((chooser_entry->current_folder_file
545        && folder_file
546        && g_file_equal (folder_file, chooser_entry->current_folder_file))
547       || chooser_entry->current_folder_file == folder_file)
548     return;
549
550   if (chooser_entry->current_folder_file)
551     {
552       g_object_unref (chooser_entry->current_folder_file);
553       chooser_entry->current_folder_file = NULL;
554     }
555   
556   chooser_entry->current_folder_loaded = FALSE;
557
558   discard_completion_store (chooser_entry);
559
560   if (folder_file)
561     {
562       chooser_entry->current_folder_file = g_object_ref (folder_file);
563       populate_completion_store (chooser_entry);
564     }
565 }
566
567 static void
568 refresh_current_folder_and_file_part (GtkFileChooserEntry *chooser_entry)
569 {
570   GFile *folder_file;
571   char *text, *last_slash, *old_file_part;
572
573   old_file_part = chooser_entry->file_part;
574   g_free (chooser_entry->dir_part);
575
576   text = gtk_file_chooser_entry_get_completion_text (chooser_entry);
577
578   last_slash = strrchr (text, G_DIR_SEPARATOR);
579   if (last_slash)
580     {
581       chooser_entry->dir_part = g_strndup (text, last_slash - text + 1);
582       chooser_entry->file_part = g_strdup (last_slash + 1);
583     }
584   else
585     {
586       chooser_entry->dir_part = g_strdup ("");
587       chooser_entry->file_part = g_strdup (text);
588     }
589
590   folder_file = gtk_file_chooser_get_directory_for_text (chooser_entry, text);
591   set_completion_folder (chooser_entry, folder_file);
592   if (folder_file)
593     g_object_unref (folder_file);
594
595   if (chooser_entry->completion_store &&
596       (g_strcmp0 (old_file_part, chooser_entry->file_part) != 0))
597     {
598       GtkFileFilter *filter;
599       char *pattern;
600
601       filter = gtk_file_filter_new ();
602       pattern = g_strconcat (chooser_entry->file_part, "*", NULL);
603       gtk_file_filter_add_pattern (filter, pattern);
604
605       _gtk_file_system_model_set_filter (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
606                                          filter);
607
608       g_free (pattern);
609       g_object_unref (filter);
610     }
611
612   g_free (text);
613   g_free (old_file_part);
614 }
615
616 #ifdef G_OS_WIN32
617 static gint
618 insert_text_callback (GtkFileChooserEntry *chooser_entry,
619                       const gchar         *new_text,
620                       gint                 new_text_length,
621                       gint                *position,
622                       gpointer             user_data)
623 {
624   const gchar *colon = memchr (new_text, ':', new_text_length);
625   gint i;
626
627   /* Disallow these characters altogether */
628   for (i = 0; i < new_text_length; i++)
629     {
630       if (new_text[i] == '<' ||
631           new_text[i] == '>' ||
632           new_text[i] == '"' ||
633           new_text[i] == '|' ||
634           new_text[i] == '*' ||
635           new_text[i] == '?')
636         break;
637     }
638
639   if (i < new_text_length ||
640       /* Disallow entering text that would cause a colon to be anywhere except
641        * after a drive letter.
642        */
643       (colon != NULL &&
644        *position + (colon - new_text) != 1) ||
645       (new_text_length > 0 &&
646        *position <= 1 &&
647        gtk_entry_get_text_length (GTK_ENTRY (chooser_entry)) >= 2 &&
648        gtk_entry_get_text (GTK_ENTRY (chooser_entry))[1] == ':'))
649     {
650       gtk_widget_error_bell (GTK_WIDGET (chooser_entry));
651       g_signal_stop_emission_by_name (chooser_entry, "insert_text");
652       return FALSE;
653     }
654
655   return TRUE;
656 }
657
658 static void
659 delete_text_callback (GtkFileChooserEntry *chooser_entry,
660                       gint                 start_pos,
661                       gint                 end_pos,
662                       gpointer             user_data)
663 {
664   /* If deleting a drive letter, delete the colon, too */
665   if (start_pos == 0 && end_pos == 1 &&
666       gtk_entry_get_text_length (GTK_ENTRY (chooser_entry)) >= 2 &&
667       gtk_entry_get_text (GTK_ENTRY (chooser_entry))[1] == ':')
668     {
669       g_signal_handlers_block_by_func (chooser_entry,
670                                        G_CALLBACK (delete_text_callback),
671                                        user_data);
672       gtk_editable_delete_text (GTK_EDITABLE (chooser_entry), 0, 1);
673       g_signal_handlers_unblock_by_func (chooser_entry,
674                                          G_CALLBACK (delete_text_callback),
675                                          user_data);
676     }
677 }
678 #endif
679
680 /**
681  * _gtk_file_chooser_entry_new:
682  * @eat_tabs: If %FALSE, allow focus navigation with the tab key.
683  *
684  * Creates a new #GtkFileChooserEntry object. #GtkFileChooserEntry
685  * is an internal implementation widget for the GTK+ file chooser
686  * which is an entry with completion with respect to a
687  * #GtkFileSystem object.
688  *
689  * Return value: the newly created #GtkFileChooserEntry
690  **/
691 GtkWidget *
692 _gtk_file_chooser_entry_new (gboolean       eat_tabs)
693 {
694   GtkFileChooserEntry *chooser_entry;
695
696   chooser_entry = g_object_new (GTK_TYPE_FILE_CHOOSER_ENTRY, NULL);
697   chooser_entry->eat_tabs = (eat_tabs != FALSE);
698
699   return GTK_WIDGET (chooser_entry);
700 }
701
702 /**
703  * _gtk_file_chooser_entry_set_base_folder:
704  * @chooser_entry: a #GtkFileChooserEntry
705  * @file: file for a folder in the chooser entries current file system.
706  *
707  * Sets the folder with respect to which completions occur.
708  **/
709 void
710 _gtk_file_chooser_entry_set_base_folder (GtkFileChooserEntry *chooser_entry,
711                                          GFile               *file)
712 {
713   if (file)
714     g_object_ref (file);
715   else
716     file = g_file_new_for_path (g_get_home_dir ());
717
718   if (g_file_equal (chooser_entry->base_folder, file))
719     {
720       g_object_unref (file);
721       return;
722     }
723
724   if (chooser_entry->base_folder)
725     g_object_unref (chooser_entry->base_folder);
726
727   chooser_entry->base_folder = file;
728
729   refresh_current_folder_and_file_part (chooser_entry);
730 }
731
732 /**
733  * _gtk_file_chooser_entry_get_current_folder:
734  * @chooser_entry: a #GtkFileChooserEntry
735  *
736  * Gets the current folder for the #GtkFileChooserEntry. If the
737  * user has only entered a filename, this will be in the base folder
738  * (see _gtk_file_chooser_entry_set_base_folder()), but if the
739  * user has entered a relative or absolute path, then it will
740  * be different.  If the user has entered unparsable text, or text which
741  * the entry cannot handle, this will return %NULL.
742  *
743  * Return value: the file for the current folder - you must g_object_unref()
744  *   the value after use.
745  **/
746 GFile *
747 _gtk_file_chooser_entry_get_current_folder (GtkFileChooserEntry *chooser_entry)
748 {
749   g_return_val_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry), NULL);
750
751   return gtk_file_chooser_get_directory_for_text (chooser_entry,
752                                                   gtk_entry_get_text (GTK_ENTRY (chooser_entry)));
753 }
754
755 /**
756  * _gtk_file_chooser_entry_get_file_part:
757  * @chooser_entry: a #GtkFileChooserEntry
758  *
759  * Gets the non-folder portion of whatever the user has entered
760  * into the file selector. What is returned is a UTF-8 string,
761  * and if a filename path is needed, g_file_get_child_for_display_name()
762  * must be used
763   *
764  * Return value: the entered filename - this value is owned by the
765  *  chooser entry and must not be modified or freed.
766  **/
767 const gchar *
768 _gtk_file_chooser_entry_get_file_part (GtkFileChooserEntry *chooser_entry)
769 {
770   const char *last_slash, *text;
771
772   g_return_val_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry), NULL);
773
774   text = gtk_entry_get_text (GTK_ENTRY (chooser_entry));
775   last_slash = strrchr (text, G_DIR_SEPARATOR);
776   if (last_slash)
777     return last_slash + 1;
778   else
779     return text;
780 }
781
782 /**
783  * _gtk_file_chooser_entry_set_action:
784  * @chooser_entry: a #GtkFileChooserEntry
785  * @action: the action which is performed by the file selector using this entry
786  *
787  * Sets action which is performed by the file selector using this entry. 
788  * The #GtkFileChooserEntry will use different completion strategies for 
789  * different actions.
790  **/
791 void
792 _gtk_file_chooser_entry_set_action (GtkFileChooserEntry *chooser_entry,
793                                     GtkFileChooserAction action)
794 {
795   g_return_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry));
796   
797   if (chooser_entry->action != action)
798     {
799       GtkEntryCompletion *comp;
800
801       chooser_entry->action = action;
802
803       comp = gtk_entry_get_completion (GTK_ENTRY (chooser_entry));
804
805       /* FIXME: do we need to actually set the following? */
806
807       switch (action)
808         {
809         case GTK_FILE_CHOOSER_ACTION_OPEN:
810         case GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
811           gtk_entry_completion_set_popup_single_match (comp, FALSE);
812           break;
813         case GTK_FILE_CHOOSER_ACTION_SAVE:
814         case GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER:
815           gtk_entry_completion_set_popup_single_match (comp, TRUE);
816           break;
817         }
818     }
819 }
820
821
822 /**
823  * _gtk_file_chooser_entry_get_action:
824  * @chooser_entry: a #GtkFileChooserEntry
825  *
826  * Gets the action for this entry. 
827  *
828  * Returns: the action
829  **/
830 GtkFileChooserAction
831 _gtk_file_chooser_entry_get_action (GtkFileChooserEntry *chooser_entry)
832 {
833   g_return_val_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry),
834                         GTK_FILE_CHOOSER_ACTION_OPEN);
835   
836   return chooser_entry->action;
837 }
838
839 gboolean
840 _gtk_file_chooser_entry_get_is_folder (GtkFileChooserEntry *chooser_entry,
841                                        GFile               *file)
842 {
843   GtkTreeIter iter;
844   GFileInfo *info;
845
846   if (chooser_entry->completion_store == NULL ||
847       !_gtk_file_system_model_get_iter_for_file (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
848                                                  &iter,
849                                                  file))
850     return FALSE;
851
852   info = _gtk_file_system_model_get_info (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
853                                           &iter);
854
855   return _gtk_file_info_consider_as_directory (info);
856 }
857
858
859 /*
860  * _gtk_file_chooser_entry_select_filename:
861  * @chooser_entry: a #GtkFileChooserEntry
862  *
863  * Selects the filename (without the extension) for user edition.
864  */
865 void
866 _gtk_file_chooser_entry_select_filename (GtkFileChooserEntry *chooser_entry)
867 {
868   const gchar *str, *ext;
869   glong len = -1;
870
871   if (chooser_entry->action == GTK_FILE_CHOOSER_ACTION_SAVE)
872     {
873       str = gtk_entry_get_text (GTK_ENTRY (chooser_entry));
874       ext = g_strrstr (str, ".");
875
876       if (ext)
877        len = g_utf8_pointer_to_offset (str, ext);
878     }
879
880   gtk_editable_select_region (GTK_EDITABLE (chooser_entry), 0, (gint) len);
881 }
882
883 void
884 _gtk_file_chooser_entry_set_local_only (GtkFileChooserEntry *chooser_entry,
885                                         gboolean             local_only)
886 {
887   chooser_entry->local_only = local_only;
888   refresh_current_folder_and_file_part (chooser_entry);
889 }
890
891 gboolean
892 _gtk_file_chooser_entry_get_local_only (GtkFileChooserEntry *chooser_entry)
893 {
894   return chooser_entry->local_only;
895 }