| 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 _DOCUMENT_H_ | 7 #ifndef _DOCUMENT_H_ |
| 8 #define _DOCUMENT_H_ | 8 #define _DOCUMENT_H_ |
| 9 | 9 |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 DECLARE_JS_CLASS(CJS_PrintParamsObj); | 35 DECLARE_JS_CLASS(CJS_PrintParamsObj); |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 | 38 |
| 39 class Icon; | 39 class Icon; |
| 40 class Field; | 40 class Field; |
| 41 | 41 |
| 42 struct IconElement | 42 struct IconElement |
| 43 { | 43 { |
| 44 » IconElement() : IconName(L""), IconStream(NULL), NextIcon(NULL){} | 44 » IconElement() : IconName(L""), NextIcon(NULL), IconStream(NULL) {} |
| 45 virtual ~IconElement() | 45 virtual ~IconElement() |
| 46 { | 46 { |
| 47 } | 47 } |
| 48 CFX_WideString IconName; | 48 CFX_WideString IconName; |
| 49 IconElement* NextIcon; | 49 IconElement* NextIcon; |
| 50 Icon* IconStream; | 50 Icon* IconStream; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 class IconTree | 53 class IconTree |
| 54 { | 54 { |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 JS_STATIC_METHOD(replacePages, Document); | 273 JS_STATIC_METHOD(replacePages, Document); |
| 274 JS_STATIC_METHOD(removeIcon, Document); | 274 JS_STATIC_METHOD(removeIcon, Document); |
| 275 JS_STATIC_METHOD(resetForm, Document); | 275 JS_STATIC_METHOD(resetForm, Document); |
| 276 JS_STATIC_METHOD(saveAs, Document); | 276 JS_STATIC_METHOD(saveAs, Document); |
| 277 JS_STATIC_METHOD(submitForm, Document); | 277 JS_STATIC_METHOD(submitForm, Document); |
| 278 JS_STATIC_METHOD(mailDoc, Document); | 278 JS_STATIC_METHOD(mailDoc, Document); |
| 279 }; | 279 }; |
| 280 | 280 |
| 281 #endif//_DOCUMENT_H_ | 281 #endif//_DOCUMENT_H_ |
| 282 | 282 |
| OLD | NEW |