summaryrefslogtreecommitdiff
path: root/panels/user-accounts/cc-user-image.c
blob: fe535edee3cf381be62b574157023a30d642c6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
 * 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_user_icon (ActUser *user,
                  gint     icon_size,
                  gint     scale)
{
        g_autoptr(GdkPixbuf) source_pixbuf = NULL;
        g_autoptr(GdkPixbuf) avatar_pixbuf = NULL;
        g_autoptr(GdkPixbuf) pixbuf = NULL;
        const gchar  *icon_file;
        cairo_surface_t *surface = 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) {
                source_pixbuf = gdk_pixbuf_new_from_file_at_size (icon_file,
                                                                  icon_size * scale,
                                                                  icon_size * scale,
                                                                  NULL);
                if (source_pixbuf)
                        pixbuf = round_image (source_pixbuf);
        }

        if (pixbuf != NULL) {
                goto out;
        }

        avatar_pixbuf = generate_default_avatar (user, icon_size * scale);
        if (avatar_pixbuf)
            pixbuf = round_image (avatar_pixbuf);
 out:

        if (pixbuf != NULL) {
                surface = gdk_cairo_surface_create_from_pixbuf (pixbuf, scale, NULL);
        }

        return surface;
}

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);
}