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/cpdf_array.h" |
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" | 10 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" |
11 #include "fpdfsdk/pdfwindow/PWL_Utils.h" | 11 #include "fpdfsdk/pdfwindow/PWL_Utils.h" |
12 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" | 12 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" |
13 | 13 |
14 CPWL_Image::CPWL_Image() : m_pPDFStream(nullptr) {} | 14 CPWL_Image::CPWL_Image() : m_pPDFStream(nullptr) {} |
15 | 15 |
16 CPWL_Image::~CPWL_Image() {} | 16 CPWL_Image::~CPWL_Image() {} |
17 | 17 |
18 CFX_ByteString CPWL_Image::GetImageAppStream() { | 18 CFX_ByteString CPWL_Image::GetImageAppStream() { |
19 CFX_ByteTextBuf sAppStream; | 19 CFX_ByteTextBuf sAppStream; |
20 | 20 |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 FX_FLOAT fImageFactHeight = fImageHeight * fVScale; | 214 FX_FLOAT fImageFactHeight = fImageHeight * fVScale; |
215 | 215 |
216 FX_FLOAT fPlateWidth, fPlateHeight; | 216 FX_FLOAT fPlateWidth, fPlateHeight; |
217 CFX_FloatRect rcPlate = GetClientRect(); | 217 CFX_FloatRect rcPlate = GetClientRect(); |
218 fPlateWidth = rcPlate.right - rcPlate.left; | 218 fPlateWidth = rcPlate.right - rcPlate.left; |
219 fPlateHeight = rcPlate.top - rcPlate.bottom; | 219 fPlateHeight = rcPlate.top - rcPlate.bottom; |
220 | 220 |
221 x = (fPlateWidth - fImageFactWidth) * fLeft; | 221 x = (fPlateWidth - fImageFactWidth) * fLeft; |
222 y = (fPlateHeight - fImageFactHeight) * fBottom; | 222 y = (fPlateHeight - fImageFactHeight) * fBottom; |
223 } | 223 } |
OLD | NEW |