HomeIndex

Defines and other const values

Colors

COLOR_NONE COLOR_BLACK COLOR_WHITE COLOR_RED COLOR_BROWN COLOR_GREEN COLOR_BLUE COLOR_YELLOW COLOR_CYAN COLOR_PURPLE COLOR_LIGHTGRAY COLOR_GRAY COLOR_ORANGE COLOR_LIGHTPURPLE COLOR_DARKRED COLOR_DARKGREEN COLOR_LIGHTGREE COLOR_DARKBLUE COLOR_DARKGRAY
Colors can also be specified by 0xAARRGGBB or 0xRRGGBB

Reaches

REACH_NONE REACH_LOW REACH_MED REACH_HIGH

Input states

INPUT_ON // Keyboard, Mouse, Cursor is all ON INPUT_OFF // Mouse, Cursor is OFF, but Keyboard is ON _INPUT_ALL_OFF // Keyboard, Mouse, Cursor is OFF _INPUT_YACK_CHOICES // Keyboard, Cursor is ON. Mouse is OFF _INPUT_CURSOR // Cursor is ON _INPUT_MOUSE // TBD _INPUT_KEYS // Keyboard is read _INPUT_BUTTONS // Buttons (`createButton()`) are active _INPUT_PUSH // Current input state is push before new state is set _INPUT_POP // Input stack state is popped

Images alignment

Passed to createImage() and createTextImage()
Aligning to top and bottom is buggy.
ALIGN_LEFT ALIGN_CENTER ALIGN_RIGHT ALIGN_TOP ALIGN_BOTTOM

System macros

The following macros are automaticaly created by the compiler.
__LINE__ // The current line number __FUNC__ // The name of the current function __LOC__ // The function:line __FILE__ // The filename currently being compiled __COMPILETIME__ // The unixtime the file was being compiled

TBD