Home
last modified time | relevance | path

Searched refs:pDocView (Results 1 – 11 of 11) sorted by relevance

/external/pdfium/xfa/fxfa/
Dcxfa_ffnotify.cpp61 CXFA_FFDocView* pDocView = m_pDoc->GetDocView(pSender->GetLayout()); in OnPageEvent() local
62 if (pDocView) in OnPageEvent()
63 pDocView->OnPageEvent(pSender, dwEvent); in OnPageEvent()
214 CXFA_FFDocView* pDocView = m_pDoc->GetDocView(); in RunScript() local
215 if (!pDocView) in RunScript()
223 std::tie(iRet, bRet) = item->ExecuteBoolScript(pDocView, script, &EventParam); in RunScript()
232 CXFA_FFDocView* pDocView = m_pDoc->GetDocView(); in ExecEventByDeepFirst() local
233 if (!pDocView) in ExecEventByDeepFirst()
235 return pDocView->ExecEventActivityByDeepFirst( in ExecEventByDeepFirst()
241 CXFA_FFDocView* pDocView = m_pDoc->GetDocView(); in AddCalcValidate() local
[all …]
Dcxfa_ffdocview.cpp407 static int32_t XFA_ProcessEvent(CXFA_FFDocView* pDocView, in XFA_ProcessEvent() argument
421 return node->ProcessCalculate(pDocView); in XFA_ProcessEvent()
423 if (pDocView->GetDoc()->GetDocEnvironment()->IsValidationsEnabled( in XFA_ProcessEvent()
424 pDocView->GetDoc())) { in XFA_ProcessEvent()
425 return node->ProcessValidate(pDocView, 0x01); in XFA_ProcessEvent()
435 return node->ExecuteScript(pDocView, calc->GetScriptIfExists(), pParam); in XFA_ProcessEvent()
441 return node->ProcessEvent(pDocView, gs_EventActivity[pParam->m_eType], in XFA_ProcessEvent()
Dcxfa_ffpageview.h23 CXFA_FFPageView(CXFA_FFDocView* pDocView, CXFA_Node* pPageArea);
Dcxfa_ffpageview.cpp112 CXFA_FFPageView::CXFA_FFPageView(CXFA_FFDocView* pDocView, CXFA_Node* pPageArea) in CXFA_FFPageView() argument
113 : CXFA_ContainerLayoutItem(pPageArea), m_pDocView(pDocView) {} in CXFA_FFPageView()
Dcxfa_ffwidgethandler.h22 explicit CXFA_FFWidgetHandler(CXFA_FFDocView* pDocView);
Dcxfa_ffwidget.h133 void SetDocView(CXFA_FFDocView* pDocView);
Dcxfa_ffwidget.cpp600 void CXFA_FFWidget::SetDocView(CXFA_FFDocView* pDocView) { in SetDocView() argument
601 m_pDocView = pDocView; in SetDocView()
Dcxfa_ffwidgethandler.cpp25 CXFA_FFWidgetHandler::CXFA_FFWidgetHandler(CXFA_FFDocView* pDocView) in CXFA_FFWidgetHandler() argument
26 : m_pDocView(pDocView) {} in CXFA_FFWidgetHandler()
/external/pdfium/fpdfsdk/
Dcpdfsdk_xfawidgethandler.cpp133 CXFA_FFDocView* pDocView = pContext->GetXFADocView(); in HitTest() local
134 if (!pDocView) in HitTest()
137 CXFA_FFWidgetHandler* pWidgetHandler = pDocView->GetWidgetHandler(); in HitTest()
351 CXFA_FFDocView* pDocView = pDoc->GetXFADocView(); in GetXFAWidgetHandler() local
352 if (!pDocView) in GetXFAWidgetHandler()
355 return pDocView->GetWidgetHandler(); in GetXFAWidgetHandler()
Dcpdfsdk_widget.cpp78 if (CXFA_FFDocView* pDocView = pContext->GetXFADocView()) { in GetMixXFAWidget() local
89 m_hMixXFAWidget = pDocView->GetWidgetByName(sName, nullptr); in GetMixXFAWidget()
102 CXFA_FFDocView* pDocView = pContext->GetXFADocView(); in GetGroupMixXFAWidget() local
103 if (!pDocView) in GetGroupMixXFAWidget()
107 return !sName.IsEmpty() ? pDocView->GetWidgetByName(sName, nullptr) : nullptr; in GetGroupMixXFAWidget()
116 CXFA_FFDocView* pDocView = pContext->GetXFADocView(); in GetXFAWidgetHandler() local
117 if (pDocView) in GetXFAWidgetHandler()
118 m_pWidgetHandler = pDocView->GetWidgetHandler(); in GetXFAWidgetHandler()
272 if (CXFA_FFDocView* pDocView = pContext->GetXFADocView()) in OnXFAAAction() local
273 pDocView->UpdateDocView(); in OnXFAAAction()
[all …]
Dfpdfformfill.cpp240 CXFA_FFDocView* pDocView = pPageView->GetDocView(); in FPDFPage_HasFormFieldAtPoint() local
241 if (!pDocView) in FPDFPage_HasFormFieldAtPoint()
244 CXFA_FFWidgetHandler* pWidgetHandler = pDocView->GetWidgetHandler(); in FPDFPage_HasFormFieldAtPoint()