2001-09-26 00:40:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-08-03 18:03:02 +00:00
|
|
|
|
|
|
|
#ifndef nsUnicodeToISO2022JP_h___
|
|
|
|
#define nsUnicodeToISO2022JP_h___
|
|
|
|
|
2002-08-12 19:16:16 +00:00
|
|
|
#include "nsUCSupport.h"
|
1999-08-03 18:03:02 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Class nsUnicodeToISO2022JP [declaration]
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A character set converter from Unicode to ISO2022JP.
|
|
|
|
*
|
|
|
|
* @created 17/Feb/1999
|
|
|
|
* @author Catalin Rotaru [CATA]
|
|
|
|
*/
|
|
|
|
class nsUnicodeToISO2022JP : public nsEncoderSupport
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class constructor.
|
|
|
|
*/
|
|
|
|
nsUnicodeToISO2022JP();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class destructor.
|
|
|
|
*/
|
|
|
|
virtual ~nsUnicodeToISO2022JP();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mCharset; // current character set
|
1999-08-03 18:03:02 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult ChangeCharset(int32_t aCharset, char * aDest,
|
|
|
|
int32_t * aDestLength);
|
2014-01-04 15:02:17 +00:00
|
|
|
nsresult ConvertHankaku(const char16_t *aSrc, int32_t * aSrcLength,
|
2012-08-22 15:56:38 +00:00
|
|
|
char *aDest, int32_t * aDestLength);
|
1999-08-03 18:03:02 +00:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
// Subclassing of nsEncoderSupport class [declaration]
|
|
|
|
|
2014-01-04 15:02:17 +00:00
|
|
|
NS_IMETHOD ConvertNoBuffNoErr(const char16_t * aSrc, int32_t * aSrcLength,
|
2012-08-22 15:56:38 +00:00
|
|
|
char * aDest, int32_t * aDestLength);
|
|
|
|
NS_IMETHOD FinishNoBuff(char * aDest, int32_t * aDestLength);
|
1999-08-03 18:03:02 +00:00
|
|
|
NS_IMETHOD Reset();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsUnicodeToISO2022JP_h___ */
|