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/fpdfapi/fpdf_page/include/cpdf_textobject.h" | 7 #include "core/fpdfapi/fpdf_page/include/cpdf_textobject.h" |
8 | 8 |
| 9 #include "core/fpdfapi/fpdf_font/cpdf_cidfont.h" |
| 10 #include "core/fpdfapi/fpdf_font/include/cpdf_font.h" |
| 11 |
9 CPDF_TextObject::CPDF_TextObject() | 12 CPDF_TextObject::CPDF_TextObject() |
10 : m_PosX(0), | 13 : m_PosX(0), |
11 m_PosY(0), | 14 m_PosY(0), |
12 m_nChars(0), | 15 m_nChars(0), |
13 m_pCharCodes(nullptr), | 16 m_pCharCodes(nullptr), |
14 m_pCharPos(nullptr) {} | 17 m_pCharPos(nullptr) {} |
15 | 18 |
16 CPDF_TextObject::~CPDF_TextObject() { | 19 CPDF_TextObject::~CPDF_TextObject() { |
17 if (m_nChars > 1) { | 20 if (m_nChars > 1) { |
18 FX_Free(m_pCharCodes); | 21 FX_Free(m_pCharCodes); |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 void CPDF_TextObject::SetPosition(FX_FLOAT x, FX_FLOAT y) { | 339 void CPDF_TextObject::SetPosition(FX_FLOAT x, FX_FLOAT y) { |
337 FX_FLOAT dx = x - m_PosX; | 340 FX_FLOAT dx = x - m_PosX; |
338 FX_FLOAT dy = y - m_PosY; | 341 FX_FLOAT dy = y - m_PosY; |
339 m_PosX = x; | 342 m_PosX = x; |
340 m_PosY = y; | 343 m_PosY = y; |
341 m_Left += dx; | 344 m_Left += dx; |
342 m_Right += dx; | 345 m_Right += dx; |
343 m_Top += dy; | 346 m_Top += dy; |
344 m_Bottom += dy; | 347 m_Bottom += dy; |
345 } | 348 } |
OLD | NEW |