summaryrefslogtreecommitdiff
path: root/fpdfsdk/pdfwindow/cpwl_icon.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-06-02 15:27:22 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-06-02 23:02:09 +0000
commit633a3b7b908031ca0db12d7694d6a09715fc6143 (patch)
tree7ddc360a051b92f196693dc200045fecdf47c849 /fpdfsdk/pdfwindow/cpwl_icon.h
parent12eea8135482911c054e53b482b4176cbd629d97 (diff)
downloadpdfium-633a3b7b908031ca0db12d7694d6a09715fc6143.tar.xz
Rename PWL_FooBar files to cpwl_foo_bar.
Change-Id: I7ed0ba0acbbee291e285555974ebf50c0073668f Reviewed-on: https://pdfium-review.googlesource.com/6250 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_icon.h')
-rw-r--r--fpdfsdk/pdfwindow/cpwl_icon.h58
1 files changed, 58 insertions, 0 deletions
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<CPDF_Stream> 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<CPDF_IconFit> m_pIconFit;
+};
+
+#endif // FPDFSDK_PDFWINDOW_CPWL_ICON_H_