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