| 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_formobject.h" | 7 #include "core/fpdfapi/fpdf_page/cpdf_formobject.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h" | 9 #include "core/fpdfapi/fpdf_page/cpdf_form.h" |
| 10 | 10 |
| 11 CPDF_FormObject::CPDF_FormObject() {} | 11 CPDF_FormObject::CPDF_FormObject() {} |
| 12 | 12 |
| 13 CPDF_FormObject::~CPDF_FormObject() {} | 13 CPDF_FormObject::~CPDF_FormObject() {} |
| 14 | 14 |
| 15 void CPDF_FormObject::Transform(const CFX_Matrix& matrix) { | 15 void CPDF_FormObject::Transform(const CFX_Matrix& matrix) { |
| 16 m_FormMatrix.Concat(matrix); | 16 m_FormMatrix.Concat(matrix); |
| 17 CalcBoundingBox(); | 17 CalcBoundingBox(); |
| 18 } | 18 } |
| 19 | 19 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 43 } | 43 } |
| 44 | 44 |
| 45 void CPDF_FormObject::CalcBoundingBox() { | 45 void CPDF_FormObject::CalcBoundingBox() { |
| 46 CFX_FloatRect form_rect = m_pForm->CalcBoundingBox(); | 46 CFX_FloatRect form_rect = m_pForm->CalcBoundingBox(); |
| 47 form_rect.Transform(&m_FormMatrix); | 47 form_rect.Transform(&m_FormMatrix); |
| 48 m_Left = form_rect.left; | 48 m_Left = form_rect.left; |
| 49 m_Bottom = form_rect.bottom; | 49 m_Bottom = form_rect.bottom; |
| 50 m_Right = form_rect.right; | 50 m_Right = form_rect.right; |
| 51 m_Top = form_rect.top; | 51 m_Top = form_rect.top; |
| 52 } | 52 } |
| OLD | NEW |