Initialize the gmime for upstream
[platform/upstream/gmime.git] / gmime / gmime-gpg-context.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*  GMime
3  *  Copyright (C) 2000-2012 Jeffrey Stedfast
4  *
5  *  This library is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU Lesser General Public License
7  *  as published by the Free Software Foundation; either version 2.1
8  *  of the License, or (at your option) any later version.
9  *
10  *  This library 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 GNU
13  *  Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public
16  *  License along with this library; if not, write to the Free
17  *  Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
18  *  02110-1301, USA.
19  */
20
21
22 #ifndef __GMIME_GPG_CONTEXT_H__
23 #define __GMIME_GPG_CONTEXT_H__
24
25 #include <gmime/gmime-crypto-context.h>
26
27 G_BEGIN_DECLS
28
29 #define GMIME_TYPE_GPG_CONTEXT            (g_mime_gpg_context_get_type ())
30 #define GMIME_GPG_CONTEXT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMIME_TYPE_GPG_CONTEXT, GMimeGpgContext))
31 #define GMIME_GPG_CONTEXT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GMIME_TYPE_GPG_CONTEXT, GMimeGpgContextClass))
32 #define GMIME_IS_GPG_CONTEXT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMIME_TYPE_GPG_CONTEXT))
33 #define GMIME_IS_GPG_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GMIME_TYPE_GPG_CONTEXT))
34 #define GMIME_GPG_CONTEXT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GMIME_TYPE_GPG_CONTEXT, GMimeGpgContextClass))
35
36 typedef struct _GMimeGpgContext GMimeGpgContext;
37 typedef struct _GMimeGpgContextClass GMimeGpgContextClass;
38
39
40 /**
41  * GMimeGpgContext:
42  * @parent_object: parent #GMimeCryptoContext
43  * @always_trust: %TRUE if keys should always be trusted
44  * @path: path to gpg
45  *
46  * A GnuPG crypto context.
47  **/
48 struct _GMimeGpgContext {
49         GMimeCryptoContext parent_object;
50         gboolean auto_key_retrieve;
51         gboolean always_trust;
52         gboolean use_agent;
53         char *path;
54 };
55
56 struct _GMimeGpgContextClass {
57         GMimeCryptoContextClass parent_class;
58         
59 };
60
61
62 GType g_mime_gpg_context_get_type (void);
63
64
65 GMimeCryptoContext *g_mime_gpg_context_new (GMimePasswordRequestFunc request_passwd, const char *path);
66
67 gboolean g_mime_gpg_context_get_auto_key_retrieve (GMimeGpgContext *ctx);
68 void g_mime_gpg_context_set_auto_key_retrieve (GMimeGpgContext *ctx, gboolean auto_key_retrieve);
69
70 gboolean g_mime_gpg_context_get_always_trust (GMimeGpgContext *ctx);
71 void g_mime_gpg_context_set_always_trust (GMimeGpgContext *ctx, gboolean always_trust);
72
73 gboolean g_mime_gpg_context_get_use_agent (GMimeGpgContext *ctx);
74 void g_mime_gpg_context_set_use_agent (GMimeGpgContext *ctx, gboolean use_agent);
75
76 G_END_DECLS
77
78 #endif /* __GMIME_GPG_CONTEXT_H__ */