Searched refs:hDoc (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/fpdfsdk/fpdfxfa/ |
D | cpdfxfa_docenvironment.h | 24 void SetChangeMark(CXFA_FFDoc* hDoc) override; 47 int32_t CountPages(CXFA_FFDoc* hDoc) override; 48 int32_t GetCurrentPage(CXFA_FFDoc* hDoc) override; 49 void SetCurrentPage(CXFA_FFDoc* hDoc, int32_t iCurPage) override; 50 bool IsCalculationsEnabled(CXFA_FFDoc* hDoc) override; 51 void SetCalculationsEnabled(CXFA_FFDoc* hDoc, bool bEnabled) override; 52 void GetTitle(CXFA_FFDoc* hDoc, WideString& wsTitle) override; 53 void SetTitle(CXFA_FFDoc* hDoc, const WideString& wsTitle) override; 54 void ExportData(CXFA_FFDoc* hDoc, 57 void GotoURL(CXFA_FFDoc* hDoc, const WideString& bsURL) override; [all …]
|
D | cpdfxfa_docenvironment.cpp | 49 void CPDFXFA_DocEnvironment::SetChangeMark(CXFA_FFDoc* hDoc) { in SetChangeMark() argument 50 if (hDoc == m_pContext->GetXFADoc() && m_pContext->GetFormFillEnv()) in SetChangeMark() 329 int32_t CPDFXFA_DocEnvironment::CountPages(CXFA_FFDoc* hDoc) { in CountPages() argument 330 if (hDoc == m_pContext->GetXFADoc() && m_pContext->GetFormFillEnv()) in CountPages() 335 int32_t CPDFXFA_DocEnvironment::GetCurrentPage(CXFA_FFDoc* hDoc) { in GetCurrentPage() argument 336 if (hDoc != m_pContext->GetXFADoc() || !m_pContext->GetFormFillEnv()) in GetCurrentPage() 348 void CPDFXFA_DocEnvironment::SetCurrentPage(CXFA_FFDoc* hDoc, in SetCurrentPage() argument 350 if (hDoc != m_pContext->GetXFADoc() || !m_pContext->GetFormFillEnv() || in SetCurrentPage() 362 bool CPDFXFA_DocEnvironment::IsCalculationsEnabled(CXFA_FFDoc* hDoc) { in IsCalculationsEnabled() argument 363 if (hDoc != m_pContext->GetXFADoc() || !m_pContext->GetFormFillEnv()) in IsCalculationsEnabled() [all …]
|
/external/pdfium/xfa/fxfa/ |
D | fxfa.h | 214 virtual void SetChangeMark(CXFA_FFDoc* hDoc) = 0; 232 virtual int32_t CountPages(CXFA_FFDoc* hDoc) = 0; 233 virtual int32_t GetCurrentPage(CXFA_FFDoc* hDoc) = 0; 234 virtual void SetCurrentPage(CXFA_FFDoc* hDoc, int32_t iCurPage) = 0; 235 virtual bool IsCalculationsEnabled(CXFA_FFDoc* hDoc) = 0; 236 virtual void SetCalculationsEnabled(CXFA_FFDoc* hDoc, bool bEnabled) = 0; 237 virtual void GetTitle(CXFA_FFDoc* hDoc, WideString& wsTitle) = 0; 238 virtual void SetTitle(CXFA_FFDoc* hDoc, const WideString& wsTitle) = 0; 239 virtual void ExportData(CXFA_FFDoc* hDoc, 242 virtual void GotoURL(CXFA_FFDoc* hDoc, const WideString& bsURL) = 0; [all …]
|
D | cxfa_fontmgr.cpp | 27 CXFA_FFDoc* hDoc, in GetFont() argument 38 CFGAS_PDFFontMgr* pMgr = hDoc->GetPDFFontMgr(); in GetFont() 48 pFont = m_pDefFontMgr->GetFont(hDoc->GetApp()->GetFDEFontMgr(), in GetFont() 59 pFont = m_pDefFontMgr->GetDefaultFont(hDoc->GetApp()->GetFDEFontMgr(), in GetFont()
|
D | cxfa_fontmgr.h | 29 RetainPtr<CFGAS_GEFont> GetFont(CXFA_FFDoc* hDoc,
|
/external/pdfium/fxjs/xfa/ |
D | cjx_hostpseudomodel.cpp | 94 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in calculationsEnabled() local 96 pNotify->GetDocEnvironment()->SetCalculationsEnabled(hDoc, in calculationsEnabled() 100 pValue->SetBoolean(pNotify->GetDocEnvironment()->IsCalculationsEnabled(hDoc)); in calculationsEnabled() 110 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in currentPage() local 112 pNotify->GetDocEnvironment()->SetCurrentPage(hDoc, pValue->ToInteger()); in currentPage() 115 pValue->SetInteger(pNotify->GetDocEnvironment()->GetCurrentPage(hDoc)); in currentPage() 140 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in numPages() local 145 pValue->SetInteger(pNotify->GetDocEnvironment()->CountPages(hDoc)); in numPages() 173 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in title() local 175 pNotify->GetDocEnvironment()->SetTitle(hDoc, pValue->ToWideString()); in title() [all …]
|