2017-10-04 09:43:31 +00:00
|
|
|
#ifndef font_h
|
|
|
|
#define font_h
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint8_t font[];
|
2017-10-13 22:41:51 +00:00
|
|
|
extern const uint8_t font_max;
|
2017-10-04 09:43:31 +00:00
|
|
|
#define GLYPH_HEIGHT 8
|
|
|
|
#define GLYPH_WIDTH 6
|
2017-10-14 14:08:52 +00:00
|
|
|
#define LEFT_ARROW_STRING "\x86"
|
|
|
|
#define RIGHT_ARROW_STRING "\x7f"
|
|
|
|
#define SELECTION_STRING RIGHT_ARROW_STRING
|
2017-10-13 22:41:51 +00:00
|
|
|
#define CTRL_STRING "\x80\x81\x82"
|
|
|
|
#define SHIFT_STRING "\x83"
|
|
|
|
#define CMD_STRING "\x84\x85"
|
2020-12-26 13:10:11 +00:00
|
|
|
#define ELLIPSIS_STRING "\x87"
|
|
|
|
#define MOJIBAKE_STRING "\x88"
|
2021-01-31 17:17:48 +00:00
|
|
|
#define SLIDER_STRING "\x89\x8A\x8A\x8A\x8A\x8A\x8A\x8A\x8A\x8A\x8F\x8A\x8A\x8A\x8A\x8A\x8A\x8A\x8A\x8A\x8B"
|
|
|
|
#define SELECTED_SLIDER_STRING "\x8C\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8D\x8E"
|
2017-10-04 09:43:31 +00:00
|
|
|
#endif /* font_h */
|
2017-10-13 22:41:51 +00:00
|
|
|
|