| 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 CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ |
| 8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ |
| 9 | 9 |
| 10 #include "core/include/fpdfapi/fpdf_resource.h" |
| 10 #include "core/include/fxge/fx_ge.h" | 11 #include "core/include/fxge/fx_ge.h" |
| 11 #include "fpdf_resource.h" | |
| 12 | 12 |
| 13 class CPDF_ClipPath; | 13 class CPDF_ClipPath; |
| 14 class CPDF_ClipPathData; | 14 class CPDF_ClipPathData; |
| 15 class CPDF_ColorState; | 15 class CPDF_ColorState; |
| 16 class CPDF_ColorStateData; | 16 class CPDF_ColorStateData; |
| 17 class CPDF_ContentMark; | 17 class CPDF_ContentMark; |
| 18 class CPDF_ContentMarkItem; | 18 class CPDF_ContentMarkItem; |
| 19 class CPDF_FormObject; | 19 class CPDF_FormObject; |
| 20 class CPDF_GeneralState; | 20 class CPDF_GeneralState; |
| 21 class CPDF_GeneralStateData; | 21 class CPDF_GeneralStateData; |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 void CalcBoundingBox(); | 543 void CalcBoundingBox(); |
| 544 | 544 |
| 545 CPDF_Form* m_pForm; | 545 CPDF_Form* m_pForm; |
| 546 CFX_Matrix m_FormMatrix; | 546 CFX_Matrix m_FormMatrix; |
| 547 | 547 |
| 548 protected: | 548 protected: |
| 549 void CopyData(const CPDF_PageObject* pSrcObject) override; | 549 void CopyData(const CPDF_PageObject* pSrcObject) override; |
| 550 }; | 550 }; |
| 551 | 551 |
| 552 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ | 552 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ |
| OLD | NEW |