/usr/include/oce/Resource_Unicode.hxx is in liboce-foundation-dev 0.17.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | // This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _Resource_Unicode_HeaderFile
#define _Resource_Unicode_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Macro.hxx>
#include <Standard_CString.hxx>
#include <Standard_Boolean.hxx>
#include <Standard_PCharacter.hxx>
#include <Standard_Integer.hxx>
#include <Resource_FormatType.hxx>
class TCollection_ExtendedString;
//! This class provides functions used to convert a non-ASCII C string
//! given in ANSI, EUC, GB or SJIS format, to a
//! Unicode string of extended characters, and vice versa.
class Resource_Unicode
{
public:
DEFINE_STANDARD_ALLOC
//! Converts non-ASCII CString <fromstr> in SJIS format
//! to Unicode ExtendedString <tostr>.
Standard_EXPORT static void ConvertSJISToUnicode (const Standard_CString fromstr, TCollection_ExtendedString& tostr) ;
//! Converts non-ASCII CString <fromstr> in EUC format
//! to Unicode ExtendedString <tostr>.
Standard_EXPORT static void ConvertEUCToUnicode (const Standard_CString fromstr, TCollection_ExtendedString& tostr) ;
//! Converts non-ASCII CString <fromstr> in GB format
//! to Unicode ExtendedString <tostr>.
Standard_EXPORT static void ConvertGBToUnicode (const Standard_CString fromstr, TCollection_ExtendedString& tostr) ;
//! Converts non-ASCII CString <fromstr> in ANSI format
//! to Unicode ExtendedString <tostr>.
Standard_EXPORT static void ConvertANSIToUnicode (const Standard_CString fromstr, TCollection_ExtendedString& tostr) ;
//! Converts Unicode ExtendedString <fromstr> to non-ASCII
//! CString <tostr> in SJIS format, limited to <maxsize>
//! characters. To translate the whole <fromstr>, use more
//! than twice the length of <fromstr>. Returns true if
//! <maxsize> has not been reached before end of conversion.
Standard_EXPORT static Standard_Boolean ConvertUnicodeToSJIS (const TCollection_ExtendedString& fromstr, Standard_PCharacter& tostr, const Standard_Integer maxsize) ;
//! Converts Unicode ExtendedString <fromstr> to non-ASCII
//! CString <tostr> in EUC format, limited to <maxsize>
//! characters. To translate the whole <fromstr>, use more
//! than twice the length of <fromstr>. Returns true if
//! <maxsize> has not been reached before end of conversion.
Standard_EXPORT static Standard_Boolean ConvertUnicodeToEUC (const TCollection_ExtendedString& fromstr, Standard_PCharacter& tostr, const Standard_Integer maxsize) ;
//! Converts Unicode ExtendedString <fromstr> to non-ASCII
//! CString <tostr> in GB format, limited to <maxsize>
//! characters. To translate the whole <fromstr>, use more
//! than twice the length of <fromstr>. Returns true if
//! <maxsize> has not been reached before end of conversion.
Standard_EXPORT static Standard_Boolean ConvertUnicodeToGB (const TCollection_ExtendedString& fromstr, Standard_PCharacter& tostr, const Standard_Integer maxsize) ;
//! Converts Unicode ExtendedString <fromstr> to non-ASCII
//! CString <tostr> in ANSI format, limited to <maxsize>
//! characters. To translate the whole <fromstr>, use more
//! than twice the length of <fromstr>. Returns true if
//! <maxsize> has not been reached before end of conversion.
Standard_EXPORT static Standard_Boolean ConvertUnicodeToANSI (const TCollection_ExtendedString& fromstr, Standard_PCharacter& tostr, const Standard_Integer maxsize) ;
//! Defines the current conversion format as typecode.
//! This conversion format will then be used by the
//! functions ConvertFormatToUnicode and
//! ConvertUnicodeToFormat to convert the strings.
Standard_EXPORT static void SetFormat (const Resource_FormatType typecode) ;
//! Returns the current conversion format (either
//! ANSI, EUC, GB or SJIS).
//! The current converting format must be defined in
//! advance with the SetFormat function.
Standard_EXPORT static Resource_FormatType GetFormat() ;
//! Reads converting format from resource "FormatType"
//! in Resource Manager "CharSet"
Standard_EXPORT static void ReadFormat() ;
//! Converts the non-ASCII C string fromstr to the
//! Unicode string of extended characters tostr.
//! fromstr is translated according to the format
//! (either ANSI, EUC, GB or SJIS) returned by the function GetFormat.
Standard_EXPORT static void ConvertFormatToUnicode (const Standard_CString fromstr, TCollection_ExtendedString& tostr) ;
//! Converts the Unicode string of extended
//! characters fromstr to the non-ASCII C string
//! tostr according to the format (either ANSI, EUC,
//! GB or SJIS) returned by the function GetFormat.
//! maxsize limits the size of the string tostr to a
//! maximum number of characters. You need more
//! than twice the length of the string fromstr to
//! complete the conversion.
//! The function returns true if conversion is
//! complete, i.e. the maximum number of characters
//! maxsize is not reached by tostr before the end
//! of conversion of fromstr.
Standard_EXPORT static Standard_Boolean ConvertUnicodeToFormat (const TCollection_ExtendedString& fromstr, Standard_PCharacter& tostr, const Standard_Integer maxsize) ;
protected:
private:
};
#endif // _Resource_Unicode_HeaderFile
|