From c0858354f1e9ce1246b8af9ef2cd11623a1132dd Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Mon, 30 Oct 2017 17:49:52 +0000 Subject: Rename app to cjs_app This CL renames the app.{cpp|h} files to cjs_app.{cpp|h}. The CJS_TimerObj and GlobalTimer objects have been moved to their own files. Change-Id: I7a4063b212f1051b1517ec8902a0ee215854feaf Reviewed-on: https://pdfium-review.googlesource.com/17040 Commit-Queue: dsinclair Reviewed-by: Tom Sepez --- fpdfsdk/javascript/app.h | 193 ----------------------------------------------- 1 file changed, 193 deletions(-) delete mode 100644 fpdfsdk/javascript/app.h (limited to 'fpdfsdk/javascript/app.h') diff --git a/fpdfsdk/javascript/app.h b/fpdfsdk/javascript/app.h deleted file mode 100644 index ea95398c80..0000000000 --- a/fpdfsdk/javascript/app.h +++ /dev/null @@ -1,193 +0,0 @@ -// Copyright 2014 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#ifndef FPDFSDK_JAVASCRIPT_APP_H_ -#define FPDFSDK_JAVASCRIPT_APP_H_ - -#include -#include -#include - -#include "fpdfsdk/javascript/JS_Define.h" - -class CJS_Runtime; -class GlobalTimer; - -class TimerObj : public CJS_EmbedObj { - public: - explicit TimerObj(CJS_Object* pJSObject); - ~TimerObj() override; - - void SetTimer(GlobalTimer* pTimer); - int GetTimerID() const { return m_nTimerID; } - - private: - int m_nTimerID; // Weak reference to GlobalTimer through global map. -}; - -class CJS_TimerObj : public CJS_Object { - public: - static int GetObjDefnID(); - static void DefineJSObjects(CFXJS_Engine* pEngine); - - explicit CJS_TimerObj(v8::Local pObject) : CJS_Object(pObject) {} - ~CJS_TimerObj() override {} - - private: - static int ObjDefnID; -}; - -class app : public CJS_EmbedObj { - public: - explicit app(CJS_Object* pJSObject); - ~app() override; - - CJS_Return get_active_docs(CJS_Runtime* pRuntime); - CJS_Return set_active_docs(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_calculate(CJS_Runtime* pRuntime); - CJS_Return set_calculate(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_forms_version(CJS_Runtime* pRuntime); - CJS_Return set_forms_version(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_fs(CJS_Runtime* pRuntime); - CJS_Return set_fs(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_fullscreen(CJS_Runtime* pRuntime); - CJS_Return set_fullscreen(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_language(CJS_Runtime* pRuntime); - CJS_Return set_language(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_media(CJS_Runtime* pRuntime); - CJS_Return set_media(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_platform(CJS_Runtime* pRuntime); - CJS_Return set_platform(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_runtime_highlight(CJS_Runtime* pRuntime); - CJS_Return set_runtime_highlight(CJS_Runtime* pRuntime, - v8::Local vp); - - CJS_Return get_viewer_type(CJS_Runtime* pRuntime); - CJS_Return set_viewer_type(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return get_viewer_variation(CJS_Runtime* pRuntime); - CJS_Return set_viewer_variation(CJS_Runtime* pRuntime, - v8::Local vp); - - CJS_Return get_viewer_version(CJS_Runtime* pRuntime); - CJS_Return set_viewer_version(CJS_Runtime* pRuntime, v8::Local vp); - - CJS_Return alert(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return beep(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return browseForDoc(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return clearInterval(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return clearTimeOut(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return execDialog(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return execMenuItem(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return findComponent(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return goBack(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return goForward(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return launchURL(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return mailMsg(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return newFDF(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return newDoc(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return openDoc(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return openFDF(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return popUpMenuEx(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return popUpMenu(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return response(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return setInterval(CJS_Runtime* pRuntime, - const std::vector>& params); - CJS_Return setTimeOut(CJS_Runtime* pRuntime, - const std::vector>& params); - - void TimerProc(GlobalTimer* pTimer); - void CancelProc(GlobalTimer* pTimer); - - static WideString SysPathToPDFPath(const WideString& sOldPath); - - private: - // CJS_EmbedObj - void RunJsScript(CJS_Runtime* pRuntime, const WideString& wsScript); - - void ClearTimerCommon(CJS_Runtime* pRuntime, v8::Local param); - - bool m_bCalculate; - bool m_bRuntimeHighLight; - std::set> m_Timers; -}; - -class CJS_App : public CJS_Object { - public: - static void DefineJSObjects(CFXJS_Engine* pEngine); - - explicit CJS_App(v8::Local pObject) : CJS_Object(pObject) {} - ~CJS_App() override {} - - JS_STATIC_PROP(activeDocs, active_docs, app); - JS_STATIC_PROP(calculate, calculate, app); - JS_STATIC_PROP(formsVersion, forms_version, app); - JS_STATIC_PROP(fs, fs, app); - JS_STATIC_PROP(fullscreen, fullscreen, app); - JS_STATIC_PROP(language, language, app); - JS_STATIC_PROP(media, media, app); - JS_STATIC_PROP(platform, platform, app); - JS_STATIC_PROP(runtimeHighlight, runtime_highlight, app); - JS_STATIC_PROP(viewerType, viewer_type, app); - JS_STATIC_PROP(viewerVariation, viewer_variation, app); - JS_STATIC_PROP(viewerVersion, viewer_version, app); - - JS_STATIC_METHOD(alert, app); - JS_STATIC_METHOD(beep, app); - JS_STATIC_METHOD(browseForDoc, app); - JS_STATIC_METHOD(clearInterval, app); - JS_STATIC_METHOD(clearTimeOut, app); - JS_STATIC_METHOD(execDialog, app); - JS_STATIC_METHOD(execMenuItem, app); - JS_STATIC_METHOD(findComponent, app); - JS_STATIC_METHOD(goBack, app); - JS_STATIC_METHOD(goForward, app); - JS_STATIC_METHOD(launchURL, app); - JS_STATIC_METHOD(mailMsg, app); - JS_STATIC_METHOD(newFDF, app); - JS_STATIC_METHOD(newDoc, app); - JS_STATIC_METHOD(openDoc, app); - JS_STATIC_METHOD(openFDF, app); - JS_STATIC_METHOD(popUpMenuEx, app); - JS_STATIC_METHOD(popUpMenu, app); - JS_STATIC_METHOD(response, app); - JS_STATIC_METHOD(setInterval, app); - JS_STATIC_METHOD(setTimeOut, app); - - private: - static int ObjDefnID; - static const JSPropertySpec PropertySpecs[]; - static const JSMethodSpec MethodSpecs[]; -}; - -#endif // FPDFSDK_JAVASCRIPT_APP_H_ -- cgit v1.2.3