]> git.lyx.org Git - lyx.git/blob - src/support/unicode.h
MacOSX compile fix.
[lyx.git] / src / support / unicode.h
1 /**
2  * \file unicode.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  *
10  * A collection of unicode conversion functions, using iconv.
11  */
12
13 #ifndef LYX_SUPPORT_UNICODE_H
14 #define LYX_SUPPORT_UNICODE_H
15
16 #include "support/types.h"
17
18 #include <vector>
19
20 // utf8_to_ucs4
21
22 // A single codepoint conversion for utf8_to_ucs4 does not make
23 // sense, so that function is left out.
24
25 std::vector<lyx::char_type>
26 utf8_to_ucs4(std::vector<char> const & utf8str);
27
28 std::vector<lyx::char_type>
29 utf8_to_ucs4(char const * utf8str, size_t ls);
30
31 // ucs2_to_ucs4
32
33 lyx::char_type
34 ucs2_to_ucs4(unsigned short c);
35
36 std::vector<lyx::char_type>
37 ucs2_to_ucs4(std::vector<unsigned short> const & ucs2str);
38
39 std::vector<lyx::char_type>
40 ucs2_to_ucs4(unsigned short const * ucs2str, size_t ls);
41
42 // ucs4_to_ucs2
43
44 unsigned short
45 ucs4_to_ucs2(lyx::char_type c);
46
47 std::vector<unsigned short>
48 ucs4_to_ucs2(std::vector<lyx::char_type> const & ucs4str);
49
50 std::vector<unsigned short>
51 ucs4_to_ucs2(lyx::char_type const * s, size_t ls);
52
53 // ucs4_to_utf8
54
55 std::vector<char>
56 ucs4_to_utf8(lyx::char_type c);
57
58 std::vector<char>
59 ucs4_to_utf8(std::vector<lyx::char_type> const & ucs4str);
60
61 std::vector<char>
62 ucs4_to_utf8(lyx::char_type const * ucs4str, size_t ls);
63
64 extern char const * ucs4_codeset;
65 extern char const * ucs2_codeset;
66
67 #endif