| 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_CFWL_WIDGETMGR_H_ |
| 8 #define XFA_FWL_CORE_CFWL_WIDGETMGR_H_ | 8 #define XFA_FWL_CFWL_WIDGETMGR_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "core/fxcrt/fx_system.h" | 13 #include "core/fxcrt/fx_system.h" |
| 14 #include "xfa/fwl/core/fwl_error.h" | 14 #include "xfa/fwl/fwl_error.h" |
| 15 #include "xfa/fwl/core/ifwl_widgetmgrdelegate.h" | 15 #include "xfa/fwl/ifwl_widgetmgrdelegate.h" |
| 16 #include "xfa/fxgraphics/cfx_graphics.h" | 16 #include "xfa/fxgraphics/cfx_graphics.h" |
| 17 | 17 |
| 18 #define FWL_WGTMGR_DisableForm 0x00000002 | 18 #define FWL_WGTMGR_DisableForm 0x00000002 |
| 19 | 19 |
| 20 class CFWL_Message; | 20 class CFWL_Message; |
| 21 class CXFA_FFApp; | 21 class CXFA_FFApp; |
| 22 class CXFA_FWLAdapterWidgetMgr; | 22 class CXFA_FWLAdapterWidgetMgr; |
| 23 class CFX_Graphics; | 23 class CFX_Graphics; |
| 24 class CFX_Matrix; | 24 class CFX_Matrix; |
| 25 class CFWL_Widget; | 25 class CFWL_Widget; |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 bool IsAbleNative(CFWL_Widget* pWidget) const; | 123 bool IsAbleNative(CFWL_Widget* pWidget) const; |
| 124 | 124 |
| 125 uint32_t m_dwCapability; | 125 uint32_t m_dwCapability; |
| 126 std::map<CFWL_Widget*, std::unique_ptr<Item>> m_mapWidgetItem; | 126 std::map<CFWL_Widget*, std::unique_ptr<Item>> m_mapWidgetItem; |
| 127 CXFA_FWLAdapterWidgetMgr* const m_pAdapter; | 127 CXFA_FWLAdapterWidgetMgr* const m_pAdapter; |
| 128 #if (_FX_OS_ == _FX_WIN32_DESKTOP_) || (_FX_OS_ == _FX_WIN64_) | 128 #if (_FX_OS_ == _FX_WIN32_DESKTOP_) || (_FX_OS_ == _FX_WIN64_) |
| 129 CFX_RectF m_rtScreen; | 129 CFX_RectF m_rtScreen; |
| 130 #endif | 130 #endif |
| 131 }; | 131 }; |
| 132 | 132 |
| 133 #endif // XFA_FWL_CORE_CFWL_WIDGETMGR_H_ | 133 #endif // XFA_FWL_CFWL_WIDGETMGR_H_ |
| OLD | NEW |