| 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/fxcrt/include/fx_basic.h" |
| 14 #include "core/include/fxcrt/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/include/fxfa/fxfa.h" |
| 18 | 18 |
| 19 #define FSDK_XFAWIDGET_TYPENAME "XFAWidget" | 19 #define FSDK_XFAWIDGET_TYPENAME "XFAWidget" |
| 20 #endif // PDF_ENABLE_XFA | 20 #endif // PDF_ENABLE_XFA |
| 21 | 21 |
| 22 class CFFL_IFormFiller; | 22 class CFFL_IFormFiller; |
| 23 class CFX_RenderDevice; | 23 class CFX_RenderDevice; |
| 24 class CPDFDoc_Environment; | 24 class CPDFDoc_Environment; |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 private: | 463 private: |
| 464 CPDFSDK_Annot* NextAnnot(); | 464 CPDFSDK_Annot* NextAnnot(); |
| 465 CPDFSDK_Annot* PrevAnnot(); | 465 CPDFSDK_Annot* PrevAnnot(); |
| 466 | 466 |
| 467 std::vector<CPDFSDK_Annot*> m_iteratorAnnotList; | 467 std::vector<CPDFSDK_Annot*> m_iteratorAnnotList; |
| 468 const bool m_bReverse; | 468 const bool m_bReverse; |
| 469 size_t m_pos; | 469 size_t m_pos; |
| 470 }; | 470 }; |
| 471 | 471 |
| 472 #endif // FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ | 472 #endif // FPDFSDK_INCLUDE_FSDK_ANNOTHANDLER_H_ |
| OLD | NEW |