| 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 FPDFSDK_INCLUDE_FSDK_BASEFORM_H_ | 7 #ifndef FPDFSDK_INCLUDE_FSDK_BASEFORM_H_ |
| 8 #define FPDFSDK_INCLUDE_FSDK_BASEFORM_H_ | 8 #define FPDFSDK_INCLUDE_FSDK_BASEFORM_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "core/fpdfdoc/include/ipdf_formnotify.h" | 14 #include "core/fpdfdoc/include/ipdf_formnotify.h" |
| 15 #include "core/fxcrt/include/fx_basic.h" | 15 #include "core/fxcrt/include/fx_basic.h" |
| 16 #include "core/fxge/include/fx_dib.h" | 16 #include "core/fxge/include/fx_dib.h" |
| 17 #include "fpdfsdk/include/fsdk_baseannot.h" | 17 #include "fpdfsdk/include/cpdfsdk_annot.h" |
| 18 #include "fpdfsdk/include/cpdfsdk_baannot.h" |
| 18 | 19 |
| 19 #if _FX_OS_ == _FX_ANDROID_ | 20 #if _FX_OS_ == _FX_ANDROID_ |
| 20 #include "time.h" | 21 #include "time.h" |
| 21 #else | 22 #else |
| 22 #include <ctime> | 23 #include <ctime> |
| 23 #endif | 24 #endif |
| 24 | 25 |
| 25 class CPDFSDK_Annot; | 26 class CPDFSDK_Annot; |
| 26 class CPDFSDK_Document; | 27 class CPDFSDK_Document; |
| 27 class CPDFSDK_InterForm; | 28 class CPDFSDK_InterForm; |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 const CPDFSDK_Annot* p2); | 397 const CPDFSDK_Annot* p2); |
| 397 | 398 |
| 398 TabOrder m_eTabOrder; | 399 TabOrder m_eTabOrder; |
| 399 CPDFSDK_PageView* m_pPageView; | 400 CPDFSDK_PageView* m_pPageView; |
| 400 CFX_ByteString m_sType; | 401 CFX_ByteString m_sType; |
| 401 CFX_ByteString m_sSubType; | 402 CFX_ByteString m_sSubType; |
| 402 std::vector<CPDFSDK_Annot*> m_Annots; | 403 std::vector<CPDFSDK_Annot*> m_Annots; |
| 403 }; | 404 }; |
| 404 | 405 |
| 405 #endif // FPDFSDK_INCLUDE_FSDK_BASEFORM_H_ | 406 #endif // FPDFSDK_INCLUDE_FSDK_BASEFORM_H_ |
| OLD | NEW |