ToolTip是Win32中一個通用控件,MFC中為其生成了一個類CToolTipCtrl,總的說來其使用方法是較簡單的,下面講一下它的一般用法和高級用法。
一般用法步驟:
1. 添加CToolTipCtrl成員變量 m_tt。
2. 在父窗口中調(diào)用EnableToolTips(TRUE);
3. 在窗口的OnCreate(或者其他適當(dāng)?shù)奈恢茫┲邢騎oolTip中添加需要顯示Tip的子窗口,并同時指定相應(yīng)的顯示字串CToolTipCtrl::AddTool(pWnd,”string to display”)。
4. 重載父窗口的 BOOL PreTranslateMessage(MSG* pMsg) ,在函數(shù)中調(diào)用 m_tt.RelayEvent(pMsg)。
下面假設(shè)在窗口CWndYour中使用CToolTipCtrl
在類定義中添加變量說明:
在OnCreate中添加需要顯示Tip的子窗口
在BOOL PreTranslateMessage(MSG* pMsg)中添加代碼
這樣當(dāng)鼠標(biāo)移動到相應(yīng)的子窗口上時會顯示出相應(yīng)的ToolTip。
動態(tài)改變ToolTip的顯示內(nèi)容的方法及步驟:
1.上面所講的1、2、4步驟。
2.在增加ToolTip時不指定顯示的字串,而是使用LPSTR_TEXTCALLBACK。
3.在窗口中增加消息映射 ON_NOTIFY_EX( TTN_NEEDTEXT, 0, SetTipText )。
4.在窗口中增加一個函數(shù)用于動態(tài)提供顯示內(nèi)容,其原型為 BOOL SetTipText( UINT id, NMHDR * pTTTStruct, LRESULT * pResult ),下面的代碼可以根據(jù)傳入的參數(shù)判定應(yīng)該顯示的內(nèi)容。
作者: 聞怡洋 wyy_cq@188.net
原文: http://hi.baidu.com/fateyeah/blog/item/fc7c07b37ab250a7d9335aa7.html
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
如何操縱CToolTipCtrl來給自己的控件添加tool tip呢?MSDN給出了答案。
創(chuàng)建并操縱一個CToolTipCtrl
創(chuàng)建一個CToolTipCtrl的對象.
調(diào)用Create函數(shù)來創(chuàng)建windows通用提示控件并使之與CToolTipCtrl對象產(chǎn)生關(guān)聯(lián)。
調(diào)用AddTool函數(shù)來把tool tip control注冊到一個tool上,這樣存儲在tool tip中的信息就能在光標(biāo)懸浮在這個tool上的時候顯示出來。
調(diào)用SetToolInfo來設(shè)置tool tip為這個tool所保留的信息。
調(diào)用SetToolRect來設(shè)置該tol的一個新的范圍矩形。
調(diào)用HitTest函數(shù)來判斷一個點是否在某個給定tool的范圍矩形之內(nèi),如果是的話,就返回這個tool的信息。
調(diào)用GetToolCount來得到一個tool tip所關(guān)聯(lián)到的tool的個數(shù)。
// 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)) //第二步,調(diào)用Create函數(shù)
...{
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);
}