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 #include "fpdfsdk/include/fsdk_annothandler.h" |
| 8 |
7 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <vector> |
8 | 11 |
9 #include "core/include/fpdfapi/cpdf_document.h" | 12 #include "core/include/fpdfapi/cpdf_document.h" |
10 #include "fpdfsdk/include/formfiller/FFL_FormFiller.h" | 13 #include "fpdfsdk/include/formfiller/FFL_FormFiller.h" |
11 #include "fpdfsdk/include/fsdk_annothandler.h" | |
12 #include "fpdfsdk/include/fsdk_define.h" | 14 #include "fpdfsdk/include/fsdk_define.h" |
13 #include "fpdfsdk/include/fsdk_mgr.h" | 15 #include "fpdfsdk/include/fsdk_mgr.h" |
14 | 16 |
15 #ifdef PDF_ENABLE_XFA | 17 #ifdef PDF_ENABLE_XFA |
16 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" | 18 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" |
17 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" | 19 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" |
18 #endif // PDF_ENABLE_XFA | 20 #endif // PDF_ENABLE_XFA |
19 | 21 |
20 CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(CPDFDoc_Environment* pApp) { | 22 CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(CPDFDoc_Environment* pApp) { |
21 m_pApp = pApp; | 23 m_pApp = pApp; |
(...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 | 1100 |
1099 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot() { | 1101 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot() { |
1100 if (m_pos < m_iteratorAnnotList.size()) | 1102 if (m_pos < m_iteratorAnnotList.size()) |
1101 return m_iteratorAnnotList[m_iteratorAnnotList.size() - ++m_pos]; | 1103 return m_iteratorAnnotList[m_iteratorAnnotList.size() - ++m_pos]; |
1102 return nullptr; | 1104 return nullptr; |
1103 } | 1105 } |
1104 | 1106 |
1105 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Next() { | 1107 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Next() { |
1106 return m_bReverse ? PrevAnnot() : NextAnnot(); | 1108 return m_bReverse ? PrevAnnot() : NextAnnot(); |
1107 } | 1109 } |
OLD | NEW |