15 lines
275 B
C++
15 lines
275 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "lvgl.h"
|
|
|
|
class Fonts {
|
|
public:
|
|
static void init();
|
|
static const lv_font_t* bySizeIndex(uint8_t sizeIndex);
|
|
|
|
// Icon font support
|
|
static const lv_font_t* iconFont(uint8_t sizeIndex);
|
|
static bool hasIconFont();
|
|
};
|