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

Side by Side Diff: core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp

Issue 2334323005: Rename dictionary set and get methods (Closed)
Patch Set: Created 4 years, 3 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
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 "core/fpdfapi/fpdf_page/cpdf_tilingpattern.h" 7 #include "core/fpdfapi/fpdf_page/cpdf_tilingpattern.h"
8 8
9 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h" 9 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h"
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_object.h" 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_object.h"
12 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h"
13 13
14 CPDF_TilingPattern::CPDF_TilingPattern(CPDF_Document* pDoc, 14 CPDF_TilingPattern::CPDF_TilingPattern(CPDF_Document* pDoc,
15 CPDF_Object* pPatternObj, 15 CPDF_Object* pPatternObj,
16 const CFX_Matrix& parentMatrix) 16 const CFX_Matrix& parentMatrix)
17 : CPDF_Pattern(TILING, pDoc, pPatternObj, parentMatrix) { 17 : CPDF_Pattern(TILING, pDoc, pPatternObj, parentMatrix) {
18 CPDF_Dictionary* pDict = m_pPatternObj->GetDict(); 18 CPDF_Dictionary* pDict = m_pPatternObj->GetDict();
19 m_Pattern2Form = pDict->GetMatrixBy("Matrix"); 19 m_Pattern2Form = pDict->GetMatrixFor("Matrix");
20 m_bColored = pDict->GetIntegerBy("PaintType") == 1; 20 m_bColored = pDict->GetIntegerFor("PaintType") == 1;
21 m_Pattern2Form.Concat(parentMatrix); 21 m_Pattern2Form.Concat(parentMatrix);
22 } 22 }
23 23
24 CPDF_TilingPattern::~CPDF_TilingPattern() { 24 CPDF_TilingPattern::~CPDF_TilingPattern() {
25 } 25 }
26 26
27 CPDF_TilingPattern* CPDF_TilingPattern::AsTilingPattern() { 27 CPDF_TilingPattern* CPDF_TilingPattern::AsTilingPattern() {
28 return this; 28 return this;
29 } 29 }
30 30
31 CPDF_ShadingPattern* CPDF_TilingPattern::AsShadingPattern() { 31 CPDF_ShadingPattern* CPDF_TilingPattern::AsShadingPattern() {
32 return nullptr; 32 return nullptr;
33 } 33 }
34 34
35 FX_BOOL CPDF_TilingPattern::Load() { 35 FX_BOOL CPDF_TilingPattern::Load() {
36 if (m_pForm) 36 if (m_pForm)
37 return TRUE; 37 return TRUE;
38 38
39 CPDF_Dictionary* pDict = m_pPatternObj->GetDict(); 39 CPDF_Dictionary* pDict = m_pPatternObj->GetDict();
40 if (!pDict) 40 if (!pDict)
41 return FALSE; 41 return FALSE;
42 42
43 m_bColored = pDict->GetIntegerBy("PaintType") == 1; 43 m_bColored = pDict->GetIntegerFor("PaintType") == 1;
44 m_XStep = (FX_FLOAT)FXSYS_fabs(pDict->GetNumberBy("XStep")); 44 m_XStep = (FX_FLOAT)FXSYS_fabs(pDict->GetNumberFor("XStep"));
45 m_YStep = (FX_FLOAT)FXSYS_fabs(pDict->GetNumberBy("YStep")); 45 m_YStep = (FX_FLOAT)FXSYS_fabs(pDict->GetNumberFor("YStep"));
46 46
47 CPDF_Stream* pStream = m_pPatternObj->AsStream(); 47 CPDF_Stream* pStream = m_pPatternObj->AsStream();
48 if (!pStream) 48 if (!pStream)
49 return FALSE; 49 return FALSE;
50 50
51 m_pForm.reset(new CPDF_Form(m_pDocument, nullptr, pStream)); 51 m_pForm.reset(new CPDF_Form(m_pDocument, nullptr, pStream));
52 m_pForm->ParseContent(nullptr, &m_ParentMatrix, nullptr); 52 m_pForm->ParseContent(nullptr, &m_ParentMatrix, nullptr);
53 m_BBox = pDict->GetRectBy("BBox"); 53 m_BBox = pDict->GetRectFor("BBox");
54 return TRUE; 54 return TRUE;
55 } 55 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_shadingpattern.cpp ('k') | core/fpdfapi/fpdf_page/fpdf_page_doc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698