ToolTip是Win32中一個(gè)通用控件,MFC中為其生成了一個(gè)類(lèi)CToolTipCtrl,總的說(shuō)來(lái)其使用方法是較簡(jiǎn)單的,下面講一下它的一般用法和高級用法。
一般用法步驟:
1. 添加CToolTipCtrl成員變量 m_tt。
2. 在父窗口中調用EnableToolTips(TRUE);
3. 在窗口的OnCreate(或者其他適當的位置)中向ToolTip中添加需要顯示Tip的子窗口,并同時(shí)指定相應的顯示字串CToolTipCtrl::AddTool(pWnd,”string to display”)。
4. 重載父窗口的 BOOL PreTranslateMessage(MSG* pMsg) ,在函數中調用 m_tt.RelayEvent(pMsg)。
下面假設在窗口CWndYour中使用CToolTipCtrl
在類(lèi)定義中添加變量說(shuō)明:
在OnCreate中添加需要顯示Tip的子窗口
在BOOL PreTranslateMessage(MSG* pMsg)中添加代碼
這樣當鼠標移動(dòng)到相應的子窗口上時(shí)會(huì )顯示出相應的ToolTip。
動(dòng)態(tài)改變ToolTip的顯示內容的方法及步驟:
1.上面所講的1、2、4步驟。
2.在增加ToolTip時(shí)不指定顯示的字串,而是使用LPSTR_TEXTCALLBACK。
3.在窗口中增加消息映射 ON_NOTIFY_EX( TTN_NEEDTEXT, 0, SetTipText )。
4.在窗口中增加一個(gè)函數用于動(dòng)態(tài)提供顯示內容,其原型為 BOOL SetTipText( UINT id, NMHDR * pTTTStruct, LRESULT * pResult ),下面的代碼可以根據傳入的參數判定應該顯示的內容。
作者: 聞怡洋 wyy_cq@188.net
原文: http://hi.baidu.com/fateyeah/blog/item/fc7c07b37ab250a7d9335aa7.html
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
如何操縱CToolTipCtrl來(lái)給自己的控件添加tool tip呢?MSDN給出了答案。
創(chuàng )建并操縱一個(gè)CToolTipCtrl
創(chuàng )建一個(gè)CToolTipCtrl的對象.
調用Create函數來(lái)創(chuàng )建windows通用提示控件并使之與CToolTipCtrl對象產(chǎn)生關(guān)聯(lián)。
調用AddTool函數來(lái)把tool tip control注冊到一個(gè)tool上,這樣存儲在tool tip中的信息就能在光標懸浮在這個(gè)tool上的時(shí)候顯示出來(lái)。
調用SetToolInfo來(lái)設置tool tip為這個(gè)tool所保留的信息。
調用SetToolRect來(lái)設置該tol的一個(gè)新的范圍矩形。
調用HitTest函數來(lái)判斷一個(gè)點(diǎn)是否在某個(gè)給定tool的范圍矩形之內,如果是的話(huà),就返回這個(gè)tool的信息。
調用GetToolCount來(lái)得到一個(gè)tool tip所關(guān)聯(lián)到的tool的個(gè)數。
// Create and associate a tooltip control to the tab control of
// CMyPropertySheet. CMyPropertySheet is a CPropertySheet-derived
// class.
BOOL CMyPropertySheet::OnInitDialog()
...{
BOOL bResult = CPropertySheet::OnInitDialog();
// Create a tooltip control. m_ToolTipCtrl is a member variable
// of type CToolTipCtrl* in CMyPropertySheet class. It is
// initialized to NULL in the constructor, and destroyed in the
// destructor of CMyPropertySheet class.
m_ToolTipCtrl = new CToolTipCtrl;// 第一步,創(chuàng )建對象
if (!m_ToolTipCtrl->Create(this)) //第二步,調用Create函數
...{
TRACE("Unable To create ToolTip ");
return bResult;
}
// Associate the tooltip control to the tab control
// of CMyPropertySheet.
CTabCtrl* tab = GetTabControl();
tab->SetToolTips(m_ToolTipCtrl);
// Get the bounding rectangle of each tab in the tab control of the
// property sheet. Use this rectangle when registering a tool with
// the tool tip control. IDS_FIRST_TOOLTIP is the first ID string
// resource that contains the text for the tool.
int count = tab->GetItemCount();
int id = IDS_FIRST_TOOLTIP;
for (int i = 0; i < count; i++)
...{
id += i;
CRect r;
tab->GetItemRect(i, &r);
VERIFY(m_ToolTipCtrl->AddTool(tab, id, &r, id));
}
// Activate the tooltip control.
m_ToolTipCtrl->Activate(TRUE);
return bResult;
}
// Override PreTranslateMessage() so RelayEvent() can be
// called to pass a mouse message to CMyPropertySheet's
// tooltip control for processing.
BOOL CMyPropertySheet::PreTranslateMessage(MSG* pMsg)
...{
if (NULL != m_ToolTipCtrl)
m_ToolTipCtrl->RelayEvent(pMsg);
return CPropertySheet::PreTranslateMessage(pMsg);
}
聯(lián)系客服