2001-11-16 23:51:15 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2007-06-03 06:08:46 +00:00
|
|
|
* Copyright (C) 2001-2007, International Business Machines
|
2001-11-16 23:51:15 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
* Date Name Description
|
|
|
|
* 07/03/01 aliu Creation.
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
#ifndef NORTRANS_H
|
|
|
|
#define NORTRANS_H
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
2002-09-20 01:54:48 +00:00
|
|
|
|
|
|
|
#if !UCONFIG_NO_TRANSLITERATION
|
|
|
|
|
2001-11-16 23:51:15 +00:00
|
|
|
#include "unicode/translit.h"
|
|
|
|
#include "unicode/normlzr.h"
|
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A transliterator that performs normalization.
|
|
|
|
* @author Alan Liu
|
|
|
|
*/
|
2007-06-03 06:08:46 +00:00
|
|
|
class NormalizationTransliterator : public Transliterator {
|
2001-11-16 23:51:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The normalization mode of this transliterator.
|
|
|
|
*/
|
|
|
|
UNormalizationMode fMode;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normalization options for this transliterator.
|
|
|
|
*/
|
|
|
|
int32_t options;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor.
|
|
|
|
*/
|
|
|
|
virtual ~NormalizationTransliterator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy constructor.
|
|
|
|
*/
|
|
|
|
NormalizationTransliterator(const NormalizationTransliterator&);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transliterator API.
|
2002-07-01 11:04:45 +00:00
|
|
|
* @return A copy of the object.
|
2001-11-16 23:51:15 +00:00
|
|
|
*/
|
2004-08-28 04:42:33 +00:00
|
|
|
virtual Transliterator* clone(void) const;
|
2001-11-16 23:51:15 +00:00
|
|
|
|
2002-06-29 00:04:16 +00:00
|
|
|
/**
|
|
|
|
* ICU "poor man's RTTI", returns a UClassID for the actual class.
|
|
|
|
*/
|
2003-08-31 20:53:46 +00:00
|
|
|
virtual UClassID getDynamicClassID() const;
|
2002-06-29 00:04:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ICU "poor man's RTTI", returns a UClassID for this class.
|
|
|
|
*/
|
2007-06-03 06:08:46 +00:00
|
|
|
U_I18N_API static UClassID U_EXPORT2 getStaticClassID();
|
2002-06-29 00:04:16 +00:00
|
|
|
|
2001-11-16 23:51:15 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements {@link Transliterator#handleTransliterate}.
|
2002-07-01 11:04:45 +00:00
|
|
|
* @param text the buffer holding transliterated and
|
|
|
|
* untransliterated text
|
|
|
|
* @param offset the start and limit of the text, the position
|
|
|
|
* of the cursor, and the start and limit of transliteration.
|
|
|
|
* @param incremental if true, assume more text may be coming after
|
|
|
|
* pos.contextLimit. Otherwise, assume the text is complete.
|
2001-11-16 23:51:15 +00:00
|
|
|
*/
|
2004-12-07 23:43:48 +00:00
|
|
|
virtual void handleTransliterate(Replaceable& text, UTransPosition& offset,
|
2001-11-16 23:51:15 +00:00
|
|
|
UBool isIncremental) const;
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* System registration hook. Public to Transliterator only.
|
|
|
|
*/
|
|
|
|
static void registerIDs();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// Transliterator::Factory methods
|
|
|
|
static Transliterator* _create(const UnicodeString& ID,
|
|
|
|
Token context);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a transliterator. This method is private.
|
|
|
|
* Public users must use the factory method createInstance().
|
|
|
|
*/
|
|
|
|
NormalizationTransliterator(const UnicodeString& id,
|
|
|
|
UNormalizationMode mode, int32_t opt);
|
2007-06-08 22:31:20 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Assignment operator.
|
|
|
|
*/
|
|
|
|
NormalizationTransliterator& operator=(const NormalizationTransliterator&);
|
2001-11-16 23:51:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_TRANSLITERATION */
|
|
|
|
|
2001-11-16 23:51:15 +00:00
|
|
|
#endif
|