2003-03-25 00:11:06 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* gtkfilechooserentry.c: Entry with filename completion
|
|
|
|
* Copyright (C) 2003, Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2004-03-06 03:38:59 +00:00
|
|
|
#include <config.h>
|
2003-03-25 00:11:06 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2003-11-07 23:10:19 +00:00
|
|
|
#include "gtkcelllayout.h"
|
|
|
|
#include "gtkcellrenderertext.h"
|
2003-10-23 04:22:32 +00:00
|
|
|
#include "gtkentry.h"
|
|
|
|
#include "gtkfilechooserentry.h"
|
2004-03-15 14:10:45 +00:00
|
|
|
#include "gtkmain.h"
|
2005-09-01 05:11:46 +00:00
|
|
|
#include "gtkintl.h"
|
2005-03-20 07:01:23 +00:00
|
|
|
#include "gtkalias.h"
|
2003-10-23 04:22:32 +00:00
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
typedef struct _GtkFileChooserEntryClass GtkFileChooserEntryClass;
|
|
|
|
|
|
|
|
#define GTK_FILE_CHOOSER_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FILE_CHOOSER_ENTRY, GtkFileChooserEntryClass))
|
|
|
|
#define GTK_IS_FILE_CHOOSER_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FILE_CHOOSER_ENTRY))
|
|
|
|
#define GTK_FILE_CHOOSER_ENTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FILE_CHOOSER_ENTRY, GtkFileChooserEntryClass))
|
|
|
|
|
|
|
|
struct _GtkFileChooserEntryClass
|
|
|
|
{
|
|
|
|
GtkEntryClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkFileChooserEntry
|
|
|
|
{
|
|
|
|
GtkEntry parent_instance;
|
|
|
|
|
2004-09-17 18:13:26 +00:00
|
|
|
GtkFileChooserAction action;
|
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
GtkFileSystem *file_system;
|
2003-04-04 22:43:12 +00:00
|
|
|
GtkFilePath *base_folder;
|
|
|
|
GtkFilePath *current_folder_path;
|
2003-03-25 00:11:06 +00:00
|
|
|
gchar *file_part;
|
2004-03-15 17:11:28 +00:00
|
|
|
gint file_part_pos;
|
2004-03-15 06:54:34 +00:00
|
|
|
GSource *check_completion_idle;
|
2004-03-15 14:10:45 +00:00
|
|
|
GSource *load_directory_idle;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
|
|
|
GtkFileFolder *current_folder;
|
2006-05-01 21:41:12 +00:00
|
|
|
GtkFileSystemHandle *load_folder_handle;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2003-11-07 23:10:19 +00:00
|
|
|
GtkListStore *completion_store;
|
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
guint has_completion : 1;
|
2004-03-15 14:10:45 +00:00
|
|
|
guint in_change : 1;
|
2004-08-17 16:06:39 +00:00
|
|
|
guint eat_tabs : 1;
|
2003-03-25 00:11:06 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
DISPLAY_NAME_COLUMN,
|
2004-03-15 14:10:45 +00:00
|
|
|
PATH_COLUMN,
|
2004-03-15 06:54:34 +00:00
|
|
|
N_COLUMNS
|
|
|
|
};
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
static void gtk_file_chooser_entry_iface_init (GtkEditableClass *iface);
|
2003-03-25 00:11:06 +00:00
|
|
|
|
|
|
|
static void gtk_file_chooser_entry_finalize (GObject *object);
|
2006-05-01 21:41:12 +00:00
|
|
|
static void gtk_file_chooser_entry_dispose (GObject *object);
|
2003-03-25 00:11:06 +00:00
|
|
|
static gboolean gtk_file_chooser_entry_focus (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction);
|
2004-03-15 14:10:45 +00:00
|
|
|
static void gtk_file_chooser_entry_activate (GtkEntry *entry);
|
2003-03-25 00:11:06 +00:00
|
|
|
static void gtk_file_chooser_entry_changed (GtkEditable *editable);
|
2004-03-15 06:54:34 +00:00
|
|
|
static void gtk_file_chooser_entry_do_insert_text (GtkEditable *editable,
|
|
|
|
const gchar *new_text,
|
|
|
|
gint new_text_length,
|
|
|
|
gint *position);
|
|
|
|
|
|
|
|
static void clear_completion_callback (GtkFileChooserEntry *chooser_entry,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
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 void files_added_cb (GtkFileSystem *file_system,
|
|
|
|
GSList *added_uris,
|
|
|
|
GtkFileChooserEntry *chooser_entry);
|
|
|
|
static void files_deleted_cb (GtkFileSystem *file_system,
|
|
|
|
GSList *deleted_uris,
|
|
|
|
GtkFileChooserEntry *chooser_entry);
|
2004-03-15 15:50:13 +00:00
|
|
|
static char *maybe_append_separator_to_path (GtkFileChooserEntry *chooser_entry,
|
2004-03-15 14:10:45 +00:00
|
|
|
GtkFilePath *path,
|
|
|
|
gchar *display_name);
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2003-07-16 21:07:38 +00:00
|
|
|
static GtkEditableClass *parent_editable_iface;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkFileChooserEntry, _gtk_file_chooser_entry, GTK_TYPE_ENTRY,
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE,
|
2006-05-14 04:25:34 +00:00
|
|
|
gtk_file_chooser_entry_iface_init))
|
2003-03-25 00:11:06 +00:00
|
|
|
|
|
|
|
static void
|
2006-05-02 23:56:43 +00:00
|
|
|
_gtk_file_chooser_entry_class_init (GtkFileChooserEntryClass *class)
|
2003-03-25 00:11:06 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (class);
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
|
2004-03-15 14:10:45 +00:00
|
|
|
GtkEntryClass *entry_class = GTK_ENTRY_CLASS (class);
|
2003-03-25 00:11:06 +00:00
|
|
|
|
|
|
|
gobject_class->finalize = gtk_file_chooser_entry_finalize;
|
2006-05-01 21:41:12 +00:00
|
|
|
gobject_class->dispose = gtk_file_chooser_entry_dispose;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
|
|
|
widget_class->focus = gtk_file_chooser_entry_focus;
|
2004-03-15 14:10:45 +00:00
|
|
|
|
|
|
|
entry_class->activate = gtk_file_chooser_entry_activate;
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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->changed = gtk_file_chooser_entry_changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-05-02 23:56:43 +00:00
|
|
|
_gtk_file_chooser_entry_init (GtkFileChooserEntry *chooser_entry)
|
2003-03-25 00:11:06 +00:00
|
|
|
{
|
2003-11-07 23:10:19 +00:00
|
|
|
GtkEntryCompletion *comp;
|
2004-03-15 06:54:34 +00:00
|
|
|
GtkCellRenderer *cell;
|
2003-11-07 23:10:19 +00:00
|
|
|
|
2005-12-19 19:03:51 +00:00
|
|
|
g_object_set (chooser_entry, "truncate-multiline", TRUE, NULL);
|
|
|
|
|
2003-11-07 23:10:19 +00:00
|
|
|
comp = gtk_entry_completion_new ();
|
2005-05-26 20:36:36 +00:00
|
|
|
gtk_entry_completion_set_popup_single_match (comp, FALSE);
|
2004-09-17 18:13:26 +00:00
|
|
|
|
2003-11-07 23:10:19 +00:00
|
|
|
gtk_entry_completion_set_match_func (comp,
|
|
|
|
completion_match_func,
|
|
|
|
chooser_entry,
|
|
|
|
NULL);
|
2004-03-15 06:54:34 +00:00
|
|
|
|
|
|
|
cell = gtk_cell_renderer_text_new ();
|
|
|
|
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (comp),
|
|
|
|
cell, TRUE);
|
|
|
|
gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (comp),
|
|
|
|
cell,
|
|
|
|
"text", 0);
|
|
|
|
|
2006-07-06 05:14:03 +00:00
|
|
|
g_signal_connect (comp, "match_selected",
|
2004-03-15 06:54:34 +00:00
|
|
|
G_CALLBACK (match_selected_callback), chooser_entry);
|
2003-11-07 23:10:19 +00:00
|
|
|
|
|
|
|
gtk_entry_set_completion (GTK_ENTRY (chooser_entry), comp);
|
2004-03-11 06:08:28 +00:00
|
|
|
g_object_unref (comp);
|
2003-11-07 23:10:19 +00:00
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
g_signal_connect (chooser_entry, "notify::cursor-position",
|
|
|
|
G_CALLBACK (clear_completion_callback), NULL);
|
|
|
|
g_signal_connect (chooser_entry, "notify::selection-bound",
|
|
|
|
G_CALLBACK (clear_completion_callback), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_file_chooser_entry_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (object);
|
|
|
|
|
2006-05-01 21:41:12 +00:00
|
|
|
gtk_file_path_free (chooser_entry->base_folder);
|
|
|
|
gtk_file_path_free (chooser_entry->current_folder_path);
|
|
|
|
g_free (chooser_entry->file_part);
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
G_OBJECT_CLASS (_gtk_file_chooser_entry_parent_class)->finalize (object);
|
2006-05-01 21:41:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_file_chooser_entry_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (object);
|
|
|
|
|
2003-11-07 23:10:19 +00:00
|
|
|
if (chooser_entry->completion_store)
|
2006-05-01 21:41:12 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
2003-11-07 23:10:19 +00:00
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
if (chooser_entry->current_folder)
|
2004-03-15 06:54:34 +00:00
|
|
|
{
|
|
|
|
g_signal_handlers_disconnect_by_func (chooser_entry->current_folder,
|
|
|
|
G_CALLBACK (files_added_cb), chooser_entry);
|
|
|
|
g_signal_handlers_disconnect_by_func (chooser_entry->current_folder,
|
|
|
|
G_CALLBACK (files_deleted_cb), chooser_entry);
|
|
|
|
g_object_unref (chooser_entry->current_folder);
|
2006-05-01 21:41:12 +00:00
|
|
|
chooser_entry->current_folder = NULL;
|
2004-03-15 06:54:34 +00:00
|
|
|
}
|
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
if (chooser_entry->file_system)
|
2006-05-01 21:41:12 +00:00
|
|
|
{
|
|
|
|
g_object_unref (chooser_entry->file_system);
|
|
|
|
chooser_entry->file_system = NULL;
|
|
|
|
}
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
G_OBJECT_CLASS (_gtk_file_chooser_entry_parent_class)->dispose (object);
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
/* Match functions for the GtkEntryCompletion */
|
|
|
|
static gboolean
|
|
|
|
match_selected_callback (GtkEntryCompletion *completion,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
|
|
|
char *display_name;
|
2004-03-15 14:10:45 +00:00
|
|
|
GtkFilePath *path;
|
|
|
|
gint pos;
|
2004-03-15 06:54:34 +00:00
|
|
|
|
|
|
|
gtk_tree_model_get (model, iter,
|
|
|
|
DISPLAY_NAME_COLUMN, &display_name,
|
2004-03-15 14:10:45 +00:00
|
|
|
PATH_COLUMN, &path,
|
2004-03-15 06:54:34 +00:00
|
|
|
-1);
|
|
|
|
|
2004-03-15 14:10:45 +00:00
|
|
|
if (!display_name || !path)
|
2004-03-15 06:54:34 +00:00
|
|
|
{
|
2004-03-15 14:10:45 +00:00
|
|
|
/* these shouldn't complain if passed NULL */
|
|
|
|
gtk_file_path_free (path);
|
2004-03-15 06:54:34 +00:00
|
|
|
g_free (display_name);
|
2004-03-15 14:10:45 +00:00
|
|
|
return FALSE;
|
2004-03-15 06:54:34 +00:00
|
|
|
}
|
2004-03-15 14:10:45 +00:00
|
|
|
|
2004-03-15 15:50:13 +00:00
|
|
|
display_name = maybe_append_separator_to_path (chooser_entry, path, display_name);
|
2004-03-15 14:10:45 +00:00
|
|
|
|
2004-03-15 17:11:28 +00:00
|
|
|
pos = chooser_entry->file_part_pos;
|
2004-03-15 14:10:45 +00:00
|
|
|
|
|
|
|
/* 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);
|
|
|
|
gtk_editable_insert_text (GTK_EDITABLE (chooser_entry),
|
|
|
|
display_name, -1,
|
|
|
|
&pos);
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (chooser_entry), -1);
|
|
|
|
|
|
|
|
gtk_file_path_free (path);
|
|
|
|
g_free (display_name);
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-11-07 23:10:19 +00:00
|
|
|
/* Match function for the GtkEntryCompletion */
|
|
|
|
static gboolean
|
|
|
|
completion_match_func (GtkEntryCompletion *comp,
|
2004-03-15 06:54:34 +00:00
|
|
|
const char *key_unused,
|
2003-11-07 23:10:19 +00:00
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFileChooserEntry *chooser_entry;
|
|
|
|
char *name;
|
|
|
|
gboolean result;
|
2004-03-15 06:54:34 +00:00
|
|
|
char *norm_file_part;
|
|
|
|
char *norm_name;
|
2003-11-07 23:10:19 +00:00
|
|
|
|
|
|
|
chooser_entry = GTK_FILE_CHOOSER_ENTRY (data);
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
/* 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)
|
2004-03-15 14:10:45 +00:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2004-03-15 19:23:54 +00:00
|
|
|
gtk_tree_model_get (GTK_TREE_MODEL (chooser_entry->completion_store), iter, DISPLAY_NAME_COLUMN, &name, -1);
|
2003-11-07 23:10:19 +00:00
|
|
|
if (!name)
|
2004-03-15 14:10:45 +00:00
|
|
|
{
|
|
|
|
return FALSE; /* Uninitialized row, ugh */
|
|
|
|
}
|
2003-11-07 23:10:19 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
/* If we have an empty file_part, then we're at the root of a directory. In
|
2004-03-15 14:10:45 +00:00
|
|
|
* 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.
|
2003-11-07 23:10:19 +00:00
|
|
|
*/
|
2004-03-15 14:10:45 +00:00
|
|
|
/* Additionally, support for gnome .hidden files would be sweet, too */
|
2004-03-15 06:54:34 +00:00
|
|
|
if (chooser_entry->file_part[0] == '\000')
|
2003-11-07 23:10:19 +00:00
|
|
|
{
|
2004-03-15 06:54:34 +00:00
|
|
|
if (name[0] == '.')
|
|
|
|
result = FALSE;
|
|
|
|
else
|
|
|
|
result = TRUE;
|
|
|
|
g_free (name);
|
2003-11-07 23:10:19 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
return result;
|
|
|
|
}
|
2003-11-07 23:10:19 +00:00
|
|
|
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
norm_file_part = g_utf8_normalize (chooser_entry->file_part, -1, G_NORMALIZE_ALL);
|
|
|
|
norm_name = g_utf8_normalize (name, -1, G_NORMALIZE_ALL);
|
2003-11-07 23:10:19 +00:00
|
|
|
|
2004-04-22 05:08:19 +00:00
|
|
|
#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
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
result = (strncmp (norm_file_part, norm_name, strlen (norm_file_part)) == 0);
|
2003-11-07 23:10:19 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
g_free (norm_file_part);
|
|
|
|
g_free (norm_name);
|
2003-11-07 23:10:19 +00:00
|
|
|
g_free (name);
|
2004-03-15 06:54:34 +00:00
|
|
|
|
2003-11-07 23:10:19 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-04-22 05:08:19 +00:00
|
|
|
/* 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
|
2004-03-15 14:10:45 +00:00
|
|
|
*
|
2004-03-15 15:50:13 +00:00
|
|
|
* display_name = maybe_append_separator_to_path (entry, path, display_name);
|
2004-03-15 14:10:45 +00:00
|
|
|
* ...
|
|
|
|
* g_free (display_name);
|
|
|
|
*/
|
|
|
|
static char *
|
2004-03-15 15:50:13 +00:00
|
|
|
maybe_append_separator_to_path (GtkFileChooserEntry *chooser_entry,
|
2004-03-15 14:10:45 +00:00
|
|
|
GtkFilePath *path,
|
|
|
|
gchar *display_name)
|
|
|
|
{
|
|
|
|
if (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;
|
2004-04-22 05:08:19 +00:00
|
|
|
display_name = g_strconcat (tmp, G_DIR_SEPARATOR_S, NULL);
|
2004-03-15 14:10:45 +00:00
|
|
|
g_free (tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_file_info_free (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return display_name;
|
|
|
|
}
|
|
|
|
|
2005-06-10 05:54:28 +00:00
|
|
|
/* 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)
|
2004-03-15 14:10:45 +00:00
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
|
|
|
gboolean valid;
|
|
|
|
|
2005-06-10 05:54:28 +00:00
|
|
|
*common_prefix_ret = NULL;
|
|
|
|
*unique_path_ret = NULL;
|
2004-03-15 14:10:45 +00:00
|
|
|
|
|
|
|
if (chooser_entry->completion_store == NULL)
|
2005-06-10 05:54:28 +00:00
|
|
|
return;
|
2004-03-15 14:10:45 +00:00
|
|
|
|
2005-06-10 05:54:28 +00:00
|
|
|
valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (chooser_entry->completion_store), &iter);
|
2004-03-15 14:10:45 +00:00
|
|
|
|
|
|
|
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, chooser_entry->file_part))
|
|
|
|
{
|
2005-06-10 05:54:28 +00:00
|
|
|
if (!*common_prefix_ret)
|
2004-03-15 14:10:45 +00:00
|
|
|
{
|
2005-06-10 05:54:28 +00:00
|
|
|
*common_prefix_ret = g_strdup (display_name);
|
|
|
|
*unique_path_ret = gtk_file_path_copy (path);
|
2004-03-15 14:10:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-06-10 05:54:28 +00:00
|
|
|
gchar *p = *common_prefix_ret;
|
2004-03-15 14:10:45 +00:00
|
|
|
const gchar *q = display_name;
|
|
|
|
|
|
|
|
while (*p && *p == *q)
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
q++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
|
2005-06-10 05:54:28 +00:00
|
|
|
gtk_file_path_free (*unique_path_ret);
|
|
|
|
*unique_path_ret = NULL;
|
2004-03-15 14:10:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (display_name);
|
2004-03-15 19:23:54 +00:00
|
|
|
gtk_file_path_free (path);
|
2005-06-10 05:54:28 +00:00
|
|
|
valid = gtk_tree_model_iter_next (GTK_TREE_MODEL (chooser_entry->completion_store), &iter);
|
2004-03-15 14:10:45 +00:00
|
|
|
}
|
2005-06-10 05:54:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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)
|
|
|
|
{
|
|
|
|
gchar *common_prefix;
|
|
|
|
GtkFilePath *unique_path;
|
|
|
|
|
|
|
|
find_common_prefix (chooser_entry, &common_prefix, &unique_path);
|
2004-03-15 14:10:45 +00:00
|
|
|
|
|
|
|
if (unique_path)
|
|
|
|
{
|
2004-03-15 15:50:13 +00:00
|
|
|
common_prefix = maybe_append_separator_to_path (chooser_entry,
|
2004-03-15 14:10:45 +00:00
|
|
|
unique_path,
|
|
|
|
common_prefix);
|
|
|
|
gtk_file_path_free (unique_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (common_prefix)
|
|
|
|
{
|
|
|
|
gint file_part_len;
|
|
|
|
gint common_prefix_len;
|
|
|
|
gint pos;
|
|
|
|
|
|
|
|
file_part_len = g_utf8_strlen (chooser_entry->file_part, -1);
|
|
|
|
common_prefix_len = g_utf8_strlen (common_prefix, -1);
|
|
|
|
|
|
|
|
if (common_prefix_len > file_part_len)
|
|
|
|
{
|
2004-03-15 17:11:28 +00:00
|
|
|
pos = chooser_entry->file_part_pos;
|
2004-03-15 14:10:45 +00:00
|
|
|
|
|
|
|
chooser_entry->in_change = TRUE;
|
|
|
|
gtk_editable_delete_text (GTK_EDITABLE (chooser_entry),
|
|
|
|
pos, -1);
|
|
|
|
gtk_editable_insert_text (GTK_EDITABLE (chooser_entry),
|
|
|
|
common_prefix, -1,
|
|
|
|
&pos);
|
|
|
|
chooser_entry->in_change = FALSE;
|
|
|
|
|
2005-06-10 05:54:28 +00:00
|
|
|
if (highlight)
|
|
|
|
{
|
|
|
|
gtk_editable_select_region (GTK_EDITABLE (chooser_entry),
|
|
|
|
chooser_entry->file_part_pos + file_part_len,
|
|
|
|
chooser_entry->file_part_pos + common_prefix_len);
|
|
|
|
chooser_entry->has_completion = TRUE;
|
|
|
|
}
|
2004-03-15 14:10:45 +00:00
|
|
|
}
|
2005-06-10 05:54:28 +00:00
|
|
|
|
2004-03-15 14:10:45 +00:00
|
|
|
g_free (common_prefix);
|
|
|
|
}
|
2005-06-10 05:54:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
check_completion_callback (GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
|
|
|
GDK_THREADS_ENTER ();
|
|
|
|
|
|
|
|
g_assert (chooser_entry->file_part);
|
|
|
|
|
|
|
|
chooser_entry->check_completion_idle = NULL;
|
|
|
|
|
|
|
|
if (strcmp (chooser_entry->file_part, "") == 0)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/* We only insert the common prefix without requiring the user to hit Tab in
|
|
|
|
* the "open" modes. For "save" modes, the user must hit Tab to cause the prefix
|
|
|
|
* to be inserted. That happens in gtk_file_chooser_entry_focus().
|
|
|
|
*/
|
|
|
|
if (chooser_entry->action == GTK_FILE_CHOOSER_ACTION_OPEN
|
|
|
|
|| chooser_entry->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
|
|
|
|
append_common_prefix (chooser_entry, TRUE);
|
2004-03-15 14:10:45 +00:00
|
|
|
|
2004-12-19 04:45:09 +00:00
|
|
|
done:
|
|
|
|
|
|
|
|
GDK_THREADS_LEAVE ();
|
|
|
|
|
2004-03-15 14:10:45 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
add_completion_idle (GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
|
|
|
/* idle to update the selection based on the file list */
|
|
|
|
if (chooser_entry->check_completion_idle == NULL)
|
|
|
|
{
|
|
|
|
chooser_entry->check_completion_idle = g_idle_source_new ();
|
|
|
|
g_source_set_priority (chooser_entry->check_completion_idle, G_PRIORITY_HIGH);
|
|
|
|
g_source_set_closure (chooser_entry->check_completion_idle,
|
|
|
|
g_cclosure_new_object (G_CALLBACK (check_completion_callback),
|
|
|
|
G_OBJECT (chooser_entry)));
|
|
|
|
g_source_attach (chooser_entry->check_completion_idle, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
static void
|
|
|
|
update_current_folder_files (GtkFileChooserEntry *chooser_entry,
|
|
|
|
GSList *added_uris)
|
2003-03-25 00:11:06 +00:00
|
|
|
{
|
|
|
|
GSList *tmp_list;
|
2003-04-04 23:36:37 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
g_assert (chooser_entry->completion_store != NULL);
|
2003-11-07 23:10:19 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
/* Bah. Need to turn off sorting */
|
|
|
|
for (tmp_list = added_uris; tmp_list; tmp_list = tmp_list->next)
|
2003-03-25 00:11:06 +00:00
|
|
|
{
|
|
|
|
GtkFileInfo *info;
|
2003-11-07 23:10:19 +00:00
|
|
|
GtkFilePath *path;
|
|
|
|
|
|
|
|
path = tmp_list->data;
|
2004-03-15 06:54:34 +00:00
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
info = gtk_file_folder_get_info (chooser_entry->current_folder,
|
2003-11-07 23:10:19 +00:00
|
|
|
path,
|
2003-03-25 00:11:06 +00:00
|
|
|
NULL); /* NULL-GError */
|
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
const gchar *display_name = gtk_file_info_get_display_name (info);
|
2003-11-07 23:10:19 +00:00
|
|
|
GtkTreeIter iter;
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
gtk_list_store_append (chooser_entry->completion_store, &iter);
|
|
|
|
gtk_list_store_set (chooser_entry->completion_store, &iter,
|
|
|
|
DISPLAY_NAME_COLUMN, display_name,
|
2004-03-15 14:10:45 +00:00
|
|
|
PATH_COLUMN, path,
|
2003-11-07 23:10:19 +00:00
|
|
|
-1);
|
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
gtk_file_info_free (info);
|
|
|
|
}
|
|
|
|
}
|
2003-12-04 02:13:27 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
/* FIXME: we want to turn off sorting temporarily. I suck... */
|
|
|
|
gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (chooser_entry->completion_store),
|
|
|
|
DISPLAY_NAME_COLUMN, GTK_SORT_ASCENDING);
|
2004-03-15 14:10:45 +00:00
|
|
|
|
|
|
|
add_completion_idle (chooser_entry);
|
2004-03-15 06:54:34 +00:00
|
|
|
}
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
static void
|
|
|
|
files_added_cb (GtkFileSystem *file_system,
|
|
|
|
GSList *added_uris,
|
|
|
|
GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
|
|
|
update_current_folder_files (chooser_entry, added_uris);
|
|
|
|
}
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
static void
|
|
|
|
files_deleted_cb (GtkFileSystem *file_system,
|
|
|
|
GSList *deleted_uris,
|
|
|
|
GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
|
|
|
/* FIXME: gravy... */
|
|
|
|
}
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2006-05-01 21:41:12 +00:00
|
|
|
static void
|
|
|
|
load_directory_get_folder_callback (GtkFileSystemHandle *handle,
|
|
|
|
GtkFileFolder *folder,
|
|
|
|
const GError *error,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gboolean cancelled = handle->cancelled;
|
|
|
|
GtkFileChooserEntry *chooser_entry = data;
|
|
|
|
|
|
|
|
if (handle != chooser_entry->load_folder_handle)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
chooser_entry->load_folder_handle = NULL;
|
|
|
|
|
|
|
|
if (cancelled || error)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
chooser_entry->current_folder = folder;
|
|
|
|
g_signal_connect (chooser_entry->current_folder, "files-added",
|
|
|
|
G_CALLBACK (files_added_cb), chooser_entry);
|
|
|
|
g_signal_connect (chooser_entry->current_folder, "files-removed",
|
|
|
|
G_CALLBACK (files_deleted_cb), chooser_entry);
|
|
|
|
|
|
|
|
chooser_entry->completion_store = gtk_list_store_new (N_COLUMNS,
|
|
|
|
G_TYPE_STRING,
|
|
|
|
GTK_TYPE_FILE_PATH);
|
|
|
|
|
|
|
|
gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)),
|
|
|
|
GTK_TREE_MODEL (chooser_entry->completion_store));
|
|
|
|
|
|
|
|
out:
|
|
|
|
g_object_unref (chooser_entry);
|
|
|
|
g_object_unref (handle);
|
|
|
|
}
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
static gboolean
|
|
|
|
load_directory_callback (GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
|
|
|
GSList *child_paths = NULL;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2004-12-19 04:45:09 +00:00
|
|
|
GDK_THREADS_ENTER ();
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
chooser_entry->load_directory_idle = NULL;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
/* guard against bogus settings*/
|
|
|
|
if (chooser_entry->current_folder_path == NULL ||
|
|
|
|
chooser_entry->file_system == NULL)
|
2004-12-19 04:45:09 +00:00
|
|
|
goto done;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
if (chooser_entry->current_folder != NULL)
|
|
|
|
{
|
|
|
|
g_warning ("idle activate multiple times without clearing the folder object first.");
|
2004-12-19 04:45:09 +00:00
|
|
|
goto done;
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
2004-03-15 06:54:34 +00:00
|
|
|
g_assert (chooser_entry->completion_store == NULL);
|
|
|
|
|
|
|
|
/* Load the folder */
|
2006-05-01 21:41:12 +00:00
|
|
|
if (chooser_entry->load_folder_handle)
|
|
|
|
gtk_file_system_cancel_operation (chooser_entry->load_folder_handle);
|
2004-03-15 06:54:34 +00:00
|
|
|
|
2006-05-01 21:41:12 +00:00
|
|
|
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));
|
2004-12-19 04:45:09 +00:00
|
|
|
|
|
|
|
done:
|
|
|
|
|
|
|
|
GDK_THREADS_LEAVE ();
|
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_file_chooser_entry_do_insert_text (GtkEditable *editable,
|
|
|
|
const gchar *new_text,
|
|
|
|
gint new_text_length,
|
|
|
|
gint *position)
|
|
|
|
{
|
2004-03-15 14:10:45 +00:00
|
|
|
GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (editable);
|
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
parent_editable_iface->do_insert_text (editable, new_text, new_text_length, position);
|
2004-03-15 14:10:45 +00:00
|
|
|
|
|
|
|
if (! chooser_entry->in_change)
|
|
|
|
add_completion_idle (GTK_FILE_CHOOSER_ENTRY (editable));
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_file_chooser_entry_focus (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction)
|
|
|
|
{
|
2005-06-10 05:54:28 +00:00
|
|
|
GtkFileChooserEntry *chooser_entry;
|
|
|
|
GtkEditable *editable;
|
|
|
|
GtkEntry *entry;
|
2004-03-15 14:10:45 +00:00
|
|
|
GdkModifierType state;
|
2005-06-10 05:54:28 +00:00
|
|
|
gboolean control_pressed;
|
|
|
|
|
|
|
|
chooser_entry = GTK_FILE_CHOOSER_ENTRY (widget);
|
|
|
|
editable = GTK_EDITABLE (widget);
|
|
|
|
entry = GTK_ENTRY (widget);
|
2004-03-15 06:54:34 +00:00
|
|
|
|
2004-08-17 16:06:39 +00:00
|
|
|
if (!chooser_entry->eat_tabs)
|
2006-05-02 23:56:43 +00:00
|
|
|
return GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->focus (widget, direction);
|
2004-08-17 16:06:39 +00:00
|
|
|
|
2005-06-10 05:54:28 +00:00
|
|
|
control_pressed = FALSE;
|
|
|
|
|
2004-03-15 14:10:45 +00:00
|
|
|
if (gtk_get_current_event_state (&state))
|
2003-03-25 00:11:06 +00:00
|
|
|
{
|
2004-03-15 14:10:45 +00:00
|
|
|
if ((state & GDK_CONTROL_MASK) == GDK_CONTROL_MASK)
|
|
|
|
control_pressed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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))
|
|
|
|
{
|
2004-10-06 18:20:03 +00:00
|
|
|
gint pos = 0;
|
|
|
|
|
2005-06-10 05:54:28 +00:00
|
|
|
if (!chooser_entry->has_completion
|
|
|
|
&& gtk_editable_get_position (editable) == entry->text_length)
|
|
|
|
append_common_prefix (chooser_entry, FALSE);
|
|
|
|
|
|
|
|
gtk_editable_set_position (editable, entry->text_length);
|
|
|
|
|
2004-10-06 18:20:03 +00:00
|
|
|
/* Trigger the completion window to pop up again by a
|
|
|
|
* zero-length insertion, a bit of a hack.
|
|
|
|
*/
|
2005-06-10 05:54:28 +00:00
|
|
|
gtk_editable_insert_text (editable, "", -1, &pos);
|
2004-10-06 18:20:03 +00:00
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
2006-05-02 23:56:43 +00:00
|
|
|
return GTK_WIDGET_CLASS (_gtk_file_chooser_entry_parent_class)->focus (widget, direction);
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
2004-03-15 14:10:45 +00:00
|
|
|
static void
|
|
|
|
gtk_file_chooser_entry_activate (GtkEntry *entry)
|
|
|
|
{
|
|
|
|
GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (entry);
|
|
|
|
|
|
|
|
if (chooser_entry->has_completion)
|
|
|
|
{
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (entry),
|
|
|
|
entry->text_length);
|
|
|
|
}
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
GTK_ENTRY_CLASS (_gtk_file_chooser_entry_parent_class)->activate (entry);
|
2004-03-15 14:10:45 +00:00
|
|
|
}
|
|
|
|
|
2004-03-15 06:54:34 +00:00
|
|
|
/* This will see if a path typed by the user is new, and installs the loading
|
|
|
|
* idle if it is.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
gtk_file_chooser_entry_maybe_update_directory (GtkFileChooserEntry *chooser_entry,
|
2004-04-07 17:52:03 +00:00
|
|
|
GtkFilePath *folder_path,
|
|
|
|
gboolean force_reload)
|
2004-03-15 06:54:34 +00:00
|
|
|
{
|
|
|
|
gboolean queue_idle = FALSE;
|
|
|
|
|
|
|
|
if (chooser_entry->current_folder_path)
|
|
|
|
{
|
2004-04-07 17:52:03 +00:00
|
|
|
if (gtk_file_path_compare (folder_path, chooser_entry->current_folder_path) != 0 || force_reload)
|
2004-03-15 06:54:34 +00:00
|
|
|
{
|
|
|
|
/* We changed our current directory. We need to clear out the old
|
|
|
|
* directory information.
|
|
|
|
*/
|
|
|
|
if (chooser_entry->current_folder)
|
|
|
|
{
|
|
|
|
g_signal_handlers_disconnect_by_func (chooser_entry->current_folder,
|
|
|
|
G_CALLBACK (files_added_cb), chooser_entry);
|
|
|
|
g_signal_handlers_disconnect_by_func (chooser_entry->current_folder,
|
|
|
|
G_CALLBACK (files_deleted_cb), chooser_entry);
|
|
|
|
|
|
|
|
g_object_unref (chooser_entry->current_folder);
|
|
|
|
chooser_entry->current_folder = NULL;
|
|
|
|
}
|
|
|
|
if (chooser_entry->completion_store)
|
|
|
|
{
|
2004-10-26 15:53:32 +00:00
|
|
|
gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)), NULL);
|
2004-03-15 06:54:34 +00:00
|
|
|
g_object_unref (chooser_entry->completion_store);
|
|
|
|
chooser_entry->completion_store = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
queue_idle = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_file_path_free (chooser_entry->current_folder_path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
queue_idle = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
chooser_entry->current_folder_path = folder_path;
|
|
|
|
|
|
|
|
if (queue_idle && chooser_entry->load_directory_idle == NULL)
|
|
|
|
{
|
|
|
|
chooser_entry->load_directory_idle = g_idle_source_new ();
|
|
|
|
g_source_set_priority (chooser_entry->load_directory_idle, G_PRIORITY_HIGH);
|
|
|
|
g_source_set_closure (chooser_entry->load_directory_idle,
|
|
|
|
g_cclosure_new_object (G_CALLBACK (load_directory_callback),
|
|
|
|
G_OBJECT (chooser_entry)));
|
|
|
|
g_source_attach (chooser_entry->load_directory_idle, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
static void
|
|
|
|
gtk_file_chooser_entry_changed (GtkEditable *editable)
|
|
|
|
{
|
|
|
|
GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (editable);
|
|
|
|
const gchar *text;
|
2003-04-04 22:43:12 +00:00
|
|
|
GtkFilePath *folder_path;
|
2003-03-25 00:11:06 +00:00
|
|
|
gchar *file_part;
|
2004-03-15 17:11:28 +00:00
|
|
|
gsize total_len, file_part_len;
|
|
|
|
gint file_part_pos;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2004-03-15 14:10:45 +00:00
|
|
|
if (chooser_entry->in_change)
|
|
|
|
return;
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2004-03-15 14:10:45 +00:00
|
|
|
text = gtk_entry_get_text (GTK_ENTRY (editable));
|
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
if (!chooser_entry->file_system ||
|
|
|
|
!chooser_entry->base_folder ||
|
|
|
|
!gtk_file_system_parse (chooser_entry->file_system,
|
|
|
|
chooser_entry->base_folder, text,
|
2003-04-04 22:43:12 +00:00
|
|
|
&folder_path, &file_part, NULL)) /* NULL-GError */
|
2003-03-25 00:11:06 +00:00
|
|
|
{
|
2003-04-04 22:43:12 +00:00
|
|
|
folder_path = gtk_file_path_copy (chooser_entry->base_folder);
|
2003-03-25 00:11:06 +00:00
|
|
|
file_part = g_strdup ("");
|
2004-04-07 17:52:03 +00:00
|
|
|
file_part_pos = -1;
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
2004-03-15 17:11:28 +00:00
|
|
|
else
|
2004-04-07 17:52:03 +00:00
|
|
|
{
|
|
|
|
file_part_len = strlen (file_part);
|
|
|
|
total_len = strlen (text);
|
|
|
|
if (total_len > file_part_len)
|
|
|
|
file_part_pos = g_utf8_strlen (text, total_len - file_part_len);
|
|
|
|
else
|
|
|
|
file_part_pos = 0;
|
|
|
|
}
|
2003-03-25 00:11:06 +00:00
|
|
|
|
|
|
|
if (chooser_entry->file_part)
|
|
|
|
g_free (chooser_entry->file_part);
|
|
|
|
|
|
|
|
chooser_entry->file_part = file_part;
|
2004-03-15 17:11:28 +00:00
|
|
|
chooser_entry->file_part_pos = file_part_pos;
|
2004-04-07 17:52:03 +00:00
|
|
|
|
|
|
|
gtk_file_chooser_entry_maybe_update_directory (chooser_entry, folder_path, file_part_pos == -1);
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clear_completion_callback (GtkFileChooserEntry *chooser_entry,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2004-03-15 14:10:45 +00:00
|
|
|
if (chooser_entry->has_completion)
|
|
|
|
{
|
|
|
|
chooser_entry->has_completion = FALSE;
|
|
|
|
gtk_file_chooser_entry_changed (GTK_EDITABLE (chooser_entry));
|
|
|
|
}
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gtk_file_chooser_entry_new:
|
2004-08-17 16:06:39 +00:00
|
|
|
* @eat_tabs: If %FALSE, allow focus navigation with the tab key.
|
2004-03-15 06:54:34 +00:00
|
|
|
*
|
2003-03-25 00:11:06 +00:00
|
|
|
* Creates a new #GtkFileChooserEntry object. #GtkFileChooserEntry
|
|
|
|
* is an internal implementation widget for the GTK+ file chooser
|
|
|
|
* which is an entry with completion with respect to a
|
|
|
|
* #GtkFileSystem object.
|
2004-03-15 06:54:34 +00:00
|
|
|
*
|
2003-03-25 00:11:06 +00:00
|
|
|
* Return value: the newly created #GtkFileChooserEntry
|
|
|
|
**/
|
|
|
|
GtkWidget *
|
2004-08-17 16:06:39 +00:00
|
|
|
_gtk_file_chooser_entry_new (gboolean eat_tabs)
|
2003-03-25 00:11:06 +00:00
|
|
|
{
|
2004-08-17 16:06:39 +00:00
|
|
|
GtkFileChooserEntry *chooser_entry;
|
|
|
|
|
|
|
|
chooser_entry = g_object_new (GTK_TYPE_FILE_CHOOSER_ENTRY, NULL);
|
|
|
|
chooser_entry->eat_tabs = (eat_tabs != FALSE);
|
|
|
|
|
|
|
|
return GTK_WIDGET (chooser_entry);
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gtk_file_chooser_entry_set_file_system:
|
|
|
|
* @chooser_entry: a #GtkFileChooser
|
|
|
|
* @file_system: an object implementing #GtkFileSystem
|
2004-03-15 06:54:34 +00:00
|
|
|
*
|
2003-03-25 00:11:06 +00:00
|
|
|
* 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));
|
2004-03-15 06:54:34 +00:00
|
|
|
|
2003-03-25 00:11:06 +00:00
|
|
|
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
|
2003-04-04 22:43:12 +00:00
|
|
|
* @path: path of a folder in the chooser entries current file system.
|
2003-03-25 00:11:06 +00:00
|
|
|
*
|
|
|
|
* Sets the folder with respect to which completions occur.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
_gtk_file_chooser_entry_set_base_folder (GtkFileChooserEntry *chooser_entry,
|
2003-04-04 22:43:12 +00:00
|
|
|
const GtkFilePath *path)
|
2003-03-25 00:11:06 +00:00
|
|
|
{
|
|
|
|
if (chooser_entry->base_folder)
|
2003-04-04 22:43:12 +00:00
|
|
|
gtk_file_path_free (chooser_entry->base_folder);
|
2003-03-25 00:11:06 +00:00
|
|
|
|
2003-04-04 22:43:12 +00:00
|
|
|
chooser_entry->base_folder = gtk_file_path_copy (path);
|
2004-03-08 01:55:43 +00:00
|
|
|
|
2004-08-06 19:25:25 +00:00
|
|
|
gtk_file_chooser_entry_changed (GTK_EDITABLE (chooser_entry));
|
2004-03-15 06:54:34 +00:00
|
|
|
gtk_editable_select_region (GTK_EDITABLE (chooser_entry), 0, -1);
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gtk_file_chooser_entry_get_current_folder:
|
|
|
|
* @chooser_entry: a #GtkFileChooserEntry
|
2004-03-15 06:54:34 +00:00
|
|
|
*
|
2003-03-25 00:11:06 +00:00
|
|
|
* Gets the current folder for the #GtkFileChooserEntry. If the
|
|
|
|
* user has only entered a filename, this will be 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.
|
2004-03-15 06:54:34 +00:00
|
|
|
*
|
2003-04-04 22:43:12 +00:00
|
|
|
* Return value: the path of current folder - this value is owned by the
|
2003-03-25 00:11:06 +00:00
|
|
|
* chooser entry and must not be modified or freed.
|
|
|
|
**/
|
2003-04-04 22:43:12 +00:00
|
|
|
const GtkFilePath *
|
2003-03-25 00:11:06 +00:00
|
|
|
_gtk_file_chooser_entry_get_current_folder (GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
2004-09-17 18:13:26 +00:00
|
|
|
if (chooser_entry->has_completion)
|
|
|
|
{
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (chooser_entry),
|
|
|
|
GTK_ENTRY (chooser_entry)->text_length);
|
|
|
|
}
|
2003-04-04 22:43:12 +00:00
|
|
|
return chooser_entry->current_folder_path;
|
2003-03-25 00:11:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gtk_file_chooser_entry_get_file_part:
|
|
|
|
* @chooser_entry: a #GtkFileChooserEntry
|
2004-03-15 06:54:34 +00:00
|
|
|
*
|
2003-03-25 00:11:06 +00:00
|
|
|
* Gets the non-folder portion of whatever the user has entered
|
|
|
|
* into the file selector. What is returned is a UTF-8 string,
|
2003-04-04 22:43:12 +00:00
|
|
|
* and if a filename path is needed, gtk_file_system_make_path()
|
2003-03-25 00:11:06 +00:00
|
|
|
* must be used
|
2004-03-15 06:54:34 +00:00
|
|
|
*
|
2003-03-25 00:11:06 +00:00
|
|
|
* Return value: the entered filename - this value is owned by the
|
|
|
|
* chooser entry and must not be modified or freed.
|
|
|
|
**/
|
|
|
|
const gchar *
|
|
|
|
_gtk_file_chooser_entry_get_file_part (GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
2004-09-17 18:13:26 +00:00
|
|
|
if (chooser_entry->has_completion)
|
|
|
|
{
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (chooser_entry),
|
|
|
|
GTK_ENTRY (chooser_entry)->text_length);
|
|
|
|
}
|
2003-03-25 00:11:06 +00:00
|
|
|
return chooser_entry->file_part;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gtk_file_chooser_entry_set_file_part:
|
|
|
|
* @chooser_entry: a #GtkFileChooserEntry
|
|
|
|
* @file_part: text to display in the entry, in UTF-8
|
2004-03-15 06:54:34 +00:00
|
|
|
*
|
2003-03-25 00:11:06 +00:00
|
|
|
* 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));
|
|
|
|
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (chooser_entry), file_part);
|
|
|
|
}
|
2004-09-17 18:13:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gtk_file_chooser_entry_set_action:
|
|
|
|
* @chooser_entry: a #GtkFileChooserEntry
|
|
|
|
* @action: the action which is performed by the file selector using this entry
|
|
|
|
*
|
|
|
|
* Sets action which is performed by the file selector using this entry.
|
|
|
|
* The #GtkFileChooserEntry will use different completion strategies for
|
|
|
|
* different actions.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
_gtk_file_chooser_entry_set_action (GtkFileChooserEntry *chooser_entry,
|
|
|
|
GtkFileChooserAction action)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry));
|
|
|
|
|
2005-05-26 20:36:36 +00:00
|
|
|
if (chooser_entry->action != action)
|
2004-09-17 18:13:26 +00:00
|
|
|
{
|
2005-05-26 20:36:36 +00:00
|
|
|
GtkEntryCompletion *comp;
|
|
|
|
|
2004-09-17 18:13:26 +00:00
|
|
|
chooser_entry->action = action;
|
2005-05-26 20:36:36 +00:00
|
|
|
|
|
|
|
comp = gtk_entry_get_completion (GTK_ENTRY (chooser_entry));
|
|
|
|
|
|
|
|
switch (action)
|
|
|
|
{
|
|
|
|
case GTK_FILE_CHOOSER_ACTION_OPEN:
|
|
|
|
case GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
|
|
|
|
gtk_entry_completion_set_popup_single_match (comp, FALSE);
|
|
|
|
break;
|
|
|
|
case GTK_FILE_CHOOSER_ACTION_SAVE:
|
|
|
|
case GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER:
|
|
|
|
gtk_entry_completion_set_popup_single_match (comp, TRUE);
|
|
|
|
break;
|
|
|
|
}
|
2004-09-17 18:13:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gtk_file_chooser_entry_get_action:
|
|
|
|
* @chooser_entry: a #GtkFileChooserEntry
|
|
|
|
*
|
|
|
|
* Gets the action for this entry.
|
|
|
|
*
|
|
|
|
* Returns: the action
|
|
|
|
**/
|
|
|
|
GtkFileChooserAction
|
|
|
|
_gtk_file_chooser_entry_get_action (GtkFileChooserEntry *chooser_entry)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_FILE_CHOOSER_ENTRY (chooser_entry),
|
|
|
|
GTK_FILE_CHOOSER_ACTION_OPEN);
|
|
|
|
|
|
|
|
return chooser_entry->action;
|
|
|
|
}
|
2005-03-20 07:01:23 +00:00
|
|
|
|
2006-05-01 21:41:12 +00:00
|
|
|
gboolean
|
|
|
|
_gtk_file_chooser_entry_get_is_folder (GtkFileChooserEntry *chooser_entry,
|
|
|
|
const GtkFilePath *path)
|
|
|
|
{
|
|
|
|
gboolean retval = FALSE;
|
|
|
|
|
|
|
|
if (chooser_entry->current_folder)
|
|
|
|
{
|
|
|
|
GtkFileInfo *file_info;
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
#define __GTK_FILE_CHOOSER_ENTRY_C__
|
|
|
|
#include "gtkaliasdef.c"
|