Index: xfa/fwl/core/ifwl_tooltip.h |
diff --git a/xfa/fwl/core/ifwl_tooltip.h b/xfa/fwl/core/ifwl_tooltip.h |
index 14430f420ebf73fe7e66bd435a17648a41db5f7a..a9ef5e27f5d47fd27c8d752bfb5cf9ef74a4e099 100644 |
--- a/xfa/fwl/core/ifwl_tooltip.h |
+++ b/xfa/fwl/core/ifwl_tooltip.h |
@@ -50,11 +50,7 @@ class IFWL_ToolTip : public IFWL_Form { |
void OnDrawWidget(CFX_Graphics* pGraphics, |
const CFX_Matrix* pMatrix) override; |
- void SetAnchor(const CFX_RectF& rtAnchor); |
- void Show(); |
- void Hide(); |
- |
- protected: |
+ private: |
class Timer : public IFWL_Timer { |
public: |
explicit Timer(IFWL_ToolTip* pToolTip); |
@@ -75,7 +71,6 @@ class IFWL_ToolTip : public IFWL_Form { |
CFX_RectF m_rtClient; |
CFX_RectF m_rtCaption; |
- bool m_bBtnDown; |
uint32_t m_dwTTOStyles; |
int32_t m_iTTOAlign; |
CFX_RectF m_rtAnchor; |
@@ -83,14 +78,6 @@ class IFWL_ToolTip : public IFWL_Form { |
IFWL_TimerInfo* m_pTimerInfoHide; |
IFWL_ToolTip::Timer m_TimerShow; |
IFWL_ToolTip::Timer m_TimerHide; |
- |
- private: |
- void OnFocusChanged(CFWL_Message* pMsg, bool bSet); |
- void OnLButtonDown(CFWL_MsgMouse* pMsg); |
- void OnLButtonUp(CFWL_MsgMouse* pMsg); |
- void OnMouseMove(CFWL_MsgMouse* pMsg); |
- void OnMouseLeave(CFWL_MsgMouse* pMsg); |
- void OnKeyDown(CFWL_MsgKey* pMsg); |
}; |
#endif // XFA_FWL_CORE_IFWL_TOOLTIP_H_ |