网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > VC++ > 正文
在VC中为应用程序添加图形超链接功能
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/15
下载{$ArticleTitle}原创论文样式
;
  SetCapture();
 }
}

BOOL CMapHyperLink::OnSetCursor(CWnd* /*pWnd*/, UINT /*nHitTest*/, UINT /*message*/)
{
 if (m_hLinkCursor)
 {
  ::SetCursor(m_hLinkCursor);
  return TRUE;
 }
 return FALSE;
}

void CMapHyperLink::PreSubclassWindow()
{
 // We want to get mouse clicks via STN_CLICKED
 DWORD dwStyle = GetStyle();
 ::SetWindowLong(GetSafeHwnd(), GWL_STYLE, dwStyle | SS_NOTIFY);
 SetDefaultCursor(); // Try and load up a "hand" cursor
 // Create the tooltip
 CRect rect;
 GetClientRect(rect);
 m_ToolTip.Create(this);
 if (m_strTipText.IsEmpty())
 {
  m_strTipText = m_strURL;
 }
 m_ToolTip.AddTool(this, m_strTipText, rect, TOOLTIP_ID);
 CStatic::PreSubclassWindow();
}

////////////////////////////////////////////// CMapHyperLink operations
void CMapHyperLink::SetURL(CString strURL)
{
 m_strURL = strURL;
 if (::IsWindow(GetSafeHwnd())) {
  PositionWindow();
  if (m_strTipText.IsEmpty())
  {
   m_strTipText = strURL;
  }
  m_ToolTip.UpdateTipText(m_strTipText, this, TOOLTIP_ID);
 }
}

CString CMapHyperLink::GetURL() const
{
 return m_strURL;
}

void CMapHyperLink::SetTipText(CString strTipText)
{
 m_strTipText = strTipText;
 if (::IsWindow(GetSafeHwnd())) {
  PositionWindow();
  m_ToolTip.UpdateTipText(m_strTipText, this, TOOLTIP_ID);
 }
}

CString CMapHyperLink::GetTipText() const
{
 return m_strTipText;
}

void CMapHyperLink::SetVisited(BOOL bVisited /* = TRUE */)
{
 m_bVisited = bVisited;
 if (::IsWindow(GetSafeHwnd()))
  Invalidate();
}

BOOL CMapHyperLink::GetVisited() const
{
 return m_bVisited;
}

void CMapHyperLink::SetLinkCursor(HCURSOR hCursor)
{
 m_hLinkCursor = hCursor;
 if (m_hLinkCursor == NULL)
  SetDefaultCursor();
}

HCURSOR CMapHyperLink::GetLinkCursor() const
{
 return m_hLinkCursor;
}

void CMapHyperLink::SetAutoSize(BOOL bAutoSize /* = TRUE */)
{
 m_bAdjustToFit = bAutoSize;
 if (::IsWindow(GetSafeHwnd()))
  PositionWindow();
}

BOOL CMapHyperLink::GetAutoSize() const
{
 return m_bAdjustToFit;
}

// Move and resize the window so that the window is the same size
void CMapHyperLink::PositionWindow()
{
 if (!::IsWindow(GetSafeHwnd()) || !m_bAdjustToFit)
  return;
 // Get the current window position
 CRect rect;
 GetWindowRect(rect);
 CWnd* pParent = GetParent();
 if (pParent)
  pParent->ScreenToClient(rect);
 CRect rectMap;
 GetClientRect(rectMap);
 // Get the text justification via the window style
 DWORD dwStyle = GetStyle();
 // Recalc the window size and position based on the text justification
 if (dwStyle & SS_CENTERIMAGE)
  rect.DeflateRect(0, (rect.Height() - rectMap.Height())/2);
 else
  rect.bottom = rect.top + rectMap.Height();
  if (dwStyle & SS_CENTER)
   rect.DeflateRect((rect.Width() - rectMap.Width())/2, 0);
  else if (dwStyle & SS_RIGHT)
   rect.left = rect.right - rectMap.Width();
  else // SS_LEFT = 0, so we can''''t test for it explicitly
   rect.right = rect.left + rectMap.Width();
   // Move the window
  SetWindowPos(NULL, rect.left, rect.top, rect.Width(), rect.Height(), SWP_NOZORDER);

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号