• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_line.h"
8 
9 #include "xfa/fxfa/parser/xfa_object.h"
10 
GetHand()11 int32_t CXFA_Line::GetHand() {
12   return m_pNode->GetEnum(XFA_ATTRIBUTE_Hand);
13 }
14 
GetSlope()15 bool CXFA_Line::GetSlope() {
16   return m_pNode->GetEnum(XFA_ATTRIBUTE_Slope) == XFA_ATTRIBUTEENUM_Slash;
17 }
18 
GetEdge()19 CXFA_Edge CXFA_Line::GetEdge() {
20   return CXFA_Edge(m_pNode->GetChild(0, XFA_Element::Edge));
21 }
22