~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to camel/providers/imap/camel-imap-store-summary.h

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        gchar *path;            /* display path */
53
53
        gchar *full_name;       /* real name */
54
54
        gchar sep;              /* directory separator */
 
55
 
 
56
        struct _CamelImapStoreNamespace *next;
55
57
};
56
58
 
57
59
struct _CamelImapStoreSummary {
62
64
        /* header info */
63
65
        guint32 version;        /* version of base part of file */
64
66
        guint32 capabilities;
65
 
        CamelImapStoreNamespace *namespace; /* eventually to be a list */
 
67
        CamelImapStoreNamespace *namespace; /* list of namespaces, the first is always main namespace */
66
68
};
67
69
 
68
70
struct _CamelImapStoreSummaryClass {
72
74
CamelType                        camel_imap_store_summary_get_type      (void);
73
75
CamelImapStoreSummary      *camel_imap_store_summary_new        (void);
74
76
 
75
 
/* TODO: this api needs some more work, needs to support lists */
76
 
CamelImapStoreNamespace *camel_imap_store_summary_namespace_new(CamelImapStoreSummary *s, const gchar *full_name, gchar dir_sep);
77
 
void camel_imap_store_summary_namespace_set(CamelImapStoreSummary *s, CamelImapStoreNamespace *ns);
 
77
void camel_imap_store_summary_namespace_set_main (CamelImapStoreSummary *s, const gchar *full_name, gchar dir_sep);
 
78
void camel_imap_store_summary_namespace_add_secondary (CamelImapStoreSummary *s, const gchar *full_name, gchar dir_sep);
 
79
CamelImapStoreNamespace *camel_imap_store_summary_get_main_namespace (CamelImapStoreSummary *s);
78
80
CamelImapStoreNamespace *camel_imap_store_summary_namespace_find_path(CamelImapStoreSummary *s, const gchar *path);
79
81
CamelImapStoreNamespace *camel_imap_store_summary_namespace_find_full(CamelImapStoreSummary *s, const gchar *full_name);
80
82
 
93
95
 
94
96
G_END_DECLS
95
97
 
96
 
#endif /* ! _CAMEL_IMAP_STORE_SUMMARY_H */
 
98
#endif /* _CAMEL_IMAP_STORE_SUMMARY_H */