fix substitute pixmap bug
[claws.git] / src / codeconv.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program 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
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __CODECONV_H__
21 #define __CODECONV_H__
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <glib.h>
28
29 #if HAVE_LIBJCONV
30 #  include <jconv.h>
31 #endif
32
33 typedef struct _CodeConverter   CodeConverter;
34
35 typedef enum
36 {
37         C_AUTO,
38         C_US_ASCII,
39         C_UTF_8,
40         C_ISO_8859_1,
41         C_ISO_8859_2,
42         C_ISO_8859_4,
43         C_ISO_8859_5,
44         C_ISO_8859_7,
45         C_ISO_8859_8,
46         C_ISO_8859_9,
47         C_ISO_8859_11,
48         C_ISO_8859_13,
49         C_ISO_8859_15,
50         C_BALTIC,
51         C_CP1251,
52         C_WINDOWS_1251,
53         C_KOI8_R,
54         C_KOI8_U,
55         C_ISO_2022_JP,
56         C_ISO_2022_JP_2,
57         C_EUC_JP,
58         C_SHIFT_JIS,
59         C_ISO_2022_KR,
60         C_EUC_KR,
61         C_ISO_2022_CN,
62         C_EUC_CN,
63         C_GB2312,
64         C_EUC_TW,
65         C_BIG5,
66         C_TIS_620,
67         C_WINDOWS_874
68 } CharSet;
69
70 typedef void (*CodeConvFunc) (gchar *outbuf, gint outlen, const gchar *inbuf);
71
72 struct _CodeConverter
73 {
74 #if !HAVE_LIBJCONV
75         CodeConvFunc code_conv_func;
76 #endif
77         gchar *charset_str;
78         CharSet charset;
79 };
80
81 #define CS_AUTO                 "AUTO"
82 #define CS_US_ASCII             "US-ASCII"
83 #define CS_ANSI_X3_4_1968       "ANSI_X3.4-1968"
84 #define CS_UTF_8                "UTF-8"
85 #define CS_ISO_8859_1           "ISO-8859-1"
86 #define CS_ISO_8859_2           "ISO-8859-2"
87 #define CS_ISO_8859_4           "ISO-8859-4"
88 #define CS_ISO_8859_5           "ISO-8859-5"
89 #define CS_ISO_8859_7           "ISO-8859-7"
90 #define CS_ISO_8859_8           "ISO-8859-8"
91 #define CS_ISO_8859_9           "ISO-8859-9"
92 #define CS_ISO_8859_11          "ISO-8859-11"
93 #define CS_ISO_8859_13          "ISO-8859-13"
94 #define CS_ISO_8859_15          "ISO-8859-15"
95 #define CS_BALTIC               "BALTIC"
96 #define CS_CP1251               "CP1251"
97 #define CS_WINDOWS_1251         "Windows-1251"
98 #define CS_KOI8_R               "KOI8-R"
99 #define CS_KOI8_U               "KOI8-U"
100 #define CS_ISO_2022_JP          "ISO-2022-JP"
101 #define CS_ISO_2022_JP_2        "ISO-2022-JP-2"
102 #define CS_EUC_JP               "EUC-JP"
103 #define CS_EUCJP                "EUCJP"
104 #define CS_SHIFT_JIS            "Shift_JIS"
105 #define CS_ISO_2022_KR          "ISO-2022-KR"
106 #define CS_EUC_KR               "EUC-KR"
107 #define CS_ISO_2022_CN          "ISO-2022-CN"
108 #define CS_EUC_CN               "EUC-CN"
109 #define CS_GB2312               "GB2312"
110 #define CS_EUC_TW               "EUC-TW"
111 #define CS_BIG5                 "Big5"
112 #define CS_TIS_620              "TIS-620"
113 #define CS_WINDOWS_874          "Windows-874"
114
115 void conv_jistoeuc(gchar *outbuf, gint outlen, const gchar *inbuf);
116 void conv_euctojis(gchar *outbuf, gint outlen, const gchar *inbuf);
117 void conv_sjistoeuc(gchar *outbuf, gint outlen, const gchar *inbuf);
118 void conv_anytoeuc(gchar *outbuf, gint outlen, const gchar *inbuf);
119 void conv_anytojis(gchar *outbuf, gint outlen, const gchar *inbuf);
120 void conv_unreadable_eucjp(gchar *str);
121 void conv_unreadable_8bit(gchar *str);
122 void conv_unreadable_latin(gchar *str);
123 void conv_mb_alnum(gchar *str);
124
125 CharSet conv_guess_encoding(const gchar *str);
126
127 void conv_jistodisp  (gchar *outbuf, gint outlen, const gchar *inbuf);
128 void conv_sjistodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
129 void conv_euctodisp  (gchar *outbuf, gint outlen, const gchar *inbuf);
130 void conv_ustodisp   (gchar *outbuf, gint outlen, const gchar *inbuf);
131 void conv_latintodisp(gchar *outbuf, gint outlen, const gchar *inbuf);
132 void conv_noconv     (gchar *outbuf, gint outlen, const gchar *inbuf);
133
134 CodeConverter *conv_code_converter_new  (const gchar    *charset);
135 void conv_code_converter_destroy        (CodeConverter  *conv);
136 gint conv_convert                       (CodeConverter  *conv,
137                                          gchar          *outbuf,
138                                          gint            outlen,
139                                          const gchar    *inbuf);
140
141 gchar *conv_codeset_strdup(const gchar *inbuf,
142                            const gchar *src_codeset,
143                            const gchar *dest_codeset);
144
145 CodeConvFunc conv_get_code_conv_func(const gchar *charset);
146
147 const gchar *conv_get_charset_str               (CharSet         charset);
148 CharSet conv_get_charset_from_str               (const gchar    *charset);
149 CharSet conv_get_current_charset                (void);
150 const gchar *conv_get_current_charset_str       (void);
151 CharSet conv_get_outgoing_charset               (void);
152 const gchar *conv_get_outgoing_charset_str      (void);
153
154 const gchar *conv_get_current_locale            (void);
155
156 void conv_unmime_header_overwrite       (gchar          *str);
157 void conv_unmime_header                 (gchar          *outbuf,
158                                          gint            outlen,
159                                          const gchar    *str,
160                                          const gchar    *charset);
161 void conv_encode_header                 (gchar          *dest,
162                                          gint            len,
163                                          const gchar    *src,
164                                          gint            header_len);
165
166
167 #endif /* __CODECONV_H__ */