4 * This library is free software: you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library. If not, see <http://www.gnu.org/licenses/>.
18 #if !defined (__LIBEDATASERVER_H_INSIDE__) && !defined (LIBEDATASERVER_COMPILATION)
19 #error "Only <libedataserver/libedataserver.h> should be included directly."
22 #ifndef E_SOURCE_SECURITY_H
23 #define E_SOURCE_SECURITY_H
25 #include <libedataserver/e-source-extension.h>
27 /* Standard GObject macros */
28 #define E_TYPE_SOURCE_SECURITY \
29 (e_source_security_get_type ())
30 #define E_SOURCE_SECURITY(obj) \
31 (G_TYPE_CHECK_INSTANCE_CAST \
32 ((obj), E_TYPE_SOURCE_SECURITY, ESourceSecurity))
33 #define E_SOURCE_SECURITY_CLASS(cls) \
34 (G_TYPE_CHECK_CLASS_CAST \
35 ((cls), E_TYPE_SOURCE_SECURITY, ESourceSecurityClass))
36 #define E_IS_SOURCE_SECURITY(obj) \
37 (G_TYPE_CHECK_INSTANCE_TYPE \
38 ((obj), E_TYPE_SOURCE_SECURITY))
39 #define E_IS_SOURCE_SECURITY_CLASS(cls) \
40 (G_TYPE_CHECK_CLASS_TYPE \
41 ((cls), E_TYPE_SOURCE_SECURITY))
42 #define E_SOURCE_SECURITY_GET_CLASS(obj) \
43 (G_TYPE_INSTANCE_GET_CLASS \
44 ((obj), E_TYPE_SOURCE_SECURITY, ESourceSecurityClass))
47 * E_SOURCE_EXTENSION_SECURITY:
49 * Pass this extension name to e_source_get_extension() to access
50 * #ESourceSecurity. This is also used as a group name in key files.
54 #define E_SOURCE_EXTENSION_SECURITY "Security"
58 typedef struct _ESourceSecurity ESourceSecurity
;
59 typedef struct _ESourceSecurityClass ESourceSecurityClass
;
60 typedef struct _ESourceSecurityPrivate ESourceSecurityPrivate
;
65 * Contains only private data that should be read and manipulated using the
70 struct _ESourceSecurity
{
72 ESourceExtension parent
;
73 ESourceSecurityPrivate
*priv
;
76 struct _ESourceSecurityClass
{
77 ESourceExtensionClass parent_class
;
80 GType
e_source_security_get_type (void) G_GNUC_CONST
;
81 const gchar
* e_source_security_get_method (ESourceSecurity
*extension
);
82 gchar
* e_source_security_dup_method (ESourceSecurity
*extension
);
83 void e_source_security_set_method (ESourceSecurity
*extension
,
85 gboolean
e_source_security_get_secure (ESourceSecurity
*extension
);
86 void e_source_security_set_secure (ESourceSecurity
*extension
,
91 #endif /* E_SOURCE_SECURITY_H */