| 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/fxcrt/include/fx_basic.h" | 13 #include "core/fxcrt/include/fx_basic.h" |
| 14 #include "core/fxcrt/include/fx_coordinates.h" | 14 #include "core/fxcrt/include/fx_coordinates.h" |
| 15 | 15 |
| 16 #ifdef PDF_ENABLE_XFA | 16 #ifdef PDF_ENABLE_XFA |
| 17 #include "xfa/include/fxfa/fxfa.h" | 17 #include "xfa/fxfa/include/fxfa.h" |
| 18 #include "xfa/include/fxfa/xfa_ffdocview.h" | 18 #include "xfa/fxfa/include/xfa_ffdocview.h" |
| 19 #include "xfa/include/fxfa/xfa_ffpageview.h" | 19 #include "xfa/fxfa/include/xfa_ffpageview.h" |
| 20 #include "xfa/include/fxfa/xfa_ffwidgethandler.h" | 20 #include "xfa/fxfa/include/xfa_ffwidgethandler.h" |
| 21 | 21 |
| 22 #define FSDK_XFAWIDGET_TYPENAME "XFAWidget" | 22 #define FSDK_XFAWIDGET_TYPENAME "XFAWidget" |
| 23 #endif // PDF_ENABLE_XFA | 23 #endif // PDF_ENABLE_XFA |
| 24 | 24 |
| 25 class CFFL_IFormFiller; | 25 class CFFL_IFormFiller; |
| 26 class CFX_RenderDevice; | 26 class CFX_RenderDevice; |
| 27 class CPDFDoc_Environment; | 27 class CPDFDoc_Environment; |
| 28 class CPDFSDK_Annot; | 28 class CPDFSDK_Annot; |
| 29 class CPDFSDK_PageView; | 29 class CPDFSDK_PageView; |
| 30 class CPDF_Annot; | 30 class CPDF_Annot; |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 private: | 467 private: |
| 468 CPDFSDK_Annot* NextAnnot(); | 468 CPDFSDK_Annot* NextAnnot(); |
| 469 CPDFSDK_Annot* PrevAnnot(); | 469 CPDFSDK_Annot* PrevAnnot(); |
| 470 | 470 |
| 471 std::vector<CPDFSDK_Annot*> m_iteratorAnnotList; | 471 std::vector<CPDFSDK_Annot*> m_iteratorAnnotList; |
| 472 const bool m_bReverse; | 472 const bool m_bReverse; |
| 473 size_t m_pos; | 473 size_t m_pos; |
| 474 }; | 474 }; |
| 475 | 475 |
| 476 #endif // FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ | 476 #endif // FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ |
| OLD | NEW |