summaryrefslogtreecommitdiff
path: root/src/camel/providers/imapx/camel-imapx-store.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/camel/providers/imapx/camel-imapx-store.h')
-rw-r--r--src/camel/providers/imapx/camel-imapx-store.h129
1 files changed, 129 insertions, 0 deletions
diff --git a/src/camel/providers/imapx/camel-imapx-store.h b/src/camel/providers/imapx/camel-imapx-store.h
new file mode 100644
index 000000000..e25eccdf3
--- /dev/null
+++ b/src/camel/providers/imapx/camel-imapx-store.h
@@ -0,0 +1,129 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/* camel-imap-store.h : class for an imap store
+ *
+ * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
+ *
+ * This library 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.
+ *
+ * This library 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 this library. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors: Michael Zucchi <notzed@ximian.com>
+ */
+
+#ifndef CAMEL_IMAPX_STORE_H
+#define CAMEL_IMAPX_STORE_H
+
+#include <camel/camel.h>
+
+#include "camel-imapx-conn-manager.h"
+#include "camel-imapx-server.h"
+
+/* Standard GObject macros */
+#define CAMEL_TYPE_IMAPX_STORE \
+ (camel_imapx_store_get_type ())
+#define CAMEL_IMAPX_STORE(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST \
+ ((obj), CAMEL_TYPE_IMAPX_STORE, CamelIMAPXStore))
+#define CAMEL_IMAPX_STORE_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_CAST \
+ ((cls), CAMEL_TYPE_IMAPX_STORE, CamelIMAPXStoreClass))
+#define CAMEL_IS_IMAPX_STORE(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE \
+ ((obj), CAMEL_TYPE_IMAPX_STORE))
+#define CAMEL_IS_IMAPX_STORE_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_TYPE \
+ ((cls), CAMEL_TYPE_IMAPX_STORE))
+#define CAMEL_IMAPX_STORE_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS \
+ ((obj), CAMEL_TYPE_IMAPX_STORE, CamelIMAPXStoreClass))
+
+G_BEGIN_DECLS
+
+/* Avoid a circular reference. */
+struct _CamelIMAPXJob;
+
+typedef struct _CamelIMAPXStore CamelIMAPXStore;
+typedef struct _CamelIMAPXStoreClass CamelIMAPXStoreClass;
+typedef struct _CamelIMAPXStorePrivate CamelIMAPXStorePrivate;
+
+struct _CamelIMAPXStore {
+ CamelOfflineStore parent;
+ CamelIMAPXStorePrivate *priv;
+
+ CamelStoreSummary *summary; /* in-memory list of folders */
+};
+
+struct _CamelIMAPXStoreClass {
+ CamelOfflineStoreClass parent_class;
+
+ /* Signals */
+ void (*mailbox_created) (CamelIMAPXStore *imapx_store,
+ CamelIMAPXMailbox *mailbox);
+ void (*mailbox_renamed) (CamelIMAPXStore *imapx_store,
+ CamelIMAPXMailbox *mailbox,
+ const gchar *oldname);
+ void (*mailbox_updated) (CamelIMAPXStore *imapx_store,
+ CamelIMAPXMailbox *mailbox);
+};
+
+GType camel_imapx_store_get_type (void);
+CamelIMAPXConnManager *
+ camel_imapx_store_get_conn_manager
+ (CamelIMAPXStore *store);
+void camel_imapx_store_set_connecting_server
+ (CamelIMAPXStore *store,
+ CamelIMAPXServer *server,
+ gboolean is_concurrent_connection);
+gboolean camel_imapx_store_is_connecting_concurrent_connection
+ (CamelIMAPXStore *imapx_store);
+CamelIMAPXNamespaceResponse *
+ camel_imapx_store_ref_namespaces
+ (CamelIMAPXStore *imapx_store);
+void camel_imapx_store_set_namespaces
+ (CamelIMAPXStore *imapx_store,
+ CamelIMAPXNamespaceResponse *namespaces);
+CamelIMAPXMailbox *
+ camel_imapx_store_ref_mailbox (CamelIMAPXStore *imapx_store,
+ const gchar *mailbox_name);
+GList * camel_imapx_store_list_mailboxes
+ (CamelIMAPXStore *imapx_store,
+ CamelIMAPXNamespace *namespace_,
+ const gchar *pattern);
+void camel_imapx_store_emit_mailbox_updated
+ (CamelIMAPXStore *imapx_store,
+ CamelIMAPXMailbox *mailbox);
+void camel_imapx_store_handle_mailbox_rename
+ (CamelIMAPXStore *imapx_store,
+ CamelIMAPXMailbox *old_mailbox,
+ const gchar *new_mailbox_name);
+void camel_imapx_store_handle_list_response
+ (CamelIMAPXStore *imapx_store,
+ CamelIMAPXServer *imapx_server,
+ CamelIMAPXListResponse *response);
+void camel_imapx_store_handle_lsub_response
+ (CamelIMAPXStore *imapx_store,
+ CamelIMAPXServer *imapx_server,
+ CamelIMAPXListResponse *response);
+CamelFolderQuotaInfo *
+ camel_imapx_store_dup_quota_info
+ (CamelIMAPXStore *store,
+ const gchar *quota_root_name);
+void camel_imapx_store_set_quota_info
+ (CamelIMAPXStore *store,
+ const gchar *quota_root_name,
+ const CamelFolderQuotaInfo *info);
+/* for debugging purposes only */
+void camel_imapx_store_dump_queue_status
+ (CamelIMAPXStore *imapx_store);
+G_END_DECLS
+
+#endif /* CAMEL_IMAPX_STORE_H */
+