| 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_UNICODE_ | 7 #ifndef _FX_UNICODE_ |
| 8 #define _FX_UNICODE_ | 8 #define _FX_UNICODE_ |
| 9 |
| 10 #include "fx_basic.h" |
| 11 |
| 9 enum FX_CHARBREAKPROP { | 12 enum FX_CHARBREAKPROP { |
| 10 FX_CBP_OP = 0, | 13 FX_CBP_OP = 0, |
| 11 FX_CBP_CL = 1, | 14 FX_CBP_CL = 1, |
| 12 FX_CBP_QU = 2, | 15 FX_CBP_QU = 2, |
| 13 FX_CBP_GL = 3, | 16 FX_CBP_GL = 3, |
| 14 FX_CBP_NS = 4, | 17 FX_CBP_NS = 4, |
| 15 FX_CBP_EX = 5, | 18 FX_CBP_EX = 5, |
| 16 FX_CBP_SY = 6, | 19 FX_CBP_SY = 6, |
| 17 FX_CBP_IS = 7, | 20 FX_CBP_IS = 7, |
| 18 FX_CBP_PR = 8, | 21 FX_CBP_PR = 8, |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 FX_INT16 m_iBidiClass; | 191 FX_INT16 m_iBidiClass; |
| 189 FX_INT16 m_iBidiLevel; | 192 FX_INT16 m_iBidiLevel; |
| 190 FX_INT16 m_iBidiPos; | 193 FX_INT16 m_iBidiPos; |
| 191 FX_INT16 m_iBidiOrder; | 194 FX_INT16 m_iBidiOrder; |
| 192 FX_DWORD m_dwLayoutStyles; | 195 FX_DWORD m_dwLayoutStyles; |
| 193 FX_DWORD m_dwIdentity; | 196 FX_DWORD m_dwIdentity; |
| 194 IFX_Unknown *m_pUserData; | 197 IFX_Unknown *m_pUserData; |
| 195 }; | 198 }; |
| 196 typedef CFX_ArrayTemplate<CFX_RTFChar> CFX_RTFCharArray; | 199 typedef CFX_ArrayTemplate<CFX_RTFChar> CFX_RTFCharArray; |
| 197 #endif | 200 #endif |
| OLD | NEW |