]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkfilechooserentry.c
gdk/gdkwindow.c, gtk/gtkwidget.c: Include fallback-c89.c
[~andy/gtk] / gtk / gtkfilechooserentry.c
index c6c78140f70a6b24f29888e47422a191b4f4259d..ce2b6cc9e7b38dbafe1c0837612541321249105d 100644 (file)
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include <config.h>
+#include "config.h"
+
+#include "gtkfilechooserentry.h"
+
 #include <string.h>
 
 #include "gtkcelllayout.h"
 #include "gtkcellrenderertext.h"
 #include "gtkentry.h"
-#include "gtkfilechooserentry.h"
+#include "gtkfilesystemmodel.h"
+#include "gtklabel.h"
 #include "gtkmain.h"
+#include "gtksizerequest.h"
+#include "gtkwindow.h"
 #include "gtkintl.h"
-#include "gtkalias.h"
 
 typedef struct _GtkFileChooserEntryClass GtkFileChooserEntryClass;
 
@@ -40,69 +43,39 @@ struct _GtkFileChooserEntryClass
   GtkEntryClass parent_class;
 };
 
-/* Action to take when the current folder finishes loading (for explicit or automatic completion) */
-typedef enum {
-  LOAD_COMPLETE_NOTHING,
-  LOAD_COMPLETE_AUTOCOMPLETE,
-  LOAD_COMPLETE_EXPLICIT_COMPLETION
-} LoadCompleteAction;
-
 struct _GtkFileChooserEntry
 {
   GtkEntry parent_instance;
 
   GtkFileChooserAction action;
 
-  GtkFileSystem *file_system;
-  GtkFilePath *base_folder;
+  GFile *base_folder;
+  GFile *current_folder_file;
+  gchar *dir_part;
   gchar *file_part;
-  gint file_part_pos;
-
-  /* Folder being loaded or already loaded */
-  GtkFilePath *current_folder_path;
-  GtkFileFolder *current_folder;
-  GtkFileSystemHandle *load_folder_handle;
 
-  LoadCompleteAction load_complete_action;
+  GtkTreeModel *completion_store;
 
-  GtkListStore *completion_store;
-
-  guint start_autocompletion_idle_id;
-
-  guint has_completion : 1;
-  guint in_change      : 1;
+  guint current_folder_loaded : 1;
+  guint complete_on_load : 1;
   guint eat_tabs       : 1;
+  guint local_only     : 1;
 };
 
 enum
 {
   DISPLAY_NAME_COLUMN,
-  PATH_COLUMN,
+  FULL_PATH_COLUMN,
   N_COLUMNS
 };
 
-static void     gtk_file_chooser_entry_iface_init     (GtkEditableClass *iface);
-
 static void     gtk_file_chooser_entry_finalize       (GObject          *object);
 static void     gtk_file_chooser_entry_dispose        (GObject          *object);
 static void     gtk_file_chooser_entry_grab_focus     (GtkWidget        *widget);
-static gboolean gtk_file_chooser_entry_focus          (GtkWidget        *widget,
-                                                      GtkDirectionType  direction);
+static gboolean gtk_file_chooser_entry_tab_handler    (GtkWidget *widget,
+                                                      GdkEventKey *event);
 static gboolean gtk_file_chooser_entry_focus_out_event (GtkWidget       *widget,
                                                        GdkEventFocus   *event);
-static void     gtk_file_chooser_entry_activate       (GtkEntry         *entry);
-static void     gtk_file_chooser_entry_do_insert_text (GtkEditable *editable,
-                                                      const gchar *new_text,
-                                                      gint         new_text_length,
-                                                      gint        *position);
-static void     gtk_file_chooser_entry_do_delete_text (GtkEditable *editable,
-                                                      gint         start_pos,
-                                                      gint         end_pos);
-static void     gtk_file_chooser_entry_set_position (GtkEditable *editable,
-                                                    gint         position);
-static void     gtk_file_chooser_entry_set_selection_bounds (GtkEditable *editable,
-                                                            gint         start_pos,
-                                                            gint         end_pos);
 
 #ifdef G_OS_WIN32
 static gint     insert_text_callback      (GtkFileChooserEntry *widget,
@@ -120,52 +93,66 @@ static gboolean match_selected_callback   (GtkEntryCompletion  *completion,
                                           GtkTreeModel        *model,
                                           GtkTreeIter         *iter,
                                           GtkFileChooserEntry *chooser_entry);
-static gboolean completion_match_func     (GtkEntryCompletion  *comp,
-                                          const char          *key,
-                                          GtkTreeIter         *iter,
-                                          gpointer             data);
-static char    *maybe_append_separator_to_path (GtkFileChooserEntry *chooser_entry,
-                                               GtkFilePath         *path,
-                                               gchar               *display_name);
 
+static void set_complete_on_load (GtkFileChooserEntry *chooser_entry,
+                                  gboolean             complete_on_load);
 static void refresh_current_folder_and_file_part (GtkFileChooserEntry *chooser_entry);
-static void finished_loading_cb (GtkFileFolder *folder,
-                                gpointer       data);
-static void autocomplete (GtkFileChooserEntry *chooser_entry);
-static void install_start_autocompletion_idle (GtkFileChooserEntry *chooser_entry);
+static void set_completion_folder (GtkFileChooserEntry *chooser_entry,
+                                   GFile               *folder);
+static void finished_loading_cb (GtkFileSystemModel  *model,
+                                 GError              *error,
+                                GtkFileChooserEntry *chooser_entry);
 
-static GtkEditableClass *parent_editable_iface;
+G_DEFINE_TYPE (GtkFileChooserEntry, _gtk_file_chooser_entry, GTK_TYPE_ENTRY)
 
-G_DEFINE_TYPE_WITH_CODE (GtkFileChooserEntry, _gtk_file_chooser_entry, GTK_TYPE_ENTRY,
-                        G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE,
-                                               gtk_file_chooser_entry_iface_init))
+static char *
+gtk_file_chooser_entry_get_completion_text (GtkFileChooserEntry *chooser_entry)
+{
+  GtkEditable *editable = GTK_EDITABLE (chooser_entry);
+  int start, end;
+
+  gtk_editable_get_selection_bounds (editable, &start, &end);
+  return gtk_editable_get_chars (editable, 0, MIN (start, end));
+}
+
+static void
+gtk_file_chooser_entry_dispatch_properties_changed (GObject     *object,
+                                                    guint        n_pspecs,
+                                                    GParamSpec **pspecs)
+{
+  GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (object);
+  guint i;
+
+  G_OBJECT_CLASS (_gtk_file_chooser_entry_parent_class)->dispatch_properties_changed (object, n_pspecs, pspecs);
+
+  /* What we are after: The text in front of the cursor was modified.
+   * Unfortunately, there's no other way to catch this. */
+
+  for (i = 0; i < n_pspecs; i++)
+    {
+      if (pspecs[i]->name == I_("cursor-position") ||
+          pspecs[i]->name == I_("selection-bound") ||
+          pspecs[i]->name == I_("text"))
+        {
+          set_complete_on_load (chooser_entry, FALSE);
+          refresh_current_folder_and_file_part (chooser_entry);
+          break;
+        }
+    }
+}
 
 static void
 _gtk_file_chooser_entry_class_init (GtkFileChooserEntryClass *class)
 {
   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
-  GtkEntryClass *entry_class = GTK_ENTRY_CLASS (class);
 
   gobject_class->finalize = gtk_file_chooser_entry_finalize;
   gobject_class->dispose = gtk_file_chooser_entry_dispose;
+  gobject_class->dispatch_properties_changed = gtk_file_chooser_entry_dispatch_properties_changed;
 
   widget_class->grab_focus = gtk_file_chooser_entry_grab_focus;
-  widget_class->focus = gtk_file_chooser_entry_focus;
   widget_class->focus_out_event = gtk_file_chooser_entry_focus_out_event;
-
-  entry_class->activate = gtk_file_chooser_entry_activate;
-}
-
-static void
-gtk_file_chooser_entry_iface_init (GtkEditableClass *iface)
-{
-  parent_editable_iface = g_type_interface_peek_parent (iface);
-
-  iface->do_insert_text = gtk_file_chooser_entry_do_insert_text;
-  iface->do_delete_text = gtk_file_chooser_entry_do_delete_text;
-  iface->set_position = gtk_file_chooser_entry_set_position;
-  iface->set_selection_bounds = gtk_file_chooser_entry_set_selection_bounds;
 }
 
 static void
