OLD | NEW |
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/include/cfdf_document.h" | 14 #include "core/fpdfapi/fpdf_parser/cfdf_document.h" |
15 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 15 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" |
16 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 16 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
17 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" | 17 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" |
18 #include "core/fpdfdoc/include/cpdf_actionfields.h" | 18 #include "core/fpdfdoc/include/cpdf_actionfields.h" |
19 #include "core/fpdfdoc/include/cpdf_interform.h" | 19 #include "core/fpdfdoc/include/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" |
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |