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" | 7 #include "fpdfsdk/include/fsdk_annothandler.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" | 12 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" |
13 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 13 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
14 #include "core/fpdfdoc/include/cpdf_interform.h" | 14 #include "core/fpdfdoc/include/cpdf_interform.h" |
| 15 #include "core/fxge/include/cfx_renderdevice.h" |
15 #include "fpdfsdk/formfiller/cffl_formfiller.h" | 16 #include "fpdfsdk/formfiller/cffl_formfiller.h" |
16 #include "fpdfsdk/include/fsdk_define.h" | 17 #include "fpdfsdk/include/fsdk_define.h" |
17 #include "fpdfsdk/include/fsdk_mgr.h" | 18 #include "fpdfsdk/include/fsdk_mgr.h" |
18 | 19 |
19 #ifdef PDF_ENABLE_XFA | 20 #ifdef PDF_ENABLE_XFA |
20 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h" | 21 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h" |
21 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h" | 22 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h" |
22 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_util.h" | 23 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_util.h" |
23 #include "xfa/fwl/core/include/fwl_widgethit.h" | 24 #include "xfa/fwl/core/include/fwl_widgethit.h" |
24 #include "xfa/fxfa/include/xfa_ffwidget.h" | 25 #include "xfa/fxfa/include/xfa_ffwidget.h" |
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1157 | 1158 |
1158 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot() { | 1159 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot() { |
1159 if (m_pos < m_iteratorAnnotList.size()) | 1160 if (m_pos < m_iteratorAnnotList.size()) |
1160 return m_iteratorAnnotList[m_iteratorAnnotList.size() - ++m_pos]; | 1161 return m_iteratorAnnotList[m_iteratorAnnotList.size() - ++m_pos]; |
1161 return nullptr; | 1162 return nullptr; |
1162 } | 1163 } |
1163 | 1164 |
1164 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Next() { | 1165 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Next() { |
1165 return m_bReverse ? PrevAnnot() : NextAnnot(); | 1166 return m_bReverse ? PrevAnnot() : NextAnnot(); |
1166 } | 1167 } |
OLD | NEW |