OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |