| 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_TEXTBREAK_H_ | 7 #ifndef XFA_FGAS_LAYOUT_FGAS_TEXTBREAK_H_ |
| 8 #define XFA_FGAS_LAYOUT_FGAS_TEXTBREAK_H_ | 8 #define XFA_FGAS_LAYOUT_FGAS_TEXTBREAK_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "core/fxcrt/include/fx_ucd.h" | 12 #include "core/fxcrt/include/fx_ucd.h" |
| 13 #include "core/fxge/include/fx_ge.h" | 13 #include "core/fxge/include/cfx_renderdevice.h" |
| 14 #include "xfa/fgas/crt/fgas_utils.h" | 14 #include "xfa/fgas/crt/fgas_utils.h" |
| 15 #include "xfa/fgas/layout/fgas_unicode.h" | 15 #include "xfa/fgas/layout/fgas_unicode.h" |
| 16 | 16 |
| 17 class CFX_Char; | 17 class CFX_Char; |
| 18 class CFGAS_GEFont; | 18 class CFGAS_GEFont; |
| 19 class CFX_TxtChar; | 19 class CFX_TxtChar; |
| 20 class CFX_TxtPiece; | 20 class CFX_TxtPiece; |
| 21 class IFX_TxtAccess; | 21 class IFX_TxtAccess; |
| 22 | 22 |
| 23 #define FX_TXTBREAKPOLICY_None 0x00 | 23 #define FX_TXTBREAKPOLICY_None 0x00 |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 std::unique_ptr<CFX_TxtLine> m_pTxtLine2; | 303 std::unique_ptr<CFX_TxtLine> m_pTxtLine2; |
| 304 CFX_TxtLine* m_pCurLine; | 304 CFX_TxtLine* m_pCurLine; |
| 305 int32_t m_iReady; | 305 int32_t m_iReady; |
| 306 int32_t m_iTolerance; | 306 int32_t m_iTolerance; |
| 307 int32_t m_iHorScale; | 307 int32_t m_iHorScale; |
| 308 int32_t m_iVerScale; | 308 int32_t m_iVerScale; |
| 309 int32_t m_iCharSpace; | 309 int32_t m_iCharSpace; |
| 310 }; | 310 }; |
| 311 | 311 |
| 312 #endif // XFA_FGAS_LAYOUT_FGAS_TEXTBREAK_H_ | 312 #endif // XFA_FGAS_LAYOUT_FGAS_TEXTBREAK_H_ |
| OLD | NEW |