• Home
  • Raw
  • Download

Lines Matching refs:m_pJsPlatform

68   if (!m_pInfo || !m_pInfo->m_pJsPlatform ||  in JS_appAlert()
69 !m_pInfo->m_pJsPlatform->app_alert) { in JS_appAlert()
74 return m_pInfo->m_pJsPlatform->app_alert( in JS_appAlert()
75 m_pInfo->m_pJsPlatform, AsFPDFWideString(&bsMsg), in JS_appAlert()
86 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_appResponse()
87 !m_pInfo->m_pJsPlatform->app_response) { in JS_appResponse()
94 return m_pInfo->m_pJsPlatform->app_response( in JS_appResponse()
95 m_pInfo->m_pJsPlatform, AsFPDFWideString(&bsQuestion), in JS_appResponse()
101 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_appBeep()
102 !m_pInfo->m_pJsPlatform->app_beep) { in JS_appBeep()
105 m_pInfo->m_pJsPlatform->app_beep(m_pInfo->m_pJsPlatform, nType); in JS_appBeep()
109 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_fieldBrowse()
110 !m_pInfo->m_pJsPlatform->Field_browse) { in JS_fieldBrowse()
114 m_pInfo->m_pJsPlatform->Field_browse(m_pInfo->m_pJsPlatform, nullptr, 0); in JS_fieldBrowse()
119 const int nActualLen = m_pInfo->m_pJsPlatform->Field_browse( in JS_fieldBrowse()
120 m_pInfo->m_pJsPlatform, pBuff.data(), nRequiredLen); in JS_fieldBrowse()
129 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_docGetFilePath()
130 !m_pInfo->m_pJsPlatform->Doc_getFilePath) { in JS_docGetFilePath()
133 const int nRequiredLen = m_pInfo->m_pJsPlatform->Doc_getFilePath( in JS_docGetFilePath()
134 m_pInfo->m_pJsPlatform, nullptr, 0); in JS_docGetFilePath()
139 const int nActualLen = m_pInfo->m_pJsPlatform->Doc_getFilePath( in JS_docGetFilePath()
140 m_pInfo->m_pJsPlatform, pBuff.data(), nRequiredLen); in JS_docGetFilePath()
151 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_docSubmitForm()
152 !m_pInfo->m_pJsPlatform->Doc_submitForm) { in JS_docSubmitForm()
156 m_pInfo->m_pJsPlatform->Doc_submitForm(m_pInfo->m_pJsPlatform, formData, in JS_docSubmitForm()
169 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_docmailForm()
170 !m_pInfo->m_pJsPlatform->Doc_mail) { in JS_docmailForm()
178 m_pInfo->m_pJsPlatform->Doc_mail( in JS_docmailForm()
179 m_pInfo->m_pJsPlatform, mailData, length, bUI, AsFPDFWideString(&bsTo), in JS_docmailForm()
192 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_docprint()
193 !m_pInfo->m_pJsPlatform->Doc_print) { in JS_docprint()
196 m_pInfo->m_pJsPlatform->Doc_print(m_pInfo->m_pJsPlatform, bUI, nStart, nEnd, in JS_docprint()
202 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_docgotoPage()
203 !m_pInfo->m_pJsPlatform->Doc_gotoPage) { in JS_docgotoPage()
206 m_pInfo->m_pJsPlatform->Doc_gotoPage(m_pInfo->m_pJsPlatform, nPageNum); in JS_docgotoPage()
413 if (m_pInfo && m_pInfo->m_pJsPlatform && m_pInfo->m_pJsPlatform->app_alert) { in Alert()
414 m_pInfo->m_pJsPlatform->app_alert(m_pInfo->m_pJsPlatform, Msg, Title, Type, in Alert()