| 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_FWL_WIDGETIMP_H_ | 7 #ifndef XFA_FWL_CORE_FWL_WIDGETIMP_H_ |
| 8 #define XFA_FWL_CORE_FWL_WIDGETIMP_H_ | 8 #define XFA_FWL_CORE_FWL_WIDGETIMP_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "core/fxcrt/fx_coordinates.h" | 12 #include "core/fxcrt/fx_coordinates.h" |
| 13 #include "core/fxcrt/fx_system.h" | 13 #include "core/fxcrt/fx_system.h" |
| 14 #include "xfa/fwl/core/cfwl_event.h" | 14 #include "xfa/fwl/core/cfwl_event.h" |
| 15 #include "xfa/fwl/core/cfwl_themepart.h" | 15 #include "xfa/fwl/core/cfwl_themepart.h" |
| 16 #include "xfa/fwl/core/fwl_widgethit.h" |
| 16 #include "xfa/fwl/core/ifwl_widgetdelegate.h" | 17 #include "xfa/fwl/core/ifwl_widgetdelegate.h" |
| 17 #include "xfa/fwl/core/include/fwl_widgethit.h" | |
| 18 #include "xfa/fwl/theme/cfwl_widgettp.h" | 18 #include "xfa/fwl/theme/cfwl_widgettp.h" |
| 19 | 19 |
| 20 class CFWL_AppImp; | 20 class CFWL_AppImp; |
| 21 class CFWL_MsgKey; | 21 class CFWL_MsgKey; |
| 22 class CFWL_WidgetImpProperties; | 22 class CFWL_WidgetImpProperties; |
| 23 class CFWL_WidgetMgr; | 23 class CFWL_WidgetMgr; |
| 24 class IFWL_App; | 24 class IFWL_App; |
| 25 class IFWL_DataProvider; | 25 class IFWL_DataProvider; |
| 26 class IFWL_ThemeProvider; | 26 class IFWL_ThemeProvider; |
| 27 class IFWL_Widget; | 27 class IFWL_Widget; |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 public: | 173 public: |
| 174 CFWL_WidgetImpDelegate(); | 174 CFWL_WidgetImpDelegate(); |
| 175 ~CFWL_WidgetImpDelegate() override {} | 175 ~CFWL_WidgetImpDelegate() override {} |
| 176 void OnProcessMessage(CFWL_Message* pMessage) override; | 176 void OnProcessMessage(CFWL_Message* pMessage) override; |
| 177 void OnProcessEvent(CFWL_Event* pEvent) override; | 177 void OnProcessEvent(CFWL_Event* pEvent) override; |
| 178 void OnDrawWidget(CFX_Graphics* pGraphics, | 178 void OnDrawWidget(CFX_Graphics* pGraphics, |
| 179 const CFX_Matrix* pMatrix = nullptr) override; | 179 const CFX_Matrix* pMatrix = nullptr) override; |
| 180 }; | 180 }; |
| 181 | 181 |
| 182 #endif // XFA_FWL_CORE_FWL_WIDGETIMP_H_ | 182 #endif // XFA_FWL_CORE_FWL_WIDGETIMP_H_ |
| OLD | NEW |