Exemple #1
0
BOOL CScrollWnd::OnMouseWheel(UINT fFlags, short zDelta, CPoint point)
{
	// we don't handle anything but scrolling just now
	if (fFlags & (MK_SHIFT | MK_CONTROL))
		return FALSE;

	// we can't get out of it--perform the scroll ourselves
	return DoMouseWheel(fFlags, zDelta, point);
}
Exemple #2
0
BOOL CModScrollView::OnMouseWheel(UINT fFlags, short zDelta, CPoint point)
//------------------------------------------------------------------------
{
    // we don't handle anything but scrolling just now
    if (fFlags & (MK_SHIFT | MK_CONTROL)) return FALSE;

    //if the parent is a splitter, it will handle the message
    //if (GetParentSplitter(this, TRUE)) return FALSE;

    // we can't get out of it--perform the scroll ourselves
    return DoMouseWheel(fFlags, zDelta, point);
}