@@ -174,13 +161,20 @@ _gtk_file_chooser_entry_init (GtkFileChooserEntry *chooser_entry)
   GtkEntryCompletion *comp;
   GtkCellRenderer *cell;
 
+  chooser_entry->local_only = TRUE;
+
   g_object_set (chooser_entry, "truncate-multiline", TRUE, NULL);
 
   comp = gtk_entry_completion_new ();
   gtk_entry_completion_set_popup_single_match (comp, FALSE);
+  gtk_entry_completion_set_minimum_key_length (comp, 0);
+  /* see docs for gtk_entry_completion_set_text_column() */
+  g_object_set (comp, "text-column", FULL_PATH_COLUMN, NULL);
 
+  /* Need a match func here or entry completion uses a wrong one.
+   * We do our own filtering after all. */
   gtk_entry_completion_set_match_func (comp,
-                                      completion_match_func,
+                                      (GtkEntryCompletionMatchFunc) gtk_true,
                                       chooser_entry,
                                       NULL);
 
@@ -189,18 +183,22 @@ _gtk_file_chooser_entry_init (GtkFileChooserEntry *chooser_entry)
                               cell, TRUE);
   gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (comp),
                                  cell,
-                                 "text", 0);
+                                 "text", DISPLAY_NAME_COLUMN);
 
-  g_signal_connect (comp, "match_selected",
+  g_signal_connect (comp, "match-selected",
                    G_CALLBACK (match_selected_callback), chooser_entry);
 
   gtk_entry_set_completion (GTK_ENTRY (chooser_entry), comp);
   g_object_unref (comp);
+  /* NB: This needs to happen after the completion is set, so this handler
+   * runs before the handler installed by entrycompletion */
+  g_signal_connect (chooser_entry, "key-press-event",
+                    G_CALLBACK (gtk_file_chooser_entry_tab_handler), NULL);
 
 #ifdef G_OS_WIN32
-  g_signal_connect (chooser_entry, "insert_text",
+  g_signal_connect (chooser_entry, "insert-text",
                    G_CALLBACK (insert_text_callback), NULL);
-  g_signal_connect (chooser_entry, "delete_text",
+  g_signal_connect (chooser_entry, "delete-text",
                    G_CALLBACK (delete_text_callback), NULL);
 #endif
 }
@@ -210,8 +208,13 @@ gtk_file_chooser_entry_finalize (GObject *object)
 {
   GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (object);
 
-  gtk_file_path_free (chooser_entry->base_folder);
-  gtk_file_path_free (chooser_entry->current_folder_path);
+  if (chooser_entry->base_folder)
+    g_object_unref (chooser_entry->base_folder);
+
+  if (chooser_entry->current_folder_file)
+    g_object_unref (chooser_entry->current_folder_file);
+
+  g_free (chooser_entry->dir_part);
   g_free (chooser_entry->file_part);
 
   G_OBJECT_CLASS (_gtk_file_chooser_entry_parent_class)->finalize (object);
@@ -222,37 +225,7 @@ gtk_file_chooser_entry_dispose (GObject *object)
 {
   GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (object);
 
-  if (chooser_entry->start_autocompletion_idle_id != 0)
-    {
-      g_source_remove (chooser_entry->start_autocompletion_idle_id);
-      chooser_entry->start_autocompletion_idle_id = 0;
-    }
-
-  if (chooser_entry->completion_store)
-    {
-      g_object_unref (chooser_entry->completion_store);
-      chooser_entry->completion_store = NULL;
-    }
-
-  if (chooser_entry->load_folder_handle)
-    {
-      gtk_file_system_cancel_operation (chooser_entry->load_folder_handle);
-      chooser_entry->load_folder_handle = NULL;
-    }
-
-  if (chooser_entry->current_folder)
-    {
-      g_signal_handlers_disconnect_by_func (chooser_entry->current_folder,
-                                           G_CALLBACK (finished_loading_cb), chooser_entry);
-      g_object_unref (chooser_entry->current_folder);
-      chooser_entry->current_folder = NULL;
-    }
-
-  if (chooser_entry->file_system)
-    {
-      g_object_unref (chooser_entry->file_system);
-      chooser_entry->file_system = NULL;
-    }
+  set_completion_folder (chooser_entry, NULL);
 
   G_OBJECT_CLASS (_gtk_file_chooser_entry_parent_class)->dispose (object);
 }
@@ -260,383 +233,135 @@ gtk_file_chooser_entry_dispose (GObject *object)
 /* Match functions for the GtkEntryCompletion */
 static gboolean
 match_selected_callback (GtkEntryCompletion  *completion,
-                        GtkTreeModel        *model,
-                        GtkTreeIter         *iter,
-                        GtkFileChooserEntry *chooser_entry)
+                         GtkTreeModel        *model,
+                         GtkTreeIter         *iter,
+                         GtkFileChooserEntry *chooser_entry)
 {
-  char *display_name;
-  GtkFilePath *path;
+  char *path;
   gint pos;
-  
-  gtk_tree_model_get (model, iter,
-                     DISPLAY_NAME_COLUMN, &display_name,
-                     PATH_COLUMN, &path,
-                     -1);
-
-  if (!display_name || !path)
-    {
-      /* these shouldn't complain if passed NULL */
-      gtk_file_path_free (path);
-      g_free (display_name);
-      return FALSE;
-    }
-
-  display_name = maybe_append_separator_to_path (chooser_entry, path, display_name);
 
-  pos = chooser_entry->file_part_pos;
+  gtk_tree_model_get (model, iter,
+                      FULL_PATH_COLUMN, &path,
+                      -1);
 
-  /* We don't set in_change here as we want to update the current_folder
-   * variable */
   gtk_editable_delete_text (GTK_EDITABLE (chooser_entry),
-                           pos, -1);
+                            0,
+                            gtk_editable_get_position (GTK_EDITABLE (chooser_entry)));
+  pos = 0;
   gtk_editable_insert_text (GTK_EDITABLE (chooser_entry),
-                           display_name, -1, 
-                           &pos);
-  gtk_editable_set_position (GTK_EDITABLE (chooser_entry), -1);
+                            path,
+                            -1,
+                            &pos);
 
-  gtk_file_path_free (path);
-  g_free (display_name);
+  g_free (path);
 
   return TRUE;
 }
 
