mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
Add most of scrolling logic; add notes
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user