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_ANNOTHANDLER_H_ | 7 #ifndef FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ |
8 #define FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ | 8 #define FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "../../core/include/fxcrt/fx_basic.h" | 13 #include "core/include/fxcrt/fx_basic.h" |
14 | 14 |
15 #define FSDK_XFAWIDGET_TYPENAME "XFAWidget" | 15 #define FSDK_XFAWIDGET_TYPENAME "XFAWidget" |
16 | 16 |
17 class CFFL_IFormFiller; | 17 class CFFL_IFormFiller; |
18 class CFX_RenderDevice; | 18 class CFX_RenderDevice; |
19 class CPDFDoc_Environment; | 19 class CPDFDoc_Environment; |
20 class CPDFSDK_Annot; | 20 class CPDFSDK_Annot; |
21 class CPDFSDK_PageView; | 21 class CPDFSDK_PageView; |
22 class CPDF_Annot; | 22 class CPDF_Annot; |
23 class CPDF_Matrix; | 23 class CPDF_Matrix; |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 private: | 444 private: |
445 CPDFSDK_Annot* NextAnnot(); | 445 CPDFSDK_Annot* NextAnnot(); |
446 CPDFSDK_Annot* PrevAnnot(); | 446 CPDFSDK_Annot* PrevAnnot(); |
447 | 447 |
448 std::vector<CPDFSDK_Annot*> m_iteratorAnnotList; | 448 std::vector<CPDFSDK_Annot*> m_iteratorAnnotList; |
449 const bool m_bReverse; | 449 const bool m_bReverse; |
450 size_t m_pos; | 450 size_t m_pos; |
451 }; | 451 }; |
452 | 452 |
453 #endif // FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ | 453 #endif // FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ |
OLD | NEW |