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

Side by Side Diff: fpdfsdk/cpdfsdk_interform.cpp

Issue 2374383003: Move core/fpdfdoc/include to core/fpdfdoc (Closed)
Patch Set: Rebase to master 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_document.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/include/cpdfsdk_interform.h" 7 #include "fpdfsdk/include/cpdfsdk_interform.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/cpdf_page.h" 13 #include "core/fpdfapi/fpdf_page/cpdf_page.h"
14 #include "core/fpdfapi/fpdf_parser/cfdf_document.h" 14 #include "core/fpdfapi/fpdf_parser/cfdf_document.h"
15 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" 15 #include "core/fpdfapi/fpdf_parser/cpdf_array.h"
16 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" 16 #include "core/fpdfapi/fpdf_parser/cpdf_document.h"
17 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" 17 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h"
18 #include "core/fpdfdoc/include/cpdf_actionfields.h" 18 #include "core/fpdfdoc/cpdf_actionfields.h"
19 #include "core/fpdfdoc/include/cpdf_interform.h" 19 #include "core/fpdfdoc/cpdf_interform.h"
20 #include "core/fxge/include/cfx_graphstatedata.h" 20 #include "core/fxge/include/cfx_graphstatedata.h"
21 #include "core/fxge/include/cfx_pathdata.h" 21 #include "core/fxge/include/cfx_pathdata.h"
22 #include "core/fxge/include/cfx_renderdevice.h" 22 #include "core/fxge/include/cfx_renderdevice.h"
23 #include "fpdfsdk/formfiller/cffl_formfiller.h" 23 #include "fpdfsdk/formfiller/cffl_formfiller.h"
24 #include "fpdfsdk/fxedit/include/fxet_edit.h" 24 #include "fpdfsdk/fxedit/include/fxet_edit.h"
25 #include "fpdfsdk/include/cba_annotiterator.h" 25 #include "fpdfsdk/include/cba_annotiterator.h"
26 #include "fpdfsdk/include/cpdfsdk_annot.h" 26 #include "fpdfsdk/include/cpdfsdk_annot.h"
27 #include "fpdfsdk/include/cpdfsdk_document.h" 27 #include "fpdfsdk/include/cpdfsdk_document.h"
28 #include "fpdfsdk/include/cpdfsdk_environment.h" 28 #include "fpdfsdk/include/cpdfsdk_environment.h"
29 #include "fpdfsdk/include/cpdfsdk_pageview.h" 29 #include "fpdfsdk/include/cpdfsdk_pageview.h"
(...skipping 691 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_document.cpp ('k') | fpdfsdk/cpdfsdk_pageview.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698