| 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_MODULE_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ |
| 8 #define CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "core/include/fxcrt/fx_coordinates.h" | 12 #include "core/include/fxcrt/fx_coordinates.h" |
| 13 #include "core/include/fxcrt/fx_system.h" | 13 #include "core/include/fxcrt/fx_system.h" |
| 14 | 14 |
| 15 class CCodec_ModuleMgr; | 15 class CCodec_ModuleMgr; |
| 16 class CFX_BitmapDevice; | 16 class CFX_BitmapDevice; |
| 17 class CFX_DIBSource; | 17 class CFX_DIBSource; |
| 18 class CFX_Matrix; | 18 class CFX_Matrix; |
| 19 class CPDF_ColorSpace; | 19 class CPDF_ColorSpace; |
| 20 class CPDF_Dictionary; | 20 class CPDF_Dictionary; |
| 21 class CPDF_DocPageData; | 21 class CPDF_DocPageData; |
| 22 class CPDF_DocRenderData; | 22 class CPDF_DocRenderData; |
| 23 class CPDF_Document; | 23 class CPDF_Document; |
| 24 class CPDF_FontGlobals; | 24 class CPDF_FontGlobals; |
| 25 class CPDF_Image; | 25 class CPDF_Image; |
| 26 class CPDF_Page; | 26 class CPDF_Page; |
| 27 class CPDF_PageObjects; | 27 class CPDF_PageObjectList; |
| 28 class CPDF_PageRenderCache; | 28 class CPDF_PageRenderCache; |
| 29 class CPDF_RenderConfig; | 29 class CPDF_RenderConfig; |
| 30 class CPDF_RenderOptions; | 30 class CPDF_RenderOptions; |
| 31 class CPDF_SecurityHandler; | 31 class CPDF_SecurityHandler; |
| 32 class CPDF_Stream; | 32 class CPDF_Stream; |
| 33 class ICodec_FaxModule; | 33 class ICodec_FaxModule; |
| 34 class ICodec_FlateModule; | 34 class ICodec_FlateModule; |
| 35 class ICodec_IccModule; | 35 class ICodec_IccModule; |
| 36 class ICodec_Jbig2Module; | 36 class ICodec_Jbig2Module; |
| 37 class ICodec_JpegModule; | 37 class ICodec_JpegModule; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 virtual CPDF_DocRenderData* CreateDocData(CPDF_Document* pDoc) = 0; | 105 virtual CPDF_DocRenderData* CreateDocData(CPDF_Document* pDoc) = 0; |
| 106 virtual void DestroyDocData(CPDF_DocRenderData*) = 0; | 106 virtual void DestroyDocData(CPDF_DocRenderData*) = 0; |
| 107 virtual void ClearDocData(CPDF_DocRenderData*) = 0; | 107 virtual void ClearDocData(CPDF_DocRenderData*) = 0; |
| 108 virtual CPDF_DocRenderData* GetRenderData() = 0; | 108 virtual CPDF_DocRenderData* GetRenderData() = 0; |
| 109 virtual CPDF_PageRenderCache* CreatePageCache(CPDF_Page* pPage) = 0; | 109 virtual CPDF_PageRenderCache* CreatePageCache(CPDF_Page* pPage) = 0; |
| 110 virtual void DestroyPageCache(CPDF_PageRenderCache*) = 0; | 110 virtual void DestroyPageCache(CPDF_PageRenderCache*) = 0; |
| 111 virtual CPDF_RenderConfig* GetConfig() = 0; | 111 virtual CPDF_RenderConfig* GetConfig() = 0; |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 #endif // CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ | 114 #endif // CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ |
| OLD | NEW |