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

Side by Side Diff: fpdfsdk/cpdfsdk_interform.cpp

Issue 2385423004: Rename fpdfsdk/fpdfxfa files to match contents (Closed)
Patch Set: Created 4 years, 2 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/cpdfsdk_environment.cpp ('k') | fpdfsdk/cpdfsdk_pageview.cpp » ('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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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/cpdfsdk_interform.h" 7 #include "fpdfsdk/cpdfsdk_interform.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <memory> 10 #include <memory>
(...skipping 20 matching lines...) Expand all
31 #include "fpdfsdk/fsdk_define.h" 31 #include "fpdfsdk/fsdk_define.h"
32 #include "fpdfsdk/fxedit/fxet_edit.h" 32 #include "fpdfsdk/fxedit/fxet_edit.h"
33 #include "fpdfsdk/ipdfsdk_annothandler.h" 33 #include "fpdfsdk/ipdfsdk_annothandler.h"
34 #include "fpdfsdk/javascript/ijs_context.h" 34 #include "fpdfsdk/javascript/ijs_context.h"
35 #include "fpdfsdk/javascript/ijs_runtime.h" 35 #include "fpdfsdk/javascript/ijs_runtime.h"
36 #include "fpdfsdk/pdfwindow/PWL_Utils.h" 36 #include "fpdfsdk/pdfwindow/PWL_Utils.h"
37 #include "third_party/base/stl_util.h" 37 #include "third_party/base/stl_util.h"
38 38
39 #ifdef PDF_ENABLE_XFA 39 #ifdef PDF_ENABLE_XFA
40 #include "fpdfsdk/cpdfsdk_xfawidget.h" 40 #include "fpdfsdk/cpdfsdk_xfawidget.h"
41 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" 41 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h"
42 #include "fpdfsdk/fpdfxfa/fpdfxfa_util.h" 42 #include "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h"
43 #include "xfa/fxfa/cxfa_eventparam.h" 43 #include "xfa/fxfa/cxfa_eventparam.h"
44 #include "xfa/fxfa/xfa_ffdocview.h" 44 #include "xfa/fxfa/xfa_ffdocview.h"
45 #include "xfa/fxfa/xfa_ffwidget.h" 45 #include "xfa/fxfa/xfa_ffwidget.h"
46 #include "xfa/fxfa/xfa_ffwidgethandler.h" 46 #include "xfa/fxfa/xfa_ffwidgethandler.h"
47 #endif // PDF_ENABLE_XFA 47 #endif // PDF_ENABLE_XFA
48 48
49 CPDFSDK_InterForm::CPDFSDK_InterForm(CPDFSDK_Document* pDocument) 49 CPDFSDK_InterForm::CPDFSDK_InterForm(CPDFSDK_Document* pDocument)
50 : m_pDocument(pDocument), 50 : m_pDocument(pDocument),
51 m_pInterForm(new CPDF_InterForm(m_pDocument->GetPDFDocument())), 51 m_pInterForm(new CPDF_InterForm(m_pDocument->GetPDFDocument())),
52 #ifdef PDF_ENABLE_XFA 52 #ifdef PDF_ENABLE_XFA
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 } 721 }
722 } 722 }
723 723
724 FX_COLORREF CPDFSDK_InterForm::GetHighlightColor(int nFieldType) { 724 FX_COLORREF CPDFSDK_InterForm::GetHighlightColor(int nFieldType) {
725 if (nFieldType < 0 || nFieldType > kNumFieldTypes) 725 if (nFieldType < 0 || nFieldType > kNumFieldTypes)
726 return FXSYS_RGB(255, 255, 255); 726 return FXSYS_RGB(255, 255, 255);
727 if (nFieldType == 0) 727 if (nFieldType == 0)
728 return m_aHighlightColor[0]; 728 return m_aHighlightColor[0];
729 return m_aHighlightColor[nFieldType - 1]; 729 return m_aHighlightColor[nFieldType - 1];
730 } 730 }
OLDNEW
« no previous file with comments | « fpdfsdk/cpdfsdk_environment.cpp ('k') | fpdfsdk/cpdfsdk_pageview.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698