gnome-control-center/panels/user-accounts/cc-user-image.c
2021-01-08 15:28:47 +13:00

132 lines
3.8 KiB
C

/*
* 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 of the License, 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 Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* (C) Copyright 2015 Red Hat, Inc.
*/
#include "cc-user-image.h"
#include <gtk/gtk.h>
#include <act/act.h>
#include <sys/stat.h>
#include "user-utils.h"
struct _CcUserImage {
GtkImage parent_instance;
ActUser *user;
};
G_DEFINE_TYPE (CcUserImage, cc_user_image, GTK_TYPE_IMAGE)
static cairo_surface_t *
render_rounded (GdkPixbuf *source, gint scale)
{
g_autoptr(GdkPixbuf) rounded_pixbuf = NULL;
rounded_pixbuf = round_image (source);
return gdk_cairo_surface_create_from_pixbuf (rounded_pixbuf, scale, NULL);
}
static cairo_surface_t *
render_user_icon (ActUser *user,
gint icon_size,
gint scale)
{
const gchar *icon_file;
g_autoptr(GdkPixbuf) default_pixbuf = NULL;
g_return_val_if_fail (ACT_IS_USER (user), NULL);
g_return_val_if_fail (icon_size > 12, NULL);
icon_file = act_user_get_icon_file (user);
if (icon_file) {
g_autoptr(GdkPixbuf) icon_pixbuf = NULL;
icon_pixbuf = gdk_pixbuf_new_from_file_at_size (icon_file,
icon_size * scale,
icon_size * scale,
NULL);
if (icon_pixbuf) {
return render_rounded (icon_pixbuf, scale);
}
}
default_pixbuf = generate_default_avatar (user, icon_size * scale);
if (default_pixbuf) {
return render_rounded (default_pixbuf, scale);
}
return NULL;
}
static void
render_image (CcUserImage *image)
{
cairo_surface_t *surface;
gint scale, pixel_size;
if (image->user == NULL)
return;
pixel_size = gtk_image_get_pixel_size (GTK_IMAGE (image));
scale = gtk_widget_get_scale_factor (GTK_WIDGET (image));
surface = render_user_icon (image->user,
pixel_size > 0 ? pixel_size : 48,
scale);
gtk_image_set_from_surface (GTK_IMAGE (image), surface);
cairo_surface_destroy (surface);
}
void
cc_user_image_set_user (CcUserImage *image,
ActUser *user)
{
g_clear_object (&image->user);
image->user = g_object_ref (user);
render_image (image);
}
static void
cc_user_image_finalize (GObject *object)
{
CcUserImage *image = CC_USER_IMAGE (object);
g_clear_object (&image->user);
G_OBJECT_CLASS (cc_user_image_parent_class)->finalize (object);
}
static void
cc_user_image_class_init (CcUserImageClass *class)
{
GObjectClass *object_class = G_OBJECT_CLASS (class);
object_class->finalize = cc_user_image_finalize;
}
static void
cc_user_image_init (CcUserImage *image)
{
g_signal_connect_swapped (image, "notify::scale-factor", G_CALLBACK (render_image), image);
g_signal_connect_swapped (image, "notify::pixel-size", G_CALLBACK (render_image), image);
}
GtkWidget *
cc_user_image_new (void)
{
return g_object_new (CC_TYPE_USER_IMAGE, NULL);
}