From 5110c4743751145c4ae1934cd1d83bc6c55bb43f Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Sat, 17 May 2014 22:33:34 -0700 Subject: Initial commit. --- core/src/fxcrt/fx_arabic.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 core/src/fxcrt/fx_arabic.h (limited to 'core/src/fxcrt/fx_arabic.h') diff --git a/core/src/fxcrt/fx_arabic.h b/core/src/fxcrt/fx_arabic.h new file mode 100644 index 0000000000..503ec01696 --- /dev/null +++ b/core/src/fxcrt/fx_arabic.h @@ -0,0 +1,34 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef _FX_ARABIC_IMP +#define _FX_ARABIC_IMP +class CFX_BidiChar : public IFX_BidiChar, public CFX_Object +{ +public: + CFX_BidiChar(); + virtual void Release() + { + delete this; + } + virtual void SetPolicy(FX_BOOL bSeparateNeutral = TRUE) + { + m_bSeparateNeutral = bSeparateNeutral; + } + virtual FX_BOOL AppendChar(FX_WCHAR wch); + virtual FX_BOOL EndChar(); + virtual FX_INT32 GetBidiInfo(FX_INT32 &iStart, FX_INT32 &iCount); + virtual void Reset(); +protected: + FX_BOOL m_bSeparateNeutral; + FX_INT32 m_iCurStart; + FX_INT32 m_iCurCount; + FX_INT32 m_iCurBidi; + FX_INT32 m_iLastBidi; + FX_INT32 m_iLastStart; + FX_INT32 m_iLastCount; +}; +#endif -- cgit v1.2.3