From dd6e64ad305e1ab181c6276ed4c77d910a36a4fa Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 9 Jun 2011 16:28:36 -0400 Subject: Prototype an online-accounts module. Integrates with the GNOME Online Accounts service. Creates Evolution sources for a GOA Google account and keeps them synchronized. Also registers a new CamelSaslXOAuth class for use with GMail. Authentication of Google Calendars and Google Contacts using OAuth is still under development. --- modules/online-accounts/camel-sasl-xoauth.h | 63 +++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 modules/online-accounts/camel-sasl-xoauth.h (limited to 'modules/online-accounts/camel-sasl-xoauth.h') diff --git a/modules/online-accounts/camel-sasl-xoauth.h b/modules/online-accounts/camel-sasl-xoauth.h new file mode 100644 index 0000000000..3e78547e1b --- /dev/null +++ b/modules/online-accounts/camel-sasl-xoauth.h @@ -0,0 +1,63 @@ +/* + * camel-sasl-xoauth.h + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with the program; if not, see + * + */ + +#ifndef CAMEL_SASL_XOAUTH_H +#define CAMEL_SASL_XOAUTH_H + +#include + +/* Standard GObject macros */ +#define CAMEL_TYPE_SASL_XOAUTH \ + (camel_sasl_xoauth_get_type ()) +#define CAMEL_SASL_XOAUTH(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST \ + ((obj), CAMEL_TYPE_SASL_XOAUTH, CamelSaslXOAuth)) +#define CAMEL_SASL_XOAUTH_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_CAST \ + ((cls), CAMEL_TYPE_SASL_XOAUTH, CamelSaslXOAuthClass)) +#define CAMEL_IS_SASL_XOAUTH(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE \ + ((obj), CAMEL_TYPE_SASL_XOAUTH)) +#define CAMEL_IS_SASL_XOAUTH_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_TYPE \ + ((cls), CAMEL_TYPE_SASL_XOAUTH)) +#define CAMEL_SASL_XOAUTH_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS \ + ((obj), CAMEL_TYPE_SASL_XOAUTH, CamelSaslXOAuthClass)) + +G_BEGIN_DECLS + +typedef struct _CamelSaslXOAuth CamelSaslXOAuth; +typedef struct _CamelSaslXOAuthClass CamelSaslXOAuthClass; +typedef struct _CamelSaslXOAuthPrivate CamelSaslXOAuthPrivate; + +struct _CamelSaslXOAuth { + CamelSasl parent; + CamelSaslXOAuthPrivate *priv; +}; + +struct _CamelSaslXOAuthClass { + CamelSaslClass parent_class; +}; + +GType camel_sasl_xoauth_get_type (void); +void camel_sasl_xoauth_type_register (GTypeModule *type_module); + +G_END_DECLS + +#endif /* CAMEL_SASL_XOAUTH_H */ -- cgit v1.2.3