diff options
Diffstat (limited to 'xfa/fxfa/parser')
-rw-r--r-- | xfa/fxfa/parser/cxfa_line.cpp | 14 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_line.h | 6 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_linedata.cpp | 23 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_linedata.h | 25 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_value.cpp | 5 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_value.h | 4 |
6 files changed, 25 insertions, 52 deletions
diff --git a/xfa/fxfa/parser/cxfa_line.cpp b/xfa/fxfa/parser/cxfa_line.cpp index cc7b6ee071..d4159c3f72 100644 --- a/xfa/fxfa/parser/cxfa_line.cpp +++ b/xfa/fxfa/parser/cxfa_line.cpp @@ -8,6 +8,8 @@ #include "fxjs/xfa/cjx_line.h" #include "third_party/base/ptr_util.h" +#include "xfa/fxfa/parser/cxfa_edge.h" +#include "xfa/fxfa/parser/cxfa_node.h" namespace { @@ -39,3 +41,15 @@ CXFA_Line::CXFA_Line(CXFA_Document* doc, XFA_PacketType packet) pdfium::MakeUnique<CJX_Line>(this)) {} CXFA_Line::~CXFA_Line() {} + +XFA_AttributeEnum CXFA_Line::GetHand() { + return JSObject()->GetEnum(XFA_Attribute::Hand); +} + +bool CXFA_Line::GetSlope() { + return JSObject()->GetEnum(XFA_Attribute::Slope) == XFA_AttributeEnum::Slash; +} + +CXFA_Edge* CXFA_Line::GetEdge() { + return GetChild<CXFA_Edge>(0, XFA_Element::Edge, false); +} diff --git a/xfa/fxfa/parser/cxfa_line.h b/xfa/fxfa/parser/cxfa_line.h index 9126db0161..1b950e4641 100644 --- a/xfa/fxfa/parser/cxfa_line.h +++ b/xfa/fxfa/parser/cxfa_line.h @@ -9,10 +9,16 @@ #include "xfa/fxfa/parser/cxfa_node.h" +class CXFA_Edge; + class CXFA_Line : public CXFA_Node { public: CXFA_Line(CXFA_Document* doc, XFA_PacketType packet); ~CXFA_Line() override; + + XFA_AttributeEnum GetHand(); + bool GetSlope(); + CXFA_Edge* GetEdge(); }; #endif // XFA_FXFA_PARSER_CXFA_LINE_H_ diff --git a/xfa/fxfa/parser/cxfa_linedata.cpp b/xfa/fxfa/parser/cxfa_linedata.cpp deleted file mode 100644 index 2c191e041c..0000000000 --- a/xfa/fxfa/parser/cxfa_linedata.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2016 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#include "xfa/fxfa/parser/cxfa_linedata.h" - -#include "xfa/fxfa/parser/cxfa_edge.h" -#include "xfa/fxfa/parser/cxfa_node.h" - -XFA_AttributeEnum CXFA_LineData::GetHand() const { - return m_pNode->JSObject()->GetEnum(XFA_Attribute::Hand); -} - -bool CXFA_LineData::GetSlope() const { - return m_pNode->JSObject()->GetEnum(XFA_Attribute::Slope) == - XFA_AttributeEnum::Slash; -} - -CXFA_Edge* CXFA_LineData::GetEdge() const { - return m_pNode->GetChild<CXFA_Edge>(0, XFA_Element::Edge, false); -} diff --git a/xfa/fxfa/parser/cxfa_linedata.h b/xfa/fxfa/parser/cxfa_linedata.h deleted file mode 100644 index b97210a953..0000000000 --- a/xfa/fxfa/parser/cxfa_linedata.h +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2016 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#ifndef XFA_FXFA_PARSER_CXFA_LINEDATA_H_ -#define XFA_FXFA_PARSER_CXFA_LINEDATA_H_ - -#include "core/fxcrt/fx_system.h" -#include "xfa/fxfa/parser/cxfa_datadata.h" - -class CXFA_Edge; -class CXFA_Node; - -class CXFA_LineData : public CXFA_DataData { - public: - explicit CXFA_LineData(CXFA_Node* pNode) : CXFA_DataData(pNode) {} - - XFA_AttributeEnum GetHand() const; - bool GetSlope() const; - CXFA_Edge* GetEdge() const; -}; - -#endif // XFA_FXFA_PARSER_CXFA_LINEDATA_H_ diff --git a/xfa/fxfa/parser/cxfa_value.cpp b/xfa/fxfa/parser/cxfa_value.cpp index d2c92067af..bc5f9faeff 100644 --- a/xfa/fxfa/parser/cxfa_value.cpp +++ b/xfa/fxfa/parser/cxfa_value.cpp @@ -9,6 +9,7 @@ #include "fxjs/xfa/cjx_value.h" #include "third_party/base/ptr_util.h" #include "xfa/fxfa/parser/cxfa_arc.h" +#include "xfa/fxfa/parser/cxfa_line.h" #include "xfa/fxfa/parser/cxfa_rectangle.h" namespace { @@ -69,8 +70,8 @@ CXFA_Arc* CXFA_Value::GetArc() const { return static_cast<CXFA_Arc*>(GetNodeItem(XFA_NODEITEM_FirstChild)); } -CXFA_LineData CXFA_Value::GetLineData() const { - return CXFA_LineData(GetNodeItem(XFA_NODEITEM_FirstChild)); +CXFA_Line* CXFA_Value::GetLine() const { + return static_cast<CXFA_Line*>(GetNodeItem(XFA_NODEITEM_FirstChild)); } CXFA_Rectangle* CXFA_Value::GetRectangle() const { diff --git a/xfa/fxfa/parser/cxfa_value.h b/xfa/fxfa/parser/cxfa_value.h index 5a9e10d086..b5de965557 100644 --- a/xfa/fxfa/parser/cxfa_value.h +++ b/xfa/fxfa/parser/cxfa_value.h @@ -11,11 +11,11 @@ #include "xfa/fxfa/parser/cxfa_datadata.h" #include "xfa/fxfa/parser/cxfa_exdatadata.h" #include "xfa/fxfa/parser/cxfa_imagedata.h" -#include "xfa/fxfa/parser/cxfa_linedata.h" #include "xfa/fxfa/parser/cxfa_node.h" #include "xfa/fxfa/parser/cxfa_text.h" class CXFA_Arc; +class CXFA_Line; class CXFA_Rectangle; class CXFA_Value : public CXFA_Node { @@ -26,7 +26,7 @@ class CXFA_Value : public CXFA_Node { XFA_Element GetChildValueClassID() const; WideString GetChildValueContent() const; CXFA_Arc* GetArc() const; - CXFA_LineData GetLineData() const; + CXFA_Line* GetLine() const; CXFA_Rectangle* GetRectangle() const; CXFA_Text* GetText() const; CXFA_ExDataData GetExData() const; |