blob: 408e3d5c16fd1a84e30c04ae456fa414f54232cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* 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
|