OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #ifndef _EVENT_H_ | 7 #ifndef FPDFSDK_INCLUDE_JAVASCRIPT_EVENT_H_ |
8 #define _EVENT_H_ | 8 #define FPDFSDK_INCLUDE_JAVASCRIPT_EVENT_H_ |
9 | 9 |
10 #include "JS_Define.h" | 10 #include "JS_Define.h" |
11 | 11 |
12 class event : public CJS_EmbedObj | 12 class event : public CJS_EmbedObj |
13 { | 13 { |
14 public: | 14 public: |
15 event(CJS_Object * pJSObject); | 15 event(CJS_Object * pJSObject); |
16 virtual ~event(void); | 16 virtual ~event(void); |
17 | 17 |
18 public: | 18 public: |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 JS_STATIC_PROP(selStart, event); | 62 JS_STATIC_PROP(selStart, event); |
63 JS_STATIC_PROP(shift, event); | 63 JS_STATIC_PROP(shift, event); |
64 JS_STATIC_PROP(source, event); | 64 JS_STATIC_PROP(source, event); |
65 JS_STATIC_PROP(target, event); | 65 JS_STATIC_PROP(target, event); |
66 JS_STATIC_PROP(targetName, event); | 66 JS_STATIC_PROP(targetName, event); |
67 JS_STATIC_PROP(type, event); | 67 JS_STATIC_PROP(type, event); |
68 JS_STATIC_PROP(value, event); | 68 JS_STATIC_PROP(value, event); |
69 JS_STATIC_PROP(willCommit, event); | 69 JS_STATIC_PROP(willCommit, event); |
70 }; | 70 }; |
71 | 71 |
72 #endif //_EVENT_H_ | 72 #endif // FPDFSDK_INCLUDE_JAVASCRIPT_EVENT_H_ |
OLD | NEW |