summaryrefslogtreecommitdiff
path: root/gcr/gcr-icons.c
blob: 2a9da4e429e6d2177644d6e59fc7eee4dcf44448 (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
/*
 * gnome-keyring
 *
 * Copyright (C) 2011 Collabora Ltd
 *
 * This program 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.1 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 * Author: Stef Walter <stefw@collabora.co.uk>
 */

#include "config.h"

#include "gcr-icons.h"

/**
 * gcr_icon_for_token:
 * @token_info: the token info
 *
 * Get an appropriate icon for the token
 *
 * Returns: (transfer full): the icon
 */
GIcon *
gcr_icon_for_token (GckTokenInfo *token_info)
{
	GIcon *icon;

	g_return_val_if_fail (token_info != NULL, NULL);

	if (g_strcmp0 (token_info->manufacturer_id, "Gnome Keyring") == 0)
		icon = g_themed_icon_new (GCR_ICON_HOME_DIRECTORY);

	else if (g_strcmp0 (token_info->manufacturer_id, "Mozilla Foundation") == 0 &&
	         g_strcmp0 (token_info->model, "NSS 3") == 0)
		icon = g_themed_icon_new (GCR_ICON_HOME_DIRECTORY);

	else
		icon = g_themed_icon_new (GCR_ICON_SMART_CARD);

	return icon;
}