HyperLinker.h
上传用户:yangb198
上传日期:2021-03-29
资源大小:14k
文件大小:2k
- #if !defined(AFX_HYPERLINKER_H__8E564C4D_3D21_4459_AE36_E6FE43B9D27F__INCLUDED_)
- #define AFX_HYPERLINKER_H__8E564C4D_3D21_4459_AE36_E6FE43B9D27F__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // HyperLinker.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CHyperLinker window
- class CHyperLinker : public CStatic
- {
- // Construction
- public:
- CHyperLinker();
- // Attributes
- public:
- COLORREF m_InitColor; // 超级链接开始时的文本颜色
- COLORREF m_VisitedColor; // 超级链接被访问过的的文本颜色
- COLORREF m_CoverColor; // 鼠标移动到超级链接文本框上的文本颜色
-
- BOOL m_bAboveControl; // 记录当前鼠标是否停留在超级链接上方
- BOOL m_bVisited; // 记录超级链接是否被访问过
- BOOL m_bUnderLine; // 文本是否带下划线
-
- CString m_sURL; // URL信息
- CFont m_Font; // 字体
- HCURSOR m_hLinkCursor; // 鼠标形状
- // Operations
- public:
- // 设置对应文本框属性值
- void SetAttrbute(CString url = "www.baidu.com",
- COLORREF InitColor = RGB(0,0,255),
- COLORREF VisitedColor = RGB(255,0,0),
- COLORREF CoverColor = RGB(125,125,0),
- BOOL bUnderLine = TRUE);
-
- // shell 外部的程序
- BOOL OpenUsingShellExecute();
-
- // 设置字体
- void SetFont(CFont *font);
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CHyperLinker)
- protected:
- virtual void PreSubclassWindow();
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CHyperLinker();
- // Generated message map functions
- protected:
- //{{AFX_MSG(CHyperLinker)
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_HYPERLINKER_H__8E564C4D_3D21_4459_AE36_E6FE43B9D27F__INCLUDED_)