| 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/include/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/fpdf_font/cpdf_font.h" |
| 10 #include "core/fpdfdoc/cline.h" | 10 #include "core/fpdfdoc/cline.h" |
| 11 #include "core/fpdfdoc/cpvt_section.h" |
| 12 #include "core/fpdfdoc/cpvt_word.h" |
| 11 #include "core/fpdfdoc/cpvt_wordinfo.h" | 13 #include "core/fpdfdoc/cpvt_wordinfo.h" |
| 12 #include "core/fpdfdoc/csection.h" | 14 #include "core/fpdfdoc/csection.h" |
| 13 #include "core/fpdfdoc/include/cpvt_section.h" | 15 #include "core/fpdfdoc/ipvt_fontmap.h" |
| 14 #include "core/fpdfdoc/include/cpvt_word.h" | |
| 15 #include "core/fpdfdoc/include/ipvt_fontmap.h" | |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 | 18 |
| 19 const float kFontScale = 0.001f; | 19 const float kFontScale = 0.001f; |
| 20 const uint8_t kReturnLength = 1; | 20 const uint8_t kReturnLength = 1; |
| 21 const float kScalePercent = 0.01f; | 21 const float kScalePercent = 0.01f; |
| 22 | 22 |
| 23 const uint8_t gFontSizeSteps[] = {4, 6, 8, 9, 10, 12, 14, 18, 20, | 23 const uint8_t gFontSizeSteps[] = {4, 6, 8, 9, 10, 12, 14, 18, 20, |
| 24 25, 30, 35, 40, 45, 50, 55, 60, 70, | 24 25, 30, 35, 40, 45, 50, 55, 60, 70, |
| 25 80, 90, 100, 110, 120, 130, 144}; | 25 80, 90, 100, 110, 120, 130, 144}; |
| (...skipping 1104 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 |