/external/pdfium/fpdfsdk/include/javascript/ |
report.h | 10 class Report : public CJS_EmbedObj
|
Icon.h | 10 class Icon : public CJS_EmbedObj
|
console.h | 10 class console : public CJS_EmbedObj
|
JS_Object.h | 14 class CJS_EmbedObj : public CFX_Object
17 CJS_EmbedObj(CJS_Object* pJSObject);
18 virtual ~CJS_EmbedObj();
53 operator CJS_EmbedObj* (){return m_pEmbedObj;};
55 void SetEmbedObject(CJS_EmbedObj* pObj){m_pEmbedObj = pObj;};
56 CJS_EmbedObj * GetEmbedObject(){return m_pEmbedObj;};
64 CJS_EmbedObj * m_pEmbedObj;
167 CJS_Timer(CJS_EmbedObj * pObj,CPDFDoc_Environment* pApp): m_pEmbedObj(pObj),
275 CJS_EmbedObj* m_pEmbedObj;
|
util.h | 10 class util : public CJS_EmbedObj
|
global.h | 37 class global_alternate : public CJS_EmbedObj
|
app.h | 16 class TimerObj : public CJS_EmbedObj
104 class app : public CJS_EmbedObj
|
color.h | 10 class color : public CJS_EmbedObj
|
event.h | 10 class event : public CJS_EmbedObj
|
Document.h | 12 class PrintParamsObj : public CJS_EmbedObj
82 class Document : public CJS_EmbedObj
|
Field.h | 95 class Field : public CJS_EmbedObj
|
/external/pdfium/fpdfsdk/src/javascript/ |
JS_Object.cpp | 40 /* --------------------------------- CJS_EmbedObj --------------------------------- */
42 CJS_EmbedObj::CJS_EmbedObj(CJS_Object* pJSObject) :
47 CJS_EmbedObj::~CJS_EmbedObj()
53 CPDFSDK_PageView* CJS_EmbedObj::JSGetPageView(IFXJS_Context* cc)
58 int CJS_EmbedObj::MsgBox(CPDFDoc_Environment* pApp, CPDFSDK_PageView* pPageView,FX_LPCWSTR swMsg,FX_LPCWSTR swTitle,FX_UINT nType,FX_UINT nIcon)
63 void CJS_EmbedObj::Alert(CJS_Context* pContext, FX_LPCWSTR swMsg)
68 CJS_Timer* CJS_EmbedObj::BeginTimer(CPDFDoc_Environment * pApp,FX_UINT nElapse)
76 void CJS_EmbedObj::EndTimer(CJS_Timer* pTimer) [all...] |
report.cpp | 29 Report::Report(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject)
|
console.cpp | 37 console::console(CJS_Object* pJSObject): CJS_EmbedObj(pJSObject)
|
Icon.cpp | 28 Icon::Icon(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject),
|
color.cpp | 54 color::color(CJS_Object* pJSObject): CJS_EmbedObj(pJSObject)
|
event.cpp | 51 event::event(CJS_Object * pJsObject) : CJS_EmbedObj(pJsObject)
|
app.cpp | 45 : CJS_EmbedObj(pJSObject),
121 app::app(CJS_Object * pJSObject) : CJS_EmbedObj(pJSObject) ,
|
global.cpp | 45 : CJS_EmbedObj(pJSObject),
|
util.cpp | 50 util::util(CJS_Object *pJSObject) : CJS_EmbedObj(pJSObject)
|
Document.cpp | 44 : CJS_EmbedObj(pJSObject)
158 Document::Document(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject),
[all...] |
Field.cpp | 127 Field::Field(CJS_Object* pJSObject): CJS_EmbedObj(pJSObject),
[all...] |