| 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_FDE_TTO_FDE_TEXTOUT_H_ | 7 #ifndef XFA_FDE_TTO_FDE_TEXTOUT_H_ |
| 8 #define XFA_FDE_TTO_FDE_TEXTOUT_H_ | 8 #define XFA_FDE_TTO_FDE_TEXTOUT_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 CFX_WideString m_wsText; | 172 CFX_WideString m_wsText; |
| 173 CFX_RectF m_rtClip; | 173 CFX_RectF m_rtClip; |
| 174 CFX_RectF m_rtLogicClip; | 174 CFX_RectF m_rtLogicClip; |
| 175 CFX_Matrix m_Matrix; | 175 CFX_Matrix m_Matrix; |
| 176 CFDE_TTOLineArray m_ttoLines; | 176 CFDE_TTOLineArray m_ttoLines; |
| 177 int32_t m_iCurLine; | 177 int32_t m_iCurLine; |
| 178 int32_t m_iCurPiece; | 178 int32_t m_iCurPiece; |
| 179 int32_t m_iTotalLines; | 179 int32_t m_iTotalLines; |
| 180 std::vector<FXTEXT_CHARPOS> m_CharPos; | 180 std::vector<FXTEXT_CHARPOS> m_CharPos; |
| 181 std::unique_ptr<CFDE_RenderDevice> m_pRenderDevice; | 181 std::unique_ptr<CFDE_RenderDevice> m_pRenderDevice; |
| 182 CFX_Int32Array m_hotKeys; | 182 CFX_ArrayTemplate<int32_t> m_hotKeys; |
| 183 CFX_RectFArray m_rectArray; | 183 CFX_RectFArray m_rectArray; |
| 184 }; | 184 }; |
| 185 | 185 |
| 186 #endif // XFA_FDE_TTO_FDE_TEXTOUT_H_ | 186 #endif // XFA_FDE_TTO_FDE_TEXTOUT_H_ |
| OLD | NEW |