OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ | 7 #ifndef XFA_FWL_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ |
8 #define XFA_FWL_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ | 8 #define XFA_FWL_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ |
9 | 9 |
| 10 #include <stdint.h> |
| 11 |
10 #include "xfa/fwl/core/fwl_error.h" | 12 #include "xfa/fwl/core/fwl_error.h" |
11 #include "xfa/fwl/core/ifwl_widgetdelegate.h" | 13 #include "xfa/fwl/core/ifwl_widgetdelegate.h" |
12 | 14 |
13 class CFWL_Event; | 15 class CFWL_Event; |
14 class CFWL_Message; | 16 class CFWL_Message; |
15 class CFX_Graphics; | 17 class CFX_Graphics; |
16 class CFX_Matrix; | 18 class CFX_Matrix; |
17 | 19 |
18 class CFWL_WidgetDelegate : public IFWL_WidgetDelegate { | 20 class CFWL_WidgetDelegate : public IFWL_WidgetDelegate { |
19 public: | 21 public: |
20 CFWL_WidgetDelegate(); | 22 CFWL_WidgetDelegate(); |
21 virtual ~CFWL_WidgetDelegate(); | 23 virtual ~CFWL_WidgetDelegate(); |
22 | 24 |
23 int32_t OnProcessMessage(CFWL_Message* pMessage) override; | 25 void OnProcessMessage(CFWL_Message* pMessage) override; |
24 FWL_ERR OnProcessEvent(CFWL_Event* pEvent) override; | 26 void OnProcessEvent(CFWL_Event* pEvent) override; |
25 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics, | 27 void OnDrawWidget(CFX_Graphics* pGraphics, |
26 const CFX_Matrix* pMatrix = nullptr) override; | 28 const CFX_Matrix* pMatrix = nullptr) override; |
27 }; | 29 }; |
28 | 30 |
29 #endif // XFA_FWL_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ | 31 #endif // XFA_FWL_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ |
OLD | NEW |