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_RENDER_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ |
8 #define CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 | 12 |
13 #include "core/include/fpdfapi/fpdf_page.h" | 13 #include "core/include/fpdfapi/fpdf_page.h" |
14 #include "core/include/fxge/fx_ge.h" | 14 #include "core/include/fxge/fx_ge.h" |
15 | 15 |
16 class CFX_GraphStateData; | 16 class CFX_GraphStateData; |
17 class CFX_PathData; | 17 class CFX_PathData; |
18 class CFX_RenderDevice; | 18 class CFX_RenderDevice; |
19 class CPDF_FormObject; | |
20 class CPDF_ImageCacheEntry; | 19 class CPDF_ImageCacheEntry; |
21 class CPDF_ImageObject; | |
22 class CPDF_PathObject; | |
23 class CPDF_RenderStatus; | 20 class CPDF_RenderStatus; |
24 class CPDF_ShadingObject; | |
25 class CPDF_TextObject; | |
26 class IFX_Pause; | 21 class IFX_Pause; |
27 | 22 |
28 class IPDF_OCContext { | 23 class IPDF_OCContext { |
29 public: | 24 public: |
30 virtual ~IPDF_OCContext() {} | 25 virtual ~IPDF_OCContext() {} |
31 | 26 |
32 virtual FX_BOOL CheckOCGVisible(const CPDF_Dictionary* pOCG) = 0; | 27 virtual FX_BOOL CheckOCGVisible(const CPDF_Dictionary* pOCG) = 0; |
33 | 28 |
34 FX_BOOL CheckObjectVisible(const CPDF_PageObject* pObj); | 29 FX_BOOL CheckObjectVisible(const CPDF_PageObject* pObj); |
35 }; | 30 }; |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 CPDF_ImageCacheEntry* m_pCurImageCacheEntry; | 254 CPDF_ImageCacheEntry* m_pCurImageCacheEntry; |
260 std::map<CPDF_Stream*, CPDF_ImageCacheEntry*> m_ImageCache; | 255 std::map<CPDF_Stream*, CPDF_ImageCacheEntry*> m_ImageCache; |
261 FX_DWORD m_nTimeCount; | 256 FX_DWORD m_nTimeCount; |
262 FX_DWORD m_nCacheSize; | 257 FX_DWORD m_nCacheSize; |
263 FX_BOOL m_bCurFindCache; | 258 FX_BOOL m_bCurFindCache; |
264 }; | 259 }; |
265 | 260 |
266 FX_BOOL IsAvailableMatrix(const CFX_Matrix& matrix); | 261 FX_BOOL IsAvailableMatrix(const CFX_Matrix& matrix); |
267 | 262 |
268 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ | 263 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ |
OLD | NEW |