Add support for the iso-8859-8-i encoding
[claws.git] / src / codeconv.h
index 19c24248f337d0b56a3cccd65281efe862854979..9cf2596b8d68e284e8635e14b4fc4bd41d369d36 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2003 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 #ifndef __CODECONV_H__
 #define __CODECONV_H__
 
 #ifdef HAVE_CONFIG_H
-#  include "config.h"
+#include "claws-features.h"
 #endif
 
 #include <glib.h>
+#include <iconv.h>
 
 typedef struct _CodeConverter  CodeConverter;
 
@@ -68,16 +69,20 @@ typedef enum
        C_WINDOWS_1257,
        C_WINDOWS_1258,
        C_KOI8_R,
+       C_MACCYR,
        C_KOI8_T,
        C_KOI8_U,
        C_ISO_2022_JP,
        C_ISO_2022_JP_2,
+       C_ISO_2022_JP_3,
        C_EUC_JP,
+       C_EUC_JP_MS,
        C_SHIFT_JIS,
        C_ISO_2022_KR,
        C_EUC_KR,
        C_ISO_2022_CN,
        C_EUC_CN,
+       C_GB18030,
        C_GB2312,
        C_GBK,
        C_EUC_TW,
@@ -89,7 +94,7 @@ typedef enum
        C_TCVN5712_1
 } CharSet;
 
-typedef void (*CodeConvFunc) (gchar *outbuf, gint outlen, const gchar *inbuf);
+typedef gint (*CodeConvFunc) (gchar *outbuf, gint outlen, const gchar *inbuf);
 
 struct _CodeConverter
 {
@@ -111,6 +116,7 @@ struct _CodeConverter
 #define CS_ISO_8859_6          "ISO-8859-6"
 #define CS_ISO_8859_7          "ISO-8859-7"
 #define CS_ISO_8859_8          "ISO-8859-8"
+#define CS_ISO_8859_8_I        "ISO-8859-8-I"
 #define CS_ISO_8859_9          "ISO-8859-9"
 #define CS_ISO_8859_10         "ISO-8859-10"
 #define CS_ISO_8859_11         "ISO-8859-11"
@@ -137,12 +143,16 @@ struct _CodeConverter
 #define CS_WINDOWS_1257                "Windows-1257"
 #define CS_WINDOWS_1258                "Windows-1258"
 #define CS_KOI8_R              "KOI8-R"
+#define CS_X_MACCYR            "x-mac-cyrillic"
+#define CS_MACCYR              "Mac-Cyrillic"
 #define CS_KOI8_T              "KOI8-T"
 #define CS_KOI8_U              "KOI8-U"
 #define CS_ISO_2022_JP         "ISO-2022-JP"
 #define CS_ISO_2022_JP_2       "ISO-2022-JP-2"
+#define CS_ISO_2022_JP_3       "ISO-2022-JP-3"
 #define CS_EUC_JP              "EUC-JP"
 #define CS_EUCJP               "EUCJP"
+#define CS_EUC_JP_MS           "EUC-JP-MS"
 #define CS_SHIFT_JIS           "Shift_JIS"
 #define CS_SHIFT__JIS          "SHIFT-JIS"
 #define CS_SJIS                        "SJIS"
@@ -151,8 +161,10 @@ struct _CodeConverter
 #define CS_EUC_KR              "EUC-KR"
 #define CS_ISO_2022_CN         "ISO-2022-CN"
 #define CS_EUC_CN              "EUC-CN"
+#define CS_GB18030             "GB18030"
 #define CS_GB2312              "GB2312"
 #define CS_GBK                 "GBK"
+#define CS_X_GBK               "X-GBK"
 #define CS_EUC_TW              "EUC-TW"
 #define CS_BIG5                        "Big5"
 #define CS_BIG5_HKSCS          "BIG5-HKSCS"
@@ -160,31 +172,16 @@ struct _CodeConverter
 #define CS_WINDOWS_874         "Windows-874"
 #define CS_GEORGIAN_PS         "GEORGIAN-PS"
 #define CS_TCVN5712_1          "TCVN5712-1"
+#define CS_X_VIET_VPS          "X-VIET-VPS"
 
-void conv_jistoeuc     (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_euctojis     (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_sjistoeuc    (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_anytoeuc     (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_anytojis     (gchar *outbuf, gint outlen, const gchar *inbuf);
+#define C_INTERNAL             C_UTF_8
+#define CS_INTERNAL            CS_UTF_8
 
-void conv_unreadable_eucjp     (gchar *str);
-void conv_unreadable_8bit      (gchar *str);
-void conv_unreadable_latin     (gchar *str);
-void conv_unreadable_locale    (gchar *str);
 
-void conv_mb_alnum(gchar *str);
-
-CharSet conv_guess_ja_encoding(const gchar *str);
-
-void conv_jistodisp    (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_sjistodisp   (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_euctodisp    (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_ustodisp     (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_latintodisp  (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_noconv       (gchar *outbuf, gint outlen, const gchar *inbuf);
+void conv_utf8todisp   (gchar *outbuf, gint outlen, const gchar *inbuf);
 void conv_localetodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
 
-CodeConverter *conv_code_converter_new (const gchar    *charset);
+CodeConverter *conv_code_converter_new (const gchar    *src_charset);
 void conv_code_converter_destroy       (CodeConverter  *conv);
 gint conv_convert                      (CodeConverter  *conv,
                                         gchar          *outbuf,
@@ -195,35 +192,30 @@ gchar *conv_codeset_strdup                (const gchar    *inbuf,
                                         const gchar    *src_code,
                                         const gchar    *dest_code);
 
-CodeConvFunc conv_get_code_conv_func   (const gchar    *src_charset_str,
-                                        const gchar    *dest_charset_str);
-
-#if HAVE_ICONV
-gchar *conv_iconv_strdup               (const gchar    *inbuf,
-                                        const gchar    *src_code,
-                                        const gchar    *dest_code);
-#endif
-
 const gchar *conv_get_charset_str              (CharSet         charset);
 CharSet conv_get_charset_from_str              (const gchar    *charset);
-CharSet conv_get_current_charset               (void);
-const gchar *conv_get_current_charset_str      (void);
-CharSet conv_get_outgoing_charset              (void);
+const gchar *conv_get_locale_charset_str       (void);
+const gchar *conv_get_locale_charset_str_no_utf8(void);
 const gchar *conv_get_outgoing_charset_str     (void);
-gboolean conv_is_multibyte_encoding            (CharSet         encoding);
 
 const gchar *conv_get_current_locale           (void);
 
-void conv_unmime_header_overwrite      (gchar          *str);
-void conv_unmime_header                        (gchar          *outbuf,
-                                        gint            outlen,
-                                        const gchar    *str,
-                                        const gchar    *charset);
+gchar *conv_unmime_header              (const gchar    *str,
+                                         const gchar   *default_encoding,
+                                         gboolean       addr_field);
 void conv_encode_header                        (gchar          *dest,
                                         gint            len,
                                         const gchar    *src,
                                         gint            header_len,
                                         gboolean        addr_field);
+void conv_encode_header_full           (gchar          *dest,
+                                        gint            len,
+                                        const gchar    *src,
+                                        gint            header_len,
+                                        gboolean        addr_field,
+                                        const gchar    *out_encoding_);
 
-
+gchar *conv_filename_from_utf8         (const gchar    *utf8_file);
+gchar *conv_filename_to_utf8           (const gchar    *fs_file);
+void codeconv_set_strict               (gboolean        mode);
 #endif /* __CODECONV_H__ */