HyperLink.cpp
上传用户:jzscgs158
上传日期:2022-05-25
资源大小:8709k
文件大小:14k
源码类别:

百货/超市行业

开发平台:

Visual C++

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