-/* Match function for the GtkEntryCompletion */
-static gboolean
-completion_match_func (GtkEntryCompletion *comp,
-                      const char         *key_unused,
-                      GtkTreeIter        *iter,
-                      gpointer            data)
-{
-  GtkFileChooserEntry *chooser_entry;
-  char *name;
-  gboolean result;
-  char *norm_file_part;
-  char *norm_name;
-
-  chooser_entry = GTK_FILE_CHOOSER_ENTRY (data);
-
-  /* We ignore the key because it is the contents of the entry.  Instead, we
-   * just use our precomputed file_part.
-   */
-  if (!chooser_entry->file_part)
-    {
-      return FALSE;
-    }
-
-  gtk_tree_model_get (GTK_TREE_MODEL (chooser_entry->completion_store), iter, DISPLAY_NAME_COLUMN, &name, -1);
-  if (!name)
-    {
-      return FALSE; /* Uninitialized row, ugh */
-    }
-
-  /* If we have an empty file_part, then we're at the root of a directory.  In
-   * that case, we want to match all non-dot files.  We might want to match
-   * dot_files too if show_hidden is TRUE on the fileselector in the future.
-   */
-  /* Additionally, support for gnome .hidden files would be sweet, too */
-  if (chooser_entry->file_part[0] == '\000')
-    {
-      if (name[0] == '.')
-       result = FALSE;
-      else
-       result = TRUE;
-      g_free (name);
-
-      return result;
-    }
-
-
-  norm_file_part = g_utf8_normalize (chooser_entry->file_part, -1, G_NORMALIZE_ALL);
-  norm_name = g_utf8_normalize (name, -1, G_NORMALIZE_ALL);
-
-#ifdef G_PLATFORM_WIN32
-  {
-    gchar *temp;
-
-    temp = norm_file_part;
-    norm_file_part = g_utf8_casefold (norm_file_part, -1);
-    g_free (temp);
-
-    temp = norm_name;
-    norm_name = g_utf8_casefold (norm_name, -1);
-    g_free (temp);
-  }
-#endif
-
-  result = (strncmp (norm_file_part, norm_name, strlen (norm_file_part)) == 0);
-
-  g_free (norm_file_part);
-  g_free (norm_name);
-  g_free (name);
-  
-  return result;
-}
-
 static void
-clear_completions (GtkFileChooserEntry *chooser_entry)
+set_complete_on_load (GtkFileChooserEntry *chooser_entry,
+                      gboolean             complete_on_load)
 {
-  chooser_entry->has_completion = FALSE;
-  chooser_entry->load_complete_action = LOAD_COMPLETE_NOTHING;
-}
+  /* a completion was triggered, but we couldn't do it.
+   * So no text was inserted when pressing tab, so we beep */
+  if (chooser_entry->complete_on_load && !complete_on_load)
+    gtk_widget_error_bell (GTK_WIDGET (chooser_entry));
 
-/* This function will append a directory separator to paths to
- * display_name iff the path associated with it is a directory.
- * maybe_append_separator_to_path will g_free the display_name and
- * return a new one if needed.  Otherwise, it will return the old one.
- * You should be safe calling
- *
- * display_name = maybe_append_separator_to_path (entry, path, display_name);
- * ...
- * g_free (display_name);
- */
-static char *
-maybe_append_separator_to_path (GtkFileChooserEntry *chooser_entry,
-                               GtkFilePath         *path,
-                               gchar               *display_name)
-{
-  if (!g_str_has_suffix (display_name, G_DIR_SEPARATOR_S) && path)
-    {
-      GtkFileInfo *info;
-           
-      info = gtk_file_folder_get_info (chooser_entry->current_folder,
-                                      path, NULL); /* NULL-GError */
-
-      if (info)
-       {
-         if (gtk_file_info_get_is_folder (info))
-           {
-             gchar *tmp = display_name;
-             display_name = g_strconcat (tmp, G_DIR_SEPARATOR_S, NULL);
-             g_free (tmp);
-           }
-         
-         gtk_file_info_free (info);
-       }
-    }
-
-  return display_name;
+  chooser_entry->complete_on_load = complete_on_load;
 }
 
-/* Determines if the completion model has entries with a common prefix relative
- * to the current contents of the entry.  Also, if there's one and only one such
- * path, stores it in unique_path_ret.
- */
-static void
-find_common_prefix (GtkFileChooserEntry *chooser_entry,
-                   gchar               **common_prefix_ret,
-                   GtkFilePath         **unique_path_ret)
+static gboolean
+is_valid_scheme_character (char c)
 {
-  GtkEditable *editable;
-  GtkTreeIter iter;
-  gboolean parsed;
-  gboolean valid;
-  char *text_up_to_cursor;
-  GtkFilePath *parsed_folder_path;
-  char *parsed_file_part;
-
-  *common_prefix_ret = NULL;
-  *unique_path_ret = NULL;
-
-  if (chooser_entry->completion_store == NULL)
-    return;
-
-  editable = GTK_EDITABLE (chooser_entry);
-
-  text_up_to_cursor = gtk_editable_get_chars (editable, 0, gtk_editable_get_position (editable));
-
-  parsed = gtk_file_system_parse (chooser_entry->file_system,
-                                 chooser_entry->base_folder,
-                                 text_up_to_cursor,
-                                 &parsed_folder_path,
-                                 &parsed_file_part,
-                                 NULL); /* NULL-GError */
-
-  printf ("Text up to cursor: \"%s\"\n", text_up_to_cursor);
-  printf ("parsed_folder_path: \"%s\"\nparsed_file_part: \"%s\"\n",
-         parsed_folder_path ? (char *) parsed_folder_path : "<NONE>",
-         parsed_file_part ? parsed_file_part : "<NONE>");
-
-  g_free (text_up_to_cursor);
-
-  if (!parsed)
-    return;
-
-  g_assert (parsed_folder_path != NULL
-           && chooser_entry->current_folder_path != NULL
-           && gtk_file_path_compare (parsed_folder_path, chooser_entry->current_folder_path) == 0);
-
-  valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (chooser_entry->completion_store), &iter);
-
-  while (valid)
-    {
-      gchar *display_name;
-      GtkFilePath *path;
-
-      gtk_tree_model_get (GTK_TREE_MODEL (chooser_entry->completion_store),
-                         &iter,
-                         DISPLAY_NAME_COLUMN, &display_name,
-                         PATH_COLUMN, &path,
-                         -1);
-
-      if (g_str_has_prefix (display_name, parsed_file_part))
-       {
-         if (!*common_prefix_ret)
-           {
-             *common_prefix_ret = g_strdup (display_name);
-             *unique_path_ret = gtk_file_path_copy (path);
-           }
-         else
-           {
-             gchar *p = *common_prefix_ret;
-             const gchar *q = display_name;
-                 
-             while (*p && *p == *q)
-               {
-                 p++;
-                 q++;
-               }
-                 
-             *p = '\0';
-
-             gtk_file_path_free (*unique_path_ret);
-             *unique_path_ret = NULL;
-           }
-       }
-
-      g_free (display_name);
-      gtk_file_path_free (path);
-      valid = gtk_tree_model_iter_next (GTK_TREE_MODEL (chooser_entry->completion_store), &iter);
-    }
-
-  gtk_file_path_free (parsed_folder_path);
-  g_free (parsed_file_part);
+  return g_ascii_isalnum (c) || c == '+' || c == '-' || c == '.';
 }
 
