Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1328)

Unified Diff: core/fpdfapi/fpdf_page/include/cpdf_pageobject.h

Issue 2379033002: Move core/fpdfapi/fpdf_page/include to core/fpdfapi/fpdf_page (Closed)
Patch Set: Header sort Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/fpdfapi/fpdf_page/include/cpdf_page.h ('k') | core/fpdfapi/fpdf_page/include/cpdf_pageobjectholder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fpdfapi/fpdf_page/include/cpdf_pageobject.h
diff --git a/core/fpdfapi/fpdf_page/include/cpdf_pageobject.h b/core/fpdfapi/fpdf_page/include/cpdf_pageobject.h
deleted file mode 100644
index d9d584388e47e0242915e196997e6ea35b9b9ce3..0000000000000000000000000000000000000000
--- a/core/fpdfapi/fpdf_page/include/cpdf_pageobject.h
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2016 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 CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_PAGEOBJECT_H_
-#define CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_PAGEOBJECT_H_
-
-#include "core/fpdfapi/fpdf_page/cpdf_contentmark.h"
-#include "core/fpdfapi/fpdf_page/cpdf_graphicstates.h"
-#include "core/fxcrt/include/fx_coordinates.h"
-#include "core/fxcrt/include/fx_system.h"
-
-class CPDF_TextObject;
-class CPDF_PathObject;
-class CPDF_ImageObject;
-class CPDF_ShadingObject;
-class CPDF_FormObject;
-
-class CPDF_PageObject : public CPDF_GraphicStates {
- public:
- enum Type {
- TEXT = 1,
- PATH,
- IMAGE,
- SHADING,
- FORM,
- };
-
- CPDF_PageObject();
- ~CPDF_PageObject() override;
-
- virtual CPDF_PageObject* Clone() const = 0;
- virtual Type GetType() const = 0;
- virtual void Transform(const CFX_Matrix& matrix) = 0;
- virtual bool IsText() const;
- virtual bool IsPath() const;
- virtual bool IsImage() const;
- virtual bool IsShading() const;
- virtual bool IsForm() const;
- virtual CPDF_TextObject* AsText();
- virtual const CPDF_TextObject* AsText() const;
- virtual CPDF_PathObject* AsPath();
- virtual const CPDF_PathObject* AsPath() const;
- virtual CPDF_ImageObject* AsImage();
- virtual const CPDF_ImageObject* AsImage() const;
- virtual CPDF_ShadingObject* AsShading();
- virtual const CPDF_ShadingObject* AsShading() const;
- virtual CPDF_FormObject* AsForm();
- virtual const CPDF_FormObject* AsForm() const;
-
- void TransformClipPath(CFX_Matrix& matrix);
- void TransformGeneralState(CFX_Matrix& matrix);
- FX_RECT GetBBox(const CFX_Matrix* pMatrix) const;
-
- FX_FLOAT m_Left;
- FX_FLOAT m_Right;
- FX_FLOAT m_Top;
- FX_FLOAT m_Bottom;
- CPDF_ContentMark m_ContentMark;
-
- protected:
- void CopyData(const CPDF_PageObject* pSrcObject);
-
- private:
- CPDF_PageObject(const CPDF_PageObject& src) = delete;
- void operator=(const CPDF_PageObject& src) = delete;
-};
-
-#endif // CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_PAGEOBJECT_H_
« no previous file with comments | « core/fpdfapi/fpdf_page/include/cpdf_page.h ('k') | core/fpdfapi/fpdf_page/include/cpdf_pageobjectholder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698