HomeSort by relevance Sort by last modified time
    Searched refs:bUI (Results 1 - 5 of 5) sorted by null

  /external/pdfium/fpdfsdk/include/
fpdfformfill.h 140 * 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);
    [all...]
fsdk_mgr.h 234 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)
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/
Document.cpp 46 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;
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;
640 bUI = pprintparamsObj->bUI;
657 bUI = params[0];
678 pEnv->JS_docprint(bUI, nStart, nEnd, bSilent, bShrinkToFit, bPrintAsImage, bReverse, bAnnotations);
952 FX_BOOL bUI = TRUE;
    [all...]
app.cpp 768 FX_BOOL bUI = TRUE;
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/
Document.h 19 FX_BOOL bUI;

Completed in 1437 milliseconds