123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #if !defined(AFX_TITLETIP_H__C7165DA1_187F_11D1_992F_895E185F9C72__INCLUDED_)
- #define AFX_TITLETIP_H__C7165DA1_187F_11D1_992F_895E185F9C72__INCLUDED_
- #if _MSC_VER >= 1000
- #pragma once
- #endif
- #define TITLETIP_CLASSNAME _T("ZTitleTip")
- class CTitleTip : public CWnd
- {
- public:
- CTitleTip();
- virtual ~CTitleTip();
- virtual BOOL Create( CWnd *pParentWnd);
- public:
- public:
- void Show(CRect rectTitle, LPCTSTR lpszTitleText,
- int xoffset = 0, LPRECT lpHoverRect = NULL, LPLOGFONT lpLogFont = NULL);
- void Hide();
-
-
- public:
- virtual BOOL PreTranslateMessage(MSG* pMsg);
-
- public:
- protected:
- CWnd *m_pParentWnd;
- CRect m_rectTitle;
- CRect m_rectHover;
-
- protected:
-
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
|