| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 CORE_FPDFDOC_INCLUDE_CPDF_INTERFORM_H_ | 7 #ifndef CORE_FPDFDOC_CPDF_INTERFORM_H_ |
| 8 #define CORE_FPDFDOC_INCLUDE_CPDF_INTERFORM_H_ | 8 #define CORE_FPDFDOC_CPDF_INTERFORM_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" | 14 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" |
| 15 #include "core/fpdfdoc/include/cpdf_defaultappearance.h" | 15 #include "core/fpdfdoc/cpdf_defaultappearance.h" |
| 16 #include "core/fxcrt/include/fx_string.h" | 16 #include "core/fxcrt/include/fx_string.h" |
| 17 #include "core/fxcrt/include/fx_system.h" | 17 #include "core/fxcrt/include/fx_system.h" |
| 18 | 18 |
| 19 class CFieldTree; | 19 class CFieldTree; |
| 20 class CFDF_Document; | 20 class CFDF_Document; |
| 21 class CPDF_Document; | 21 class CPDF_Document; |
| 22 class CPDF_Dictionary; | 22 class CPDF_Dictionary; |
| 23 class CPDF_Font; | 23 class CPDF_Font; |
| 24 class CPDF_FormControl; | 24 class CPDF_FormControl; |
| 25 class CPDF_FormField; | 25 class CPDF_FormField; |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 static bool s_bUpdateAP; | 109 static bool s_bUpdateAP; |
| 110 | 110 |
| 111 CPDF_Document* const m_pDocument; | 111 CPDF_Document* const m_pDocument; |
| 112 CPDF_Dictionary* m_pFormDict; | 112 CPDF_Dictionary* m_pFormDict; |
| 113 std::map<const CPDF_Dictionary*, CPDF_FormControl*> m_ControlMap; | 113 std::map<const CPDF_Dictionary*, CPDF_FormControl*> m_ControlMap; |
| 114 std::unique_ptr<CFieldTree> m_pFieldTree; | 114 std::unique_ptr<CFieldTree> m_pFieldTree; |
| 115 CFX_ByteString m_bsEncoding; | 115 CFX_ByteString m_bsEncoding; |
| 116 IPDF_FormNotify* m_pFormNotify; | 116 IPDF_FormNotify* m_pFormNotify; |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 #endif // CORE_FPDFDOC_INCLUDE_CPDF_INTERFORM_H_ | 119 #endif // CORE_FPDFDOC_CPDF_INTERFORM_H_ |
| OLD | NEW |