OLD | NEW |
| (Empty) |
1 // Copyright 2016 PDFium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
6 | |
7 #ifndef XFA_FWL_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ | |
8 #define XFA_FWL_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ | |
9 | |
10 #include <stdint.h> | |
11 | |
12 #include "xfa/fwl/core/fwl_error.h" | |
13 #include "xfa/fwl/core/ifwl_widgetdelegate.h" | |
14 | |
15 class CFWL_Event; | |
16 class CFWL_Message; | |
17 class CFX_Graphics; | |
18 class CFX_Matrix; | |
19 | |
20 class CFWL_WidgetDelegate : public IFWL_WidgetDelegate { | |
21 public: | |
22 CFWL_WidgetDelegate(); | |
23 virtual ~CFWL_WidgetDelegate(); | |
24 | |
25 void OnProcessMessage(CFWL_Message* pMessage) override; | |
26 void OnProcessEvent(CFWL_Event* pEvent) override; | |
27 void OnDrawWidget(CFX_Graphics* pGraphics, | |
28 const CFX_Matrix* pMatrix = nullptr) override; | |
29 }; | |
30 | |
31 #endif // XFA_FWL_LIGHTWIDGET_CFWL_WIDGETDELEGATE_H_ | |
OLD | NEW |