diff options
Diffstat (limited to 'xfa/fxfa/parser')
-rw-r--r-- | xfa/fxfa/parser/cxfa_linedata.cpp (renamed from xfa/fxfa/parser/cxfa_line.cpp) | 8 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_linedata.h (renamed from xfa/fxfa/parser/cxfa_line.h) | 10 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_value.cpp | 6 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_value.h | 4 |
4 files changed, 14 insertions, 14 deletions
diff --git a/xfa/fxfa/parser/cxfa_line.cpp b/xfa/fxfa/parser/cxfa_linedata.cpp index 5216bd4622..a6f4e4c6cf 100644 --- a/xfa/fxfa/parser/cxfa_line.cpp +++ b/xfa/fxfa/parser/cxfa_linedata.cpp @@ -4,19 +4,19 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#include "xfa/fxfa/parser/cxfa_line.h" +#include "xfa/fxfa/parser/cxfa_linedata.h" #include "xfa/fxfa/parser/cxfa_node.h" -int32_t CXFA_Line::GetHand() { +int32_t CXFA_LineData::GetHand() { return m_pNode->JSNode()->GetEnum(XFA_ATTRIBUTE_Hand); } -bool CXFA_Line::GetSlope() { +bool CXFA_LineData::GetSlope() { return m_pNode->JSNode()->GetEnum(XFA_ATTRIBUTE_Slope) == XFA_ATTRIBUTEENUM_Slash; } -CXFA_EdgeData CXFA_Line::GetEdgeData() { +CXFA_EdgeData CXFA_LineData::GetEdgeData() { return CXFA_EdgeData(m_pNode->GetChild(0, XFA_Element::Edge, false)); } diff --git a/xfa/fxfa/parser/cxfa_line.h b/xfa/fxfa/parser/cxfa_linedata.h index b167e39810..596bef76f0 100644 --- a/xfa/fxfa/parser/cxfa_line.h +++ b/xfa/fxfa/parser/cxfa_linedata.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef XFA_FXFA_PARSER_CXFA_LINE_H_ -#define XFA_FXFA_PARSER_CXFA_LINE_H_ +#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_data.h" @@ -13,13 +13,13 @@ class CXFA_Node; -class CXFA_Line : public CXFA_Data { +class CXFA_LineData : public CXFA_Data { public: - explicit CXFA_Line(CXFA_Node* pNode) : CXFA_Data(pNode) {} + explicit CXFA_LineData(CXFA_Node* pNode) : CXFA_Data(pNode) {} int32_t GetHand(); bool GetSlope(); CXFA_EdgeData GetEdgeData(); }; -#endif // XFA_FXFA_PARSER_CXFA_LINE_H_ +#endif // XFA_FXFA_PARSER_CXFA_LINEDATA_H_ diff --git a/xfa/fxfa/parser/cxfa_value.cpp b/xfa/fxfa/parser/cxfa_value.cpp index 5b812a9f7f..bad1681031 100644 --- a/xfa/fxfa/parser/cxfa_value.cpp +++ b/xfa/fxfa/parser/cxfa_value.cpp @@ -29,9 +29,9 @@ CXFA_ArcData CXFA_Value::GetArcData() { : nullptr); } -CXFA_Line CXFA_Value::GetLine() { - return CXFA_Line(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild) - : nullptr); +CXFA_LineData CXFA_Value::GetLineData() { + return CXFA_LineData(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild) + : nullptr); } CXFA_Rectangle CXFA_Value::GetRectangle() { diff --git a/xfa/fxfa/parser/cxfa_value.h b/xfa/fxfa/parser/cxfa_value.h index 65a9c36b00..d13d90fe8a 100644 --- a/xfa/fxfa/parser/cxfa_value.h +++ b/xfa/fxfa/parser/cxfa_value.h @@ -12,7 +12,7 @@ #include "xfa/fxfa/parser/cxfa_data.h" #include "xfa/fxfa/parser/cxfa_exdata.h" #include "xfa/fxfa/parser/cxfa_imagedata.h" -#include "xfa/fxfa/parser/cxfa_line.h" +#include "xfa/fxfa/parser/cxfa_linedata.h" #include "xfa/fxfa/parser/cxfa_rectangle.h" #include "xfa/fxfa/parser/cxfa_text.h" @@ -25,7 +25,7 @@ class CXFA_Value : public CXFA_Data { XFA_Element GetChildValueClassID(); bool GetChildValueContent(WideString& wsContent); CXFA_ArcData GetArcData(); - CXFA_Line GetLine(); + CXFA_LineData GetLineData(); CXFA_Rectangle GetRectangle(); CXFA_Text GetText(); CXFA_ExData GetExData(); |