diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-12-10 15:34:55 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-12-10 15:34:55 -0800 |
commit | 60d909e9d4444b2b8582275624ee97734d331a38 (patch) | |
tree | 6a884e5dd0c785c141919531033de7e2fc5b0e01 /core/include/fpdfapi/fpdf_pageobj.h | |
parent | 33c8c7602f8981c32d37a9b2e25496401e914391 (diff) | |
download | pdfium-60d909e9d4444b2b8582275624ee97734d331a38.tar.xz |
Merge to XFA: Remove CFX_AffineMatrix/CPDF_Matrix
Review URL: https://codereview.chromium.org/1513363002 .
(cherry picked from commit f32c969bce6743fca1e7ff796b54a1692d26d7f0)
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1519693002 .
Diffstat (limited to 'core/include/fpdfapi/fpdf_pageobj.h')
-rw-r--r-- | core/include/fpdfapi/fpdf_pageobj.h | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/core/include/fpdfapi/fpdf_pageobj.h b/core/include/fpdfapi/fpdf_pageobj.h index 886930ffe7..2b6f78e63f 100644 --- a/core/include/fpdfapi/fpdf_pageobj.h +++ b/core/include/fpdfapi/fpdf_pageobj.h @@ -52,11 +52,9 @@ class CPDF_Path : public CFX_CountRef<CFX_PathData> { return m_pObject->GetBoundingBox(line_width, miter_limit); } - void Transform(const CFX_AffineMatrix* pMatrix) { - GetModify()->Transform(pMatrix); - } + void Transform(const CFX_Matrix* pMatrix) { GetModify()->Transform(pMatrix); } - void Append(CPDF_Path src, const CFX_AffineMatrix* pMatrix) { + void Append(CPDF_Path src, const CFX_Matrix* pMatrix) { m_pObject->Append(src.m_pObject, pMatrix); } @@ -109,7 +107,7 @@ class CPDF_ClipPath : public CFX_CountRef<CPDF_ClipPathData> { void AppendTexts(CPDF_TextObject** pTexts, int count); - void Transform(const CFX_AffineMatrix& matrix); + void Transform(const CFX_Matrix& matrix); }; class CPDF_ColorStateData { public: @@ -362,7 +360,7 @@ class CPDF_PageObject : public CPDF_GraphicStates { void Copy(const CPDF_PageObject* pSrcObject); - virtual void Transform(const CFX_AffineMatrix& matrix) = 0; + virtual void Transform(const CFX_Matrix& matrix) = 0; void RemoveClipPath(); @@ -370,13 +368,13 @@ class CPDF_PageObject : public CPDF_GraphicStates { void CopyClipPath(CPDF_PageObject* pObj); - void TransformClipPath(CFX_AffineMatrix& matrix); + void TransformClipPath(CFX_Matrix& matrix); - void TransformGeneralState(CFX_AffineMatrix& matrix); + void TransformGeneralState(CFX_Matrix& matrix); void SetColorState(CPDF_ColorState state) { m_ColorState = state; } - FX_RECT GetBBox(const CFX_AffineMatrix* pMatrix) const; + FX_RECT GetBBox(const CFX_Matrix* pMatrix) const; int m_Type; @@ -427,7 +425,7 @@ class CPDF_TextObject : public CPDF_PageObject { FX_FLOAT GetPosY() const { return m_PosY; } - void GetTextMatrix(CFX_AffineMatrix* pMatrix) const; + void GetTextMatrix(CFX_Matrix* pMatrix) const; CPDF_Font* GetFont() const { return m_TextState.GetFont(); } @@ -446,7 +444,7 @@ class CPDF_TextObject : public CPDF_PageObject { void SetTextState(CPDF_TextState TextState); // CPDF_PageObject: - void Transform(const CFX_AffineMatrix& matrix) override; + void Transform(const CFX_Matrix& matrix) override; void CalcCharPos(FX_FLOAT* pPosArray) const; @@ -495,7 +493,7 @@ class CPDF_PathObject : public CPDF_PageObject { CPDF_PathObject() { m_Type = PDFPAGE_PATH; } ~CPDF_PathObject() override {} - void Transform(const CFX_AffineMatrix& maxtrix) override; + void Transform(const CFX_Matrix& maxtrix) override; void SetGraphState(CPDF_GraphState GraphState); @@ -507,7 +505,7 @@ class CPDF_PathObject : public CPDF_PageObject { FX_BOOL m_bStroke; - CFX_AffineMatrix m_Matrix; + CFX_Matrix m_Matrix; protected: void CopyData(const CPDF_PageObject* pSrcObject) override; @@ -518,11 +516,11 @@ class CPDF_ImageObject : public CPDF_PageObject { CPDF_ImageObject(); ~CPDF_ImageObject() override; - void Transform(const CFX_AffineMatrix& matrix) override; + void Transform(const CFX_Matrix& matrix) override; CPDF_Image* m_pImage; - CFX_AffineMatrix m_Matrix; + CFX_Matrix m_Matrix; void CalcBoundingBox(); @@ -537,9 +535,9 @@ class CPDF_ShadingObject : public CPDF_PageObject { CPDF_ShadingPattern* m_pShading; - CFX_AffineMatrix m_Matrix; + CFX_Matrix m_Matrix; - void Transform(const CFX_AffineMatrix& matrix) override; + void Transform(const CFX_Matrix& matrix) override; void CalcBoundingBox(); @@ -555,11 +553,11 @@ class CPDF_FormObject : public CPDF_PageObject { } ~CPDF_FormObject() override; - void Transform(const CFX_AffineMatrix& matrix) override; + void Transform(const CFX_Matrix& matrix) override; CPDF_Form* m_pForm; - CFX_AffineMatrix m_FormMatrix; + CFX_Matrix m_FormMatrix; void CalcBoundingBox(); |