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/src/foxitlib.h" | 7 #include "xfa/src/foxitlib.h" |
| 8 #include "xfa/src/fxfa/src/app/xfa_ffwidget.h" |
| 9 #include "xfa/src/fxfa/src/app/xfa_rendercontext.h" |
8 #include "xfa/src/fxfa/src/common/xfa_common.h" | 10 #include "xfa/src/fxfa/src/common/xfa_common.h" |
9 #include "xfa/src/fxfa/src/app/xfa_rendercontext.h" | |
10 #include "xfa/src/fxfa/src/app/xfa_ffwidget.h" | |
11 #define XFA_RENDERCONTEXT_MaxCount 30 | 11 #define XFA_RENDERCONTEXT_MaxCount 30 |
12 IXFA_RenderContext* XFA_RenderContext_Create() { | 12 IXFA_RenderContext* XFA_RenderContext_Create() { |
13 return new CXFA_RenderContext; | 13 return new CXFA_RenderContext; |
14 } | 14 } |
15 CXFA_RenderContext::CXFA_RenderContext() { | 15 CXFA_RenderContext::CXFA_RenderContext() { |
16 m_pWidgetIterator = NULL; | 16 m_pWidgetIterator = NULL; |
17 m_pWidget = NULL; | 17 m_pWidget = NULL; |
18 m_pPageView = NULL; | 18 m_pPageView = NULL; |
19 m_pGS = NULL; | 19 m_pGS = NULL; |
20 m_dwStatus = 0; | 20 m_dwStatus = 0; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 } | 66 } |
67 } | 67 } |
68 return XFA_RENDERSTATUS_Done; | 68 return XFA_RENDERSTATUS_Done; |
69 } | 69 } |
70 void CXFA_RenderContext::StopRender() { | 70 void CXFA_RenderContext::StopRender() { |
71 if (m_pWidgetIterator) { | 71 if (m_pWidgetIterator) { |
72 m_pWidgetIterator->Release(); | 72 m_pWidgetIterator->Release(); |
73 m_pWidgetIterator = NULL; | 73 m_pWidgetIterator = NULL; |
74 } | 74 } |
75 } | 75 } |
OLD | NEW |