Add most of scrolling logic; add notes

This commit is contained in:
Matt Nadareski
2021-11-29 22:16:23 -08:00
parent 3e44c11502
commit 1880d49ee5
3 changed files with 157 additions and 1 deletions

View File

@@ -85,6 +85,27 @@ namespace RedBookPlayer.Models
All,
}
/// <summary>
/// Determine how to scroll
/// </summary>
public enum ScrollCommand
{
/// <summary>
/// No scrolling
/// </summary>
NoScroll = 0,
/// <summary>
/// Scroll 6 pixels in the positive direction (right/down)
/// </summary>
Positive = 1,
/// <summary>
/// Scroll 6 pixels in the negative direction (left/up)
/// </summary>
Negative = 2,
}
/// <summary>
/// Determine how to handle different sessions
/// </summary>