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