Searched refs:bUI (Results 1 - 5 of 5) sorted by relevance

/external/pdfium/fpdfsdk/include/
H A Dfpdfformfill.h140 * bUI - If true, the rest of the parameters are used in a compose-new-message window that is displayed to the user. If false, the cTo parameter is required and all others are optional.
151 void (*Doc_mail)(struct _IPDF_JsPlatform* pThis,void* mailData, int length,FPDF_BOOL bUI, FPDF_WIDESTRING To, FPDF_WIDESTRING Subject, FPDF_WIDESTRING CC, FPDF_WIDESTRING BCC, FPDF_WIDESTRING Msg);
163 * bUI - If true, will cause a UI to be presented to the user to obtain printing information and confirm the action.
172 void (*Doc_print)(struct _IPDF_JsPlatform* pThis, FPDF_BOOL bUI, int nStart, int nEnd, FPDF_BOOL bSilent ,FPDF_BOOL bShrinkToFit,FPDF_BOOL bPrintAsImage ,FPDF_BOOL bReverse ,FPDF_BOOL bAnnotations);
H A Dfsdk_mgr.h234 void JS_docmailForm(void* mailData, int length, FPDF_BOOL bUI,FX_LPCWSTR To, FX_LPCWSTR Subject, FX_LPCWSTR CC, FX_LPCWSTR BCC, FX_LPCWSTR Msg) argument
248 m_pInfo->m_pJsPlatform->Doc_mail(m_pInfo->m_pJsPlatform, mailData, length, bUI, pTo, pSubject,
271 void JS_docprint(FPDF_BOOL bUI , int nStart, int nEnd, FPDF_BOOL bSilent ,FPDF_BOOL bShrinkToFit,FPDF_BOOL bPrintAsImage ,FPDF_BOOL bReverse ,FPDF_BOOL bAnnotations)
275 m_pInfo->m_pJsPlatform->Doc_print(m_pInfo->m_pJsPlatform, bUI, nStart, nEnd, bSilent, bShrinkToFit, bPrintAsImage, bReverse, bAnnotations);
/external/pdfium/fpdfsdk/src/javascript/
H A DDocument.cpp46 bUI = TRUE;
574 //int CPDFSDK_Document::mailForm(FX_BOOL bUI,String cto,string ccc,string cbcc,string cSubject,string cms);
584 FX_BOOL bUI = iLength > 0 ? (FX_BOOL)params[0] : TRUE; local
606 pEnv->JS_docmailForm(textBuf.GetBuffer(), textBuf.GetLength(), bUI, (FX_LPCWSTR)cTo, (FX_LPCWSTR)cSubject, (FX_LPCWSTR)cCc, (FX_LPCWSTR)cBcc, (FX_LPCWSTR)cMsg);
618 FX_BOOL bUI = TRUE; local
640 bUI = pprintparamsObj->bUI;
657 bUI = params[0];
678 pEnv->JS_docprint(bUI, nStart, nEnd, bSilent, bShrinkToFit, bPrintAsImage, bReverse, bAnnotations);
952 FX_BOOL bUI local
[all...]
H A Dapp.cpp768 FX_BOOL bUI = TRUE; local
777 bUI = params.size()>=1?(int)params[0]:TRUE;
789 v8::Handle<v8::Value> pValue = JS_GetObjectElement(isolate,pObj, L"bUI");
790 bUI = (int)CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue));
817 pApp->JS_docmailForm(NULL, 0, bUI, (FX_LPCWSTR)cTo, (FX_LPCWSTR)cSubject, (FX_LPCWSTR)cCc, (FX_LPCWSTR)cBcc, (FX_LPCWSTR)cMsg);
/external/pdfium/fpdfsdk/include/javascript/
H A DDocument.h19 FX_BOOL bUI; member in class:PrintParamsObj

Completed in 548 milliseconds