- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
TOOLTIPWND.H
资源名称:SNMP范例源代码.zip [点击查看]
上传用户:shgx688
上传日期:2009-12-27
资源大小:855k
文件大小:3k
源码类别:
SNMP编程
开发平台:
MultiPlatform
- #if !defined(AFX_TOOLTIPWND_H__2C52D3E4_2F5B_11D2_8FC9_000000000000__INCLUDED_)
- #define AFX_TOOLTIPWND_H__2C52D3E4_2F5B_11D2_8FC9_000000000000__INCLUDED_
- #if _MSC_VER >= 1000
- #pragma once
- #endif // _MSC_VER >= 1000
- // ToolTipWnd.h : header file
- //
- // Written by Shankar (sshank@mailcity.com)
- // Last Revised : August 29 1998.
- // Copyright (c) 1998.
- //
- // This file is provided "as is" with no expressed or implied warranty.
- // The author accepts no liability if it causes any damage whatsoever.
- // Distribute freely.
- // Send bug reports, bug fixes, enhancements. You can reach
- // me at sshank@mailcity.com
- // Acknowledgements:
- // Thanks to Venkatesh who helped me in calculating the intersecting
- // point in the ellipse.
- /////////////////////////////////////////////////////////////////////////////
- // CToolTipWnd window
- struct BTOOLINFO {
- HWND hwndTool;
- CString strToolText;
- COLORREF clrToolTextClr;
- };
- class CToolTipWnd : public CWnd
- {
- private:
- // Construction
- LPCTSTR lpWndCls;
- public:
- CToolTipWnd();
- CRect m_rcCurrFit;
- CPoint m_ptCur;
- // Attributes
- public:
- void RelayEvent(LPMSG);
- BOOL Create(CWnd*);
- bool m_bStuck;
- void AddTool(CWnd *pWnd, CString strText, COLORREF clrTextColor=NULL);
- void SetWidth(int iWidth) { m_iWidth = iWidth; }
- void SetHeight(int iHeight) { m_iHeight = iHeight; }
- void SetBkColor(COLORREF clrRef) { m_clrBkColor = clrRef; }
- void SetFrameColor(COLORREF clrRef) { m_clrFrameColor = clrRef; }
- void SetDefTextColor(COLORREF clrRef) { m_clrTextColor = clrRef; }
- void SetFontHeight(int iHeight) { m_iFontHeight = iHeight; }
- void SetFontName(CString strFontName) { m_strFontName = strFontName; }
- private:
- CRgn rgn;
- CRgn rgnComb;
- CRgn rgnTri;
- CRect m_RectText;
- CFont m_fontText;
- CString m_strText;
- bool m_bMouseIn;
- COLORREF m_clrTextColor;
- COLORREF m_clrBkColor;
- COLORREF m_clrFrameColor;
- CMapPtrToPtr m_ToolPtr;
- int m_iWidth;
- int m_iHeight;
- int m_iFontHeight;
- CString m_strFontName;
- HWND m_hParentWnd;
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CToolTipWnd)
- public:
- virtual BOOL PreTranslateMessage(MSG* pMsg);
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CToolTipWnd();
- // Generated message map functions
- protected:
- //{{AFX_MSG(CToolTipWnd)
- afx_msg void OnPaint();
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnTimer(UINT nIDEvent);
- afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_TOOLTIPWND_H__2C52D3E4_2F5B_11D2_8FC9_000000000000__INCLUDED_)