ScrollType


Describes window scrolling request type.

You can find more information in comments below.

enum class ScrollType // Window scrolling request
{
    None, // None
    EndScroll, // Ends scroll
    Left, // Scroll to the upper left
    Right, // Scrolls to the lower right
    LineLeft, // Scrolls left by one unit
    LineRight, // Scrolls right by one unit
    PageLeft, // Scrolls left by the width of the window
    PageRight, // Scrolls right by the width of the window
    ThumbPosition, // The user has dragged the scroll box (thumb) and released the mouse button
    ThumbTrack // The user is dragging the scroll box
};
Namespace: nitisa
Include: Nitisa/Core/ScrollType.h