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_SRC_BASEWIDGET_FWL_TOOLTIPCTRLIMP_H_ | 7 #ifndef XFA_SRC_FWL_BASEWIDGET_FWL_TOOLTIPCTRLIMP_H_ |
8 #define XFA_SRC_FWL_SRC_BASEWIDGET_FWL_TOOLTIPCTRLIMP_H_ | 8 #define XFA_SRC_FWL_BASEWIDGET_FWL_TOOLTIPCTRLIMP_H_ |
9 | 9 |
10 #include "xfa/include/fwl/core/fwl_timer.h" | 10 #include "xfa/include/fwl/core/fwl_timer.h" |
11 #include "xfa/src/fwl/src/core/fwl_formimp.h" | 11 #include "xfa/src/fwl/core/fwl_formimp.h" |
12 #include "xfa/src/fwl/src/core/fwl_widgetimp.h" | 12 #include "xfa/src/fwl/core/fwl_widgetimp.h" |
13 | 13 |
14 class CFWL_WidgetImpProperties; | 14 class CFWL_WidgetImpProperties; |
15 class IFWL_Widget; | 15 class IFWL_Widget; |
16 class CFWL_ToolTipImpDelegate; | 16 class CFWL_ToolTipImpDelegate; |
17 | 17 |
18 class CFWL_ToolTipImp : public CFWL_FormImp { | 18 class CFWL_ToolTipImp : public CFWL_FormImp { |
19 public: | 19 public: |
20 CFWL_ToolTipImp(const CFWL_WidgetImpProperties& properties, | 20 CFWL_ToolTipImp(const CFWL_WidgetImpProperties& properties, |
21 IFWL_Widget* pOuter); | 21 IFWL_Widget* pOuter); |
22 virtual ~CFWL_ToolTipImp(); | 22 virtual ~CFWL_ToolTipImp(); |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 protected: | 76 protected: |
77 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); | 77 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); |
78 void OnLButtonDown(CFWL_MsgMouse* pMsg); | 78 void OnLButtonDown(CFWL_MsgMouse* pMsg); |
79 void OnLButtonUp(CFWL_MsgMouse* pMsg); | 79 void OnLButtonUp(CFWL_MsgMouse* pMsg); |
80 void OnMouseMove(CFWL_MsgMouse* pMsg); | 80 void OnMouseMove(CFWL_MsgMouse* pMsg); |
81 void OnMouseLeave(CFWL_MsgMouse* pMsg); | 81 void OnMouseLeave(CFWL_MsgMouse* pMsg); |
82 void OnKeyDown(CFWL_MsgKey* pMsg); | 82 void OnKeyDown(CFWL_MsgKey* pMsg); |
83 CFWL_ToolTipImp* m_pOwner; | 83 CFWL_ToolTipImp* m_pOwner; |
84 }; | 84 }; |
85 | 85 |
86 #endif // XFA_SRC_FWL_SRC_BASEWIDGET_FWL_TOOLTIPCTRLIMP_H_ | 86 #endif // XFA_SRC_FWL_BASEWIDGET_FWL_TOOLTIPCTRLIMP_H_ |
OLD | NEW |