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

Side by Side Diff: fpdfsdk/pdfwindow/PWL_Icon.cpp

Issue 1853233002: Make down-conversion explicit from CFX_ByteString to CFX_ByteStringC. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Fix CPDF_Name::GetConstString() Created 4 years, 8 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/pdfwindow/PWL_Edit.cpp ('k') | fpdfsdk/pdfwindow/PWL_Label.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 "fpdfsdk/pdfwindow/PWL_Icon.h" 7 #include "fpdfsdk/pdfwindow/PWL_Icon.h"
8 8
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h"
(...skipping 24 matching lines...) Expand all
35 sAppStream << "q\n"; 35 sAppStream << "q\n";
36 sAppStream << rcPlate.left << " " << rcPlate.bottom << " " 36 sAppStream << rcPlate.left << " " << rcPlate.bottom << " "
37 << rcPlate.right - rcPlate.left << " " 37 << rcPlate.right - rcPlate.left << " "
38 << rcPlate.top - rcPlate.bottom << " re W n\n"; 38 << rcPlate.top - rcPlate.bottom << " re W n\n";
39 39
40 sAppStream << fHScale << " 0 0 " << fVScale << " " << rcPlate.left + fx 40 sAppStream << fHScale << " 0 0 " << fVScale << " " << rcPlate.left + fx
41 << " " << rcPlate.bottom + fy << " cm\n"; 41 << " " << rcPlate.bottom + fy << " cm\n";
42 sAppStream << mt.GetA() << " " << mt.GetB() << " " << mt.GetC() << " " 42 sAppStream << mt.GetA() << " " << mt.GetB() << " " << mt.GetC() << " "
43 << mt.GetD() << " " << mt.GetE() << " " << mt.GetF() << " cm\n"; 43 << mt.GetD() << " " << mt.GetE() << " " << mt.GetF() << " cm\n";
44 44
45 sAppStream << "0 g 0 G 1 w /" << sAlias << " Do\n" 45 sAppStream << "0 g 0 G 1 w /" << sAlias.AsByteStringC() << " Do\n"
46 << "Q\n"; 46 << "Q\n";
47 } 47 }
48 48
49 return sAppStream.GetByteString(); 49 return sAppStream.GetByteString();
50 } 50 }
51 51
52 void CPWL_Image::SetPDFStream(CPDF_Stream* pStream) { 52 void CPWL_Image::SetPDFStream(CPDF_Stream* pStream) {
53 m_pPDFStream = pStream; 53 m_pPDFStream = pStream;
54 } 54 }
55 55
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 FX_FLOAT fImageFactHeight = fImageHeight * fVScale; 216 FX_FLOAT fImageFactHeight = fImageHeight * fVScale;
217 217
218 FX_FLOAT fPlateWidth, fPlateHeight; 218 FX_FLOAT fPlateWidth, fPlateHeight;
219 CFX_FloatRect rcPlate = GetClientRect(); 219 CFX_FloatRect rcPlate = GetClientRect();
220 fPlateWidth = rcPlate.right - rcPlate.left; 220 fPlateWidth = rcPlate.right - rcPlate.left;
221 fPlateHeight = rcPlate.top - rcPlate.bottom; 221 fPlateHeight = rcPlate.top - rcPlate.bottom;
222 222
223 x = (fPlateWidth - fImageFactWidth) * fLeft; 223 x = (fPlateWidth - fImageFactWidth) * fLeft;
224 y = (fPlateHeight - fImageFactHeight) * fBottom; 224 y = (fPlateHeight - fImageFactHeight) * fBottom;
225 } 225 }
OLDNEW
« no previous file with comments | « fpdfsdk/pdfwindow/PWL_Edit.cpp ('k') | fpdfsdk/pdfwindow/PWL_Label.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698