Lines Matching refs:pNotify
76 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in appType() local
77 if (!pNotify) in appType()
90 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in calculationsEnabled() local
91 if (!pNotify) in calculationsEnabled()
94 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in calculationsEnabled()
96 pNotify->GetDocEnvironment()->SetCalculationsEnabled(hDoc, in calculationsEnabled()
100 pValue->SetBoolean(pNotify->GetDocEnvironment()->IsCalculationsEnabled(hDoc)); in calculationsEnabled()
106 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in currentPage() local
107 if (!pNotify) in currentPage()
110 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in currentPage()
112 pNotify->GetDocEnvironment()->SetCurrentPage(hDoc, pValue->ToInteger()); in currentPage()
115 pValue->SetInteger(pNotify->GetDocEnvironment()->GetCurrentPage(hDoc)); in currentPage()
121 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in language() local
122 if (!pNotify) in language()
130 pNotify->GetAppProvider()->GetLanguage().UTF8Encode().AsStringView()); in language()
136 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in numPages() local
137 if (!pNotify) in numPages()
140 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in numPages()
145 pValue->SetInteger(pNotify->GetDocEnvironment()->CountPages(hDoc)); in numPages()
151 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in platform() local
152 if (!pNotify) in platform()
160 pNotify->GetAppProvider()->GetPlatform().UTF8Encode().AsStringView()); in platform()
169 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in title() local
170 if (!pNotify) in title()
173 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in title()
175 pNotify->GetDocEnvironment()->SetTitle(hDoc, pValue->ToWideString()); in title()
180 pNotify->GetDocEnvironment()->GetTitle(hDoc, wsTitle); in title()
187 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in validationsEnabled() local
188 if (!pNotify) in validationsEnabled()
191 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in validationsEnabled()
193 pNotify->GetDocEnvironment()->SetValidationsEnabled(hDoc, in validationsEnabled()
198 bool bEnabled = pNotify->GetDocEnvironment()->IsValidationsEnabled(hDoc); in validationsEnabled()
208 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in variation() local
209 if (!pNotify) in variation()
222 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in version() local
223 if (!pNotify) in version()
236 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in name() local
237 if (!pNotify) in name()
245 pNotify->GetAppProvider()->GetAppName().UTF8Encode().AsStringView()); in name()
257 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in gotoURL() local
258 if (!pNotify) in gotoURL()
261 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in gotoURL()
263 pNotify->GetDocEnvironment()->GotoURL(hDoc, URL); in gotoURL()
276 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in openList() local
277 if (!pNotify) in openList()
309 pNotify->GetHWidget(pDocLayout->GetLayoutItem(pNode)); in openList()
313 pNotify->GetDocEnvironment()->SetFocusWidget(pNotify->GetHDOC(), hWidget); in openList()
314 pNotify->OpenDropDownList(hWidget); in openList()
324 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in response() local
325 if (!pNotify) in response()
345 pNotify->GetAppProvider()->Response(question, title, defaultAnswer, mark); in response()
361 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in resetData() local
362 if (!pNotify) in resetData()
370 pNotify->ResetData(); in resetData()
397 pNotify->ResetData(pNode->GetWidgetAcc()); in resetData()
400 pNotify->ResetData(); in resetData()
414 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in beep() local
415 if (!pNotify) in beep()
422 pNotify->GetAppProvider()->Beep(dwType); in beep()
435 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in setFocus() local
436 if (!pNotify) in setFocus()
464 pNotify->SetFocusWidgetNode(pNode); in setFocus()
471 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in getFocus() local
472 if (!pNotify) in getFocus()
475 CXFA_Node* pNode = pNotify->GetFocusWidgetNode(); in getFocus()
496 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in messageBox() local
497 if (!pNotify) in messageBox()
522 int32_t iValue = pNotify->GetAppProvider()->MsgBox(message, title, in messageBox()
542 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in print() local
543 if (!pNotify) in print()
563 pNotify->GetDocEnvironment()->Print(pNotify->GetHDOC(), nStartPage, nEndPage, in print()
583 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in exportData() local
584 if (!pNotify) in exportData()
595 pNotify->GetDocEnvironment()->ExportData(pNotify->GetHDOC(), filePath, XDP); in exportData()
602 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in pageUp() local
603 if (!pNotify) in pageUp()
606 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in pageUp()
607 int32_t nCurPage = pNotify->GetDocEnvironment()->GetCurrentPage(hDoc); in pageUp()
613 pNotify->GetDocEnvironment()->SetCurrentPage(hDoc, nNewPage); in pageUp()
620 CXFA_FFNotify* pNotify = GetDocument()->GetNotify(); in pageDown() local
621 if (!pNotify) in pageDown()
624 CXFA_FFDoc* hDoc = pNotify->GetHDOC(); in pageDown()
625 int32_t nCurPage = pNotify->GetDocEnvironment()->GetCurrentPage(hDoc); in pageDown()
626 int32_t nPageCount = pNotify->GetDocEnvironment()->CountPages(hDoc); in pageDown()
636 pNotify->GetDocEnvironment()->SetCurrentPage(hDoc, nNewPage); in pageDown()