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

Ftp客户端

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////
  2. // PixieLib(TM) Copyright 1997 Paul DiLascia
  3. // If this code works, it was written by Paul DiLascia.
  4. // If not, I don't know who wrote it.
  5. //
  6. // CStaticLink implements a static control that's a hyperlink
  7. // to any file on your desktop or web. You can use it in dialog boxes
  8. // to create hyperlinks to web sites. When clicked, opens the file/URL
  9. //
  10. #include "StdAfx.h"
  11. #include "StatLink.h"
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17. COLORREF CStaticLink::g_colorUnvisited = RGB(0,0,255);  // blue
  18. COLORREF CStaticLink::g_colorVisited   = RGB(128,0,128);  // purple
  19. HCURSOR CStaticLink::g_hCursorLink = NULL;
  20. IMPLEMENT_DYNAMIC(CStaticLink, CStatic)
  21. BEGIN_MESSAGE_MAP(CStaticLink, CStatic)
  22. ON_WM_NCHITTEST()
  23. ON_WM_CTLCOLOR_REFLECT()
  24. ON_WM_LBUTTONUP()
  25. ON_WM_SETCURSOR()
  26. END_MESSAGE_MAP()
  27. ///////////////////
  28. // Constructor sets default colors = blue/purple.
  29. // bDeleteOnDestroy is used internally by PixieLib in CPixieDlg.
  30. //
  31. CStaticLink::CStaticLink(LPCTSTR lpText, BOOL bDeleteOnDestroy)
  32. {
  33. m_link = lpText; // link text (NULL ==> window text)
  34. m_color = g_colorUnvisited; // not visited yet
  35. m_bDeleteOnDestroy = bDeleteOnDestroy; // delete object with window?
  36. }
  37. //////////////////
  38. // Normally, a static control does not get mouse events unless it has
  39. // SS_NOTIFY. This achieves the same effect as SS_NOTIFY, but it's fewer
  40. // lines of code and more reliable than turning on SS_NOTIFY in OnCtlColor
  41. // because Windows doesn't send WM_CTLCOLOR to bitmap static controls.
  42. //
  43. UINT CStaticLink::OnNcHitTest(CPoint point)
  44. {
  45. return HTCLIENT;
  46. }
  47. //////////////////
  48. // Handle reflected WM_CTLCOLOR to set custom control color.
  49. // For a text control, use visited/unvisited colors and underline font.
  50. // For non-text controls, do nothing. Also ensures SS_NOTIFY is on.
  51. //
  52. HBRUSH CStaticLink::CtlColor(CDC* pDC, UINT nCtlColor)
  53. {
  54. ASSERT(nCtlColor == CTLCOLOR_STATIC);
  55. DWORD dwStyle = GetStyle();
  56. HBRUSH hbr = NULL;
  57. if ((dwStyle & 0xFF) <= SS_RIGHT) {
  58. // this is a text control: set up font and colors
  59. if (!(HFONT)m_font) {
  60. // first time init: create font
  61. LOGFONT lf;
  62. GetFont()->GetObject(sizeof(lf), &lf);
  63. lf.lfUnderline = TRUE;
  64. m_font.CreateFontIndirect(&lf);
  65. }
  66. // use underline font and visited/unvisited colors
  67. pDC->SelectObject(&m_font);
  68. pDC->SetTextColor(m_color);
  69. pDC->SetBkMode(TRANSPARENT);
  70. // return hollow brush to preserve parent background color
  71. hbr = (HBRUSH)::GetStockObject(HOLLOW_BRUSH);
  72. }
  73. return hbr;
  74. }
  75. /////////////////
  76. // Handle mouse click: navigate link
  77. //
  78. void CStaticLink::OnLButtonUp(UINT nFlags, CPoint point)
  79. {
  80. if (m_link.IsEmpty()) { // if URL/filename not set..
  81. GetWindowText(m_link); // ..get it from window text
  82. if (m_link.IsEmpty())
  83. return;
  84. }
  85. // Call ShellExecute to run the file.
  86. // For an URL, this means opening it in the browser.
  87. //
  88. HINSTANCE h = m_link.Navigate();
  89. if ((UINT)h > 32) {  // success!
  90. m_color = g_colorVisited;  // change color
  91. Invalidate();  // repaint 
  92. } else {
  93. MessageBeep(0); // unable to execute file!
  94. TRACE(_T("*** WARNING: CStaticLink: unable to navigate link %sn"),
  95. (LPCTSTR)m_link);
  96. }
  97. }
  98. //////////////////
  99. // Set "hand" cursor to cue user that this is a link. If app has not set
  100. // g_hCursorLink, then try to get the cursor from winhlp32.exe,
  101. // resource 106, which is a pointing finger. This is a bit of a kludge,
  102. // but it works.
  103. //
  104. BOOL CStaticLink::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)
  105. {
  106. if (g_hCursorLink == NULL) {
  107. static bTriedOnce = FALSE;
  108. if (!bTriedOnce) {
  109.          CString windir;
  110.          GetWindowsDirectory(windir.GetBuffer(MAX_PATH), MAX_PATH);
  111.          windir.ReleaseBuffer();
  112.          windir += _T("\winhlp32.exe");
  113.          HMODULE hModule = LoadLibrary(windir);
  114. if (hModule) {
  115. g_hCursorLink =
  116. CopyCursor(::LoadCursor(hModule, MAKEINTRESOURCE(106)));
  117. }
  118. FreeLibrary(hModule);
  119. bTriedOnce = TRUE;
  120. }
  121. }
  122. if (g_hCursorLink) {
  123. ::SetCursor(g_hCursorLink);
  124. return TRUE;
  125. }
  126. return FALSE;
  127. }
  128. //////////////////
  129. // Normally, a control class is not destoyed when the window is;
  130. // however, CPixieDlg creates static controls with "new" instead of
  131. // as class members, so it's convenient to allow the option of destroying
  132. // object with window. In applications where you want the object to be
  133. // destoyed along with the window, you can call constructor with
  134. // bDeleteOnDestroy=TRUE.
  135. //
  136. void CStaticLink::PostNcDestroy()
  137. {
  138. if (m_bDeleteOnDestroy)
  139. delete this;
  140. }