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

Visual C++

  1. // HyperLink.cpp : implementation file
  2. //*************************************************************************
  3. //Modified by 徐景周,2000.11
  4. //功能:超链连显示
  5. //*************************************************************************
  6. #include "stdafx.h"
  7. #include "HyperLink.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. const int TOOLTIP_ID = 1;
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CHyperLink
  16. CHyperLink::CHyperLink()
  17. {
  18.     m_hLinkCursor       = NULL;                 // No cursor as yet
  19.     m_crLinkColour      = RGB(  0,   0, 238);   // Blue
  20.     m_crVisitedColour   = RGB( 85,  26, 139);   // Purple
  21.     m_crHoverColour     = ::GetSysColor(COLOR_HIGHLIGHT);
  22.     m_bOverControl      = FALSE;                // Cursor not yet over control
  23.     m_bVisited          = FALSE;                // Hasn't been visited yet.
  24.     m_bUnderline        = TRUE;                 // Underline the link?
  25.     m_bAdjustToFit      = TRUE;                 // Resize the window to fit the text?
  26.     m_strURL.Empty();
  27. }
  28. CHyperLink::~CHyperLink()
  29. {
  30.     m_Font.DeleteObject();
  31. }
  32. BEGIN_MESSAGE_MAP(CHyperLink, CStatic)
  33.     //{{AFX_MSG_MAP(CHyperLink)
  34.     ON_CONTROL_REFLECT(STN_CLICKED, OnClicked)
  35.     ON_WM_CTLCOLOR_REFLECT()
  36.     ON_WM_SETCURSOR()
  37.     ON_WM_MOUSEMOVE()
  38.     //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CHyperLink message handlers
  42. BOOL CHyperLink::PreTranslateMessage(MSG* pMsg) 
  43. {
  44.     m_ToolTip.RelayEvent(pMsg);
  45.     return CStatic::PreTranslateMessage(pMsg);
  46. }
  47. void CHyperLink::OnClicked()
  48. {
  49.     int result = (int)GotoURL(m_strURL, SW_SHOW);
  50.     m_bVisited = (result > HINSTANCE_ERROR);
  51.     if (!m_bVisited) 
  52. {
  53.         MessageBeep(MB_ICONEXCLAMATION);     // Unable to follow link
  54.         ReportError(result);
  55.     } 
  56. else 
  57.         SetVisited();                        // Repaint to show visited colour
  58. }
  59. HBRUSH CHyperLink::CtlColor(CDC* pDC, UINT nCtlColor) 
  60. {
  61.     ASSERT(nCtlColor == CTLCOLOR_STATIC);
  62.     if (m_bOverControl)
  63.         pDC->SetTextColor(m_crHoverColour);
  64.     else if (m_bVisited)
  65.         pDC->SetTextColor(m_crVisitedColour);
  66.     else
  67.         pDC->SetTextColor(m_crLinkColour);
  68.     // Transparent text.
  69.     pDC->SetBkMode(TRANSPARENT);
  70.     return (HBRUSH)GetStockObject(NULL_BRUSH);
  71. }
  72. void CHyperLink::OnMouseMove(UINT nFlags, CPoint point) 
  73. {
  74.     CStatic::OnMouseMove(nFlags, point);
  75.     if (m_bOverControl)        // Cursor is currently over control
  76.     {
  77.         CRect rect;
  78.         GetClientRect(rect);
  79.         if (!rect.PtInRect(point))
  80.         {
  81.             m_bOverControl = FALSE;
  82.             ReleaseCapture();
  83.             RedrawWindow();
  84.             return;
  85.         }
  86.     }
  87.     else                      // Cursor has just moved over control
  88.     {
  89.         m_bOverControl = TRUE;
  90.         RedrawWindow();
  91.         SetCapture();
  92.     }
  93. }
  94. BOOL CHyperLink::OnSetCursor(CWnd* /*pWnd*/, UINT /*nHitTest*/, UINT /*message*/) 
  95. {
  96.     if (m_hLinkCursor)
  97.     {
  98.         ::SetCursor(m_hLinkCursor);
  99.         return TRUE;
  100.     }
  101.     return FALSE;
  102. }
  103. void CHyperLink::PreSubclassWindow() 
  104. {
  105.     // We want to get mouse clicks via STN_CLICKED
  106.     DWORD dwStyle = GetStyle();
  107.     ::SetWindowLong(GetSafeHwnd(), GWL_STYLE, dwStyle | SS_NOTIFY);
  108.     
  109.     // Set the URL as the window text
  110.     if (m_strURL.IsEmpty())
  111.         GetWindowText(m_strURL);
  112.     // Check that the window text isn't empty. If it is, set it as the URL.
  113.     CString strWndText;
  114.     GetWindowText(strWndText);
  115.     if (strWndText.IsEmpty()) 
  116. {
  117.         ASSERT(!m_strURL.IsEmpty());    // Window and URL both NULL. DUH!
  118.         SetWindowText(m_strURL);
  119.     }
  120.     // Create the font
  121.     LOGFONT lf;
  122.     GetFont()->GetLogFont(&lf);
  123.     lf.lfUnderline = m_bUnderline;
  124.     m_Font.CreateFontIndirect(&lf);
  125.     SetFont(&m_Font);
  126.     PositionWindow();        // Adjust size of window to fit URL if necessary
  127.     SetDefaultCursor();      // Try and load up a "hand" cursor
  128.     // Create the tooltip
  129.     CRect rect; 
  130.     GetClientRect(rect);
  131.     m_ToolTip.Create(this);
  132.     m_ToolTip.AddTool(this, m_strURL, rect, TOOLTIP_ID);
  133.     CStatic::PreSubclassWindow();
  134. }
  135. /////////////////////////////////////////////////////////////////////////////
  136. // CHyperLink operations
  137. void CHyperLink::SetURL(CString strURL)
  138. {
  139.     m_strURL = strURL;
  140.     if (::IsWindow(GetSafeHwnd())) 
  141. {
  142.         PositionWindow();
  143.         m_ToolTip.UpdateTipText(strURL, this, TOOLTIP_ID);
  144.     }
  145. }
  146. CString CHyperLink::GetURL() const
  147.     return m_strURL;   
  148. }
  149. void CHyperLink::SetColours(COLORREF crLinkColour, 
  150. COLORREF crVisitedColour,
  151.                             COLORREF crHoverColour /* = -1 */) 
  152.     m_crLinkColour    = crLinkColour; 
  153.     m_crVisitedColour = crVisitedColour;
  154. if (crHoverColour == -1)
  155. m_crHoverColour = ::GetSysColor(COLOR_HIGHLIGHT);
  156. else
  157. m_crHoverColour = crHoverColour;
  158.     if (::IsWindow(m_hWnd))
  159.         Invalidate(); 
  160. }
  161. COLORREF CHyperLink::GetLinkColour() const
  162.     return m_crLinkColour; 
  163. }
  164. COLORREF CHyperLink::GetVisitedColour() const
  165. {
  166.     return m_crVisitedColour; 
  167. }
  168. COLORREF CHyperLink::GetHoverColour() const
  169. {
  170.     return m_crHoverColour;
  171. }
  172. void CHyperLink::SetVisited(BOOL bVisited /* = TRUE */) 
  173.     m_bVisited = bVisited; 
  174.     if (::IsWindow(GetSafeHwnd()))
  175.         Invalidate(); 
  176. }
  177. BOOL CHyperLink::GetVisited() const
  178.     return m_bVisited; 
  179. }
  180. void CHyperLink::SetLinkCursor(HCURSOR hCursor)
  181.     m_hLinkCursor = hCursor;
  182.     if (m_hLinkCursor == NULL)
  183.         SetDefaultCursor();
  184. }
  185. HCURSOR CHyperLink::GetLinkCursor() const
  186. {
  187.     return m_hLinkCursor;
  188. }
  189. void CHyperLink::SetUnderline(BOOL bUnderline /* = TRUE */)
  190. {
  191.     m_bUnderline = bUnderline;
  192.     if (::IsWindow(GetSafeHwnd()))
  193.     {
  194.         LOGFONT lf;
  195.         GetFont()->GetLogFont(&lf);
  196.         lf.lfUnderline = m_bUnderline;
  197.         m_Font.DeleteObject();
  198.         m_Font.CreateFontIndirect(&lf);
  199.         SetFont(&m_Font);
  200.         Invalidate(); 
  201.     }
  202. }
  203. BOOL CHyperLink::GetUnderline() const
  204.     return m_bUnderline; 
  205. }
  206. void CHyperLink::SetAutoSize(BOOL bAutoSize /* = TRUE */)
  207. {
  208.     m_bAdjustToFit = bAutoSize;
  209.     if (::IsWindow(GetSafeHwnd()))
  210.         PositionWindow();
  211. }
  212. BOOL CHyperLink::GetAutoSize() const
  213.     return m_bAdjustToFit; 
  214. }
  215. // Move and resize the window so that the window is the same size
  216. // as the hyperlink text. This stops the hyperlink cursor being active
  217. // when it is not directly over the text. If the text is left justified
  218. // then the window is merely shrunk, but if it is centred or right
  219. // justified then the window will have to be moved as well.
  220. //
  221. //
  222. void CHyperLink::PositionWindow()
  223. {
  224.     if (!::IsWindow(GetSafeHwnd()) || !m_bAdjustToFit) 
  225.         return;
  226.     // Get the current window position
  227.     CRect rect;
  228.     GetWindowRect(rect);
  229.     CWnd* pParent = GetParent();
  230.     if (pParent)
  231.         pParent->ScreenToClient(rect);
  232.     // Get the size of the window text
  233.     CString strWndText;
  234.     GetWindowText(strWndText);
  235.     CDC* pDC = GetDC();
  236.     CFont* pOldFont = pDC->SelectObject(&m_Font);
  237.     CSize Extent = pDC->GetTextExtent(strWndText);
  238.     pDC->SelectObject(pOldFont);
  239.     ReleaseDC(pDC);
  240.     // Get the text justification via the window style
  241.     DWORD dwStyle = GetStyle();
  242.     // Recalc the window size and position based on the text justification
  243.     if (dwStyle & SS_CENTERIMAGE)
  244.         rect.DeflateRect(0, (rect.Height() - Extent.cy)/2);
  245.     else
  246.         rect.bottom = rect.top + Extent.cy;
  247.     if (dwStyle & SS_CENTER)   
  248.         rect.DeflateRect((rect.Width() - Extent.cx)/2, 0);
  249.     else if (dwStyle & SS_RIGHT) 
  250.         rect.left  = rect.right - Extent.cx;
  251.     else // SS_LEFT = 0, so we can't test for it explicitly 
  252.         rect.right = rect.left + Extent.cx;
  253.     // Move the window
  254.     SetWindowPos(NULL, rect.left, rect.top, rect.Width(), rect.Height(), SWP_NOZORDER);
  255. }
  256. /////////////////////////////////////////////////////////////////////////////
  257. // CHyperLink implementation
  258. // The following appeared in Paul DiLascia's Jan 1998 MSJ articles.
  259. // It loads a "hand" cursor from the winhlp32.exe module
  260. void CHyperLink::SetDefaultCursor()
  261. {
  262.     if (m_hLinkCursor == NULL)                // No cursor handle - load our own
  263.     {
  264.         // Get the windows directory
  265.         CString strWndDir;
  266.         GetWindowsDirectory(strWndDir.GetBuffer(MAX_PATH), MAX_PATH);
  267.         strWndDir.ReleaseBuffer();
  268.         strWndDir += _T("\winhlp32.exe");
  269.         // This retrieves cursor #106 from winhlp32.exe, which is a hand pointer
  270.         HMODULE hModule = LoadLibrary(strWndDir);
  271.         if (hModule) {
  272.             HCURSOR hHandCursor = ::LoadCursor(hModule, MAKEINTRESOURCE(106));
  273.             if (hHandCursor)
  274.                 m_hLinkCursor = CopyCursor(hHandCursor);
  275.         }
  276.         FreeLibrary(hModule);
  277.     }
  278. }
  279. LONG CHyperLink::GetRegKey(HKEY key, LPCTSTR subkey, LPTSTR retdata)
  280. {
  281.     HKEY hkey;
  282.     LONG retval = RegOpenKeyEx(key, subkey, 0, KEY_QUERY_VALUE, &hkey);
  283.     if (retval == ERROR_SUCCESS) 
  284. {
  285.         long datasize = MAX_PATH;
  286.         TCHAR data[MAX_PATH];
  287.         RegQueryValue(hkey, NULL, data, &datasize);
  288.         lstrcpy(retdata,data);
  289.         RegCloseKey(hkey);
  290.     }
  291.     return retval;
  292. }
  293. void CHyperLink::ReportError(int nError)
  294. {
  295.     CString str;
  296.     switch (nError) {
  297.         case 0:                       str = "The operating system is outnof memory or resources."; break;
  298.         case SE_ERR_PNF:              str = "The specified path was not found."; break;
  299.         case SE_ERR_FNF:              str = "The specified file was not found."; break;
  300.         case ERROR_BAD_FORMAT:        str = "The .EXE file is invalidn(non-Win32 .EXE or error in .EXE image)."; break;
  301.         case SE_ERR_ACCESSDENIED:     str = "The operating system deniednaccess to the specified file."; break;
  302.         case SE_ERR_ASSOCINCOMPLETE:  str = "The filename association isnincomplete or invalid."; break;
  303.         case SE_ERR_DDEBUSY:          str = "The DDE transaction could notnbe completed because other DDE transactionsnwere being processed."; break;
  304.         case SE_ERR_DDEFAIL:          str = "The DDE transaction failed."; break;
  305.         case SE_ERR_DDETIMEOUT:       str = "The DDE transaction could notnbe completed because the request timed out."; break;
  306.         case SE_ERR_DLLNOTFOUND:      str = "The specified dynamic-link library was not found."; break;
  307.         case SE_ERR_NOASSOC:          str = "There is no application associatednwith the given filename extension."; break;
  308.         case SE_ERR_OOM:              str = "There was not enough memory to complete the operation."; break;
  309.         case SE_ERR_SHARE:            str = "A sharing violation occurred. ";
  310.         default:                      str.Format("Unknown Error (%d) occurred.", nError); break;
  311.     }
  312.     str = "Unable to open hyperlink:nn" + str;
  313.     AfxMessageBox(str, MB_ICONEXCLAMATION | MB_OK);
  314. }
  315. HINSTANCE CHyperLink::GotoURL(LPCTSTR url, int showcmd)
  316. {
  317.     TCHAR key[MAX_PATH + MAX_PATH];
  318.     // First try ShellExecute()
  319.     HINSTANCE result = ShellExecute(NULL, _T("open"), url, NULL,NULL, showcmd);
  320.     // If it failed, get the .htm regkey and lookup the program
  321.     if ((UINT)result <= HINSTANCE_ERROR) {
  322.         if (GetRegKey(HKEY_CLASSES_ROOT, _T(".htm"), key) == ERROR_SUCCESS)
  323. {
  324.             lstrcat(key, _T("\shell\open\command"));
  325.             if (GetRegKey(HKEY_CLASSES_ROOT,key,key) == ERROR_SUCCESS) 
  326. {
  327.                 TCHAR *pos;
  328.                 pos = _tcsstr(key, _T(""%1""));
  329.                 if (pos == NULL) 
  330. {                     // No quotes found
  331.                     pos = strstr(key, _T("%1"));       // Check for %1, without quotes 
  332.                     if (pos == NULL)                   // No parameter at all...
  333.                         pos = key+lstrlen(key)-1;
  334.                     else
  335.                         *pos = '';                   // Remove the parameter
  336.                 }
  337.                 else
  338.                     *pos = '';                       // Remove the parameter
  339.                 lstrcat(pos, _T(" "));
  340.                 lstrcat(pos, url);
  341.                 result = (HINSTANCE) WinExec(key,showcmd);
  342.             }
  343.         }
  344.     }
  345.     return result;
  346. }