/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * ucvth : nsUnicodeToTIS620.h * * The contents of this file are subject to the Mozilla Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is mozilla.org code. * The Initial Developer of the Original Code is Sun Microsystems, * Inc. Portions created by SUN are Copyright (C) 2000 SUN * Microsystems, Inc. All Rights Reserved. * * This module ucvth is based on the Thai Shaper in Pango by * Red Hat Software. Portions created by Redhat are Copyright (C) * 1999 Red Hat Software. * * Contributor(s): * Prabhat Hegde (prabhat.hegde@sun.com) */ #ifndef nsUnicodeToTIS620_h___ #define nsUnicodeToTIS620_h___ #include "nspr.h" #include "nsIFactory.h" #include "nsIGenericFactory.h" #include "nsIServiceManager.h" #include "nsICharsetConverterManager.h" #include "nsIModule.h" #include "nsIUnicodeEncoder.h" #include "nsICharRepresentable.h" #include "nsILE.h" //---------------------------------------------------------------------- // Class nsUnicodeToTIS620 [declaration] class nsUnicodeToTIS620 : public nsIUnicodeEncoder, public nsICharRepresentable { NS_DECL_ISUPPORTS public: /** * Class constructor. */ nsUnicodeToTIS620(); virtual ~nsUnicodeToTIS620(); NS_IMETHOD Convert(const PRUnichar * aSrc, PRInt32 * aSrcLength, char * aDest, PRInt32 * aDestLength); NS_IMETHOD Finish(char * aDest, PRInt32 * aDestLength); NS_IMETHOD GetMaxLength(const PRUnichar * aSrc, PRInt32 aSrcLength, PRInt32 * aDestLength); NS_IMETHOD Reset(); NS_IMETHOD SetOutputErrorBehavior(PRInt32 aBehavior, nsIUnicharEncoder * aEncoder, PRUnichar aChar); NS_IMETHOD FillInfo(PRUint32* aInfo); private: PRUint8 mState; PRInt32 mByteOff; PRInt32 mCharOff; nsCOMPtr mCtlObj; }; #endif /* !nsUnicodeToTIS620_h___ */