| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 return FALSE; | 126 return FALSE; |
| 127 } | 127 } |
| 128 | 128 |
| 129 void CPWL_Icon::GetIconPosition(FX_FLOAT& fLeft, FX_FLOAT& fBottom) { | 129 void CPWL_Icon::GetIconPosition(FX_FLOAT& fLeft, FX_FLOAT& fBottom) { |
| 130 if (m_pIconFit) { | 130 if (m_pIconFit) { |
| 131 fLeft = 0.0f; | 131 fLeft = 0.0f; |
| 132 fBottom = 0.0f; | 132 fBottom = 0.0f; |
| 133 CPDF_Array* pA = | 133 CPDF_Array* pA = |
| 134 m_pIconFit->GetDict() ? m_pIconFit->GetDict()->GetArrayBy("A") : NULL; | 134 m_pIconFit->GetDict() ? m_pIconFit->GetDict()->GetArrayBy("A") : NULL; |
| 135 if (pA) { | 135 if (pA) { |
| 136 uint32_t dwCount = pA->GetCount(); | 136 size_t dwCount = pA->GetCount(); |
| 137 if (dwCount > 0) | 137 if (dwCount > 0) |
| 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 } |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |