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/include/xfa_rendercontext.h" | 7 #include "xfa/fxfa/include/xfa_rendercontext.h" |
8 | 8 |
9 #include "xfa/fxfa/include/xfa_ffpageview.h" | 9 #include "xfa/fxfa/include/xfa_ffpageview.h" |
10 #include "xfa/fxfa/include/xfa_ffwidget.h" | 10 #include "xfa/fxfa/include/xfa_ffwidget.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 m_pPageView = pPageView; | 31 m_pPageView = pPageView; |
32 m_pGS = pGS; | 32 m_pGS = pGS; |
33 m_matrix = matrix; | 33 m_matrix = matrix; |
34 m_options = options; | 34 m_options = options; |
35 CFX_RectF rtPage; | 35 CFX_RectF rtPage; |
36 pGS->GetClipRect(rtPage); | 36 pGS->GetClipRect(rtPage); |
37 CFX_Matrix mtRes; | 37 CFX_Matrix mtRes; |
38 mtRes.SetReverse(matrix); | 38 mtRes.SetReverse(matrix); |
39 m_rtClipRect.Set(rtPage.left, rtPage.top, rtPage.width, rtPage.height); | 39 m_rtClipRect.Set(rtPage.left, rtPage.top, rtPage.width, rtPage.height); |
40 mtRes.TransformRect(m_rtClipRect); | 40 mtRes.TransformRect(m_rtClipRect); |
41 m_dwStatus = m_options.m_bHighlight ? XFA_WIDGETSTATUS_Highlight : 0; | 41 m_dwStatus = m_options.m_bHighlight ? XFA_WidgetStatus_Highlight : 0; |
42 uint32_t dwFilterType = XFA_WIDGETFILTER_Visible | XFA_WIDGETFILTER_AllType | | 42 uint32_t dwFilterType = XFA_WidgetStatus_Visible | |
43 (m_options.m_bPrint ? XFA_WIDGETSTATUS_Printable | 43 (m_options.m_bPrint ? XFA_WidgetStatus_Printable |
44 : XFA_WIDGETSTATUS_Viewable); | 44 : XFA_WidgetStatus_Viewable); |
45 m_pWidgetIterator = | 45 m_pWidgetIterator = |
46 m_pPageView->CreateWidgetIterator(XFA_TRAVERSEWAY_Form, dwFilterType); | 46 m_pPageView->CreateWidgetIterator(XFA_TRAVERSEWAY_Form, dwFilterType); |
47 m_pWidget = m_pWidgetIterator->MoveToNext(); | 47 m_pWidget = m_pWidgetIterator->MoveToNext(); |
48 return XFA_RENDERSTATUS_Ready; | 48 return XFA_RENDERSTATUS_Ready; |
49 } | 49 } |
50 int32_t CXFA_RenderContext::DoRender(IFX_Pause* pPause) { | 50 int32_t CXFA_RenderContext::DoRender(IFX_Pause* pPause) { |
51 int32_t iCount = 0; | 51 int32_t iCount = 0; |
52 while (m_pWidget) { | 52 while (m_pWidget) { |
53 CXFA_FFWidget* pWidget = (CXFA_FFWidget*)m_pWidget; | 53 CXFA_FFWidget* pWidget = (CXFA_FFWidget*)m_pWidget; |
54 CFX_RectF rtWidgetBox; | 54 CFX_RectF rtWidgetBox; |
55 pWidget->GetBBox(rtWidgetBox, XFA_WIDGETSTATUS_Visible); | 55 pWidget->GetBBox(rtWidgetBox, XFA_WidgetStatus_Visible); |
56 rtWidgetBox.width += 1; | 56 rtWidgetBox.width += 1; |
57 rtWidgetBox.height += 1; | 57 rtWidgetBox.height += 1; |
58 if (rtWidgetBox.IntersectWith(m_rtClipRect)) { | 58 if (rtWidgetBox.IntersectWith(m_rtClipRect)) { |
59 pWidget->RenderWidget(m_pGS, &m_matrix, m_dwStatus); | 59 pWidget->RenderWidget(m_pGS, &m_matrix, m_dwStatus); |
60 } | 60 } |
61 m_pWidget = m_pWidgetIterator->MoveToNext(); | 61 m_pWidget = m_pWidgetIterator->MoveToNext(); |
62 iCount++; | 62 iCount++; |
63 if (iCount > XFA_RENDERCONTEXT_MaxCount && pPause && | 63 if (iCount > XFA_RENDERCONTEXT_MaxCount && pPause && |
64 pPause->NeedToPauseNow()) { | 64 pPause->NeedToPauseNow()) { |
65 return XFA_RENDERSTATUS_ToBeContinued; | 65 return XFA_RENDERSTATUS_ToBeContinued; |
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 delete m_pWidgetIterator; | 71 delete m_pWidgetIterator; |
72 m_pWidgetIterator = nullptr; | 72 m_pWidgetIterator = nullptr; |
73 } | 73 } |
OLD | NEW |