HyperLink.h
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:3k
源码类别:

P2P编程

开发平台:

Visual C++

  1. // HyperLink.h : header file
  2. //
  3. //
  4. // HyperLink static control. Will open the default browser with the given URL
  5. // when the user clicks on the link.
  6. //
  7. // Copyright Chris Maunder, 1997
  8. // Feel free to use and distribute. May not be sold for profit. 
  9. #if !defined(AFX_HYPERLINK_H__D1625061_574B_11D1_ABBA_00A0243D1382__INCLUDED_)
  10. #define AFX_HYPERLINK_H__D1625061_574B_11D1_ABBA_00A0243D1382__INCLUDED_
  11. #if _MSC_VER >= 1000
  12. #pragma once
  13. #endif // _MSC_VER >= 1000
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CHyperLink window
  16. class CHyperLink : public CStatic
  17. {
  18. // Construction/destruction
  19. public:
  20.     CHyperLink();
  21.     virtual ~CHyperLink();
  22. public:
  23.     enum UnderLineOptions { ulHover = -1, ulNone = 0, ulAlways = 1};
  24. // Attributes
  25. public:
  26.     void SetURL(CString strURL);
  27.     CString GetURL() const;
  28.     void SetColours(COLORREF crLinkColour, COLORREF crVisitedColour, 
  29.                     COLORREF crHoverColour = -1);
  30.     COLORREF GetLinkColour() const;
  31.     COLORREF GetVisitedColour() const;
  32.     COLORREF GetHoverColour() const;
  33.     void SetVisited(BOOL bVisited = TRUE);
  34.     BOOL GetVisited() const;
  35.     void SetLinkCursor(HCURSOR hCursor);
  36.     HCURSOR GetLinkCursor() const;
  37.     void SetUnderline(int nUnderline = ulHover);
  38.     int  GetUnderline() const;
  39.     void SetAutoSize(BOOL bAutoSize = TRUE);
  40.     BOOL GetAutoSize() const;
  41. // Overrides
  42.     // ClassWizard generated virtual function overrides
  43.     //{{AFX_VIRTUAL(CHyperLink)
  44. public:
  45.     virtual BOOL PreTranslateMessage(MSG* pMsg);
  46. virtual BOOL DestroyWindow();
  47. protected:
  48.     virtual void PreSubclassWindow();
  49. //}}AFX_VIRTUAL
  50. // Implementation
  51. protected:
  52.     HINSTANCE GotoURL(LPCTSTR url, int showcmd);
  53.     void ReportError(int nError);
  54.     LONG GetRegKey(HKEY key, LPCTSTR subkey, LPTSTR retdata);
  55.     void PositionWindow();
  56.     void SetDefaultCursor();
  57. // Protected attributes
  58. protected:
  59.     COLORREF m_crLinkColour, m_crVisitedColour;     // Hyperlink colours
  60.     COLORREF m_crHoverColour;                       // Hover colour
  61.     BOOL     m_bOverControl;                        // cursor over control?
  62.     BOOL     m_bVisited;                            // Has it been visited?
  63.     int      m_nUnderline;                          // underline hyperlink?
  64.     BOOL     m_bAdjustToFit;                        // Adjust window size to fit text?
  65.     CString  m_strURL;                              // hyperlink URL
  66.     CFont    m_UnderlineFont;                       // Font for underline display
  67.     CFont    m_StdFont;                           // Standard font
  68.     HCURSOR  m_hLinkCursor;                         // Cursor for hyperlink
  69.     CToolTipCtrl m_ToolTip;                         // The tooltip
  70.     UINT     m_nTimerID;
  71.     // Generated message map functions
  72. protected:
  73.     //{{AFX_MSG(CHyperLink)
  74.     afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  75.     afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  76.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  77. afx_msg void OnTimer(UINT nIDEvent);
  78. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  79. //}}AFX_MSG
  80.     afx_msg void OnClicked();
  81.     DECLARE_MESSAGE_MAP()
  82. };
  83. /////////////////////////////////////////////////////////////////////////////
  84. //{{AFX_INSERT_LOCATION}}
  85. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  86. #endif // !defined(AFX_HYPERLINK_H__D1625061_574B_11D1_ABBA_00A0243D1382__INCLUDED_)