Searched refs:hDoc (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/fpdfsdk/fpdfxfa/ |
D | cpdfxfa_docenvironment.h | 24 void SetChangeMark(CXFA_FFDoc* hDoc) override; 38 int32_t CountPages(CXFA_FFDoc* hDoc) override; 39 int32_t GetCurrentPage(CXFA_FFDoc* hDoc) override; 40 void SetCurrentPage(CXFA_FFDoc* hDoc, int32_t iCurPage) override; 41 bool IsCalculationsEnabled(CXFA_FFDoc* hDoc) override; 42 void SetCalculationsEnabled(CXFA_FFDoc* hDoc, bool bEnabled) override; 43 void GetTitle(CXFA_FFDoc* hDoc, WideString& wsTitle) override; 44 void SetTitle(CXFA_FFDoc* hDoc, const WideString& wsTitle) override; 45 void ExportData(CXFA_FFDoc* hDoc, 48 void GotoURL(CXFA_FFDoc* hDoc, const WideString& bsURL) override; [all …]
|
D | cpdfxfa_docenvironment.cpp | 53 void CPDFXFA_DocEnvironment::SetChangeMark(CXFA_FFDoc* hDoc) { in SetChangeMark() argument 54 if (hDoc == m_pContext->GetXFADoc() && m_pContext->GetFormFillEnv()) in SetChangeMark() 345 int32_t CPDFXFA_DocEnvironment::CountPages(CXFA_FFDoc* hDoc) { in CountPages() argument 346 if (hDoc == m_pContext->GetXFADoc() && m_pContext->GetFormFillEnv()) in CountPages() 351 int32_t CPDFXFA_DocEnvironment::GetCurrentPage(CXFA_FFDoc* hDoc) { in GetCurrentPage() argument 352 if (hDoc != m_pContext->GetXFADoc() || !m_pContext->GetFormFillEnv()) in GetCurrentPage() 362 void CPDFXFA_DocEnvironment::SetCurrentPage(CXFA_FFDoc* hDoc, in SetCurrentPage() argument 364 if (hDoc != m_pContext->GetXFADoc() || !m_pContext->GetFormFillEnv() || in SetCurrentPage() 377 bool CPDFXFA_DocEnvironment::IsCalculationsEnabled(CXFA_FFDoc* hDoc) { in IsCalculationsEnabled() argument 378 if (hDoc != m_pContext->GetXFADoc() || !m_pContext->GetFormFillEnv()) in IsCalculationsEnabled() [all …]
|
/external/pdfium/xfa/fxfa/ |
D | fxfa.h | 200 virtual void SetChangeMark(CXFA_FFDoc* hDoc) = 0; 220 virtual int32_t CountPages(CXFA_FFDoc* hDoc) = 0; 221 virtual int32_t GetCurrentPage(CXFA_FFDoc* hDoc) = 0; 222 virtual void SetCurrentPage(CXFA_FFDoc* hDoc, int32_t iCurPage) = 0; 223 virtual bool IsCalculationsEnabled(CXFA_FFDoc* hDoc) = 0; 224 virtual void SetCalculationsEnabled(CXFA_FFDoc* hDoc, bool bEnabled) = 0; 225 virtual void GetTitle(CXFA_FFDoc* hDoc, WideString& wsTitle) = 0; 226 virtual void SetTitle(CXFA_FFDoc* hDoc, const WideString& wsTitle) = 0; 227 virtual void ExportData(CXFA_FFDoc* hDoc, 230 virtual void GotoURL(CXFA_FFDoc* hDoc, const WideString& bsURL) = 0; [all …]
|
D | cxfa_fontmgr.cpp | 27 RetainPtr<CFGAS_GEFont> CXFA_FontMgr::GetFont(CXFA_FFDoc* hDoc, in GetFont() argument 37 CFGAS_PDFFontMgr* pMgr = hDoc->GetPDFFontMgr(); in GetFont() 45 pFont = CFGAS_DefaultFontManager::GetFont(hDoc->GetApp()->GetFDEFontMgr(), in GetFont() 55 hDoc->GetApp()->GetFDEFontMgr(), wsFontFamily, dwFontStyles); in GetFont() 59 hDoc->GetPDFDoc(), hDoc->GetApp()->GetFDEFontMgr(), in GetFont()
|
D | cxfa_fontmgr.h | 22 RetainPtr<CFGAS_GEFont> GetFont(CXFA_FFDoc* hDoc,
|
D | cxfa_ffnotify.cpp | 252 CXFA_FFDoc* hDoc = GetHDOC(); in OpenDropDownList() local 253 hDoc->GetDocEnvironment()->SetFocusWidget(hDoc, hWidget); in OpenDropDownList()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_hostpseudomodel.cpp | 100 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in calculationsEnabled() local 102 hDoc->GetDocEnvironment()->SetCalculationsEnabled(hDoc, in calculationsEnabled() 106 pValue->SetBoolean(hDoc->GetDocEnvironment()->IsCalculationsEnabled(hDoc)); in calculationsEnabled() 116 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in currentPage() local 118 hDoc->GetDocEnvironment()->SetCurrentPage(hDoc, pValue->ToInteger()); in currentPage() 121 pValue->SetInteger(hDoc->GetDocEnvironment()->GetCurrentPage(hDoc)); in currentPage() 146 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in numPages() local 151 pValue->SetInteger(hDoc->GetDocEnvironment()->CountPages(hDoc)); in numPages() 179 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in title() local 181 hDoc->GetDocEnvironment()->SetTitle(hDoc, pValue->ToWideString()); in title() [all …]
|
D | cfxjse_engine.cpp | 209 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in GlobalPropertySetter() local 211 static_cast<CJS_Runtime*>(hDoc->GetDocEnvironment()->GetIJSRuntime(hDoc)); in GlobalPropertySetter() 278 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in GlobalPropertyGetter() local 280 static_cast<CJS_Runtime*>(hDoc->GetDocEnvironment()->GetIJSRuntime(hDoc)); in GlobalPropertyGetter() 374 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in NormalPropertyGetter() local 376 static_cast<CJS_Runtime*>(hDoc->GetDocEnvironment()->GetIJSRuntime(hDoc)); in NormalPropertyGetter()
|