Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: core/fpdfapi/fpdf_page/cpdf_formobject.cpp

Issue 2386423004: Move core/fpdfapi/fpdf_page to core/fpdfapi/page (Closed)
Patch Set: Rebase to master Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_formobject.h ('k') | core/fpdfapi/fpdf_page/cpdf_generalstate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_formobject.h ('k') | core/fpdfapi/fpdf_page/cpdf_generalstate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698