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

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

Issue 1861353002: Split fxfa_objectacc.h into pieces. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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_value.h ('k') | xfa/fxfa/parser/cxfa_widgetdata.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_value.h"
8
9 #include "xfa/fxfa/parser/xfa_object.h"
10
11 XFA_ELEMENT CXFA_Value::GetChildValueClassID() {
12 if (!m_pNode)
13 return XFA_ELEMENT_UNKNOWN;
14 if (CXFA_Node* pNode = m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild))
15 return pNode->GetClassID();
16 return XFA_ELEMENT_UNKNOWN;
17 }
18
19 FX_BOOL CXFA_Value::GetChildValueContent(CFX_WideString& wsContent) {
20 if (!m_pNode)
21 return FALSE;
22 if (CXFA_Node* pNode = m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild))
23 return pNode->TryContent(wsContent);
24 return FALSE;
25 }
26
27 CXFA_Arc CXFA_Value::GetArc() {
28 return CXFA_Arc(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)
29 : nullptr);
30 }
31
32 CXFA_Line CXFA_Value::GetLine() {
33 return CXFA_Line(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)
34 : nullptr);
35 }
36
37 CXFA_Rectangle CXFA_Value::GetRectangle() {
38 return CXFA_Rectangle(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)
39 : nullptr);
40 }
41
42 CXFA_Text CXFA_Value::GetText() {
43 return CXFA_Text(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)
44 : nullptr);
45 }
46
47 CXFA_ExData CXFA_Value::GetExData() {
48 return CXFA_ExData(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)
49 : nullptr);
50 }
51
52 CXFA_Image CXFA_Value::GetImage() {
53 return CXFA_Image(
54 m_pNode ? (m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)) : nullptr,
55 TRUE);
56 }
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/cxfa_value.h ('k') | xfa/fxfa/parser/cxfa_widgetdata.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698