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 CORE_FXCRT_INCLUDE_FX_UCD_H_ | 7 #ifndef CORE_FXCRT_INCLUDE_FX_UCD_H_ |
8 #define CORE_FXCRT_INCLUDE_FX_UCD_H_ | 8 #define CORE_FXCRT_INCLUDE_FX_UCD_H_ |
9 | 9 |
10 #include "core/fxcrt/include/fx_basic.h" | 10 #include "core/fxcrt/include/fx_basic.h" |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 m_pUserData(NULL) {} | 182 m_pUserData(NULL) {} |
183 uint32_t m_dwStatus; | 183 uint32_t m_dwStatus; |
184 int32_t m_iFontSize; | 184 int32_t m_iFontSize; |
185 int32_t m_iFontHeight; | 185 int32_t m_iFontHeight; |
186 int16_t m_iBidiClass; | 186 int16_t m_iBidiClass; |
187 int16_t m_iBidiLevel; | 187 int16_t m_iBidiLevel; |
188 int16_t m_iBidiPos; | 188 int16_t m_iBidiPos; |
189 int16_t m_iBidiOrder; | 189 int16_t m_iBidiOrder; |
190 uint32_t m_dwLayoutStyles; | 190 uint32_t m_dwLayoutStyles; |
191 uint32_t m_dwIdentity; | 191 uint32_t m_dwIdentity; |
192 IFX_Unknown* m_pUserData; | 192 IFX_Retainable* m_pUserData; |
193 }; | 193 }; |
194 typedef CFX_ArrayTemplate<CFX_RTFChar> CFX_RTFCharArray; | 194 typedef CFX_ArrayTemplate<CFX_RTFChar> CFX_RTFCharArray; |
195 #endif // PDF_ENABLE_XFA | 195 #endif // PDF_ENABLE_XFA |
196 | 196 |
197 #endif // CORE_FXCRT_INCLUDE_FX_UCD_H_ | 197 #endif // CORE_FXCRT_INCLUDE_FX_UCD_H_ |
OLD | NEW |