/* Copyright (c) 2019, Lars Brubaker, John Lewin All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. */ using System; using System.Collections.Generic; using System.Linq; using MatterHackers.Agg; using MatterHackers.Agg.Font; using MatterHackers.Agg.UI; using MatterHackers.VectorMath; namespace MatterHackers.MatterControl { public class TextScrollWidget : GuiWidget { private object locker = new object(); private TerminalLog terminalLog; private List visibleLines; private TypeFacePrinter typeFacePrinter = null; private PrinterConfig printer = null; private int forceStartLine = -1; private Func _lineFilterFunction; public TextScrollWidget(PrinterConfig printer, TerminalLog terminalLog) { this.printer = printer; this.typeFacePrinter = new TypeFacePrinter("", new StyledTypeFace(ApplicationController.GetTypeFace(NamedTypeFace.Liberation_Mono), 12)); this.typeFacePrinter.DrawFromHintedCache = true; this.terminalLog = terminalLog; this.visibleLines = terminalLog.AllLines().ToList(); // Register listeners printer.Connection.TerminalLog.LineAdded += this.TerminalLog_LineAdded; printer.Connection.TerminalLog.LogCleared += this.TerminalLog_LogCleared; } public double Position0To1 { get { if (forceStartLine == -1) { return 0; } else { return (visibleLines.Count - (double)forceStartLine) / visibleLines.Count; } } set { forceStartLine = (int)(visibleLines.Count * (1 - value)) - 1; forceStartLine = Math.Max(0, forceStartLine); forceStartLine = Math.Min(visibleLines.Count - 1, forceStartLine); // If the start would be less than one screen worth of content, allow // the whole screen to have content and scroll with new material. if (forceStartLine > visibleLines.Count - NumVisibleLines) { forceStartLine = -1; } Invalidate(); } } public int NumVisibleLines => (int)Math.Ceiling(Height / typeFacePrinter.TypeFaceStyle.EmSizeInPixels); public Color TextColor { get; set; } = new Color(102, 102, 102); public Func LineFilterFunction { get => _lineFilterFunction; set { _lineFilterFunction = value; RebuildFilteredList(); } } private bool ConditionalyAddToVisible(TerminalLine terminalLine) { var line = terminalLine.Line; if (LineFilterFunction != null) { line = LineFilterFunction(terminalLine); } if (!string.IsNullOrEmpty(line)) { visibleLines.Add(line); return true; } return false; } private void TerminalLog_LineAdded(object sender, TerminalLine terminalLine) { if (this.ConditionalyAddToVisible(terminalLine) && this.ActuallyVisibleOnScreen()) { this.Invalidate(); } } private void TerminalLog_LogCleared(object sender, EventArgs e) { this.RebuildFilteredList(); } public void RebuildFilteredList() { foreach (var lineData in terminalLog.AllTerminalLines()) { ConditionalyAddToVisible(lineData); } } public void WriteToFile(string filePath) { System.IO.File.WriteAllLines(filePath, terminalLog.AllLines()); } public override void OnClosed(EventArgs e) { // Unregister listeners printer.Connection.TerminalLog.LineAdded -= this.TerminalLog_LineAdded; printer.Connection.TerminalLog.LogCleared -= this.TerminalLog_LogCleared; base.OnClosed(e); } public override void OnDraw(Graphics2D graphics2D) { RectangleDouble bounds = LocalBounds; int numLinesToDraw = NumVisibleLines; double y = LocalBounds.Bottom + typeFacePrinter.TypeFaceStyle.EmSizeInPixels * numLinesToDraw; lock (visibleLines) { lock (locker) { int startLineIndex = visibleLines.Count - numLinesToDraw; if (forceStartLine != -1) { y = LocalBounds.Top; if (forceStartLine > visibleLines.Count - numLinesToDraw) { forceStartLine = -1; } else { // make sure we show all the lines we can startLineIndex = Math.Min(forceStartLine, startLineIndex); } } int endLineIndex = visibleLines.Count; for (int lineIndex = startLineIndex; lineIndex < endLineIndex; lineIndex++) { if (lineIndex >= 0) { if (visibleLines[lineIndex] != null) { typeFacePrinter.Text = visibleLines[lineIndex]; typeFacePrinter.Origin = new Vector2(bounds.Left + 2, y); typeFacePrinter.Render(graphics2D, TextColor); } } y -= typeFacePrinter.TypeFaceStyle.EmSizeInPixels; if (y < -typeFacePrinter.TypeFaceStyle.EmSizeInPixels) { break; } } } } base.OnDraw(graphics2D); } public override void OnMouseWheel(MouseEventArgs mouseEvent) { base.OnMouseWheel(mouseEvent); double scrollDelta = mouseEvent.WheelDelta / (visibleLines.Count * 60.0); if (scrollDelta < 0) // Rounding seems to favor scrolling up, compensating scroll down to feel as smooth { scrollDelta *= 2; } else if (Position0To1 == 0) // If we scroll up at the bottom get pop out from the "on screen" chunk { scrollDelta = NumVisibleLines / (double)visibleLines.Count; } double newPos = Position0To1 + scrollDelta; if (newPos > 1) { newPos = 1; } else if (newPos < 0) { newPos = 0; } Position0To1 = newPos; } public override void OnKeyDown(KeyEventArgs keyEvent) { // make sure children controls get to try to handle this event first base.OnKeyDown(keyEvent); // check for arrow keys (but only if no modifiers are pressed) if (!keyEvent.Handled && !keyEvent.Control && !keyEvent.Alt && !keyEvent.Shift) { double startingScrollPosition = Position0To1; double scrollDelta = NumVisibleLines / (double)visibleLines.Count; double newPos = Position0To1; switch (keyEvent.KeyCode) { case Keys.PageDown: newPos -= scrollDelta; break; case Keys.PageUp: newPos += scrollDelta; break; case Keys.Home: newPos = 1; break; case Keys.End: newPos = 0; break; } if (newPos > 1) { newPos = 1; } else if (newPos < 0) { newPos = 0; } Position0To1 = newPos; // we only handled the key if it resulted in the area scrolling if (startingScrollPosition != Position0To1) { keyEvent.Handled = true; } } } } }