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

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

Issue 1811053002: Move core/include/fpdfapi/fpdf_pageobj.h into core/fpdfapi. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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_form.cpp ('k') | core/fpdfapi/fpdf_page/cpdf_generalstate.cpp » ('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/include/cpdf_formobject.h"
8
9 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h"
10
11 CPDF_FormObject::CPDF_FormObject() : m_pForm(nullptr) {}
12
13 CPDF_FormObject::~CPDF_FormObject() {
14 delete m_pForm;
15 }
16
17 void CPDF_FormObject::Transform(const CFX_Matrix& matrix) {
18 m_FormMatrix.Concat(matrix);
19 CalcBoundingBox();
20 }
21
22 CPDF_FormObject* CPDF_FormObject::Clone() const {
23 CPDF_FormObject* obj = new CPDF_FormObject;
24 obj->CopyData(this);
25
26 obj->m_pForm = m_pForm->Clone();
27 obj->m_FormMatrix = m_FormMatrix;
28 return obj;
29 }
30
31 void CPDF_FormObject::CalcBoundingBox() {
32 CFX_FloatRect form_rect = m_pForm->CalcBoundingBox();
33 form_rect.Transform(&m_FormMatrix);
34 m_Left = form_rect.left;
35 m_Bottom = form_rect.bottom;
36 m_Right = form_rect.right;
37 m_Top = form_rect.top;
38 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_form.cpp ('k') | core/fpdfapi/fpdf_page/cpdf_generalstate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698