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 "xfa/fxfa/parser/cxfa_containerlayoutitem.h" | 7 #include "xfa/fxfa/parser/cxfa_containerlayoutitem.h" |
8 | 8 |
9 #include "xfa/fxfa/parser/cxfa_layoutpagemgr.h" | 9 #include "xfa/fxfa/parser/cxfa_layoutpagemgr.h" |
10 #include "xfa/fxfa/parser/cxfa_layoutprocessor.h" | 10 #include "xfa/fxfa/parser/cxfa_layoutprocessor.h" |
11 #include "xfa/fxfa/parser/cxfa_measurement.h" | 11 #include "xfa/fxfa/parser/cxfa_measurement.h" |
12 | 12 |
13 CXFA_ContainerLayoutItem::CXFA_ContainerLayoutItem(CXFA_Node* pNode) | 13 CXFA_ContainerLayoutItem::CXFA_ContainerLayoutItem(CXFA_Node* pNode) |
14 : CXFA_LayoutItem(pNode, FALSE), m_pOldSubform(nullptr) {} | 14 : CXFA_LayoutItem(pNode, false), m_pOldSubform(nullptr) {} |
15 | 15 |
16 CXFA_LayoutProcessor* CXFA_ContainerLayoutItem::GetLayout() const { | 16 CXFA_LayoutProcessor* CXFA_ContainerLayoutItem::GetLayout() const { |
17 return m_pFormNode->GetDocument()->GetLayoutProcessor(); | 17 return m_pFormNode->GetDocument()->GetLayoutProcessor(); |
18 } | 18 } |
19 | 19 |
20 int32_t CXFA_ContainerLayoutItem::GetPageIndex() const { | 20 int32_t CXFA_ContainerLayoutItem::GetPageIndex() const { |
21 return m_pFormNode->GetDocument() | 21 return m_pFormNode->GetDocument() |
22 ->GetLayoutProcessor() | 22 ->GetLayoutProcessor() |
23 ->GetLayoutPageMgr() | 23 ->GetLayoutPageMgr() |
24 ->GetPageIndex(this); | 24 ->GetPageIndex(this); |
(...skipping 10 matching lines...) Expand all Loading... |
35 if (pMedium->GetEnum(XFA_ATTRIBUTE_Orientation) == | 35 if (pMedium->GetEnum(XFA_ATTRIBUTE_Orientation) == |
36 XFA_ATTRIBUTEENUM_Landscape) { | 36 XFA_ATTRIBUTEENUM_Landscape) { |
37 size = CFX_SizeF(size.y, size.x); | 37 size = CFX_SizeF(size.y, size.x); |
38 } | 38 } |
39 return size; | 39 return size; |
40 } | 40 } |
41 | 41 |
42 CXFA_Node* CXFA_ContainerLayoutItem::GetMasterPage() const { | 42 CXFA_Node* CXFA_ContainerLayoutItem::GetMasterPage() const { |
43 return m_pFormNode; | 43 return m_pFormNode; |
44 } | 44 } |
OLD | NEW |