| 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 #ifndef _FPDF_PAGEOBJ_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ |
| 8 #define _FPDF_PAGEOBJ_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ |
| 9 #ifndef _FPDF_RESOURCE_ | 9 |
| 10 #include "../fxge/fx_ge.h" |
| 10 #include "fpdf_resource.h" | 11 #include "fpdf_resource.h" |
| 11 #endif | 12 |
| 12 #ifndef _FX_GE_H_ | |
| 13 #include "../fxge/fx_ge.h" | |
| 14 #endif | |
| 15 class CPDF_Path; | 13 class CPDF_Path; |
| 16 class CPDF_ClipPathData; | 14 class CPDF_ClipPathData; |
| 17 class CPDF_ClipPath; | 15 class CPDF_ClipPath; |
| 18 class CPDF_ColorStateData; | 16 class CPDF_ColorStateData; |
| 19 class CPDF_ColorState; | 17 class CPDF_ColorState; |
| 20 class CPDF_GraphState; | 18 class CPDF_GraphState; |
| 21 class CPDF_TextStateData; | 19 class CPDF_TextStateData; |
| 22 class CPDF_TextState; | 20 class CPDF_TextState; |
| 23 class CPDF_GeneralStateData; | 21 class CPDF_GeneralStateData; |
| 24 class CPDF_GeneralState; | 22 class CPDF_GeneralState; |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 | 708 |
| 711 CFX_DIBitmap* m_pBitmap; | 709 CFX_DIBitmap* m_pBitmap; |
| 712 | 710 |
| 713 CFX_ArrayTemplate<CFX_AffineMatrix> m_Matrices; | 711 CFX_ArrayTemplate<CFX_AffineMatrix> m_Matrices; |
| 714 | 712 |
| 715 void AddMatrix(CFX_AffineMatrix& matrix); | 713 void AddMatrix(CFX_AffineMatrix& matrix); |
| 716 protected: | 714 protected: |
| 717 virtual void Transform(const CFX_AffineMatrix& matrix) {} | 715 virtual void Transform(const CFX_AffineMatrix& matrix) {} |
| 718 virtual void CopyData(const CPDF_PageObject* pSrcObjet) {} | 716 virtual void CopyData(const CPDF_PageObject* pSrcObjet) {} |
| 719 }; | 717 }; |
| 720 #endif | 718 |
| 719 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ |
| OLD | NEW |