Initialize the gmime for upstream
[platform/upstream/gmime.git] / gmime / gmime-filter-windows.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_WINDOWS_H__
23 #define __GMIME_FILTER_WINDOWS_H__
24
25 #include <gmime/gmime-filter.h>
26
27 G_BEGIN_DECLS
28
29 #define GMIME_TYPE_FILTER_WINDOWS            (g_mime_filter_windows_get_type ())
30 #define GMIME_FILTER_WINDOWS(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMIME_TYPE_FILTER_WINDOWS, GMimeFilterWindows))
31 #define GMIME_FILTER_WINDOWS_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GMIME_TYPE_FILTER_WINDOWS, GMimeFilterWindowsClass))
32 #define GMIME_IS_FILTER_WINDOWS(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMIME_TYPE_FILTER_WINDOWS))
33 #define GMIME_IS_FILTER_WINDOWS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GMIME_TYPE_FILTER_WINDOWS))
34 #define GMIME_FILTER_WINDOWS_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GMIME_TYPE_FILTER_WINDOWS, GMimeFilterWindowsClass))
35
36 typedef struct _GMimeFilterWindows GMimeFilterWindows;
37 typedef struct _GMimeFilterWindowsClass GMimeFilterWindowsClass;
38
39 /**
40  * GMimeFilterWindows:
41  * @parent_object: parent #GMimeFilter
42  * @is_windows: %TRUE if the stream is detected to be a windows-cp125x charset
43  * @claimed_charset: charset the text stream is claimed to be
44  *
45  * A filter for detecting whether or not a text stream claimed to be
46  * iso-8859-X is really that charset or if it is really a
47  * Windows-CP125x charset.
48  **/
49 struct _GMimeFilterWindows {
50         GMimeFilter parent_object;
51         
52         gboolean is_windows;
53         char *claimed_charset;
54 };
55
56 struct _GMimeFilterWindowsClass {
57         GMimeFilterClass parent_class;
58         
59 };
60
61
62 GType g_mime_filter_windows_get_type (void);
63
64 GMimeFilter *g_mime_filter_windows_new (const char *claimed_charset);
65
66
67 gboolean g_mime_filter_windows_is_windows_charset (GMimeFilterWindows *filter);
68
69 const char *g_mime_filter_windows_real_charset (GMimeFilterWindows *filter);
70
71 G_END_DECLS
72
73 #endif /* __GMIME_FILTER_WINDOWS_H__ */