| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_TEXTRENDERER_H_ | 7 #ifndef CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_TEXTRENDERER_H_ |
| 8 #define CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_TEXTRENDERER_H_ | 8 #define CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_TEXTRENDERER_H_ |
| 9 | 9 |
| 10 #include "core/include/fxcrt/fx_coordinates.h" | 10 #include "core/fxcrt/include/fx_coordinates.h" |
| 11 #include "core/include/fxcrt/fx_string.h" | 11 #include "core/fxcrt/include/fx_string.h" |
| 12 #include "core/include/fxcrt/fx_system.h" | 12 #include "core/fxcrt/include/fx_system.h" |
| 13 #include "core/include/fxge/fx_dib.h" | 13 #include "core/include/fxge/fx_dib.h" |
| 14 | 14 |
| 15 class CFX_RenderDevice; | 15 class CFX_RenderDevice; |
| 16 class CFX_GraphStateData; | 16 class CFX_GraphStateData; |
| 17 class CFX_PathData; | 17 class CFX_PathData; |
| 18 class CPDF_RenderOptions; | 18 class CPDF_RenderOptions; |
| 19 class CPDF_Font; | 19 class CPDF_Font; |
| 20 | 20 |
| 21 class CPDF_TextRenderer { | 21 class CPDF_TextRenderer { |
| 22 public: | 22 public: |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 int nChars, | 68 int nChars, |
| 69 FX_DWORD* pCharCodes, | 69 FX_DWORD* pCharCodes, |
| 70 FX_FLOAT* pCharPos, | 70 FX_FLOAT* pCharPos, |
| 71 CPDF_Font* pFont, | 71 CPDF_Font* pFont, |
| 72 FX_FLOAT font_size, | 72 FX_FLOAT font_size, |
| 73 const CFX_Matrix* pText2Device, | 73 const CFX_Matrix* pText2Device, |
| 74 FX_ARGB fill_argb); | 74 FX_ARGB fill_argb); |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 #endif // CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_TEXTRENDERER_H_ | 77 #endif // CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_TEXTRENDERER_H_ |
| OLD | NEW |