| 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 XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_ | 7 #ifndef XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_ |
| 8 #define XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_ | 8 #define XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/include/fx_basic.h" | 10 #include "core/fxcrt/include/fx_basic.h" |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 uint32_t dwStatus); | 281 uint32_t dwStatus); |
| 282 void EndBreak_BidiLine(CFX_TPOArray& tpos, uint32_t dwStatus); | 282 void EndBreak_BidiLine(CFX_TPOArray& tpos, uint32_t dwStatus); |
| 283 void EndBreak_Alignment(CFX_TPOArray& tpos, | 283 void EndBreak_Alignment(CFX_TPOArray& tpos, |
| 284 FX_BOOL bAllChars, | 284 FX_BOOL bAllChars, |
| 285 uint32_t dwStatus); | 285 uint32_t dwStatus); |
| 286 | 286 |
| 287 uint32_t m_dwPolicies; | 287 uint32_t m_dwPolicies; |
| 288 int32_t m_iBoundaryStart; | 288 int32_t m_iBoundaryStart; |
| 289 int32_t m_iBoundaryEnd; | 289 int32_t m_iBoundaryEnd; |
| 290 uint32_t m_dwLayoutStyles; | 290 uint32_t m_dwLayoutStyles; |
| 291 FX_BOOL m_bPagination; | 291 bool m_bPagination; |
| 292 FX_BOOL m_bVertical; | 292 bool m_bVertical; |
| 293 FX_BOOL m_bSingleLine; | 293 bool m_bSingleLine; |
| 294 FX_BOOL m_bCharCode; | 294 bool m_bCharCode; |
| 295 CFGAS_GEFont* m_pFont; | 295 CFGAS_GEFont* m_pFont; |
| 296 int32_t m_iFontHeight; | 296 int32_t m_iFontHeight; |
| 297 int32_t m_iFontSize; | 297 int32_t m_iFontSize; |
| 298 int32_t m_iTabWidth; | 298 int32_t m_iTabWidth; |
| 299 CFX_Int32Array m_PositionedTabs; | 299 CFX_Int32Array m_PositionedTabs; |
| 300 FX_BOOL m_bOrphanLine; | 300 FX_BOOL m_bOrphanLine; |
| 301 FX_WCHAR m_wDefChar; | 301 FX_WCHAR m_wDefChar; |
| 302 int32_t m_iDefChar; | 302 int32_t m_iDefChar; |
| 303 FX_WCHAR m_wLineBreakChar; | 303 FX_WCHAR m_wLineBreakChar; |
| 304 int32_t m_iHorizontalScale; | 304 int32_t m_iHorizontalScale; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 315 FX_CHARTYPE m_eCharType; | 315 FX_CHARTYPE m_eCharType; |
| 316 uint32_t m_dwIdentity; | 316 uint32_t m_dwIdentity; |
| 317 CFX_RTFLine m_RTFLine1; | 317 CFX_RTFLine m_RTFLine1; |
| 318 CFX_RTFLine m_RTFLine2; | 318 CFX_RTFLine m_RTFLine2; |
| 319 CFX_RTFLine* m_pCurLine; | 319 CFX_RTFLine* m_pCurLine; |
| 320 int32_t m_iReady; | 320 int32_t m_iReady; |
| 321 int32_t m_iTolerance; | 321 int32_t m_iTolerance; |
| 322 }; | 322 }; |
| 323 | 323 |
| 324 #endif // XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_ | 324 #endif // XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_ |
| OLD | NEW |