OLD | NEW |
| (Empty) |
1 // Copyright 2016 PDFium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
6 | |
7 #include "core/fpdfapi/fpdf_page/cpdf_formobject.h" | |
8 | |
9 #include "core/fpdfapi/fpdf_page/cpdf_form.h" | |
10 | |
11 CPDF_FormObject::CPDF_FormObject() {} | |
12 | |
13 CPDF_FormObject::~CPDF_FormObject() {} | |
14 | |
15 void CPDF_FormObject::Transform(const CFX_Matrix& matrix) { | |
16 m_FormMatrix.Concat(matrix); | |
17 CalcBoundingBox(); | |
18 } | |
19 | |
20 bool CPDF_FormObject::IsForm() const { | |
21 return true; | |
22 } | |
23 | |
24 CPDF_FormObject* CPDF_FormObject::AsForm() { | |
25 return this; | |
26 } | |
27 | |
28 const CPDF_FormObject* CPDF_FormObject::AsForm() const { | |
29 return this; | |
30 } | |
31 | |
32 CPDF_FormObject* CPDF_FormObject::Clone() const { | |
33 CPDF_FormObject* obj = new CPDF_FormObject; | |
34 obj->CopyData(this); | |
35 | |
36 obj->m_pForm.reset(m_pForm->Clone()); | |
37 obj->m_FormMatrix = m_FormMatrix; | |
38 return obj; | |
39 } | |
40 | |
41 CPDF_PageObject::Type CPDF_FormObject::GetType() const { | |
42 return FORM; | |
43 } | |
44 | |
45 void CPDF_FormObject::CalcBoundingBox() { | |
46 CFX_FloatRect form_rect = m_pForm->CalcBoundingBox(); | |
47 form_rect.Transform(&m_FormMatrix); | |
48 m_Left = form_rect.left; | |
49 m_Bottom = form_rect.bottom; | |
50 m_Right = form_rect.right; | |
51 m_Top = form_rect.top; | |
52 } | |
OLD | NEW |