| 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_FXFA_INCLUDE_XFA_RENDERCONTEXT_H_ | 7 #ifndef XFA_FXFA_INCLUDE_XFA_RENDERCONTEXT_H_ |
| 8 #define XFA_FXFA_INCLUDE_XFA_RENDERCONTEXT_H_ | 8 #define XFA_FXFA_INCLUDE_XFA_RENDERCONTEXT_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 class CXFA_RenderContext { | 22 class CXFA_RenderContext { |
| 23 public: | 23 public: |
| 24 CXFA_RenderContext(); | 24 CXFA_RenderContext(); |
| 25 ~CXFA_RenderContext(); | 25 ~CXFA_RenderContext(); |
| 26 | 26 |
| 27 int32_t StartRender(CXFA_FFPageView* pPageView, | 27 int32_t StartRender(CXFA_FFPageView* pPageView, |
| 28 CFX_Graphics* pGS, | 28 CFX_Graphics* pGS, |
| 29 const CFX_Matrix& matrix, | 29 const CFX_Matrix& matrix, |
| 30 const CXFA_RenderOptions& options); | 30 const CXFA_RenderOptions& options); |
| 31 int32_t DoRender(IFX_Pause* pPause = NULL); | 31 int32_t DoRender(IFX_Pause* pPause = nullptr); |
| 32 void StopRender(); | 32 void StopRender(); |
| 33 | 33 |
| 34 protected: | 34 protected: |
| 35 std::unique_ptr<IXFA_WidgetIterator> m_pWidgetIterator; | 35 std::unique_ptr<IXFA_WidgetIterator> m_pWidgetIterator; |
| 36 CXFA_FFWidget* m_pWidget; | 36 CXFA_FFWidget* m_pWidget; |
| 37 CXFA_FFPageView* m_pPageView; | 37 CXFA_FFPageView* m_pPageView; |
| 38 CFX_Graphics* m_pGS; | 38 CFX_Graphics* m_pGS; |
| 39 CFX_Matrix m_matrix; | 39 CFX_Matrix m_matrix; |
| 40 CXFA_RenderOptions m_options; | 40 CXFA_RenderOptions m_options; |
| 41 uint32_t m_dwStatus; | 41 uint32_t m_dwStatus; |
| 42 CFX_RectF m_rtClipRect; | 42 CFX_RectF m_rtClipRect; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 #endif // XFA_FXFA_INCLUDE_XFA_RENDERCONTEXT_H_ | 45 #endif // XFA_FXFA_INCLUDE_XFA_RENDERCONTEXT_H_ |
| OLD | NEW |