// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Widgets { /// /// Accumulates mouse wheel deltas and reports the actual number of lines to scroll. /// public sealed class MouseWheelHandler { // CODE DUPLICATION: See ICSharpCode.TextEditor.Util.MouseWheelHandler const int WHEEL_DELTA = 120; int mouseWheelDelta; public int GetScrollAmount(MouseEventArgs e) { // accumulate the delta to support high-resolution mice mouseWheelDelta += e.Delta; Console.WriteLine("Mouse rotation: new delta=" + e.Delta + ", total delta=" + mouseWheelDelta); int linesPerClick = Math.Max(SystemInformation.MouseWheelScrollLines, 1); int scrollDistance = mouseWheelDelta * linesPerClick / WHEEL_DELTA; mouseWheelDelta %= Math.Max(1, WHEEL_DELTA / linesPerClick); return scrollDistance; } public void Scroll(ScrollBar scrollBar, MouseEventArgs e) { int newvalue = scrollBar.Value - GetScrollAmount(e) * scrollBar.SmallChange; scrollBar.Value = Math.Max(scrollBar.Minimum, Math.Min(scrollBar.Maximum - scrollBar.LargeChange + 1, newvalue)); } } }