| 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 #include "xfa/fxfa/app/xfa_rendercontext.h" | 7 #include "xfa/include/fxfa/xfa_rendercontext.h" |
| 8 | 8 |
| 9 #include "xfa/fxfa/app/xfa_ffwidget.h" | 9 #include "xfa/fxfa/app/xfa_ffwidget.h" |
| 10 #include "xfa/fxgraphics/include/cfx_graphics.h" | 10 #include "xfa/fxgraphics/include/cfx_graphics.h" |
| 11 #include "xfa/include/fxfa/xfa_ffpageview.h" |
| 11 | 12 |
| 12 #define XFA_RENDERCONTEXT_MaxCount 30 | 13 #define XFA_RENDERCONTEXT_MaxCount 30 |
| 13 | 14 |
| 14 IXFA_RenderContext* XFA_RenderContext_Create() { | |
| 15 return new CXFA_RenderContext; | |
| 16 } | |
| 17 CXFA_RenderContext::CXFA_RenderContext() { | 15 CXFA_RenderContext::CXFA_RenderContext() { |
| 18 m_pWidgetIterator = NULL; | 16 m_pWidgetIterator = NULL; |
| 19 m_pWidget = NULL; | 17 m_pWidget = NULL; |
| 20 m_pPageView = NULL; | 18 m_pPageView = NULL; |
| 21 m_pGS = NULL; | 19 m_pGS = NULL; |
| 22 m_dwStatus = 0; | 20 m_dwStatus = 0; |
| 23 m_matrix.SetIdentity(); | 21 m_matrix.SetIdentity(); |
| 24 m_rtClipRect.Reset(); | 22 m_rtClipRect.Reset(); |
| 25 } | 23 } |
| 26 CXFA_RenderContext::~CXFA_RenderContext() { | 24 CXFA_RenderContext::~CXFA_RenderContext() { |
| 27 StopRender(); | 25 StopRender(); |
| 28 } | 26 } |
| 29 int32_t CXFA_RenderContext::StartRender(IXFA_PageView* pPageView, | 27 int32_t CXFA_RenderContext::StartRender(CXFA_FFPageView* pPageView, |
| 30 CFX_Graphics* pGS, | 28 CFX_Graphics* pGS, |
| 31 const CFX_Matrix& matrix, | 29 const CFX_Matrix& matrix, |
| 32 const CXFA_RenderOptions& options) { | 30 const CXFA_RenderOptions& options) { |
| 33 m_pPageView = pPageView; | 31 m_pPageView = pPageView; |
| 34 m_pGS = pGS; | 32 m_pGS = pGS; |
| 35 m_matrix = matrix; | 33 m_matrix = matrix; |
| 36 m_options = options; | 34 m_options = options; |
| 37 CFX_RectF rtPage; | 35 CFX_RectF rtPage; |
| 38 pGS->GetClipRect(rtPage); | 36 pGS->GetClipRect(rtPage); |
| 39 CFX_Matrix mtRes; | 37 CFX_Matrix mtRes; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 68 } | 66 } |
| 69 } | 67 } |
| 70 return XFA_RENDERSTATUS_Done; | 68 return XFA_RENDERSTATUS_Done; |
| 71 } | 69 } |
| 72 void CXFA_RenderContext::StopRender() { | 70 void CXFA_RenderContext::StopRender() { |
| 73 if (m_pWidgetIterator) { | 71 if (m_pWidgetIterator) { |
| 74 m_pWidgetIterator->Release(); | 72 m_pWidgetIterator->Release(); |
| 75 m_pWidgetIterator = NULL; | 73 m_pWidgetIterator = NULL; |
| 76 } | 74 } |
| 77 } | 75 } |
| OLD | NEW |