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