1 /* 2 * gnome-keyring 3 * 4 * Copyright (C) 2010 Stefan Walter 5 * Copyright (C) 2011 Collabora Ltd 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU Lesser General Public License as 9 * published by the Free Software Foundation; either version 2.1 of 10 * the License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, but 13 * WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this program; if not, see <http://www.gnu.org/licenses/>. 19 */ 20 21 #if !defined (__GCR_INSIDE_HEADER__) && !defined (GCR_COMPILATION) 22 #error "Only <gcr/gcr.h> or <gcr/gcr-base.h> can be included directly." 23 #endif 24 25 #ifndef __GCR_ICONS_H__ 26 #define __GCR_ICONS_H__ 27 28 #include <gck/gck.h> 29 30 #include <gio/gio.h> 31 32 G_BEGIN_DECLS 33 34 #define GCR_ICON_CERTIFICATE "application-certificate" 35 #define GCR_ICON_PASSWORD "gcr-password" 36 #define GCR_ICON_GNUPG "gcr-gnupg" 37 #define GCR_ICON_KEY "gcr-key" 38 #define GCR_ICON_KEY_PAIR "gcr-key-pair" 39 #define GCR_ICON_SMART_CARD "gcr-smart-card" 40 #define GCR_ICON_HOME_DIRECTORY "user-home" 41 42 GIcon * gcr_icon_for_token (GckTokenInfo *token_info); 43 44 G_END_DECLS 45 46 #endif /* __GCR_SMART_CARD_H__ */ 47