StatLink.h
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////
  2. // 1998 Microsoft Systems Journal
  3. // If this code works, it was written by Paul DiLascia.
  4. // If not, I don't know who wrote it.
  5. //
  6. //
  7. // CStaticLink implements a static control that's a hyperlink
  8. // to any file on your desktop or web. You can use it in dialog boxes
  9. // to create hyperlinks to web sites. When clicked, opens the file/URL
  10. //
  11. #ifndef _STATLINK_H
  12. #define _STATLINK_H
  13. #include "HyprLink.h"
  14. class CStaticLink : public CStatic {
  15. public:
  16. DECLARE_DYNAMIC(CStaticLink)
  17. CStaticLink(LPCTSTR lpText = NULL, BOOL bDeleteOnDestroy=FALSE);
  18. ~CStaticLink() { }
  19. // Use this if you want to subclass and also set different URL
  20. BOOL SubclassDlgItem(UINT nID, CWnd* pParent, LPCTSTR lpszLink=NULL) {
  21. m_link = lpszLink;
  22. return CStatic::SubclassDlgItem(nID, pParent);
  23. }
  24. // Hyperlink contains URL/filename. If NULL, I will use the window text.
  25. // (GetWindowText) to get the target.
  26. CHyperlink m_link;
  27. COLORREF m_color;
  28. // Default colors you can change
  29. // These are global, so they're the same for all links.
  30. static COLORREF g_colorUnvisited;
  31. static COLORREF g_colorVisited;
  32. // Cursor used when mouse is on a link--you can set, or
  33. // it will default to the standard hand with pointing finger.
  34. // This is global, so it's the same for all links.
  35. static HCURSOR  g_hCursorLink;
  36. protected:
  37. CFont m_font; // underline font for text control
  38. BOOL m_bDeleteOnDestroy; // delete object when window destroyed?
  39. virtual void PostNcDestroy();
  40. // message handlers
  41. DECLARE_MESSAGE_MAP()
  42. afx_msg UINT OnNcHitTest(CPoint point);
  43. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  44. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  45. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  46. };
  47. #endif _STATLINK_H