2007-07-11 [colin] 2.10.0cvs16
[claws.git] / src / plugins / pgpcore / prefs_gpg.h
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2004-2007 the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 typedef struct GPGConfig GPGConfig;
21 typedef struct GPGAccountConfig GPGAccountConfig;
22
23 typedef enum {
24         SIGN_KEY_DEFAULT,
25         SIGN_KEY_BY_FROM,
26         SIGN_KEY_CUSTOM
27 } SignKeyType;
28
29 #include "prefs_account.h"
30
31 struct GPGConfig
32 {
33         gboolean         auto_check_signatures;
34         gboolean         use_gpg_agent;
35         gboolean         store_passphrase;
36         gint             store_passphrase_timeout;
37         gboolean         passphrase_grab;
38         gboolean         gpg_warning;
39         gboolean         gpg_ask_create_key;
40         gchar           *skip_encryption_warning;
41 };
42
43 struct GPGAccountConfig
44 {
45         SignKeyType      sign_key;
46         gchar           *sign_key_id;
47 };
48
49 void prefs_gpg_init(void);
50 void prefs_gpg_done(void);
51 void prefs_gpg_save_config(void);
52 struct GPGConfig *prefs_gpg_get_config(void);
53 struct GPGAccountConfig *prefs_gpg_account_get_config(PrefsAccount *account);
54 void prefs_gpg_account_set_config(PrefsAccount *account, GPGAccountConfig *config);
55 void prefs_gpg_account_free_config(GPGAccountConfig *config);
56 void prefs_gpg_enable_agent(gboolean enable);
57 void prefs_gpg_add_skip_encryption_warning(const gchar *systemid);
58 void prefs_gpg_remove_skip_encryption_warning(const gchar *systemid);
59 gboolean prefs_gpg_should_skip_encryption_warning(const gchar *systemid);