/* Constants used throughout the library. * * All sizes are relative to the font size. Widths are relative to the font * width; heights are relative to the font height. Other sizes are typically * relative to font height. */ #pragma once /// Maximum number of events that can be stored in a single input loop. #define MaxWidgetEvents 8 // TODO: Make this relative to the font width. /// Width of scroll bars in pixels. #define ScrollbarWidth 32 /// Button border size relative to font height. #define ButtonBorderSize 0.1