2001-11-16 23:51:15 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2004-08-28 04:42:33 +00:00
|
|
|
* Copyright (C) 2001-2004, International Business Machines
|
2001-11-16 23:51:15 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
* Date Name Description
|
|
|
|
* 05/24/01 aliu Creation.
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
#ifndef TOUPPTRN_H
|
|
|
|
#define TOUPPTRN_H
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_TRANSLITERATION
|
|
|
|
|
2001-12-03 21:43:13 +00:00
|
|
|
#include "unicode/translit.h"
|
2001-11-16 23:51:15 +00:00
|
|
|
#include "unicode/locid.h"
|
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A transliterator that performs locale-sensitive toUpper()
|
|
|
|
* case mapping.
|
|
|
|
* @author Alan Liu
|
|
|
|
*/
|
2001-11-30 00:57:29 +00:00
|
|
|
class U_I18N_API UppercaseTransliterator : public Transliterator {
|
2001-11-16 23:51:15 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a transliterator.
|
2002-07-01 11:04:45 +00:00
|
|
|
* @param loc the given locale.
|
2001-11-16 23:51:15 +00:00
|
|
|
*/
|
2001-11-30 00:57:29 +00:00
|
|
|
UppercaseTransliterator(const Locale& loc = Locale::getDefault());
|
2001-11-16 23:51:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor.
|
|
|
|
*/
|
|
|
|
virtual ~UppercaseTransliterator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy constructor.
|
|
|
|
*/
|
|
|
|
UppercaseTransliterator(const UppercaseTransliterator&);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assignment operator.
|
|
|
|
*/
|
|
|
|
UppercaseTransliterator& operator=(const UppercaseTransliterator&);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @draft ICU 2.2
|
|
|
|
*/
|
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.
|
|
|
|
*
|
|
|
|
* @draft ICU 2.2
|
|
|
|
*/
|
2004-08-24 17:38:33 +00:00
|
|
|
static UClassID U_EXPORT2 getStaticClassID();
|
2002-06-29 00:04:16 +00:00
|
|
|
|
2001-11-16 23:51:15 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2001-11-30 00:57:29 +00:00
|
|
|
* 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
|
|
|
*/
|
2001-11-30 00:57:29 +00:00
|
|
|
virtual void handleTransliterate(Replaceable& text,
|
|
|
|
UTransPosition& offsets,
|
|
|
|
UBool isIncremental) const;
|
2001-11-16 23:51:15 +00:00
|
|
|
|
2003-08-31 20:53:46 +00:00
|
|
|
private:
|
2001-11-16 23:51:15 +00:00
|
|
|
|
|
|
|
Locale loc;
|
2001-11-30 00:57:29 +00:00
|
|
|
UChar* buffer;
|
2002-06-29 00:04:16 +00:00
|
|
|
|
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
|