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 XFA_INCLUDE_FXGRAPHICS_FX_GRAPHICS_H_ | 7 #ifndef XFA_INCLUDE_FXGRAPHICS_FX_GRAPHICS_H_ |
8 #define XFA_INCLUDE_FXGRAPHICS_FX_GRAPHICS_H_ | 8 #define XFA_INCLUDE_FXGRAPHICS_FX_GRAPHICS_H_ |
9 | 9 |
10 #include "core/include/fpdfapi/fpdf_pageobj.h" | 10 #include "core/include/fpdfapi/fpdf_pageobj.h" |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 }; | 93 }; |
94 typedef int32_t FX_DeviceCap; | 94 typedef int32_t FX_DeviceCap; |
95 typedef int32_t FX_FillMode; | 95 typedef int32_t FX_FillMode; |
96 class CFX_RenderDevice; | 96 class CFX_RenderDevice; |
97 class CFX_GraphStateData; | 97 class CFX_GraphStateData; |
98 class CFX_Matrix; | 98 class CFX_Matrix; |
99 class CFX_DIBSource; | 99 class CFX_DIBSource; |
100 class CFX_DIBitmap; | 100 class CFX_DIBitmap; |
101 class CFX_Font; | 101 class CFX_Font; |
102 class CFX_WideString; | 102 class CFX_WideString; |
103 class IFX_FileRead; | |
104 class CFX_PathGenerator; | 103 class CFX_PathGenerator; |
105 class CAGG_Graphics; | 104 class CAGG_Graphics; |
106 class CFX_Graphics; | 105 class CFX_Graphics; |
107 class CFX_Color; | 106 class CFX_Color; |
108 class CFX_Path; | 107 class CFX_Path; |
109 class CFX_Pattern; | 108 class CFX_Pattern; |
110 class CFX_Shading; | 109 class CFX_Shading; |
111 class CFX_Graphics { | 110 class CFX_Graphics { |
112 public: | 111 public: |
113 CFX_Graphics(); | 112 CFX_Graphics(); |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 FX_FLOAT _endRadius; | 461 FX_FLOAT _endRadius; |
463 FX_BOOL _isExtendedBegin; | 462 FX_BOOL _isExtendedBegin; |
464 FX_BOOL _isExtendedEnd; | 463 FX_BOOL _isExtendedEnd; |
465 FX_ARGB _beginArgb; | 464 FX_ARGB _beginArgb; |
466 FX_ARGB _endArgb; | 465 FX_ARGB _endArgb; |
467 FX_ARGB _argbArray[FX_SHADING_Steps]; | 466 FX_ARGB _argbArray[FX_SHADING_Steps]; |
468 friend class CFX_Graphics; | 467 friend class CFX_Graphics; |
469 }; | 468 }; |
470 | 469 |
471 #endif // XFA_INCLUDE_FXGRAPHICS_FX_GRAPHICS_H_ | 470 #endif // XFA_INCLUDE_FXGRAPHICS_FX_GRAPHICS_H_ |
OLD | NEW |