| 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 #include "core/fpdfdoc/cpdf_variabletext.h" | 7 #include "core/fpdfdoc/cpdf_variabletext.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/fpdf_font/cpdf_font.h" | 9 #include "core/fpdfapi/font/cpdf_font.h" |
| 10 #include "core/fpdfdoc/cline.h" | 10 #include "core/fpdfdoc/cline.h" |
| 11 #include "core/fpdfdoc/cpvt_section.h" | 11 #include "core/fpdfdoc/cpvt_section.h" |
| 12 #include "core/fpdfdoc/cpvt_word.h" | 12 #include "core/fpdfdoc/cpvt_word.h" |
| 13 #include "core/fpdfdoc/cpvt_wordinfo.h" | 13 #include "core/fpdfdoc/cpvt_wordinfo.h" |
| 14 #include "core/fpdfdoc/csection.h" | 14 #include "core/fpdfdoc/csection.h" |
| 15 #include "core/fpdfdoc/ipvt_fontmap.h" | 15 #include "core/fpdfdoc/ipvt_fontmap.h" |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 | 18 |
| 19 const float kFontScale = 0.001f; | 19 const float kFontScale = 0.001f; |
| (...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 ptLeftTop.y); | 1130 ptLeftTop.y); |
| 1131 } | 1131 } |
| 1132 | 1132 |
| 1133 CPVT_FloatRect CPDF_VariableText::OutToIn(const CFX_FloatRect& rect) const { | 1133 CPVT_FloatRect CPDF_VariableText::OutToIn(const CFX_FloatRect& rect) const { |
| 1134 CFX_FloatPoint ptLeftTop = OutToIn(CFX_FloatPoint(rect.left, rect.top)); | 1134 CFX_FloatPoint ptLeftTop = OutToIn(CFX_FloatPoint(rect.left, rect.top)); |
| 1135 CFX_FloatPoint ptRightBottom = | 1135 CFX_FloatPoint ptRightBottom = |
| 1136 OutToIn(CFX_FloatPoint(rect.right, rect.bottom)); | 1136 OutToIn(CFX_FloatPoint(rect.right, rect.bottom)); |
| 1137 return CPVT_FloatRect(ptLeftTop.x, ptLeftTop.y, ptRightBottom.x, | 1137 return CPVT_FloatRect(ptLeftTop.x, ptLeftTop.y, ptRightBottom.x, |
| 1138 ptRightBottom.y); | 1138 ptRightBottom.y); |
| 1139 } | 1139 } |
| OLD | NEW |