24 lines
570 B
C
24 lines
570 B
C
/**
|
|
* Copyright 2021 Johannes Marbach
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
#ifndef UL_UNL0KR_H
|
|
#define UL_UNL0KR_H
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
#ifndef PROJECT_VERSION
|
|
#define PROJECT_VERSION "?" /* Just to silence IDE warning. Real version injected by meson during build. */
|
|
#endif
|
|
|
|
/**
|
|
* Fonts
|
|
*/
|
|
|
|
#define UL_SYMBOL_ADJUST "\xef\x81\x82" // 0xF042 (https://fontawesome.com/v5.15/icons/adjust?style=solid)
|
|
#define UL_SYMBOL_CHEVRON_LEFT "\xef\x81\x93" // 0xF053 (https://fontawesome.com/v5/icons/chevron-left?style=solid&s=solid)
|
|
|
|
#endif /* UL_UNL0KR_H */
|