| 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_SRC_FWL_CORE_FWL_WIDGETIMP_H_ | 7 #ifndef XFA_FWL_CORE_FWL_WIDGETIMP_H_ |
| 8 #define XFA_SRC_FWL_CORE_FWL_WIDGETIMP_H_ | 8 #define XFA_FWL_CORE_FWL_WIDGETIMP_H_ |
| 9 | 9 |
| 10 #include "xfa/fwl/core/fwl_targetimp.h" |
| 10 #include "xfa/include/fwl/core/fwl_widget.h" | 11 #include "xfa/include/fwl/core/fwl_widget.h" |
| 11 #include "xfa/src/fwl/core/fwl_targetimp.h" | |
| 12 | 12 |
| 13 class CFWL_NoteThreadImp; | 13 class CFWL_NoteThreadImp; |
| 14 class CFWL_WidgetImpProperties; | 14 class CFWL_WidgetImpProperties; |
| 15 class CFWL_WidgetMgr; | 15 class CFWL_WidgetMgr; |
| 16 class IFWL_DataProvider; | 16 class IFWL_DataProvider; |
| 17 class IFWL_ThemeProvider; | 17 class IFWL_ThemeProvider; |
| 18 class IFWL_Widget; | 18 class IFWL_Widget; |
| 19 class IFWL_WidgetDelegate; | 19 class IFWL_WidgetDelegate; |
| 20 | 20 |
| 21 class CFWL_WidgetImp : public CFWL_TargetImp { | 21 class CFWL_WidgetImp : public CFWL_TargetImp { |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 class CFWL_WidgetImpDelegate : public IFWL_WidgetDelegate { | 152 class CFWL_WidgetImpDelegate : public IFWL_WidgetDelegate { |
| 153 public: | 153 public: |
| 154 CFWL_WidgetImpDelegate(); | 154 CFWL_WidgetImpDelegate(); |
| 155 ~CFWL_WidgetImpDelegate() override {} | 155 ~CFWL_WidgetImpDelegate() override {} |
| 156 int32_t OnProcessMessage(CFWL_Message* pMessage) override; | 156 int32_t OnProcessMessage(CFWL_Message* pMessage) override; |
| 157 FWL_ERR OnProcessEvent(CFWL_Event* pEvent) override; | 157 FWL_ERR OnProcessEvent(CFWL_Event* pEvent) override; |
| 158 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics, | 158 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics, |
| 159 const CFX_Matrix* pMatrix = NULL) override; | 159 const CFX_Matrix* pMatrix = NULL) override; |
| 160 }; | 160 }; |
| 161 | 161 |
| 162 #endif // XFA_SRC_FWL_CORE_FWL_WIDGETIMP_H_ | 162 #endif // XFA_FWL_CORE_FWL_WIDGETIMP_H_ |
| OLD | NEW |