| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef _FX_ARABIC_IMP | 7 #ifndef CORE_SRC_FXCRT_FX_ARABIC_H_ |
| 8 #define _FX_ARABIC_IMP | 8 #define CORE_SRC_FXCRT_FX_ARABIC_H_ |
| 9 |
| 9 typedef struct _FX_ARABICCHARRANGE { | 10 typedef struct _FX_ARABICCHARRANGE { |
| 10 FX_WCHAR wStart; | 11 FX_WCHAR wStart; |
| 11 FX_WCHAR wEnd; | 12 FX_WCHAR wEnd; |
| 12 } FX_ARABICCHARRANGE; | 13 } FX_ARABICCHARRANGE; |
| 13 class CFX_ArabicChar : public IFX_ArabicChar | 14 class CFX_ArabicChar : public IFX_ArabicChar |
| 14 { | 15 { |
| 15 public: | 16 public: |
| 16 virtual void Release() | 17 virtual void Release() |
| 17 { | 18 { |
| 18 delete this; | 19 delete this; |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 private: | 200 private: |
| 200 ~CFX_BidiChar() { } | 201 ~CFX_BidiChar() { } |
| 201 FX_BOOL m_bSeparateNeutral; | 202 FX_BOOL m_bSeparateNeutral; |
| 202 FX_INT32 m_iCurStart; | 203 FX_INT32 m_iCurStart; |
| 203 FX_INT32 m_iCurCount; | 204 FX_INT32 m_iCurCount; |
| 204 FX_INT32 m_iCurBidi; | 205 FX_INT32 m_iCurBidi; |
| 205 FX_INT32 m_iLastBidi; | 206 FX_INT32 m_iLastBidi; |
| 206 FX_INT32 m_iLastStart; | 207 FX_INT32 m_iLastStart; |
| 207 FX_INT32 m_iLastCount; | 208 FX_INT32 m_iLastCount; |
| 208 }; | 209 }; |
| 209 #endif | 210 |
| 211 #endif // CORE_SRC_FXCRT_FX_ARABIC_H_ |
| OLD | NEW |