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