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

« back to all changes in this revision

Viewing changes to camel/providers/imapp/camel-imapp-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:
1
 
/*
2
 
 *  Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
3
 
 *
4
 
 *  Authors:
5
 
 *    Michael Zucchi <notzed@ximian.com>
6
 
 *    Dan Winship <danw@ximian.com>
7
 
 *
8
 
 * This program is free software; you can redistribute it and/or
9
 
 * modify it under the terms of version 2 of the GNU Lesser General Public
10
 
 * License as published by the Free Software Foundation.
11
 
 *
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 
 * General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU Lesser General Public
18
 
 * License along with this program; if not, write to the
19
 
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20
 
 * Boston, MA 02110-1301, USA.
21
 
 */
22
 
 
23
 
#ifndef _CAMEL_IMAPP_SUMMARY_H
24
 
#define _CAMEL_IMAPP_SUMMARY_H
25
 
 
26
 
#include <camel/camel-folder-summary.h>
27
 
#include <camel/camel-exception.h>
28
 
 
29
 
#define CAMEL_IMAPP_SUMMARY(obj)         CAMEL_CHECK_CAST (obj, camel_imapp_summary_get_type (), CamelIMAPPSummary)
30
 
#define CAMEL_IMAPP_SUMMARY_CLASS(klass) CAMEL_CHECK_CLASS_CAST (klass, camel_imapp_summary_get_type (), CamelIMAPPSummaryClass)
31
 
#define CAMEL_IS_IMAPP_SUMMARY(obj)      CAMEL_CHECK_TYPE (obj, camel_imapp_summary_get_type ())
32
 
 
33
 
#define CAMEL_IMAPP_SERVER_FLAGS (CAMEL_MESSAGE_ANSWERED | \
34
 
                                 CAMEL_MESSAGE_DELETED | \
35
 
                                 CAMEL_MESSAGE_DRAFT | \
36
 
                                 CAMEL_MESSAGE_FLAGGED | \
37
 
                                 CAMEL_MESSAGE_SEEN)
38
 
 
39
 
#define CAMEL_IMAPP_MESSAGE_RECENT (1 << 8)
40
 
 
41
 
G_BEGIN_DECLS
42
 
 
43
 
typedef struct _CamelIMAPPSummaryClass CamelIMAPPSummaryClass;
44
 
typedef struct _CamelIMAPPSummary CamelIMAPPSummary;
45
 
 
46
 
typedef struct _CamelIMAPPMessageInfo {
47
 
        CamelMessageInfoBase info;
48
 
 
49
 
        guint32 server_flags;
50
 
} CamelIMAPPMessageInfo;
51
 
 
52
 
struct _CamelIMAPPSummary {
53
 
        CamelFolderSummary parent;
54
 
 
55
 
        guint32 version;
56
 
        guint32 uidvalidity;
57
 
};
58
 
 
59
 
struct _CamelIMAPPSummaryClass {
60
 
        CamelFolderSummaryClass parent_class;
61
 
 
62
 
};
63
 
 
64
 
CamelType               camel_imapp_summary_get_type     (void);
65
 
CamelFolderSummary *camel_imapp_summary_new          (void);
66
 
 
67
 
G_END_DECLS
68
 
 
69
 
#endif /* ! _CAMEL_IMAPP_SUMMARY_H */