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_baseform.h" | 7 #include "fpdfsdk/include/fsdk_baseform.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" | 14 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" |
15 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h" | 15 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h" |
16 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 16 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
17 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 17 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
18 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" | 18 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" |
19 #include "core/fpdfdoc/include/cpdf_actionfields.h" | 19 #include "core/fpdfdoc/include/cpdf_actionfields.h" |
20 #include "core/fpdfdoc/include/cpdf_interform.h" | 20 #include "core/fpdfdoc/include/cpdf_interform.h" |
| 21 #include "core/fxge/include/cfx_graphstatedata.h" |
21 #include "core/fxge/include/cfx_pathdata.h" | 22 #include "core/fxge/include/cfx_pathdata.h" |
22 #include "core/fxge/include/fx_ge.h" | 23 #include "core/fxge/include/cfx_renderdevice.h" |
23 #include "fpdfsdk/formfiller/cffl_formfiller.h" | 24 #include "fpdfsdk/formfiller/cffl_formfiller.h" |
24 #include "fpdfsdk/fxedit/include/fxet_edit.h" | 25 #include "fpdfsdk/fxedit/include/fxet_edit.h" |
25 #include "fpdfsdk/include/fsdk_actionhandler.h" | 26 #include "fpdfsdk/include/fsdk_actionhandler.h" |
26 #include "fpdfsdk/include/fsdk_baseannot.h" | 27 #include "fpdfsdk/include/fsdk_baseannot.h" |
27 #include "fpdfsdk/include/fsdk_define.h" | 28 #include "fpdfsdk/include/fsdk_define.h" |
28 #include "fpdfsdk/include/fsdk_mgr.h" | 29 #include "fpdfsdk/include/fsdk_mgr.h" |
29 #include "fpdfsdk/javascript/ijs_context.h" | 30 #include "fpdfsdk/javascript/ijs_context.h" |
30 #include "fpdfsdk/javascript/ijs_runtime.h" | 31 #include "fpdfsdk/javascript/ijs_runtime.h" |
31 #include "fpdfsdk/pdfwindow/PWL_Utils.h" | 32 #include "fpdfsdk/pdfwindow/PWL_Utils.h" |
32 #include "third_party/base/stl_util.h" | 33 #include "third_party/base/stl_util.h" |
(...skipping 2827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2860 break; | 2861 break; |
2861 } | 2862 } |
2862 } | 2863 } |
2863 } | 2864 } |
2864 | 2865 |
2865 CFX_FloatRect CBA_AnnotIterator::GetAnnotRect(const CPDFSDK_Annot* pAnnot) { | 2866 CFX_FloatRect CBA_AnnotIterator::GetAnnotRect(const CPDFSDK_Annot* pAnnot) { |
2866 CFX_FloatRect rcAnnot; | 2867 CFX_FloatRect rcAnnot; |
2867 pAnnot->GetPDFAnnot()->GetRect(rcAnnot); | 2868 pAnnot->GetPDFAnnot()->GetRect(rcAnnot); |
2868 return rcAnnot; | 2869 return rcAnnot; |
2869 } | 2870 } |
OLD | NEW |