mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 05:39:57 -05:00
ENH: add status bar and help for items
This commit is contained in:
@@ -575,7 +575,17 @@ void CPropertyList::OnMouseMove(UINT nFlags, CPoint point)
|
||||
//set the cursor to a sizing cursor if the cursor is over the row divider
|
||||
::SetCursor(m_hCursorSize);
|
||||
else
|
||||
{
|
||||
BOOL loc;
|
||||
int curSel = ItemFromPoint(point,loc);
|
||||
if(!loc)
|
||||
{
|
||||
CPropertyItem* pItem = (CPropertyItem*) GetItemDataPtr(curSel);
|
||||
m_CMakeSetupDialog->SetDlgItemText(IDC_PROGRESS, pItem->m_HelpString);
|
||||
}
|
||||
CListBox::OnMouseMove(nFlags, point);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void CPropertyList::InvertLine(CDC* pDC,CPoint ptFrom,CPoint ptTo)
|
||||
|
||||
Reference in New Issue
Block a user