-/* Finds a common prefix based on the contents of the entry and mandatorily appends it */
-static void
-append_common_prefix (GtkFileChooserEntry *chooser_entry,
-                     gboolean             highlight)
+static gboolean
+has_uri_scheme (const char *str)
 {
-  gchar *common_prefix;
-  GtkFilePath *unique_path;
-
-  clear_completions (chooser_entry);
+  const char *p;
 
-  find_common_prefix (chooser_entry, &common_prefix, &unique_path);
+  p = str;
 
-  if (unique_path)
-    {
-      common_prefix = maybe_append_separator_to_path (chooser_entry,
-                                                     unique_path,
-                                                     common_prefix);
-      gtk_file_path_free (unique_path);
-    }
-
-  printf ("common prefix: \"%s\"\n",
-         common_prefix ? common_prefix : "<NONE>");
+  if (!is_valid_scheme_character (*p))
+    return FALSE;
 
-  if (common_prefix)
-    {
-      gint cursor_pos;
-      gint common_prefix_len;
-      gint pos;
-
-      cursor_pos = gtk_editable_get_position (GTK_EDITABLE (chooser_entry));
-      common_prefix_len = g_utf8_strlen (common_prefix, -1);
-
-      pos = chooser_entry->file_part_pos;
-
-      chooser_entry->in_change = TRUE;
-      printf ("Deleting range (%d, %d)\n", pos, cursor_pos);
-      gtk_editable_delete_text (GTK_EDITABLE (chooser_entry),
-                               pos, cursor_pos);
-      printf ("Inserting common prefix at %d\n", pos);
-      gtk_editable_insert_text (GTK_EDITABLE (chooser_entry),
-                               common_prefix, -1, 
-                               &pos);
-      chooser_entry->in_change = FALSE;
-
-      if (highlight)
-       {
-         printf ("Selecting range (%d, %d)\n", cursor_pos, pos);
-         gtk_editable_select_region (GTK_EDITABLE (chooser_entry),
-                                     cursor_pos,
-                                     pos); /* cursor_pos + common_prefix_len); */
-         chooser_entry->has_completion = TRUE;
-       }
-      else
-       gtk_editable_set_position (GTK_EDITABLE (chooser_entry), pos);
+  do
+    p++;
+  while (is_valid_scheme_character (*p));
 
-      g_free (common_prefix);
-    }
+  return (strncmp (p, "://", 3) == 0);
 }
 
-static void
-gtk_file_chooser_entry_do_insert_text (GtkEditable *editable,
-                                      const gchar *new_text,
-                                      gint         new_text_length,
-                                      gint        *position)
+static GFile *
+gtk_file_chooser_get_file_for_text (GtkFileChooserEntry *chooser_entry,
+                                    const gchar         *str)
 {
-  GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (editable);
-  gint old_text_len;
-  gint insert_pos;
-
-  old_text_len = GTK_ENTRY (chooser_entry)->text_length;
-  insert_pos = *position;
+  GFile *file;
 
-  parent_editable_iface->do_insert_text (editable, new_text, new_text_length, position);
-
-  if (chooser_entry->in_change)
-    return;
+  if (str[0] == '~' || g_path_is_absolute (str) || has_uri_scheme (str))
+    file = g_file_parse_name (str);
+  else if (chooser_entry->base_folder != NULL)
+    file = g_file_resolve_relative_path (chooser_entry->base_folder, str);
+  else
+    file = NULL;
 
-  if ((chooser_entry->action == GTK_FILE_CHOOSER_ACTION_OPEN
-       || chooser_entry->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
-      && insert_pos == old_text_len)
-    install_start_autocompletion_idle (chooser_entry);
+  return file;
 }
 
-static void
-clear_completions_if_not_in_change (GtkFileChooserEntry *chooser_entry)
+static GFile *
+gtk_file_chooser_get_directory_for_text (GtkFileChooserEntry *chooser_entry,
+                                         const char *         text)
 {
-  if (chooser_entry->in_change)
-    return;
+  GFile *file, *parent;
 
-  clear_completions (chooser_entry);
-}
+  file = gtk_file_chooser_get_file_for_text (chooser_entry, text);
 
-static void
-gtk_file_chooser_entry_do_delete_text (GtkEditable *editable,
-                                      gint         start_pos,
-                                      gint         end_pos)
-{
-  GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (editable);
+  if (file == NULL)
+    return NULL;
 
-  parent_editable_iface->do_delete_text (editable, start_pos, end_pos);
+  if (text[0] == 0 || text[strlen (text) - 1] == G_DIR_SEPARATOR)
+    return file;
 
-  clear_completions_if_not_in_change (chooser_entry);
+  parent = g_file_get_parent (file);
+  g_object_unref (file);
+
+  return parent;
 }
 
+/* Finds a common prefix based on the contents of the entry
+ * and mandatorily appends it
+ */
 static void
-gtk_file_chooser_entry_set_position (GtkEditable *editable,
-                                    gint         position)
+explicitly_complete (GtkFileChooserEntry *chooser_entry)
 {
-  GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (editable);
+  chooser_entry->complete_on_load = FALSE;
 
-  parent_editable_iface->set_position (editable, position);
-
-  clear_completions_if_not_in_change (chooser_entry);
-}
+  if (chooser_entry->completion_store)
+    {
+      char *completion, *text;
+      gsize completion_len, text_len;
+      
+      text = gtk_file_chooser_entry_get_completion_text (chooser_entry);
+      text_len = strlen (text);
+      completion = gtk_entry_completion_compute_prefix (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)), text);
+      completion_len = completion ? strlen (completion) : 0;
 
-static void
-gtk_file_chooser_entry_set_selection_bounds (GtkEditable *editable,
-                                            gint         start_pos,
-                                            gint         end_pos)
-{
-  GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (editable);
+      if (completion_len > text_len)
+        {
+          GtkEditable *editable = GTK_EDITABLE (chooser_entry);
+          int pos = gtk_editable_get_position (editable);
 
-  parent_editable_iface->set_selection_bounds (editable, start_pos, end_pos);
+          gtk_editable_insert_text (editable,
+                                    completion + text_len,
+                                    completion_len - text_len,
+                                    &pos);
+          gtk_editable_set_position (editable, pos);
+          return;
+        }
+    }
 
-  clear_completions_if_not_in_change (chooser_entry);
+  gtk_widget_error_bell (GTK_WIDGET (chooser_entry));
 }
 
 static void
@@ -646,119 +371,47 @@ gtk_file_chooser_entry_grab_focus (GtkWidget *widget)
   _gtk_file_chooser_entry_select_filename (GTK_FILE_CHOOSER_ENTRY (widget));
 }
 
-static void
-explicitly_complete (GtkFileChooserEntry *chooser_entry)
-{
-  g_assert (chooser_entry->current_folder != NULL);
-  g_assert (gtk_file_folder_is_finished_loading (chooser_entry->current_folder));
-
-  /* FIXME: see what Emacs does in case there is no common prefix, or there is more than one match:
-   *
-   * - If there is a common prefix, insert it
-   * - If there is no common prefix, pop up the suggestion window
-   * - If there are no matches at all, beep and bring up a tooltip
-   * - If the suggestion window is already up, scroll it
-   */
-  append_common_prefix (chooser_entry, FALSE);
-
-  /* FIXME: this bit of code is commented out for reference; this is how we used to force the suggestion window to pop up
-   *
-   * Trigger the completion window to pop up again by a 
-   * zero-length insertion, a bit of a hack.
-   *
-   * gtk_editable_insert_text (editable, "", -1, &pos);
-   */
-}
-
 static void
 start_explicit_completion (GtkFileChooserEntry *chooser_entry)
 {
-  printf ("Starting explicit completion - refreshing current folder\n");
-
-  refresh_current_folder_and_file_part (chooser_entry);
-
-  if (!chooser_entry->current_folder_path)
-    {
-      /* Here, no folder path means we couldn't parse what the user typed. */
-
-      printf ("We don't have a current_folder_path - means the user typed something bogus\n");
-
-      gdk_display_beep (gtk_widget_get_display (GTK_WIDGET (chooser_entry)));
-      /* FIXME: present a tooltip to tell the user that his folder is invalid */
-
-      chooser_entry->load_complete_action = LOAD_COMPLETE_NOTHING;
-      return;
-    }
-
-  if (chooser_entry->current_folder
-      && gtk_file_folder_is_finished_loading (chooser_entry->current_folder))
-    {
-      printf ("File folder is finished loading, doing explicit completion immediately\n");
-      explicitly_complete (chooser_entry);
-    }
+  if (chooser_entry->current_folder_loaded)
+    explicitly_complete (chooser_entry);
   else
-    {
-      printf ("File folder is not yet loaded; will do explicit completion later\n");
-      chooser_entry->load_complete_action = LOAD_COMPLETE_EXPLICIT_COMPLETION;
-    }
+    set_complete_on_load (chooser_entry, TRUE);
 }
 
 static gboolean
