Extending test-client-custom-summary to try e_book_client_get_contacts_uids()
[platform/upstream/evolution-data-server.git] / camel / camel-mime-filter-enriched.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  *  Authors: Jeffrey Stedfast <fejj@ximian.com>
4  *
5  *  Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU Lesser General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
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
15  *  GNU Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  */
22
23 #if !defined (__CAMEL_H_INSIDE__) && !defined (CAMEL_COMPILATION)
24 #error "Only <camel/camel.h> can be included directly."
25 #endif
26
27 #ifndef CAMEL_MIME_FILTER_ENRICHED_H
28 #define CAMEL_MIME_FILTER_ENRICHED_H
29
30 #include <camel/camel-mime-filter.h>
31
32 /* Standard GObject macros */
33 #define CAMEL_TYPE_MIME_FILTER_ENRICHED \
34         (camel_mime_filter_enriched_get_type ())
35 #define CAMEL_MIME_FILTER_ENRICHED(obj) \
36         (G_TYPE_CHECK_INSTANCE_CAST \
37         ((obj), CAMEL_TYPE_MIME_FILTER_ENRICHED, CamelMimeFilterEnriched))
38 #define CAMEL_MIME_FILTER_ENRICHED_CLASS(cls) \
39         (G_TYPE_CHECK_CLASS_CAST \
40         ((cls), CAMEL_TYPE_MIME_FILTER_ENRICHED, CamelMimeFilterEnrichedClass))
41 #define CAMEL_IS_MIME_FILTER_ENRICHED(obj) \
42         (G_TYPE_CHECK_INSTANCE_TYPE \
43         ((obj), CAMEL_TYPE_MIME_FILTER_ENRICHED))
44 #define CAMEL_IS_MIME_FILTER_ENRICHED_CLASS(cls) \
45         (G_TYPE_CHECK_CLASS_TYPE \
46         ((cls), CAMEL_TYPE_MIME_FILTER_ENRICHED))
47 #define CAMEL_MIME_FILTER_ENRICHED_GET_CLASS(obj) \
48         (G_TYPE_INSTANCE_GET_CLASS \
49         ((obj), CAMEL_TYPE_MIME_FILTER_ENRICHED, CamelMimeFilterEnrichedClass))
50
51 #define CAMEL_MIME_FILTER_ENRICHED_IS_RICHTEXT  (1 << 0)
52
53 G_BEGIN_DECLS
54
55 typedef struct _CamelMimeFilterEnriched CamelMimeFilterEnriched;
56 typedef struct _CamelMimeFilterEnrichedClass CamelMimeFilterEnrichedClass;
57 typedef struct _CamelMimeFilterEnrichedPrivate CamelMimeFilterEnrichedPrivate;
58
59 struct _CamelMimeFilterEnriched {
60         CamelMimeFilter parent;
61         CamelMimeFilterEnrichedPrivate *priv;
62 };
63
64 struct _CamelMimeFilterEnrichedClass {
65         CamelMimeFilterClass parent_class;
66 };
67
68 GType           camel_mime_filter_enriched_get_type (void);
69 CamelMimeFilter *
70                 camel_mime_filter_enriched_new  (guint32 flags);
71 gchar *         camel_enriched_to_html          (const gchar *in,
72                                                  guint32 flags);
73
74 G_END_DECLS
75
76 #endif /* CAMEL_MIME_FILTER_ENRICHED_H */