From 633a3b7b908031ca0db12d7694d6a09715fc6143 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 2 Jun 2017 15:27:22 -0700 Subject: Rename PWL_FooBar files to cpwl_foo_bar. Change-Id: I7ed0ba0acbbee291e285555974ebf50c0073668f Reviewed-on: https://pdfium-review.googlesource.com/6250 Reviewed-by: Tom Sepez Commit-Queue: Lei Zhang --- fpdfsdk/pdfwindow/cpwl_icon.h | 58 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 fpdfsdk/pdfwindow/cpwl_icon.h (limited to 'fpdfsdk/pdfwindow/cpwl_icon.h') diff --git a/fpdfsdk/pdfwindow/cpwl_icon.h b/fpdfsdk/pdfwindow/cpwl_icon.h new file mode 100644 index 0000000000..c7b8cb4b56 --- /dev/null +++ b/fpdfsdk/pdfwindow/cpwl_icon.h @@ -0,0 +1,58 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef FPDFSDK_PDFWINDOW_CPWL_ICON_H_ +#define FPDFSDK_PDFWINDOW_CPWL_ICON_H_ + +#include "core/fxcrt/cfx_unowned_ptr.h" +#include "core/fxcrt/fx_string.h" +#include "fpdfsdk/pdfwindow/cpwl_wnd.h" + +class CPWL_Image : public CPWL_Wnd { + public: + CPWL_Image(); + ~CPWL_Image() override; + + virtual CFX_ByteString GetImageAppStream(); + + virtual void GetScale(float& fHScale, float& fVScale); + virtual void GetImageOffset(float& x, float& y); + virtual CPDF_Stream* GetPDFStream() const; + + public: + void SetPDFStream(CPDF_Stream* pStream); + void GetImageSize(float& fWidth, float& fHeight); + CFX_Matrix GetImageMatrix(); + CFX_ByteString GetImageAlias(); + void SetImageAlias(const char* sImageAlias); + + protected: + CFX_UnownedPtr m_pPDFStream; + CFX_ByteString m_sImageAlias; +}; + +class CPWL_Icon : public CPWL_Image { + public: + CPWL_Icon(); + ~CPWL_Icon() override; + + virtual CPDF_IconFit* GetIconFit() const; + + // CPWL_Image + void GetScale(float& fHScale, float& fVScale) override; + void GetImageOffset(float& x, float& y) override; + + int32_t GetScaleMethod(); + bool IsProportionalScale(); + void GetIconPosition(float& fLeft, float& fBottom); + + void SetIconFit(CPDF_IconFit* pIconFit) { m_pIconFit = pIconFit; } + + private: + CFX_UnownedPtr m_pIconFit; +}; + +#endif // FPDFSDK_PDFWINDOW_CPWL_ICON_H_ -- cgit v1.2.3