TITLETIP.H
上传用户:asikq0571
上传日期:2014-07-12
资源大小:528k
文件大小:1k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. #if !defined(AFX_TITLETIP_H__C7165DA1_187F_11D1_992F_895E185F9C72__INCLUDED_)
  2. #define AFX_TITLETIP_H__C7165DA1_187F_11D1_992F_895E185F9C72__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // TitleTip.h : header file
  7. //
  8. #define TITLETIP_CLASSNAME _T("ZTitleTip")
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CTitleTip window
  11. class CTitleTip : public CWnd
  12. {
  13. // Construction
  14. public:
  15. CTitleTip();
  16. virtual ~CTitleTip();
  17. virtual BOOL Create( CWnd *pParentWnd);
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. void Show( CRect rectTitle, LPCTSTR lpszTitleText, int xoffset = 0);
  23.     void Hide();
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CTitleTip)
  27. public:
  28. virtual BOOL PreTranslateMessage(MSG* pMsg);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. protected:
  33. CWnd *m_pParentWnd;
  34. CRect m_rectTitle;
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CTitleTip)
  38. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  45. #endif // !defined(AFX_TITLETIP_H__C7165DA1_187F_11D1_992F_895E185F9C72__INCLUDED_)