OLD | NEW |
| (Empty) |
1 // Copyright 2014 PDFium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
6 | |
7 #ifndef FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ | |
8 #define FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ | |
9 | |
10 #include <vector> | |
11 | |
12 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" | |
13 #include "xfa/fwl/core/include/ifwl_adaptertimermgr.h" | |
14 | |
15 #define JS_STR_VIEWERTYPE_STANDARD L"Exchange" | |
16 #define JS_STR_LANGUANGE L"ENU" | |
17 #define JS_STR_VIEWERVARIATION L"Full" | |
18 #define JS_STR_VIEWERVERSION_XFA L"11" | |
19 | |
20 struct CFWL_TimerInfo; | |
21 | |
22 class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr { | |
23 public: | |
24 CXFA_FWLAdapterTimerMgr(CPDFDoc_Environment* pEnv) : m_pEnv(pEnv) {} | |
25 virtual FWL_ERR Start(IFWL_Timer* pTimer, | |
26 uint32_t dwElapse, | |
27 FWL_HTIMER& hTimer, | |
28 FX_BOOL bImmediately = TRUE); | |
29 virtual FWL_ERR Stop(FWL_HTIMER hTimer); | |
30 | |
31 protected: | |
32 static void TimerProc(int32_t idEvent); | |
33 | |
34 static std::vector<CFWL_TimerInfo*>* s_TimerArray; | |
35 CPDFDoc_Environment* const m_pEnv; | |
36 }; | |
37 | |
38 struct CFWL_TimerInfo { | |
39 CFWL_TimerInfo() : pTimer(nullptr) {} | |
40 CFWL_TimerInfo(int32_t event, IFWL_Timer* timer) | |
41 : idEvent(event), pTimer(timer) {} | |
42 | |
43 int32_t idEvent; | |
44 IFWL_Timer* pTimer; | |
45 }; | |
46 | |
47 #endif // FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_UTIL_H_ | |
OLD | NEW |