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

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

Issue 1999313002: Change CPDF_Boolean to use bool instead of FX_BOOL. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@interform
Patch Set: rebase Created 4 years, 7 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_Icon.h ('k') | no next file » | 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 fLeft = pA->GetNumberAt(0); 138 fLeft = pA->GetNumberAt(0);
139 if (dwCount > 1) 139 if (dwCount > 1)
140 fBottom = pA->GetNumberAt(1); 140 fBottom = pA->GetNumberAt(1);
141 } 141 }
142 } else { 142 } else {
143 fLeft = 0.0f; 143 fLeft = 0.0f;
144 fBottom = 0.0f; 144 fBottom = 0.0f;
145 } 145 }
146 } 146 }
147 147
148 FX_BOOL CPWL_Icon::GetFittingBounds() {
149 if (m_pIconFit)
150 return m_pIconFit->GetFittingBounds();
151
152 return FALSE;
153 }
154
155 void CPWL_Icon::GetScale(FX_FLOAT& fHScale, FX_FLOAT& fVScale) { 148 void CPWL_Icon::GetScale(FX_FLOAT& fHScale, FX_FLOAT& fVScale) {
156 fHScale = 1.0f; 149 fHScale = 1.0f;
157 fVScale = 1.0f; 150 fVScale = 1.0f;
158 151
159 if (m_pPDFStream) { 152 if (m_pPDFStream) {
160 FX_FLOAT fImageWidth, fImageHeight; 153 FX_FLOAT fImageWidth, fImageHeight;
161 FX_FLOAT fPlateWidth, fPlateHeight; 154 FX_FLOAT fPlateWidth, fPlateHeight;
162 155
163 CFX_FloatRect rcPlate = GetClientRect(); 156 CFX_FloatRect rcPlate = GetClientRect();
164 fPlateWidth = rcPlate.right - rcPlate.left; 157 fPlateWidth = rcPlate.right - rcPlate.left;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 FX_FLOAT fImageFactHeight = fImageHeight * fVScale; 209 FX_FLOAT fImageFactHeight = fImageHeight * fVScale;
217 210
218 FX_FLOAT fPlateWidth, fPlateHeight; 211 FX_FLOAT fPlateWidth, fPlateHeight;
219 CFX_FloatRect rcPlate = GetClientRect(); 212 CFX_FloatRect rcPlate = GetClientRect();
220 fPlateWidth = rcPlate.right - rcPlate.left; 213 fPlateWidth = rcPlate.right - rcPlate.left;
221 fPlateHeight = rcPlate.top - rcPlate.bottom; 214 fPlateHeight = rcPlate.top - rcPlate.bottom;
222 215
223 x = (fPlateWidth - fImageFactWidth) * fLeft; 216 x = (fPlateWidth - fImageFactWidth) * fLeft;
224 y = (fPlateHeight - fImageFactHeight) * fBottom; 217 y = (fPlateHeight - fImageFactHeight) * fBottom;
225 } 218 }
OLDNEW
« no previous file with comments | « fpdfsdk/pdfwindow/PWL_Icon.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698