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

Side by Side Diff: xfa/fxfa/parser/cxfa_containerlayoutitem.cpp

Issue 2170473002: Rename xfa_doclayout and xfa_document_layout_imp files. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa_parser_I
Patch Set: Review fixes Created 4 years, 5 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 | « xfa/fxfa/parser/cxfa_containerlayoutitem.h ('k') | xfa/fxfa/parser/cxfa_contentlayoutitem.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 "xfa/fxfa/parser/cxfa_containerlayoutitem.h"
8
9 #include "xfa/fxfa/parser/cxfa_layoutprocessor.h"
10 #include "xfa/fxfa/parser/cxfa_measurement.h"
11 #include "xfa/fxfa/parser/xfa_layout_pagemgr_new.h"
12
13 CXFA_ContainerLayoutItem::CXFA_ContainerLayoutItem(CXFA_Node* pNode)
14 : CXFA_LayoutItem(pNode, FALSE), m_pOldSubform(nullptr) {}
15
16 CXFA_LayoutProcessor* CXFA_ContainerLayoutItem::GetLayout() const {
17 return m_pFormNode->GetDocument()->GetLayoutProcessor();
18 }
19
20 int32_t CXFA_ContainerLayoutItem::GetPageIndex() const {
21 return m_pFormNode->GetDocument()
22 ->GetLayoutProcessor()
23 ->GetLayoutPageMgr()
24 ->GetPageIndex(this);
25 }
26
27 CFX_SizeF CXFA_ContainerLayoutItem::GetPageSize() const {
28 CFX_SizeF size;
29 CXFA_Node* pMedium = m_pFormNode->GetFirstChildByClass(XFA_Element::Medium);
30 if (!pMedium)
31 return size;
32
33 size = CFX_SizeF(pMedium->GetMeasure(XFA_ATTRIBUTE_Short).ToUnit(XFA_UNIT_Pt),
34 pMedium->GetMeasure(XFA_ATTRIBUTE_Long).ToUnit(XFA_UNIT_Pt));
35 if (pMedium->GetEnum(XFA_ATTRIBUTE_Orientation) ==
36 XFA_ATTRIBUTEENUM_Landscape) {
37 size = CFX_SizeF(size.y, size.x);
38 }
39 return size;
40 }
41
42 CXFA_Node* CXFA_ContainerLayoutItem::GetMasterPage() const {
43 return m_pFormNode;
44 }
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/cxfa_containerlayoutitem.h ('k') | xfa/fxfa/parser/cxfa_contentlayoutitem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698