| 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" |
| 20 #include "core/fpdfdoc/include/cpdf_interform.h" |
| 19 #include "core/fxge/include/fx_ge.h" | 21 #include "core/fxge/include/fx_ge.h" |
| 20 #include "fpdfsdk/formfiller/cffl_formfiller.h" | 22 #include "fpdfsdk/formfiller/cffl_formfiller.h" |
| 21 #include "fpdfsdk/fxedit/include/fxet_edit.h" | 23 #include "fpdfsdk/fxedit/include/fxet_edit.h" |
| 22 #include "fpdfsdk/include/fsdk_actionhandler.h" | 24 #include "fpdfsdk/include/fsdk_actionhandler.h" |
| 23 #include "fpdfsdk/include/fsdk_baseannot.h" | 25 #include "fpdfsdk/include/fsdk_baseannot.h" |
| 24 #include "fpdfsdk/include/fsdk_define.h" | 26 #include "fpdfsdk/include/fsdk_define.h" |
| 25 #include "fpdfsdk/include/fsdk_mgr.h" | 27 #include "fpdfsdk/include/fsdk_mgr.h" |
| 26 #include "fpdfsdk/javascript/ijs_context.h" | 28 #include "fpdfsdk/javascript/ijs_context.h" |
| 27 #include "fpdfsdk/javascript/ijs_runtime.h" | 29 #include "fpdfsdk/javascript/ijs_runtime.h" |
| 28 #include "fpdfsdk/pdfwindow/PWL_Utils.h" | 30 #include "fpdfsdk/pdfwindow/PWL_Utils.h" |
| (...skipping 2798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2827 break; | 2829 break; |
| 2828 } | 2830 } |
| 2829 } | 2831 } |
| 2830 } | 2832 } |
| 2831 | 2833 |
| 2832 CFX_FloatRect CBA_AnnotIterator::GetAnnotRect(const CPDFSDK_Annot* pAnnot) { | 2834 CFX_FloatRect CBA_AnnotIterator::GetAnnotRect(const CPDFSDK_Annot* pAnnot) { |
| 2833 CFX_FloatRect rcAnnot; | 2835 CFX_FloatRect rcAnnot; |
| 2834 pAnnot->GetPDFAnnot()->GetRect(rcAnnot); | 2836 pAnnot->GetPDFAnnot()->GetRect(rcAnnot); |
| 2835 return rcAnnot; | 2837 return rcAnnot; |
| 2836 } | 2838 } |
| OLD | NEW |