2008-07-01 22:57:50 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
2003-03-21 20:34:02 +00:00
|
|
|
|
* gtkfilechooserutils.c: Private utility functions useful for
|
|
|
|
|
* implementing a GtkFileChooser interface
|
|
|
|
|
* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2003-03-21 20:34:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2003-03-21 20:34:02 +00:00
|
|
|
|
#include "gtkfilechooserutils.h"
|
|
|
|
|
#include "gtkfilechooser.h"
|
2003-10-23 04:22:32 +00:00
|
|
|
|
#include "gtktypebuiltins.h"
|
2005-09-01 05:11:46 +00:00
|
|
|
|
#include "gtkintl.h"
|
2010-07-09 17:22:23 +00:00
|
|
|
|
|
2003-03-21 20:34:02 +00:00
|
|
|
|
|
2004-03-05 20:47:05 +00:00
|
|
|
|
static gboolean delegate_set_current_folder (GtkFileChooser *chooser,
|
2008-06-10 00:39:35 +00:00
|
|
|
|
GFile *file,
|
2004-03-05 20:47:05 +00:00
|
|
|
|
GError **error);
|
2008-06-10 00:39:35 +00:00
|
|
|
|
static GFile * delegate_get_current_folder (GtkFileChooser *chooser);
|
2003-07-11 19:18:36 +00:00
|
|
|
|
static void delegate_set_current_name (GtkFileChooser *chooser,
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *name);
|
|
|
|
|
static char * delegate_get_current_name (GtkFileChooser *chooser);
|
2008-06-10 00:39:35 +00:00
|
|
|
|
static gboolean delegate_select_file (GtkFileChooser *chooser,
|
|
|
|
|
GFile *file,
|
2004-03-05 20:47:05 +00:00
|
|
|
|
GError **error);
|
2008-06-10 00:39:35 +00:00
|
|
|
|
static void delegate_unselect_file (GtkFileChooser *chooser,
|
|
|
|
|
GFile *file);
|
2003-04-04 22:43:12 +00:00
|
|
|
|
static void delegate_select_all (GtkFileChooser *chooser);
|
|
|
|
|
static void delegate_unselect_all (GtkFileChooser *chooser);
|
2020-07-09 05:29:20 +00:00
|
|
|
|
static GListModel * delegate_get_files (GtkFileChooser *chooser);
|
2003-07-23 15:31:10 +00:00
|
|
|
|
static void delegate_add_filter (GtkFileChooser *chooser,
|
|
|
|
|
GtkFileFilter *filter);
|
|
|
|
|
static void delegate_remove_filter (GtkFileChooser *chooser,
|
|
|
|
|
GtkFileFilter *filter);
|
2020-07-04 16:15:47 +00:00
|
|
|
|
static GListModel * delegate_get_filters (GtkFileChooser *chooser);
|
2003-10-18 04:29:40 +00:00
|
|
|
|
static gboolean delegate_add_shortcut_folder (GtkFileChooser *chooser,
|
2008-06-10 00:39:35 +00:00
|
|
|
|
GFile *file,
|
2003-10-18 04:29:40 +00:00
|
|
|
|
GError **error);
|
|
|
|
|
static gboolean delegate_remove_shortcut_folder (GtkFileChooser *chooser,
|
2008-06-10 00:39:35 +00:00
|
|
|
|
GFile *file,
|
2003-10-18 04:29:40 +00:00
|
|
|
|
GError **error);
|
2020-07-05 02:08:33 +00:00
|
|
|
|
static GListModel * delegate_get_shortcut_folders (GtkFileChooser *chooser);
|
2003-07-23 15:31:10 +00:00
|
|
|
|
static void delegate_notify (GObject *object,
|
|
|
|
|
GParamSpec *pspec,
|
|
|
|
|
gpointer data);
|
2003-03-21 20:34:02 +00:00
|
|
|
|
|
2016-07-06 02:11:44 +00:00
|
|
|
|
static void delegate_add_choice (GtkFileChooser *chooser,
|
|
|
|
|
const char *id,
|
|
|
|
|
const char *label,
|
|
|
|
|
const char **options,
|
|
|
|
|
const char **option_labels);
|
|
|
|
|
static void delegate_remove_choice (GtkFileChooser *chooser,
|
|
|
|
|
const char *id);
|
|
|
|
|
static void delegate_set_choice (GtkFileChooser *chooser,
|
|
|
|
|
const char *id,
|
|
|
|
|
const char *option);
|
|
|
|
|
static const char * delegate_get_choice (GtkFileChooser *chooser,
|
|
|
|
|
const char *id);
|
|
|
|
|
|
2005-07-15 04:55:56 +00:00
|
|
|
|
|
2003-03-21 21:26:38 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_file_chooser_install_properties:
|
|
|
|
|
* @klass: the class structure for a type deriving from #GObject
|
2004-03-05 20:47:05 +00:00
|
|
|
|
*
|
2003-03-21 21:26:38 +00:00
|
|
|
|
* Installs the necessary properties for a class implementing
|
|
|
|
|
* #GtkFileChooser. A #GtkParamSpecOverride property is installed
|
|
|
|
|
* for each property, using the values from the #GtkFileChooserProp
|
|
|
|
|
* enumeration. The caller must make sure itself that the enumeration
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* values don’t collide with some other property values they
|
2003-03-21 21:26:38 +00:00
|
|
|
|
* are using.
|
|
|
|
|
**/
|
2003-03-21 20:34:02 +00:00
|
|
|
|
void
|
|
|
|
|
_gtk_file_chooser_install_properties (GObjectClass *klass)
|
|
|
|
|
{
|
2003-09-03 19:37:01 +00:00
|
|
|
|
g_object_class_override_property (klass,
|
2020-07-06 14:34:33 +00:00
|
|
|
|
GTK_FILE_CHOOSER_PROP_ACTION,
|
|
|
|
|
"action");
|
2003-09-03 19:37:01 +00:00
|
|
|
|
g_object_class_override_property (klass,
|
2020-07-06 14:34:33 +00:00
|
|
|
|
GTK_FILE_CHOOSER_PROP_FILTER,
|
|
|
|
|
"filter");
|
2003-09-03 19:37:01 +00:00
|
|
|
|
g_object_class_override_property (klass,
|
2020-07-06 14:34:33 +00:00
|
|
|
|
GTK_FILE_CHOOSER_PROP_SELECT_MULTIPLE,
|
|
|
|
|
"select-multiple");
|
2009-07-28 12:15:59 +00:00
|
|
|
|
g_object_class_override_property (klass,
|
2020-07-06 14:34:33 +00:00
|
|
|
|
GTK_FILE_CHOOSER_PROP_CREATE_FOLDERS,
|
|
|
|
|
"create-folders");
|
|
|
|
|
g_object_class_override_property (klass,
|
|
|
|
|
GTK_FILE_CHOOSER_PROP_FILTERS,
|
|
|
|
|
"filters");
|
2020-07-06 15:03:02 +00:00
|
|
|
|
g_object_class_override_property (klass,
|
|
|
|
|
GTK_FILE_CHOOSER_PROP_SHORTCUT_FOLDERS,
|
|
|
|
|
"shortcut-folders");
|
2003-03-21 20:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-03-21 21:26:38 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_file_chooser_delegate_iface_init:
|
|
|
|
|
* @iface: a #GtkFileChoserIface structure
|
2004-03-05 20:47:05 +00:00
|
|
|
|
*
|
2003-03-21 21:26:38 +00:00
|
|
|
|
* An interface-initialization function for use in cases where
|
|
|
|
|
* an object is simply delegating the methods, signals of
|
|
|
|
|
* the #GtkFileChooser interface to another object.
|
|
|
|
|
* _gtk_file_chooser_set_delegate() must be called on each
|
|
|
|
|
* instance of the object so that the delegate object can
|
|
|
|
|
* be found.
|
|
|
|
|
**/
|
2003-03-21 20:34:02 +00:00
|
|
|
|
void
|
|
|
|
|
_gtk_file_chooser_delegate_iface_init (GtkFileChooserIface *iface)
|
|
|
|
|
{
|
|
|
|
|
iface->set_current_folder = delegate_set_current_folder;
|
|
|
|
|
iface->get_current_folder = delegate_get_current_folder;
|
2003-07-11 19:18:36 +00:00
|
|
|
|
iface->set_current_name = delegate_set_current_name;
|
2013-06-17 18:47:56 +00:00
|
|
|
|
iface->get_current_name = delegate_get_current_name;
|
2008-06-10 00:39:35 +00:00
|
|
|
|
iface->select_file = delegate_select_file;
|
|
|
|
|
iface->unselect_file = delegate_unselect_file;
|
2003-03-21 20:34:02 +00:00
|
|
|
|
iface->select_all = delegate_select_all;
|
|
|
|
|
iface->unselect_all = delegate_unselect_all;
|
2008-06-10 00:39:35 +00:00
|
|
|
|
iface->get_files = delegate_get_files;
|
2003-07-23 15:31:10 +00:00
|
|
|
|
iface->add_filter = delegate_add_filter;
|
|
|
|
|
iface->remove_filter = delegate_remove_filter;
|
2020-07-04 16:15:47 +00:00
|
|
|
|
iface->get_filters = delegate_get_filters;
|
2003-10-18 04:29:40 +00:00
|
|
|
|
iface->add_shortcut_folder = delegate_add_shortcut_folder;
|
|
|
|
|
iface->remove_shortcut_folder = delegate_remove_shortcut_folder;
|
2020-07-05 02:08:33 +00:00
|
|
|
|
iface->get_shortcut_folders = delegate_get_shortcut_folders;
|
2016-07-06 02:11:44 +00:00
|
|
|
|
iface->add_choice = delegate_add_choice;
|
|
|
|
|
iface->remove_choice = delegate_remove_choice;
|
|
|
|
|
iface->set_choice = delegate_set_choice;
|
|
|
|
|
iface->get_choice = delegate_get_choice;
|
2003-03-21 20:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-03-21 21:26:38 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_file_chooser_set_delegate:
|
2004-07-06 04:08:32 +00:00
|
|
|
|
* @receiver: a #GObject implementing #GtkFileChooser
|
|
|
|
|
* @delegate: another #GObject implementing #GtkFileChooser
|
2003-03-21 21:26:38 +00:00
|
|
|
|
*
|
|
|
|
|
* Establishes that calls on @receiver for #GtkFileChooser
|
|
|
|
|
* methods should be delegated to @delegate, and that
|
|
|
|
|
* #GtkFileChooser signals emitted on @delegate should be
|
2004-05-31 04:29:01 +00:00
|
|
|
|
* forwarded to @receiver. Must be used in conjunction with
|
2003-03-21 21:26:38 +00:00
|
|
|
|
* _gtk_file_chooser_delegate_iface_init().
|
|
|
|
|
**/
|
2003-03-21 20:34:02 +00:00
|
|
|
|
void
|
|
|
|
|
_gtk_file_chooser_set_delegate (GtkFileChooser *receiver,
|
|
|
|
|
GtkFileChooser *delegate)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_FILE_CHOOSER (receiver));
|
|
|
|
|
g_return_if_fail (GTK_IS_FILE_CHOOSER (delegate));
|
2004-03-05 20:47:05 +00:00
|
|
|
|
|
2005-09-01 05:11:46 +00:00
|
|
|
|
g_object_set_data (G_OBJECT (receiver), I_("gtk-file-chooser-delegate"), delegate);
|
2003-07-23 15:31:10 +00:00
|
|
|
|
g_signal_connect (delegate, "notify",
|
|
|
|
|
G_CALLBACK (delegate_notify), receiver);
|
2003-03-21 20:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-08-17 16:06:39 +00:00
|
|
|
|
GQuark
|
|
|
|
|
_gtk_file_chooser_delegate_get_quark (void)
|
|
|
|
|
{
|
|
|
|
|
static GQuark quark = 0;
|
|
|
|
|
|
|
|
|
|
if (G_UNLIKELY (quark == 0))
|
|
|
|
|
quark = g_quark_from_static_string ("gtk-file-chooser-delegate");
|
|
|
|
|
|
|
|
|
|
return quark;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-21 21:26:38 +00:00
|
|
|
|
static GtkFileChooser *
|
2003-03-21 20:34:02 +00:00
|
|
|
|
get_delegate (GtkFileChooser *receiver)
|
|
|
|
|
{
|
2004-08-17 16:06:39 +00:00
|
|
|
|
return g_object_get_qdata (G_OBJECT (receiver),
|
|
|
|
|
GTK_FILE_CHOOSER_DELEGATE_QUARK);
|
2003-03-21 20:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-03-05 20:47:05 +00:00
|
|
|
|
static gboolean
|
2008-06-10 00:39:35 +00:00
|
|
|
|
delegate_select_file (GtkFileChooser *chooser,
|
|
|
|
|
GFile *file,
|
2004-03-05 20:47:05 +00:00
|
|
|
|
GError **error)
|
2003-03-21 20:34:02 +00:00
|
|
|
|
{
|
2008-08-04 14:43:05 +00:00
|
|
|
|
return gtk_file_chooser_select_file (get_delegate (chooser), file, error);
|
2003-03-21 20:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-06-10 00:39:35 +00:00
|
|
|
|
delegate_unselect_file (GtkFileChooser *chooser,
|
|
|
|
|
GFile *file)
|
2003-03-21 20:34:02 +00:00
|
|
|
|
{
|
2008-08-04 14:43:05 +00:00
|
|
|
|
gtk_file_chooser_unselect_file (get_delegate (chooser), file);
|
2003-03-21 20:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
delegate_select_all (GtkFileChooser *chooser)
|
|
|
|
|
{
|
|
|
|
|
gtk_file_chooser_select_all (get_delegate (chooser));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
delegate_unselect_all (GtkFileChooser *chooser)
|
|
|
|
|
{
|
|
|
|
|
gtk_file_chooser_unselect_all (get_delegate (chooser));
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-09 05:29:20 +00:00
|
|
|
|
static GListModel *
|
2008-06-10 00:39:35 +00:00
|
|
|
|
delegate_get_files (GtkFileChooser *chooser)
|
2003-03-21 20:34:02 +00:00
|
|
|
|
{
|
2008-08-04 14:43:05 +00:00
|
|
|
|
return gtk_file_chooser_get_files (get_delegate (chooser));
|
2003-04-04 22:43:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-07-23 15:31:10 +00:00
|
|
|
|
static void
|
|
|
|
|
delegate_add_filter (GtkFileChooser *chooser,
|
|
|
|
|
GtkFileFilter *filter)
|
|
|
|
|
{
|
|
|
|
|
gtk_file_chooser_add_filter (get_delegate (chooser), filter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
delegate_remove_filter (GtkFileChooser *chooser,
|
|
|
|
|
GtkFileFilter *filter)
|
|
|
|
|
{
|
|
|
|
|
gtk_file_chooser_remove_filter (get_delegate (chooser), filter);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-04 16:15:47 +00:00
|
|
|
|
static GListModel *
|
|
|
|
|
delegate_get_filters (GtkFileChooser *chooser)
|
2003-07-23 15:31:10 +00:00
|
|
|
|
{
|
2020-07-04 16:15:47 +00:00
|
|
|
|
return gtk_file_chooser_get_filters (get_delegate (chooser));
|
2003-07-23 15:31:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-18 04:29:40 +00:00
|
|
|
|
static gboolean
|
2008-06-10 00:39:35 +00:00
|
|
|
|
delegate_add_shortcut_folder (GtkFileChooser *chooser,
|
|
|
|
|
GFile *file,
|
|
|
|
|
GError **error)
|
2003-10-18 04:29:40 +00:00
|
|
|
|
{
|
2020-02-21 15:11:15 +00:00
|
|
|
|
return gtk_file_chooser_add_shortcut_folder (get_delegate (chooser), file, error);
|
2003-10-18 04:29:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2008-06-10 00:39:35 +00:00
|
|
|
|
delegate_remove_shortcut_folder (GtkFileChooser *chooser,
|
|
|
|
|
GFile *file,
|
|
|
|
|
GError **error)
|
2003-10-18 04:29:40 +00:00
|
|
|
|
{
|
2020-02-21 15:11:15 +00:00
|
|
|
|
return gtk_file_chooser_remove_shortcut_folder (get_delegate (chooser), file, error);
|
2003-10-18 04:29:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-05 02:08:33 +00:00
|
|
|
|
static GListModel *
|
|
|
|
|
delegate_get_shortcut_folders (GtkFileChooser *chooser)
|
2003-10-18 04:29:40 +00:00
|
|
|
|
{
|
2020-07-05 02:08:33 +00:00
|
|
|
|
return gtk_file_chooser_get_shortcut_folders (get_delegate (chooser));
|
2003-10-18 04:29:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-03-05 20:47:05 +00:00
|
|
|
|
static gboolean
|
2008-06-10 00:39:35 +00:00
|
|
|
|
delegate_set_current_folder (GtkFileChooser *chooser,
|
|
|
|
|
GFile *file,
|
|
|
|
|
GError **error)
|
2003-03-21 20:34:02 +00:00
|
|
|
|
{
|
2020-02-21 15:11:15 +00:00
|
|
|
|
return gtk_file_chooser_set_current_folder (get_delegate (chooser), file, error);
|
2003-03-21 20:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-06-10 00:39:35 +00:00
|
|
|
|
static GFile *
|
2003-03-21 20:34:02 +00:00
|
|
|
|
delegate_get_current_folder (GtkFileChooser *chooser)
|
|
|
|
|
{
|
2020-02-21 15:11:15 +00:00
|
|
|
|
return gtk_file_chooser_get_current_folder (get_delegate (chooser));
|
2003-07-11 19:18:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
delegate_set_current_name (GtkFileChooser *chooser,
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *name)
|
2003-07-11 19:18:36 +00:00
|
|
|
|
{
|
|
|
|
|
gtk_file_chooser_set_current_name (get_delegate (chooser), name);
|
2003-03-21 20:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-24 18:40:36 +00:00
|
|
|
|
static char *
|
2013-06-17 18:47:56 +00:00
|
|
|
|
delegate_get_current_name (GtkFileChooser *chooser)
|
|
|
|
|
{
|
|
|
|
|
return gtk_file_chooser_get_current_name (get_delegate (chooser));
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-23 15:31:10 +00:00
|
|
|
|
static void
|
|
|
|
|
delegate_notify (GObject *object,
|
|
|
|
|
GParamSpec *pspec,
|
|
|
|
|
gpointer data)
|
|
|
|
|
{
|
2004-07-06 04:08:32 +00:00
|
|
|
|
gpointer iface;
|
|
|
|
|
|
|
|
|
|
iface = g_type_interface_peek (g_type_class_peek (G_OBJECT_TYPE (object)),
|
|
|
|
|
gtk_file_chooser_get_type ());
|
|
|
|
|
if (g_object_interface_find_property (iface, pspec->name))
|
|
|
|
|
g_object_notify (data, pspec->name);
|
2003-07-23 15:31:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-23 02:23:33 +00:00
|
|
|
|
GSettings *
|
|
|
|
|
_gtk_file_chooser_get_settings_for_widget (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
static GQuark file_chooser_settings_quark = 0;
|
|
|
|
|
GtkSettings *gtksettings;
|
|
|
|
|
GSettings *settings;
|
|
|
|
|
|
|
|
|
|
if (G_UNLIKELY (file_chooser_settings_quark == 0))
|
|
|
|
|
file_chooser_settings_quark = g_quark_from_static_string ("-gtk-file-chooser-settings");
|
|
|
|
|
|
|
|
|
|
gtksettings = gtk_widget_get_settings (widget);
|
|
|
|
|
settings = g_object_get_qdata (G_OBJECT (gtksettings), file_chooser_settings_quark);
|
|
|
|
|
|
|
|
|
|
if (G_UNLIKELY (settings == NULL))
|
|
|
|
|
{
|
2019-04-02 19:22:48 +00:00
|
|
|
|
settings = g_settings_new ("org.gtk.gtk4.Settings.FileChooser");
|
2013-01-23 02:23:33 +00:00
|
|
|
|
g_settings_delay (settings);
|
|
|
|
|
|
|
|
|
|
g_object_set_qdata_full (G_OBJECT (gtksettings),
|
|
|
|
|
file_chooser_settings_quark,
|
|
|
|
|
settings,
|
|
|
|
|
g_object_unref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return settings;
|
|
|
|
|
}
|
2013-11-10 00:27:53 +00:00
|
|
|
|
|
2020-07-24 18:40:36 +00:00
|
|
|
|
char *
|
2013-11-10 00:27:53 +00:00
|
|
|
|
_gtk_file_chooser_label_for_file (GFile *file)
|
|
|
|
|
{
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *path, *start, *end, *p;
|
|
|
|
|
char *uri, *host, *label;
|
2013-11-10 00:27:53 +00:00
|
|
|
|
|
|
|
|
|
uri = g_file_get_uri (file);
|
|
|
|
|
|
|
|
|
|
start = strstr (uri, "://");
|
|
|
|
|
if (start)
|
|
|
|
|
{
|
|
|
|
|
start += 3;
|
|
|
|
|
path = strchr (start, '/');
|
|
|
|
|
if (path)
|
|
|
|
|
end = path;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
end = uri + strlen (uri);
|
|
|
|
|
path = "/";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* strip username */
|
|
|
|
|
p = strchr (start, '@');
|
|
|
|
|
if (p && p < end)
|
|
|
|
|
start = p + 1;
|
|
|
|
|
|
|
|
|
|
p = strchr (start, ':');
|
|
|
|
|
if (p && p < end)
|
|
|
|
|
end = p;
|
|
|
|
|
|
|
|
|
|
host = g_strndup (start, end - start);
|
|
|
|
|
/* Translators: the first string is a path and the second string
|
|
|
|
|
* is a hostname. Nautilus and the panel contain the same string
|
|
|
|
|
* to translate.
|
|
|
|
|
*/
|
|
|
|
|
label = g_strdup_printf (_("%1$s on %2$s"), path, host);
|
|
|
|
|
|
|
|
|
|
g_free (host);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
label = g_strdup (uri);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_free (uri);
|
|
|
|
|
|
|
|
|
|
return label;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-06 02:11:44 +00:00
|
|
|
|
static void
|
|
|
|
|
delegate_add_choice (GtkFileChooser *chooser,
|
|
|
|
|
const char *id,
|
|
|
|
|
const char *label,
|
|
|
|
|
const char **options,
|
|
|
|
|
const char **option_labels)
|
|
|
|
|
{
|
|
|
|
|
gtk_file_chooser_add_choice (get_delegate (chooser),
|
|
|
|
|
id, label, options, option_labels);
|
|
|
|
|
}
|
|
|
|
|
static void
|
|
|
|
|
delegate_remove_choice (GtkFileChooser *chooser,
|
|
|
|
|
const char *id)
|
|
|
|
|
{
|
|
|
|
|
gtk_file_chooser_remove_choice (get_delegate (chooser), id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
delegate_set_choice (GtkFileChooser *chooser,
|
|
|
|
|
const char *id,
|
|
|
|
|
const char *option)
|
|
|
|
|
{
|
|
|
|
|
gtk_file_chooser_set_choice (get_delegate (chooser), id, option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
|
delegate_get_choice (GtkFileChooser *chooser,
|
|
|
|
|
const char *id)
|
|
|
|
|
{
|
|
|
|
|
return gtk_file_chooser_get_choice (get_delegate (chooser), id);
|
|
|
|
|
}
|
2020-07-11 22:11:32 +00:00
|
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
|
_gtk_file_info_consider_as_directory (GFileInfo *info)
|
|
|
|
|
{
|
|
|
|
|
GFileType type = g_file_info_get_file_type (info);
|
|
|
|
|
|
|
|
|
|
return (type == G_FILE_TYPE_DIRECTORY ||
|
|
|
|
|
type == G_FILE_TYPE_MOUNTABLE ||
|
|
|
|
|
type == G_FILE_TYPE_SHORTCUT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
|
_gtk_file_has_native_path (GFile *file)
|
|
|
|
|
{
|
|
|
|
|
char *local_file_path;
|
|
|
|
|
gboolean has_native_path;
|
|
|
|
|
|
|
|
|
|
/* Don't use g_file_is_native(), as we want to support FUSE paths if available */
|
|
|
|
|
local_file_path = g_file_get_path (file);
|
|
|
|
|
has_native_path = (local_file_path != NULL);
|
|
|
|
|
g_free (local_file_path);
|
|
|
|
|
|
|
|
|
|
return has_native_path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
|
_gtk_file_consider_as_remote (GFile *file)
|
|
|
|
|
{
|
|
|
|
|
GFileInfo *info;
|
|
|
|
|
gboolean is_remote;
|
|
|
|
|
|
|
|
|
|
info = g_file_query_filesystem_info (file, G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE, NULL, NULL);
|
|
|
|
|
if (info)
|
|
|
|
|
{
|
|
|
|
|
is_remote = g_file_info_get_attribute_boolean (info, G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE);
|
|
|
|
|
|
|
|
|
|
g_object_unref (info);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
is_remote = FALSE;
|
|
|
|
|
|
|
|
|
|
return is_remote;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GIcon *
|
|
|
|
|
_gtk_file_info_get_icon (GFileInfo *info,
|
|
|
|
|
int icon_size,
|
|
|
|
|
int scale)
|
|
|
|
|
{
|
|
|
|
|
GIcon *icon;
|
|
|
|
|
GdkPixbuf *pixbuf;
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *thumbnail_path;
|
2020-07-11 22:11:32 +00:00
|
|
|
|
|
|
|
|
|
thumbnail_path = g_file_info_get_attribute_byte_string (info, G_FILE_ATTRIBUTE_THUMBNAIL_PATH);
|
|
|
|
|
|
|
|
|
|
if (thumbnail_path)
|
|
|
|
|
{
|
|
|
|
|
pixbuf = gdk_pixbuf_new_from_file_at_size (thumbnail_path,
|
|
|
|
|
icon_size*scale, icon_size*scale,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
if (pixbuf != NULL)
|
|
|
|
|
return G_ICON (pixbuf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
icon = g_file_info_get_icon (info);
|
|
|
|
|
if (icon)
|
|
|
|
|
return g_object_ref (icon);
|
|
|
|
|
|
|
|
|
|
/* Use general fallback for all files without icon */
|
|
|
|
|
icon = g_themed_icon_new ("text-x-generic");
|
|
|
|
|
return icon;
|
|
|
|
|
}
|