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

Side by Side Diff: core/fpdfdoc/doc_formcontrol.cpp

Issue 2183313004: Split fpdfdoc/include/fpdf_doc.h into individual classes. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: review feedback Created 4 years, 4 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 | « core/fpdfdoc/doc_form.cpp ('k') | core/fpdfdoc/doc_formfield.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 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 "core/fpdfdoc/include/cpdf_formcontrol.h"
8
7 #include <algorithm> 9 #include <algorithm>
8 10
9 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h" 11 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" 13 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
12 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" 14 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h"
15 #include "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h"
13 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" 16 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h"
14 #include "core/fpdfdoc/include/fpdf_doc.h" 17 #include "core/fpdfdoc/include/cpdf_interform.h"
15 18
16 namespace { 19 namespace {
17 20
18 const FX_CHAR* const g_sHighlightingMode[] = { 21 const FX_CHAR* const g_sHighlightingMode[] = {
19 // Must match order of HighlightingMode enum. 22 // Must match order of HighlightingMode enum.
20 "N", "I", "O", "P", "T"}; 23 "N", "I", "O", "P", "T"};
21 24
22 } // namespace 25 } // namespace
23 26
24 CPDF_FormControl::CPDF_FormControl(CPDF_FormField* pField, 27 CPDF_FormControl::CPDF_FormControl(CPDF_FormField* pField,
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 } 429 }
427 430
428 CPDF_IconFit CPDF_ApSettings::GetIconFit() const { 431 CPDF_IconFit CPDF_ApSettings::GetIconFit() const {
429 return CPDF_IconFit(m_pDict ? m_pDict->GetDictBy("IF") : nullptr); 432 return CPDF_IconFit(m_pDict ? m_pDict->GetDictBy("IF") : nullptr);
430 } 433 }
431 434
432 int CPDF_ApSettings::GetTextPosition() const { 435 int CPDF_ApSettings::GetTextPosition() const {
433 return m_pDict ? m_pDict->GetIntegerBy("TP", TEXTPOS_CAPTION) 436 return m_pDict ? m_pDict->GetIntegerBy("TP", TEXTPOS_CAPTION)
434 : TEXTPOS_CAPTION; 437 : TEXTPOS_CAPTION;
435 } 438 }
OLDNEW
« no previous file with comments | « core/fpdfdoc/doc_form.cpp ('k') | core/fpdfdoc/doc_formfield.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698