Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(499)

Side by Side Diff: fpdfsdk/fsdk_baseform.cpp

Issue 1823153002: Move the fpdfsdk/include/pdfwindow/ headers into fpdfsdk/pdfwindow. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/fpdf_sysfontinfo.cpp ('k') | fpdfsdk/include/pdfwindow/PWL_Button.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" 13 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h"
14 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h" 14 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h"
15 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" 15 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
16 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" 16 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
17 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" 17 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h"
18 #include "fpdfsdk/formfiller/cffl_formfiller.h" 18 #include "fpdfsdk/formfiller/cffl_formfiller.h"
19 #include "fpdfsdk/include/fsdk_actionhandler.h" 19 #include "fpdfsdk/include/fsdk_actionhandler.h"
20 #include "fpdfsdk/include/fsdk_baseannot.h" 20 #include "fpdfsdk/include/fsdk_baseannot.h"
21 #include "fpdfsdk/include/fsdk_define.h" 21 #include "fpdfsdk/include/fsdk_define.h"
22 #include "fpdfsdk/include/fsdk_mgr.h" 22 #include "fpdfsdk/include/fsdk_mgr.h"
23 #include "fpdfsdk/include/javascript/IJavaScript.h" 23 #include "fpdfsdk/include/javascript/IJavaScript.h"
24 #include "fpdfsdk/include/pdfwindow/PWL_Utils.h" 24 #include "fpdfsdk/pdfwindow/PWL_Utils.h"
25 25
26 #ifdef PDF_ENABLE_XFA 26 #ifdef PDF_ENABLE_XFA
27 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" 27 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h"
28 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" 28 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h"
29 #endif // PDF_ENABLE_XFA 29 #endif // PDF_ENABLE_XFA
30 30
31 #define IsFloatZero(f) ((f) < 0.01 && (f) > -0.01) 31 #define IsFloatZero(f) ((f) < 0.01 && (f) > -0.01)
32 #define IsFloatBigger(fa, fb) ((fa) > (fb) && !IsFloatZero((fa) - (fb))) 32 #define IsFloatBigger(fa, fb) ((fa) > (fb) && !IsFloatZero((fa) - (fb)))
33 #define IsFloatSmaller(fa, fb) ((fa) < (fb) && !IsFloatZero((fa) - (fb))) 33 #define IsFloatSmaller(fa, fb) ((fa) < (fb) && !IsFloatZero((fa) - (fb)))
34 #define IsFloatEqual(fa, fb) IsFloatZero((fa) - (fb)) 34 #define IsFloatEqual(fa, fb) IsFloatZero((fa) - (fb))
(...skipping 2825 matching lines...) Expand 10 before | Expand all | Expand 10 after
2860 break; 2860 break;
2861 } 2861 }
2862 } 2862 }
2863 } 2863 }
2864 2864
2865 CFX_FloatRect CBA_AnnotIterator::GetAnnotRect(const CPDFSDK_Annot* pAnnot) { 2865 CFX_FloatRect CBA_AnnotIterator::GetAnnotRect(const CPDFSDK_Annot* pAnnot) {
2866 CFX_FloatRect rcAnnot; 2866 CFX_FloatRect rcAnnot;
2867 pAnnot->GetPDFAnnot()->GetRect(rcAnnot); 2867 pAnnot->GetPDFAnnot()->GetRect(rcAnnot);
2868 return rcAnnot; 2868 return rcAnnot;
2869 } 2869 }
OLDNEW
« no previous file with comments | « fpdfsdk/fpdf_sysfontinfo.cpp ('k') | fpdfsdk/include/pdfwindow/PWL_Button.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698