HyperLink.h
上传用户:guanx8y8
上传日期:2007-07-30
资源大小:326k
文件大小:3k
开发平台:

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. // Attributes
  23. public:
  24. // Operations
  25. public:
  26.     void SetURL(CString strURL);
  27.     CString GetURL() const;
  28.     void SetColours(COLORREF crLinkColour, 
  29. COLORREF crVisitedColour, 
  30.                     COLORREF crHoverColour = -1);
  31.     COLORREF GetLinkColour() const;
  32.     COLORREF GetVisitedColour() const;
  33.     COLORREF GetHoverColour() const;
  34.     void SetVisited(BOOL bVisited = TRUE);
  35.     BOOL GetVisited() const;
  36.     void SetLinkCursor(HCURSOR hCursor);
  37.     HCURSOR GetLinkCursor() const;
  38.     void SetUnderline(BOOL bUnderline = TRUE);
  39.     BOOL GetUnderline() const;
  40.     void SetAutoSize(BOOL bAutoSize = TRUE);
  41.     BOOL GetAutoSize() const;
  42. HINSTANCE GotoURL(LPCTSTR url, int showcmd);
  43. // Overrides
  44.     // ClassWizard generated virtual function overrides
  45.     //{{AFX_VIRTUAL(CHyperLink)
  46.     public:
  47.     virtual BOOL PreTranslateMessage(MSG* pMsg);
  48.     protected:
  49.     virtual void PreSubclassWindow();
  50.     //}}AFX_VIRTUAL
  51. // Implementation
  52. protected:
  53.     
  54.     void ReportError(int nError);
  55.     LONG GetRegKey(HKEY key, LPCTSTR subkey, LPTSTR retdata);
  56.     void PositionWindow();
  57.     void SetDefaultCursor();
  58. // Protected attributes
  59. protected:
  60.     COLORREF m_crLinkColour;     // Hyperlink colours
  61.     COLORREF m_crVisitedColour;     
  62.     COLORREF m_crHoverColour;                       // Hover colour
  63.     BOOL     m_bOverControl;                        // cursor over control?
  64.     BOOL     m_bVisited;                            // Has it been visited?
  65.     BOOL     m_bUnderline;                          // underline hyperlink?
  66.     BOOL     m_bAdjustToFit;                        // Adjust window size to fit text?
  67.     CString  m_strURL;                              // hyperlink URL
  68.     CFont    m_Font;                                // Underline font if necessary
  69.     HCURSOR  m_hLinkCursor;                         // Cursor for hyperlink
  70.     CToolTipCtrl m_ToolTip;                         // The tooltip
  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
  78.     afx_msg void OnClicked();
  79.     DECLARE_MESSAGE_MAP()
  80. };
  81. /////////////////////////////////////////////////////////////////////////////
  82. //{{AFX_INSERT_LOCATION}}
  83. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  84. #endif // !defined(AFX_HYPERLINK_H__D1625061_574B_11D1_ABBA_00A0243D1382__INCLUDED_)