-gtk_file_chooser_entry_focus (GtkWidget        *widget,
-                             GtkDirectionType  direction)
+gtk_file_chooser_entry_tab_handler (GtkWidget *widget,
+                                   GdkEventKey *event)
 {
   GtkFileChooserEntry *chooser_entry;
   GtkEditable *editable;
-  GtkEntry *entry;
   GdkModifierType state;
-  gboolean control_pressed;
+  gint start, end;
 
   chooser_entry = GTK_FILE_CHOOSER_ENTRY (widget);
   editable = GTK_EDITABLE (widget);
-  entry = GTK_ENTRY (widget);
 
   if (!chooser_entry->eat_tabs)
-    return GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->focus (widget, direction);
+    return FALSE;
 
-  control_pressed = FALSE;
+  if (event->keyval != GDK_KEY_Tab)
+    return FALSE;
 
-  if (gtk_get_current_event_state (&state))
-    {
-      if ((state & GDK_CONTROL_MASK) == GDK_CONTROL_MASK)
-       control_pressed = TRUE;
-    }
+  if (gtk_get_current_event_state (&state) &&
+      (state & GDK_CONTROL_MASK) == GDK_CONTROL_MASK)
+    return FALSE;
 
   /* This is a bit evil -- it makes Tab never leave the entry. It basically
    * makes it 'safe' for people to hit. */
-  if ((direction == GTK_DIR_TAB_FORWARD) &&
-      (GTK_WIDGET_HAS_FOCUS (widget)) &&
-      (! control_pressed))
-    {
-      gint pos = 0;
-
-      if (chooser_entry->has_completion)
-       {
-         gboolean has_selection;
-         gint sel_end;
-
-         printf ("Hit Tab, and we have a completion!  Will unselect it\n");
-
-         has_selection = gtk_editable_get_selection_bounds (editable, NULL, &sel_end);
-         g_assert (has_selection && sel_end == GTK_ENTRY (entry)->text_length);
-
-         gtk_editable_set_position (editable, sel_end);
-       }
-      else
-       {
-         printf ("Hit Tab, we don't have a selected completion.  Will start explicit completion\n");
-
-         start_explicit_completion (chooser_entry);
-       }
-
-      return TRUE;
-    }
+  gtk_editable_get_selection_bounds (editable, &start, &end);
+      
+  if (start != end)
+    gtk_editable_set_position (editable, MAX (start, end));
   else
-    return GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->focus (widget, direction);
+    start_explicit_completion (chooser_entry);
+
+  return TRUE;
 }
 
 static gboolean
@@ -767,23 +420,33 @@ gtk_file_chooser_entry_focus_out_event (GtkWidget     *widget,
 {
   GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (widget);
 
-  chooser_entry->load_complete_action = LOAD_COMPLETE_NOTHING;
+  set_complete_on_load (chooser_entry, FALSE);
  
   return GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->focus_out_event (widget, event);
 }
 
 static void
-gtk_file_chooser_entry_activate (GtkEntry *entry)
+update_inline_completion (GtkFileChooserEntry *chooser_entry)
 {
-  GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (entry);
+  GtkEntryCompletion *completion = gtk_entry_get_completion (GTK_ENTRY (chooser_entry));
 
-  if (chooser_entry->has_completion)
+  if (!chooser_entry->current_folder_loaded)
     {
-      gtk_editable_set_position (GTK_EDITABLE (entry),
-                                entry->text_length);
+      gtk_entry_completion_set_inline_completion (completion, FALSE);
+      return;
+    }
+
+  switch (chooser_entry->action)
+    {
+    case GTK_FILE_CHOOSER_ACTION_OPEN:
+    case GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
+      gtk_entry_completion_set_inline_completion (completion, TRUE);
+      break;
+    case GTK_FILE_CHOOSER_ACTION_SAVE:
+    case GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER:
+      gtk_entry_completion_set_inline_completion (completion, FALSE);
+      break;
     }
-  
-  GTK_ENTRY_CLASS (_gtk_file_chooser_entry_parent_class)->activate (entry);
 }
 
 static void
@@ -793,332 +456,181 @@ discard_completion_store (GtkFileChooserEntry *chooser_entry)
     return;
 
   gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)), NULL);
+  update_inline_completion (chooser_entry);
   g_object_unref (chooser_entry->completion_store);
   chooser_entry->completion_store = NULL;
 }
 
-/* Fills the completion store from the contents of the current folder */
-static void
-populate_completion_store (GtkFileChooserEntry *chooser_entry)
+static gboolean
+completion_store_set (GtkFileSystemModel  *model,
+                      GFile               *file,
+                      GFileInfo           *info,
+                      int                  column,
+                      GValue              *value,
+                      gpointer             data)
 {
-  GSList *paths;
-  GSList *tmp_list;
-
-  printf ("Populating completion store\n");
-
-  if (!gtk_file_folder_list_children (chooser_entry->current_folder, &paths, NULL)) /* NULL-GError */
-    return;
-
-  discard_completion_store (chooser_entry);
-
-  chooser_entry->completion_store = gtk_list_store_new (N_COLUMNS,
-                                                       G_TYPE_STRING,
-                                                       GTK_TYPE_FILE_PATH);
-
-  for (tmp_list = paths; tmp_list; tmp_list = tmp_list->next)
-    {
-      GtkFileInfo *info;
-      GtkFilePath *path;
-
-      path = tmp_list->data;
-
-      info = gtk_file_folder_get_info (chooser_entry->current_folder,
-                                      path,
-                                      NULL); /* NULL-GError */
-      if (info)
-       {
-         gchar *display_name = g_strdup (gtk_file_info_get_display_name (info));
-         GtkTreeIter iter;
-
-          display_name = maybe_append_separator_to_path (chooser_entry, path, display_name);
-
-         gtk_list_store_append (chooser_entry->completion_store, &iter);
-         gtk_list_store_set (chooser_entry->completion_store, &iter,
-                             DISPLAY_NAME_COLUMN, display_name,
-                             PATH_COLUMN, path,
-                             -1);
-
-         gtk_file_info_free (info);
-          g_free (display_name);
-       }
-    }
-
-  gtk_file_paths_free (paths);
+  GtkFileChooserEntry *chooser_entry = data;
 
-  gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (chooser_entry->completion_store),
-                                       DISPLAY_NAME_COLUMN, GTK_SORT_ASCENDING);
+  const char *prefix = "";
+  const char *suffix = "";
 
-  gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)),
-                                 GTK_TREE_MODEL (chooser_entry->completion_store));
-}
-
-/* When we finish loading the current folder, this function should get called to
- * perform the deferred autocompletion or explicit completion.
- */
-static void
-perform_load_complete_action (GtkFileChooserEntry *chooser_entry)
-{
-  switch (chooser_entry->load_complete_action)
+  switch (column)
     {
-    case LOAD_COMPLETE_NOTHING:
-      break;
-
-    case LOAD_COMPLETE_AUTOCOMPLETE:
-      printf ("Load is complete; will autocomplete immediately\n");
-      autocomplete (chooser_entry);
-      break;
+    case FULL_PATH_COLUMN:
+      prefix = chooser_entry->dir_part;
+      /* fall through */
+    case DISPLAY_NAME_COLUMN:
+      if (_gtk_file_info_consider_as_directory (info))
+        suffix = G_DIR_SEPARATOR_S;
 
-    case LOAD_COMPLETE_EXPLICIT_COMPLETION:
-      printf ("Load is  complete; will do explicit completion\n");
-      explicitly_complete (chooser_entry);
+      g_value_take_string (value, g_strconcat (
+              prefix,
+              g_file_info_get_display_name (info),
+              suffix,
+              NULL));
       break;
-
     default:
       g_assert_not_reached ();
+      break;
     }
 
-  chooser_entry->load_complete_action = LOAD_COMPLETE_NOTHING;
-}
-
-static void
-finish_folder_load (GtkFileChooserEntry *chooser_entry)
-{
-  populate_completion_store (chooser_entry);
-  perform_load_complete_action (chooser_entry);
+  return TRUE;
 }
 
