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 <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "fpdfsdk/include/formfiller/FFL_FormFiller.h" | 9 #include "fpdfsdk/include/formfiller/FFL_FormFiller.h" |
10 #include "fpdfsdk/include/fsdk_annothandler.h" | 10 #include "fpdfsdk/include/fsdk_annothandler.h" |
11 #include "fpdfsdk/include/fsdk_define.h" | 11 #include "fpdfsdk/include/fsdk_define.h" |
12 #include "fpdfsdk/include/fsdk_mgr.h" | 12 #include "fpdfsdk/include/fsdk_mgr.h" |
13 | 13 |
14 #ifdef PDF_ENABLE_XFA | 14 #ifdef PDF_ENABLE_XFA |
15 #include "../include/fpdfxfa/fpdfxfa_doc.h" | 15 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" |
16 #include "../include/fpdfxfa/fpdfxfa_util.h" | 16 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" |
17 #endif // PDF_ENABLE_XFA | 17 #endif // PDF_ENABLE_XFA |
18 | 18 |
19 CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(CPDFDoc_Environment* pApp) { | 19 CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(CPDFDoc_Environment* pApp) { |
20 m_pApp = pApp; | 20 m_pApp = pApp; |
21 | 21 |
22 CPDFSDK_BFAnnotHandler* pHandler = new CPDFSDK_BFAnnotHandler(m_pApp); | 22 CPDFSDK_BFAnnotHandler* pHandler = new CPDFSDK_BFAnnotHandler(m_pApp); |
23 pHandler->SetFormFiller(m_pApp->GetIFormFiller()); | 23 pHandler->SetFormFiller(m_pApp->GetIFormFiller()); |
24 RegisterAnnotHandler(pHandler); | 24 RegisterAnnotHandler(pHandler); |
25 #ifdef PDF_ENABLE_XFA | 25 #ifdef PDF_ENABLE_XFA |
26 CPDFSDK_XFAAnnotHandler* pXFAAnnotHandler = | 26 CPDFSDK_XFAAnnotHandler* pXFAAnnotHandler = |
(...skipping 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1171 | 1171 |
1172 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot() { | 1172 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot() { |
1173 if (m_pos < m_iteratorAnnotList.size()) | 1173 if (m_pos < m_iteratorAnnotList.size()) |
1174 return m_iteratorAnnotList[m_iteratorAnnotList.size() - ++m_pos]; | 1174 return m_iteratorAnnotList[m_iteratorAnnotList.size() - ++m_pos]; |
1175 return nullptr; | 1175 return nullptr; |
1176 } | 1176 } |
1177 | 1177 |
1178 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Next() { | 1178 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Next() { |
1179 return m_bReverse ? PrevAnnot() : NextAnnot(); | 1179 return m_bReverse ? PrevAnnot() : NextAnnot(); |
1180 } | 1180 } |
OLD | NEW |