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

Side by Side Diff: core/src/fpdfdoc/doc_formfield.cpp

Issue 1776913007: Split fpdf_parser_objects.cpp into per-class .cpp/.h files. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Address comments 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 | « core/src/fpdfdoc/doc_formcontrol.cpp ('k') | core/src/fpdfdoc/doc_link.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/include/fpdfapi/cfdf_document.h"
8 #include "core/include/fpdfapi/cpdf_array.h"
7 #include "core/include/fpdfapi/cpdf_document.h" 9 #include "core/include/fpdfapi/cpdf_document.h"
10 #include "core/include/fpdfapi/cpdf_number.h"
8 #include "core/include/fpdfapi/cpdf_simple_parser.h" 11 #include "core/include/fpdfapi/cpdf_simple_parser.h"
12 #include "core/include/fpdfapi/cpdf_string.h"
9 #include "core/include/fpdfdoc/fpdf_doc.h" 13 #include "core/include/fpdfdoc/fpdf_doc.h"
10 #include "core/src/fpdfdoc/doc_utils.h" 14 #include "core/src/fpdfdoc/doc_utils.h"
11 15
12 FX_BOOL PDF_FormField_IsUnison(CPDF_FormField* pField) { 16 FX_BOOL PDF_FormField_IsUnison(CPDF_FormField* pField) {
13 FX_BOOL bUnison = FALSE; 17 FX_BOOL bUnison = FALSE;
14 if (pField->GetType() == CPDF_FormField::CheckBox) { 18 if (pField->GetType() == CPDF_FormField::CheckBox) {
15 bUnison = TRUE; 19 bUnison = TRUE;
16 } else { 20 } else {
17 FX_DWORD dwFlags = pField->GetFieldFlags(); 21 FX_DWORD dwFlags = pField->GetFieldFlags();
18 bUnison = ((dwFlags & 0x2000000) != 0); 22 bUnison = ((dwFlags & 0x2000000) != 0);
(...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after
1084 pFontDict = m_pForm->m_pFormDict->GetDictBy("DR") 1088 pFontDict = m_pForm->m_pFormDict->GetDictBy("DR")
1085 ->GetDictBy("Font") 1089 ->GetDictBy("Font")
1086 ->GetDictBy(font_name); 1090 ->GetDictBy(font_name);
1087 1091
1088 if (!pFontDict) { 1092 if (!pFontDict) {
1089 return; 1093 return;
1090 } 1094 }
1091 m_pFont = m_pForm->m_pDocument->LoadFont(pFontDict); 1095 m_pFont = m_pForm->m_pDocument->LoadFont(pFontDict);
1092 m_FontSize = FX_atof(syntax.GetWord()); 1096 m_FontSize = FX_atof(syntax.GetWord());
1093 } 1097 }
OLDNEW
« no previous file with comments | « core/src/fpdfdoc/doc_formcontrol.cpp ('k') | core/src/fpdfdoc/doc_link.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698