-/* Callback when the current folder finishes loading */
+/* Fills the completion store from the contents of the current folder */
 static void
-finished_loading_cb (GtkFileFolder *folder,
-                    gpointer       data)
+populate_completion_store (GtkFileChooserEntry *chooser_entry)
 {
-  GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (data);
-
-  printf ("Folder finished loading asynchronously!  Will populate the completion store\n");
+  chooser_entry->completion_store = GTK_TREE_MODEL (
+      _gtk_file_system_model_new_for_directory (chooser_entry->current_folder_file,
+                                                "standard::name,standard::display-name,standard::type",
+                                                completion_store_set,
+                                                chooser_entry,
+                                                N_COLUMNS,
+                                                G_TYPE_STRING,
+                                                G_TYPE_STRING));
+  g_signal_connect (chooser_entry->completion_store, "finished-loading",
+                   G_CALLBACK (finished_loading_cb), chooser_entry);
+
+  _gtk_file_system_model_set_filter_folders (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
+                                             TRUE);
+  _gtk_file_system_model_set_show_files (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
+                                         chooser_entry->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
+                                         chooser_entry->action == GTK_FILE_CHOOSER_ACTION_SAVE);
+  gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (chooser_entry->completion_store),
+                                       DISPLAY_NAME_COLUMN, GTK_SORT_ASCENDING);
 
-  finish_folder_load (chooser_entry);
+  gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)),
+                                 chooser_entry->completion_store);
 }
 
-/* Callback when the current folder's handle gets obtained (not necessarily loaded completely) */
+/* Callback when the current folder finishes loading */
 static void
-load_directory_get_folder_callback (GtkFileSystemHandle *handle,
-                                   GtkFileFolder       *folder,
-                                   const GError        *error,
-                                   gpointer             data)
+finished_loading_cb (GtkFileSystemModel  *model,
+                     GError              *error,
+                    GtkFileChooserEntry *chooser_entry)
 {
-  gboolean cancelled = handle->cancelled;
-  GtkFileChooserEntry *chooser_entry = data;
-
-  if (handle != chooser_entry->load_folder_handle)
-    goto out;
-
-  chooser_entry->load_folder_handle = NULL;
-
-  /* FIXME: if there was an error *AND* we had a pending explicit completion, beep and pop up a
-   * tooltip to say that the folder could not be loaded.
-   */
-
-  if (cancelled || error)
-    goto out;
+  GtkEntryCompletion *completion;
 
-  g_assert (folder != NULL);
-  chooser_entry->current_folder = folder;
+  chooser_entry->current_folder_loaded = TRUE;
 
-  printf ("Got folder asynchronously!\n");
-
-  discard_completion_store (chooser_entry);
-
-  if (gtk_file_folder_is_finished_loading (chooser_entry->current_folder))
-    {
-      printf ("And the folder is already finished loading.  Will populate the completion store.\n");
-      finish_folder_load (chooser_entry);
-    }
-  else
+  if (error)
     {
-      printf ("Folder is not yet completely loaded.  Will load it asynchronously...\n");
-      g_signal_connect (chooser_entry->current_folder, "finished-loading",
-                       G_CALLBACK (finished_loading_cb), chooser_entry);
+      discard_completion_store (chooser_entry);
+      set_complete_on_load (chooser_entry, FALSE);
+      return;
     }
 
-out:
-  g_object_unref (chooser_entry);
-  g_object_unref (handle);
-}
-
-static void
-start_loading_current_folder (GtkFileChooserEntry *chooser_entry)
-{
-  if (chooser_entry->current_folder_path == NULL ||
-      chooser_entry->file_system == NULL)
-    return;
-
-  g_assert (chooser_entry->current_folder == NULL);
-  g_assert (chooser_entry->load_folder_handle == NULL);
+  if (chooser_entry->complete_on_load)
+    explicitly_complete (chooser_entry);
 
-  printf ("Starting async load of folder %s\n", (char *) chooser_entry->current_folder_path);
+  gtk_widget_set_tooltip_text (GTK_WIDGET (chooser_entry), NULL);
 
-  chooser_entry->load_folder_handle =
-    gtk_file_system_get_folder (chooser_entry->file_system,
-                               chooser_entry->current_folder_path,
-                               GTK_FILE_INFO_DISPLAY_NAME | GTK_FILE_INFO_IS_FOLDER,
-                               load_directory_get_folder_callback,
-                               g_object_ref (chooser_entry));
+  completion = gtk_entry_get_completion (GTK_ENTRY (chooser_entry));
+  update_inline_completion (chooser_entry);
+  gtk_entry_completion_complete (completion);
+  gtk_entry_completion_insert_prefix (completion);
 }
 
 static void
