diff options
author | Meilof Veeningen <meilof@wanadoo.nl> | 2004-01-13 06:20:40 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-01-13 06:20:40 +0800 |
commit | 70f49bc0d7ce40521c4c99b7c9dbe6255db2c788 (patch) | |
tree | 6a1cd1a9114c3cb5d64dfe10c6fd08f39e853b03 /camel/providers/nntp/camel-nntp-store.h | |
parent | fb0dddb43d9b8a502c6c32dc10e6e485f35bec74 (diff) | |
download | gsoc2013-evolution-70f49bc0d7ce40521c4c99b7c9dbe6255db2c788.tar gsoc2013-evolution-70f49bc0d7ce40521c4c99b7c9dbe6255db2c788.tar.gz gsoc2013-evolution-70f49bc0d7ce40521c4c99b7c9dbe6255db2c788.tar.bz2 gsoc2013-evolution-70f49bc0d7ce40521c4c99b7c9dbe6255db2c788.tar.lz gsoc2013-evolution-70f49bc0d7ce40521c4c99b7c9dbe6255db2c788.tar.xz gsoc2013-evolution-70f49bc0d7ce40521c4c99b7c9dbe6255db2c788.tar.zst gsoc2013-evolution-70f49bc0d7ce40521c4c99b7c9dbe6255db2c788.zip |
now based on discofolder, cache_message and append_message implemented,
2004-01-12 Meilof Veeningen <meilof@wanadoo.nl>
* providers/nntp/camel-nntp-folder.[ch]: now based on discofolder,
cache_message and append_message implemented, only retrieve messages
when we are subscribed, some stubs
* providers/nntp/camel-nntp-provider.c: newsgroup name display
settings, password authentication, fix for check_equal where the
protocols wouldn't be checked
* providers/nntp/camel-nntp-store.[ch]: base on discostore with
online/offline support, subscriptions, downloading changed parts of
the newsgroup list, some stubs, authentication, automatic reconnect
* providers/nntp/camel-nntp-store-summary.[ch]: NNTP store
summary based on IMAP code
* providers/nntp/camel-nntp-summary.c: save summary after xover
* providers/nntp/camel-nntp-grouplist.h: added CamelNNTPGroupList
structs
* providers/nntp/Makefile.am: added store summary
svn path=/trunk/; revision=24178
Diffstat (limited to 'camel/providers/nntp/camel-nntp-store.h')
-rw-r--r-- | camel/providers/nntp/camel-nntp-store.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/camel/providers/nntp/camel-nntp-store.h b/camel/providers/nntp/camel-nntp-store.h index a201c2cea2..53ebb82edf 100644 --- a/camel/providers/nntp/camel-nntp-store.h +++ b/camel/providers/nntp/camel-nntp-store.h @@ -36,7 +36,11 @@ extern "C" { #include <camel/camel-exception.h> #include <camel/camel-folder.h> +#include <camel/camel-disco-store.h> +#include <camel/camel-disco-folder.h> + #include "camel-nntp-stream.h" +#include "camel-nntp-store-summary.h" #define CAMEL_NNTP_STORE_TYPE (camel_nntp_store_get_type ()) #define CAMEL_NNTP_STORE(obj) (CAMEL_CHECK_CAST((obj), CAMEL_NNTP_STORE_TYPE, CamelNNTPStore)) @@ -55,25 +59,30 @@ extern "C" { typedef struct _CamelNNTPStore CamelNNTPStore; typedef struct _CamelNNTPStoreClass CamelNNTPStoreClass; +#include "camel-nntp-grouplist.h" + struct _CamelNNTPStore { - CamelStore parent_object; + CamelDiscoStore parent_object; struct _CamelNNTPStorePrivate *priv; guint32 extensions; gboolean posting_allowed; + gboolean do_short_folder_notation, folder_hierarchy_relative; + + CamelNNTPStoreSummary *summary; CamelNNTPStream *stream; CamelStreamMem *mem; CamelDataCache *cache; - char *current_folder; + char *current_folder, *storage_path, *base_url; }; struct _CamelNNTPStoreClass { - CamelStoreClass parent_class; + CamelDiscoStoreClass parent_class; }; |