2011-11-07 13:46:58 -06:00
|
|
|
/*
|
2017-02-13 21:57:36 -06:00
|
|
|
* xed-file-browser-utils.c - Xed plugin providing easy file access
|
2011-11-07 13:46:58 -06:00
|
|
|
* from the sidepanel
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 - Jesse van den Kieboom <jesse@icecrew.nl>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2012-11-18 19:54:49 -06:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-11-07 13:46:58 -06:00
|
|
|
*/
|
|
|
|
|
2017-02-15 20:15:41 -06:00
|
|
|
#include <config.h>
|
|
|
|
#include <glib/gi18n-lib.h>
|
2016-02-04 03:20:42 -06:00
|
|
|
#include <xed/xed-utils.h>
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-15 20:15:41 -06:00
|
|
|
#include "xed-file-browser-utils.h"
|
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
static GdkPixbuf *
|
2017-02-13 21:57:36 -06:00
|
|
|
process_icon_pixbuf (GdkPixbuf *pixbuf,
|
|
|
|
gchar const *name,
|
|
|
|
gint size,
|
|
|
|
GError *error)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-02-13 21:57:36 -06:00
|
|
|
GdkPixbuf *scale;
|
|
|
|
|
|
|
|
if (error != NULL)
|
|
|
|
{
|
|
|
|
g_warning ("Could not load theme icon %s: %s", name, error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pixbuf && gdk_pixbuf_get_width (pixbuf) > size)
|
|
|
|
{
|
|
|
|
scale = gdk_pixbuf_scale_simple (pixbuf, size, size, GDK_INTERP_BILINEAR);
|
|
|
|
g_object_unref (pixbuf);
|
|
|
|
pixbuf = scale;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pixbuf;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
GdkPixbuf *
|
2017-02-13 21:57:36 -06:00
|
|
|
xed_file_browser_utils_pixbuf_from_theme (gchar const *name,
|
|
|
|
GtkIconSize size)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-02-13 21:57:36 -06:00
|
|
|
gint width;
|
|
|
|
GError *error = NULL;
|
|
|
|
GdkPixbuf *pixbuf;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
gtk_icon_size_lookup (size, &width, NULL);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), name, width, 0, &error);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
pixbuf = process_icon_pixbuf (pixbuf, name, width, error);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
return pixbuf;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
GdkPixbuf *
|
2017-02-13 21:57:36 -06:00
|
|
|
xed_file_browser_utils_pixbuf_from_icon (GIcon *icon,
|
|
|
|
GtkIconSize size)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-02-13 21:57:36 -06:00
|
|
|
GdkPixbuf *ret = NULL;
|
|
|
|
GtkIconTheme *theme;
|
|
|
|
GtkIconInfo *info;
|
|
|
|
gint width;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
if (!icon)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
theme = gtk_icon_theme_get_default ();
|
|
|
|
gtk_icon_size_lookup (size, &width, NULL);
|
2017-01-14 13:48:19 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
info = gtk_icon_theme_lookup_by_gicon (theme, icon, width, GTK_ICON_LOOKUP_USE_BUILTIN);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
if (!info)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-01-14 13:48:19 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
ret = gtk_icon_info_load_icon (info, NULL);
|
|
|
|
gtk_icon_info_free (info);
|
2017-01-14 13:48:19 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
return ret;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
GdkPixbuf *
|
2017-02-13 21:57:36 -06:00
|
|
|
xed_file_browser_utils_pixbuf_from_file (GFile *file,
|
|
|
|
GtkIconSize size)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-02-13 21:57:36 -06:00
|
|
|
GIcon *icon;
|
|
|
|
GFileInfo *info;
|
|
|
|
GdkPixbuf *ret = NULL;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
info = g_file_query_info (file, G_FILE_ATTRIBUTE_STANDARD_ICON, G_FILE_QUERY_INFO_NONE, NULL, NULL);
|
2017-01-14 13:48:19 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
if (!info)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
icon = g_file_info_get_icon (info);
|
|
|
|
if (icon != NULL)
|
|
|
|
{
|
|
|
|
ret = xed_file_browser_utils_pixbuf_from_icon (icon, size);
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
g_object_unref (info);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-13 21:57:36 -06:00
|
|
|
return ret;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
gchar *
|
2017-02-13 21:57:36 -06:00
|
|
|
xed_file_browser_utils_file_basename (GFile *file)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-02-13 21:57:36 -06:00
|
|
|
return xed_utils_basename_for_display (file);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2017-02-13 21:57:36 -06:00
|
|
|
xed_file_browser_utils_confirmation_dialog (XedWindow *window,
|
|
|
|
GtkMessageType type,
|
|
|
|
gchar const *message,
|
|
|
|
gchar const *secondary,
|
|
|
|
gchar const *button_label)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-02-13 21:57:36 -06:00
|
|
|
GtkWidget *dlg;
|
|
|
|
gint ret;
|
|
|
|
|
|
|
|
dlg = gtk_message_dialog_new (GTK_WINDOW (window),
|
|
|
|
GTK_DIALOG_MODAL |
|
|
|
|
GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
|
|
type,
|
|
|
|
GTK_BUTTONS_NONE, "%s", message);
|
|
|
|
|
|
|
|
if (secondary)
|
|
|
|
{
|
|
|
|
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dlg), "%s", secondary);
|
|
|
|
}
|
|
|
|
|
2017-02-15 20:15:41 -06:00
|
|
|
gtk_dialog_add_buttons (GTK_DIALOG (dlg),
|
|
|
|
_("_Cancel"), GTK_RESPONSE_CANCEL,
|
|
|
|
button_label, GTK_RESPONSE_OK,
|
|
|
|
NULL);
|
2017-02-13 21:57:36 -06:00
|
|
|
|
2017-02-15 20:15:41 -06:00
|
|
|
gtk_dialog_set_default_response (GTK_DIALOG (dlg), GTK_RESPONSE_CANCEL);
|
2017-02-13 21:57:36 -06:00
|
|
|
|
|
|
|
ret = gtk_dialog_run (GTK_DIALOG (dlg));
|
|
|
|
gtk_widget_destroy (dlg);
|
|
|
|
|
|
|
|
return (ret == GTK_RESPONSE_OK);
|
|
|
|
}
|