-reload_current_folder (GtkFileChooserEntry *chooser_entry,
-                      GtkFilePath         *folder_path,
-                      gboolean             force_reload)
-{
-  gboolean reload = FALSE;
+set_completion_folder (GtkFileChooserEntry *chooser_entry,
+                       GFile               *folder_file)
+{
+  if (folder_file &&
+      chooser_entry->local_only
+      && !_gtk_file_has_native_path (folder_file))
+    folder_file = NULL;
+
+  if ((chooser_entry->current_folder_file
+       && folder_file
+       && g_file_equal (folder_file, chooser_entry->current_folder_file))
+      || chooser_entry->current_folder_file == folder_file)
+    return;
 
-  if (chooser_entry->current_folder_path)
+  if (chooser_entry->current_folder_file)
     {
-      if ((folder_path && gtk_file_path_compare (folder_path, chooser_entry->current_folder_path) != 0)
-         || force_reload)
-       {
-         reload = TRUE;
-
-         /* We changed our current directory.  We need to clear out the old
-          * directory information.
-          */
-         if (chooser_entry->current_folder)
-           {
-             if (chooser_entry->load_folder_handle)
-               {
-                 printf ("Cancelling folder load\n");
-                 gtk_file_system_cancel_operation (chooser_entry->load_folder_handle);
-                 chooser_entry->load_folder_handle = NULL;
-               }
-
-             g_object_unref (chooser_entry->current_folder);
-             chooser_entry->current_folder = NULL;
-           }
-
-         gtk_file_path_free (chooser_entry->current_folder_path);
-         chooser_entry->current_folder_path = gtk_file_path_copy (folder_path);
-       }
+      g_object_unref (chooser_entry->current_folder_file);
+      chooser_entry->current_folder_file = NULL;
     }
-  else
-    {
-      chooser_entry->current_folder_path = gtk_file_path_copy (folder_path);
-      reload = TRUE;
-    }
-
-  if (reload)
-    start_loading_current_folder (chooser_entry);
-}
-
-static void
-refresh_current_folder_and_file_part (GtkFileChooserEntry *chooser_entry)
-{
-  GtkEditable *editable;
-  gchar *text_up_to_cursor;
-  GtkFilePath *folder_path;
-  gchar *file_part;
-  gsize total_len, file_part_len;
-  gint file_part_pos;
+  
+  chooser_entry->current_folder_loaded = FALSE;
 
-  editable = GTK_EDITABLE (chooser_entry);
+  discard_completion_store (chooser_entry);
 
-  text_up_to_cursor = gtk_editable_get_chars (editable, 0, gtk_editable_get_position (editable));
-  
-  if (!chooser_entry->file_system ||
-      !chooser_entry->base_folder ||
-      !gtk_file_system_parse (chooser_entry->file_system,
-                             chooser_entry->base_folder, text_up_to_cursor,
-                             &folder_path, &file_part, NULL)) /* NULL-GError */
-    {
-      folder_path = gtk_file_path_copy (chooser_entry->base_folder);
-      file_part = g_strdup ("");
-      file_part_pos = -1;
-    }
-  else
+  if (folder_file)
     {
-      file_part_len = strlen (file_part);
-      total_len = strlen (text_up_to_cursor);
-      if (total_len > file_part_len)
-       file_part_pos = g_utf8_strlen (text_up_to_cursor, total_len - file_part_len);
-      else
-       file_part_pos = 0;
+      chooser_entry->current_folder_file = g_object_ref (folder_file);
+      populate_completion_store (chooser_entry);
     }
-
-  printf ("Parsed text \"%s\", file_part=\"%s\", file_part_pos=%d, folder_path=\"%s\"\n",
-         text_up_to_cursor,
-         file_part,
-         file_part_pos,
-         folder_path ? (char *) folder_path : "(NULL)");
-
-  g_free (text_up_to_cursor);
-
-  g_free (chooser_entry->file_part);
-
-  chooser_entry->file_part = file_part;
-  chooser_entry->file_part_pos = file_part_pos;
-
-  reload_current_folder (chooser_entry, folder_path, file_part_pos == -1);
-  gtk_file_path_free (folder_path);
 }
 
 static void
-autocomplete (GtkFileChooserEntry *chooser_entry)
-{
-  g_assert (chooser_entry->current_folder != NULL);
-  g_assert (gtk_file_folder_is_finished_loading (chooser_entry->current_folder));
-  g_assert (gtk_editable_get_position (GTK_EDITABLE (chooser_entry)) == GTK_ENTRY (chooser_entry)->text_length);
-
-  printf ("Doing autocompletion since our folder is finished loading\n");
-
-  append_common_prefix (chooser_entry, TRUE);
-}
-
-static void
-start_autocompletion (GtkFileChooserEntry *chooser_entry)
+refresh_current_folder_and_file_part (GtkFileChooserEntry *chooser_entry)
 {
-  printf ("Starting autocompletion\n");
+  GFile *folder_file;
+  char *text, *last_slash, *old_file_part;
 
-  refresh_current_folder_and_file_part (chooser_entry);
+  old_file_part = chooser_entry->file_part;
+  g_free (chooser_entry->dir_part);
 
-  if (!chooser_entry->current_folder)
-    {
-      /* We don't beep or anything, since this is autocompletion - the user
-       * didn't request any action explicitly.
-       */
-      printf ("No current_folder; not doing autocompletion after all\n");
-      return;
-    }
+  text = gtk_file_chooser_entry_get_completion_text (chooser_entry);
 
-  if (gtk_file_folder_is_finished_loading (chooser_entry->current_folder))
+  last_slash = strrchr (text, G_DIR_SEPARATOR);
+  if (last_slash)
     {
-      printf ("File folder is finished loading; doing autocompletion immediately\n");
-      autocomplete (chooser_entry);
+      chooser_entry->dir_part = g_strndup (text, last_slash - text + 1);
+      chooser_entry->file_part = g_strdup (last_slash + 1);
     }
   else
     {
-      printf ("File folder is not yet loaded; will do autocompletion later\n");
-      chooser_entry->load_complete_action = LOAD_COMPLETE_AUTOCOMPLETE;
+      chooser_entry->dir_part = g_strdup ("");
+      chooser_entry->file_part = g_strdup (text);
     }
-}
 
-static gboolean
-start_autocompletion_idle_handler (gpointer data)
-{
-  GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (data);
+  folder_file = gtk_file_chooser_get_directory_for_text (chooser_entry, text);
+  set_completion_folder (chooser_entry, folder_file);
+  if (folder_file)
+    g_object_unref (folder_file);
 
-  start_autocompletion (chooser_entry);
+  if (chooser_entry->completion_store &&
+      (g_strcmp0 (old_file_part, chooser_entry->file_part) != 0))
+    {
+      GtkFileFilter *filter;
+      char *pattern;
 
-  chooser_entry->start_autocompletion_idle_id = 0;
+      filter = gtk_file_filter_new ();
+      pattern = g_strconcat (chooser_entry->file_part, "*", NULL);
+      gtk_file_filter_add_pattern (filter, pattern);
 
-  return FALSE;
-}
+      _gtk_file_system_model_set_filter (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
+                                         filter);
 
-static void
-install_start_autocompletion_idle (GtkFileChooserEntry *chooser_entry)
-{
-  if (chooser_entry->start_autocompletion_idle_id != 0)
-    return;
+      g_free (pattern);
+      g_object_unref (filter);
+    }
 
-  chooser_entry->start_autocompletion_idle_id = g_idle_add (start_autocompletion_idle_handler, chooser_entry);
+  g_free (text);
+  g_free (old_file_part);
 }
 
 #ifdef G_OS_WIN32
@@ -1152,7 +664,7 @@ insert_text_callback (GtkFileChooserEntry *chooser_entry,
        *position + (colon - new_text) != 1) ||
       (new_text_length > 0 &&
        *position <= 1 &&
-       GTK_ENTRY (chooser_entry)->text_length >= 2 &&
+       gtk_entry_get_text_length (GTK_ENTRY (chooser_entry)) >= 2 &&
        gtk_entry_get_text (GTK_ENTRY (chooser_entry))[1] == ':'))
     {
       gtk_widget_error_bell (GTK_WIDGET (chooser_entry));
@@ -1171,7 +683,7 @@ delete_text_callback (GtkFileChooserEntry *chooser_entry,
 {
   /* If deleting a drive letter, delete the colon, too */
   if (start_pos == 0 && end_pos == 1 &&
-      GTK_ENTRY (chooser_entry)->text_length >= 2 &&
+      gtk_entry_get_text_length (GTK_ENTRY (chooser_entry)) >= 2 &&
       gtk_entry_get_text (GTK_ENTRY (chooser_entry))[1] == ':')
     {
       g_signal_handlers_block_by_func (chooser_entry,
@@ -1197,7 +709,7 @@ delete_text_callback (GtkFileChooserEntry *chooser_entry,
  * Return value: the newly created #GtkFileChooserEntry
  **/
 GtkWidget *
-_gtk_file_chooser_entry_new (gboolean eat_tabs)
+_gtk_file_chooser_entry_new (gboolean       eat_tabs)
 {
   GtkFileChooserEntry *chooser_entry;
 
@@ -1207,47 +719,34 @@ _gtk_file_chooser_entry_new (gboolean eat_tabs)
   return GTK_WIDGET (chooser_entry);
 }
 
-/**
- * _gtk_file_chooser_entry_set_file_system:
- * @chooser_entry: a #GtkFileChooser
- * @file_system: an object implementing #GtkFileSystem
- *
- * Sets the file system for @chooser_entry.
- **/
-void
-_gtk_file_chooser_entry_set_file_system (GtkFileChooserEntry *chooser_entry,
-                                        GtkFileSystem       *file_system)
-{
-  g_return_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry));
-  g_return_if_fail (GTK_IS_FILE_SYSTEM (file_system));
-
-  if (file_system != chooser_entry->file_system)
-    {
-      if (chooser_entry->file_system)
-       g_object_unref (chooser_entry->file_system);
-
-      chooser_entry->file_system = g_object_ref (file_system);
-    }
-}
-
 /**
  * _gtk_file_chooser_entry_set_base_folder:
  * @chooser_entry: a #GtkFileChooserEntry
- * @path: path of a folder in the chooser entries current file system.
+ * @file: file for a folder in the chooser entries current file system.
  *
  * Sets the folder with respect to which completions occur.
  **/
 void
 _gtk_file_chooser_entry_set_base_folder (GtkFileChooserEntry *chooser_entry,
-                                        const GtkFilePath   *path)
+                                        GFile               *file)
 {
+  g_return_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry));
+  g_return_if_fail (file == NULL || G_IS_FILE (file));
+
+  if (chooser_entry->base_folder == file ||
+      (file != NULL && chooser_entry->base_folder != NULL 
+       && g_file_equal (chooser_entry->base_folder, file)))
+    return;
+
+  if (file)
+    g_object_ref (file);
+
   if (chooser_entry->base_folder)
-    gtk_file_path_free (chooser_entry->base_folder);
+    g_object_unref (chooser_entry->base_folder);
 
-  chooser_entry->base_folder = gtk_file_path_copy (path);
+  chooser_entry->base_folder = file;
 
-  clear_completions (chooser_entry);
-  _gtk_file_chooser_entry_select_filename (chooser_entry);
+  refresh_current_folder_and_file_part (chooser_entry);
 }
 
 /**
@@ -1255,25 +754,22 @@ _gtk_file_chooser_entry_set_base_folder (GtkFileChooserEntry *chooser_entry,
  * @chooser_entry: a #GtkFileChooserEntry
  *
  * Gets the current folder for the #GtkFileChooserEntry. If the
- * user has only entered a filename, this will be the base folder
+ * user has only entered a filename, this will be in the base folder
  * (see _gtk_file_chooser_entry_set_base_folder()), but if the
  * user has entered a relative or absolute path, then it will
- * be different. If the user has entered a relative or absolute
- * path that doesn't point to a folder in the file system, it will
- * be %NULL.
+ * be different.  If the user has entered unparsable text, or text which
+ * the entry cannot handle, this will return %NULL.
  *
- * Return value: the path of current folder - this value is owned by the
- *  chooser entry and must not be modified or freed.
+ * Return value: the file for the current folder - you must g_object_unref()
+ *   the value after use.
  **/
-const GtkFilePath *
+GFile *
 _gtk_file_chooser_entry_get_current_folder (GtkFileChooserEntry *chooser_entry)
 {
-  if (chooser_entry->has_completion)
-    {
-      gtk_editable_set_position (GTK_EDITABLE (chooser_entry),
-                                GTK_ENTRY (chooser_entry)->text_length);
-    }
-  return chooser_entry->current_folder_path;
+  g_return_val_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry), NULL);
+
+  return gtk_file_chooser_get_directory_for_text (chooser_entry,
+                                                  gtk_entry_get_text (GTK_ENTRY (chooser_entry)));
 }
 
 /**
@@ -1282,7 +778,7 @@ _gtk_file_chooser_entry_get_current_folder (GtkFileChooserEntry *chooser_entry)
  *
  * Gets the non-folder portion of whatever the user has entered
  * into the file selector. What is returned is a UTF-8 string,
- * and if a filename path is needed, gtk_file_system_make_path()
+ * and if a filename path is needed, g_file_get_child_for_display_name()
  * must be used
   *
  * Return value: the entered filename - this value is owned by the
@@ -1291,34 +787,18 @@ _gtk_file_chooser_entry_get_current_folder (GtkFileChooserEntry *chooser_entry)
 const gchar *
 _gtk_file_chooser_entry_get_file_part (GtkFileChooserEntry *chooser_entry)
 {
-  if (chooser_entry->has_completion)
-    {
-      gtk_editable_set_position (GTK_EDITABLE (chooser_entry),
-                                GTK_ENTRY (chooser_entry)->text_length);
-    }
-  return chooser_entry->file_part;
-}
+  const char *last_slash, *text;
 
-/**
- * _gtk_file_chooser_entry_set_file_part:
- * @chooser_entry: a #GtkFileChooserEntry
- * @file_part: text to display in the entry, in UTF-8
- *
- * Sets the current text shown in the file chooser entry.
- **/
-void
-_gtk_file_chooser_entry_set_file_part (GtkFileChooserEntry *chooser_entry,
-                                      const gchar         *file_part)
-{
-  g_return_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry));
+  g_return_val_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry), NULL);
 
