aboutsummaryrefslogtreecommitdiffstats
path: root/modules/online-accounts/camel-sasl-xoauth.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-06-10 04:28:36 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-06-25 07:05:15 +0800
commitdd6e64ad305e1ab181c6276ed4c77d910a36a4fa (patch)
treec04828633069b8c4e7531733d4960f58def4d762 /modules/online-accounts/camel-sasl-xoauth.h
parentf070b6032f46dddb64220ee3ec26d79fa1bbe8bb (diff)
downloadgsoc2013-evolution-dd6e64ad305e1ab181c6276ed4c77d910a36a4fa.tar
gsoc2013-evolution-dd6e64ad305e1ab181c6276ed4c77d910a36a4fa.tar.gz
gsoc2013-evolution-dd6e64ad305e1ab181c6276ed4c77d910a36a4fa.tar.bz2
gsoc2013-evolution-dd6e64ad305e1ab181c6276ed4c77d910a36a4fa.tar.lz
gsoc2013-evolution-dd6e64ad305e1ab181c6276ed4c77d910a36a4fa.tar.xz
gsoc2013-evolution-dd6e64ad305e1ab181c6276ed4c77d910a36a4fa.tar.zst
gsoc2013-evolution-dd6e64ad305e1ab181c6276ed4c77d910a36a4fa.zip
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.
Diffstat (limited to 'modules/online-accounts/camel-sasl-xoauth.h')
-rw-r--r--modules/online-accounts/camel-sasl-xoauth.h63
1 files changed, 63 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>
+ *
+ */
+
+#ifndef CAMEL_SASL_XOAUTH_H
+#define CAMEL_SASL_XOAUTH_H
+
+#include <camel/camel.h>
+
+/* 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 */