diff options
Diffstat (limited to 'fpdfsdk/javascript/event.h')
-rw-r--r-- | fpdfsdk/javascript/event.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/fpdfsdk/javascript/event.h b/fpdfsdk/javascript/event.h index ad19e7866f..1d5c262bbb 100644 --- a/fpdfsdk/javascript/event.h +++ b/fpdfsdk/javascript/event.h @@ -80,7 +80,18 @@ class CJS_Event : public CJS_Object { explicit CJS_Event(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} ~CJS_Event() override {} - DECLARE_JS_CLASS(); + static const char* g_pClassName; + static int g_nObjDefnID; + static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); + static JSConstSpec ConstSpecs[]; + static void DefineConsts(CFXJS_Engine* pEngine); + static void JSConstructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj); + static void JSDestructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj); + static void DefineProps(CFXJS_Engine* pEngine); + static void DefineMethods(CFXJS_Engine* pEngine); + static JSPropertySpec PropertySpecs[]; + static JSMethodSpec MethodSpecs[]; + JS_STATIC_PROP(change, change, event); JS_STATIC_PROP(changeEx, change_ex, event); JS_STATIC_PROP(commitKey, commit_key, event); |