-  chooser_entry->in_change = TRUE;
-  clear_completions (chooser_entry);
-  gtk_entry_set_text (GTK_ENTRY (chooser_entry), file_part);
-  chooser_entry->in_change = FALSE;
+  text = gtk_entry_get_text (GTK_ENTRY (chooser_entry));
+  last_slash = strrchr (text, G_DIR_SEPARATOR);
+  if (last_slash)
+    return last_slash + 1;
+  else
+    return text;
 }
 
-
 /**
  * _gtk_file_chooser_entry_set_action:
  * @chooser_entry: a #GtkFileChooserEntry
@@ -1342,6 +822,8 @@ _gtk_file_chooser_entry_set_action (GtkFileChooserEntry *chooser_entry,
 
       comp = gtk_entry_get_completion (GTK_ENTRY (chooser_entry));
 
+      /* FIXME: do we need to actually set the following? */
+
       switch (action)
        {
        case GTK_FILE_CHOOSER_ACTION_OPEN:
@@ -1353,6 +835,13 @@ _gtk_file_chooser_entry_set_action (GtkFileChooserEntry *chooser_entry,
          gtk_entry_completion_set_popup_single_match (comp, TRUE);
          break;
        }
+
+      if (chooser_entry->completion_store)
+        _gtk_file_system_model_set_show_files (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
+                                               action == GTK_FILE_CHOOSER_ACTION_OPEN ||
+                                               action == GTK_FILE_CHOOSER_ACTION_SAVE);
+
+      update_inline_completion (chooser_entry);
     }
 }
 
@@ -1376,24 +865,21 @@ _gtk_file_chooser_entry_get_action (GtkFileChooserEntry *chooser_entry)
 
 gboolean
 _gtk_file_chooser_entry_get_is_folder (GtkFileChooserEntry *chooser_entry,
-                                      const GtkFilePath   *path)
+                                      GFile               *file)
 {
-  gboolean retval = FALSE;
+  GtkTreeIter iter;
+  GFileInfo *info;
 
-  if (chooser_entry->current_folder)
-    {
-      GtkFileInfo *file_info;
+  if (chooser_entry->completion_store == NULL ||
+      !_gtk_file_system_model_get_iter_for_file (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
+                                                 &iter,
+                                                 file))
+    return FALSE;
 
-      file_info = gtk_file_folder_get_info (chooser_entry->current_folder,
-                                           path, NULL);
-      if (file_info)
-        {
-         retval = gtk_file_info_get_is_folder (file_info);
-         gtk_file_info_free (file_info);
-       }
-    }
+  info = _gtk_file_system_model_get_info (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
+                                          &iter);
 
-  return retval;
+  return _gtk_file_info_consider_as_directory (info);
 }
 
 
@@ -1421,3 +907,16 @@ _gtk_file_chooser_entry_select_filename (GtkFileChooserEntry *chooser_entry)
   gtk_editable_select_region (GTK_EDITABLE (chooser_entry), 0, (gint) len);
 }
 
+void
+_gtk_file_chooser_entry_set_local_only (GtkFileChooserEntry *chooser_entry,
+                                        gboolean             local_only)
+{
+  chooser_entry->local_only = local_only;
+  refresh_current_folder_and_file_part (chooser_entry);
+}
+
+gboolean
+_gtk_file_chooser_entry_get_local_only (GtkFileChooserEntry *chooser_entry)
+{
+  return chooser_entry->local_only;
+}