78c88e2a74f3f185f5298ffdb1df6a41f898e293
[claws.git] / src / plugins / pgpcore / prefs_gpg.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2004 Hiroyuki Yamamoto & the Sylpheed-Claws 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 2 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, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
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         store_passphrase;
35         gint             store_passphrase_timeout;
36         gboolean         passphrase_grab;
37         gboolean         gpg_warning;
38 };
39
40 struct GPGAccountConfig
41 {
42         SignKeyType      sign_key;
43         gchar           *sign_key_id;
44 };
45
46 void prefs_gpg_init(void);
47 void prefs_gpg_done(void);
48 void prefs_gpg_save_config(void);
49 struct GPGConfig *prefs_gpg_get_config(void);
50 struct GPGAccountConfig *prefs_gpg_account_get_config(PrefsAccount *account);
51 void prefs_gpg_account_set_config(PrefsAccount *account, GPGAccountConfig *config);
52 void prefs_gpg_account_free_config(GPGAccountConfig *config);