//*************************************************************************
void CBCGPDlgImpl::OnNcMouseMove(UINT /*nHitTest*/, CPoint point)
{
	if (!IsOwnerDrawCaption ())
	{
		return;
	}

	OnTrackCaptionButtons (point);
}
示例#2
0
void CKofDlgImpl::OnNcMouseMove( UINT nHitTest, CPoint point )
{
	nHitTest;
	if (!IsOwnerDrawCaption())
	{
		return;
	}

	OnTrackCaptionButtons(point);
}
示例#3
0
void CKofDlgImpl::OnMouseMove( CPoint point )
{
	if (!IsOwnerDrawCaption ())
	{
		return;
	}

	CPoint ptScreen = point;
	m_Dlg.ClientToScreen (&ptScreen);

	OnTrackCaptionButtons (ptScreen);
}