Initialize the gmime for upstream
[platform/upstream/gmime.git] / gmime / gmime-filter-charset.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*  GMime
3  *  Copyright (C) 2000-2012 Jeffrey Stedfast
4  *
5  *  This library is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU Lesser General Public License
7  *  as published by the Free Software Foundation; either version 2.1
8  *  of the License, or (at your option) any later version.
9  *
10  *  This library is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *  Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public
16  *  License along with this library; if not, write to the Free
17  *  Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
18  *  02110-1301, USA.
19  */
20
21
22 #ifndef __GMIME_FILTER_CHARSET_H__
23 #define __GMIME_FILTER_CHARSET_H__
24
25 #include <iconv.h>
26 #include <gmime/gmime-filter.h>
27
28 G_BEGIN_DECLS
29
30 #define GMIME_TYPE_FILTER_CHARSET            (g_mime_filter_charset_get_type ())
31 #define GMIME_FILTER_CHARSET(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMIME_TYPE_FILTER_CHARSET, GMimeFilterCharset))
32 #define GMIME_FILTER_CHARSET_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GMIME_TYPE_FILTER_CHARSET, GMimeFilterCharsetClass))
33 #define GMIME_IS_FILTER_CHARSET(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMIME_TYPE_FILTER_CHARSET))
34 #define GMIME_IS_FILTER_CHARSET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GMIME_TYPE_FILTER_CHARSET))
35 #define GMIME_FILTER_CHARSET_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GMIME_TYPE_FILTER_CHARSET, GMimeFilterCharsetClass))
36
37 typedef struct _GMimeFilterCharset GMimeFilterCharset;
38 typedef struct _GMimeFilterCharsetClass GMimeFilterCharsetClass;
39
40 /**
41  * GMimeFilterCharset:
42  * @parent_object: parent #GMimeFilter
43  * @from_charset: charset that the filter is converting from
44  * @to_charset: charset the filter is converting to
45  * @cd: charset conversion state
46  *
47  * A filter to convert between charsets.
48  **/
49 struct _GMimeFilterCharset {
50         GMimeFilter parent_object;
51         
52         char *from_charset;
53         char *to_charset;
54         iconv_t cd;
55 };
56
57 struct _GMimeFilterCharsetClass {
58         GMimeFilterClass parent_class;
59         
60 };
61
62
63 GType g_mime_filter_charset_get_type (void);
64
65 GMimeFilter *g_mime_filter_charset_new (const char *from_charset, const char *to_charset);
66
67 G_END_DECLS
68
69 #endif /* __GMIME_FILTER_CHARSET_H__ */