| 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/cpdf_textobject.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/fpdf_font/cpdf_cidfont.h" | 9 #include "core/fpdfapi/fpdf_font/cpdf_cidfont.h" |
| 10 #include "core/fpdfapi/fpdf_font/cpdf_font.h" | 10 #include "core/fpdfapi/fpdf_font/cpdf_font.h" |
| 11 | 11 |
| 12 CPDF_TextObject::CPDF_TextObject() | 12 CPDF_TextObject::CPDF_TextObject() |
| 13 : m_PosX(0), | 13 : m_PosX(0), |
| 14 m_PosY(0), | 14 m_PosY(0), |
| 15 m_nChars(0), | 15 m_nChars(0), |
| 16 m_pCharCodes(nullptr), | 16 m_pCharCodes(nullptr), |
| 17 m_pCharPos(nullptr) {} | 17 m_pCharPos(nullptr) {} |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 m_PosY = y; | 380 m_PosY = y; |
| 381 m_Left += dx; | 381 m_Left += dx; |
| 382 m_Right += dx; | 382 m_Right += dx; |
| 383 m_Top += dy; | 383 m_Top += dy; |
| 384 m_Bottom += dy; | 384 m_Bottom += dy; |
| 385 } | 385 } |
| 386 | 386 |
| 387 void CPDF_TextObject::RecalcPositionData() { | 387 void CPDF_TextObject::RecalcPositionData() { |
| 388 CalcPositionData(nullptr, nullptr, 1); | 388 CalcPositionData(nullptr, nullptr, 1); |
| 389 } | 389 } |
| OLD | NEW |