| 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 "../fxge/fx_ge.h" | 10 #include "../fxge/fx_ge.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 ~CPDF_ClipPathData(); | 108 ~CPDF_ClipPathData(); |
| 109 | 109 |
| 110 void SetCount(int path_count, int text_count)
; | 110 void SetCount(int path_count, int text_count)
; |
| 111 public: | 111 public: |
| 112 | 112 |
| 113 int m_PathCount; | 113 int m_PathCount; |
| 114 | 114 |
| 115 CPDF_Path* m_pPathList; | 115 CPDF_Path* m_pPathList; |
| 116 | 116 |
| 117 FX_BYTE*» » » m_pTypeList; | 117 uint8_t*» » » m_pTypeList; |
| 118 | 118 |
| 119 int m_TextCount; | 119 int m_TextCount; |
| 120 | 120 |
| 121 CPDF_TextObject** m_pTextList; | 121 CPDF_TextObject** m_pTextList; |
| 122 }; | 122 }; |
| 123 class CPDF_ClipPath : public CFX_CountRef<CPDF_ClipPathData> | 123 class CPDF_ClipPath : public CFX_CountRef<CPDF_ClipPathData> |
| 124 { | 124 { |
| 125 public: | 125 public: |
| 126 | 126 |
| 127 FX_DWORD GetPathCount() const | 127 FX_DWORD GetPathCount() const |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 | 710 |
| 711 CFX_ArrayTemplate<CFX_AffineMatrix> m_Matrices; | 711 CFX_ArrayTemplate<CFX_AffineMatrix> m_Matrices; |
| 712 | 712 |
| 713 void AddMatrix(CFX_AffineMatrix& matrix); | 713 void AddMatrix(CFX_AffineMatrix& matrix); |
| 714 protected: | 714 protected: |
| 715 virtual void Transform(const CFX_AffineMatrix& matrix) {} | 715 virtual void Transform(const CFX_AffineMatrix& matrix) {} |
| 716 virtual void CopyData(const CPDF_PageObject* pSrcObjet) {} | 716 virtual void CopyData(const CPDF_PageObject* pSrcObjet) {} |
| 717 }; | 717 }; |
| 718 | 718 |
| 719 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ | 719 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ |
| OLD | NEW |