00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef UTF8ARSHAPING_H
00020 #define UTF8ARSHAPING_H
00021
00022 #include <swfilter.h>
00023
00024 #include <unicode/utypes.h>
00025 #include <unicode/ucnv.h>
00026 #include <unicode/uchar.h>
00027 #include <unicode/ushape.h>
00028
00029 #include <defs.h>
00030 SWORD_NAMESPACE_START
00031
00034 class SWDLLEXPORT UTF8arShaping : public SWFilter
00035 {
00036 private:
00037 UConverter* conv;
00038 UErrorCode err;
00039 public:
00040 UTF8arShaping();
00041 ~UTF8arShaping();
00042 virtual char ProcessText (char *text, int maxlen, const SWKey * key, const SWModule * = 0);
00043 };
00044
00045
00046 SWORD_NAMESPACE_END
00047 #endif
00048
00049