| 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_FWL_CORE_CFWL_WIDGETMGR_H_ | 7 #ifndef XFA_FWL_CORE_CFWL_WIDGETMGR_H_ |
| 8 #define XFA_FWL_CORE_CFWL_WIDGETMGR_H_ | 8 #define XFA_FWL_CORE_CFWL_WIDGETMGR_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "core/fxcrt/include/fx_system.h" | 13 #include "core/fxcrt/fx_system.h" |
| 14 #include "xfa/fwl/core/fwl_error.h" | 14 #include "xfa/fwl/core/fwl_error.h" |
| 15 #include "xfa/fxgraphics/include/cfx_graphics.h" | 15 #include "xfa/fxgraphics/include/cfx_graphics.h" |
| 16 | 16 |
| 17 #define FWL_WGTMGR_DisableThread 0x00000001 | 17 #define FWL_WGTMGR_DisableThread 0x00000001 |
| 18 #define FWL_WGTMGR_DisableForm 0x00000002 | 18 #define FWL_WGTMGR_DisableForm 0x00000002 |
| 19 | 19 |
| 20 class CFWL_Message; | 20 class CFWL_Message; |
| 21 class CFWL_WidgetMgrDelegate; | 21 class CFWL_WidgetMgrDelegate; |
| 22 class CXFA_FFApp; | 22 class CXFA_FFApp; |
| 23 class CXFA_FWLAdapterWidgetMgr; | 23 class CXFA_FWLAdapterWidgetMgr; |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 const CFX_Matrix* pMatrix); | 138 const CFX_Matrix* pMatrix); |
| 139 FX_BOOL IsNeedRepaint(IFWL_Widget* pWidget, | 139 FX_BOOL IsNeedRepaint(IFWL_Widget* pWidget, |
| 140 CFX_Matrix* pMatrix, | 140 CFX_Matrix* pMatrix, |
| 141 const CFX_RectF& rtDirty); | 141 const CFX_RectF& rtDirty); |
| 142 FX_BOOL bUseOffscreenDirect(IFWL_Widget* pWidget); | 142 FX_BOOL bUseOffscreenDirect(IFWL_Widget* pWidget); |
| 143 | 143 |
| 144 CFWL_WidgetMgr* m_pWidgetMgr; | 144 CFWL_WidgetMgr* m_pWidgetMgr; |
| 145 }; | 145 }; |
| 146 | 146 |
| 147 #endif // XFA_FWL_CORE_CFWL_WIDGETMGR_H_ | 147 #endif // XFA_FWL_CORE_CFWL_WIDGETMGR_H_ |
| OLD | NEW |