Path: blob/master/bdk/libs/lvgl/lv_fonts/lv_font_builtin.h
1476 views
/*1* Copyright (c) 2019 CTCaer2*3* This program is free software; you can redistribute it and/or modify it4* under the terms and conditions of the GNU General Public License,5* version 2, as published by the Free Software Foundation.6*7* This program is distributed in the hope it will be useful, but WITHOUT8* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or9* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for10* more details.11*12* You should have received a copy of the GNU General Public License13* along with this program. If not, see <http://www.gnu.org/licenses/>.14*/1516/**17* @file lv_font_builtin.h18*19*/2021#ifndef LV_FONT_BUILTIN_H22#define LV_FONT_BUILTIN_H2324#ifdef __cplusplus25extern "C" {26#endif2728/*********************29* INCLUDES30*********************/31#ifdef LV_CONF_INCLUDE_SIMPLE32#include "lv_conf.h"33#else34#include "../../lv_conf.h"35#endif3637#include "../lv_misc/lv_font.h"3839/*********************40* DEFINES41*********************/4243/**********************44* TYPEDEFS45**********************/4647/**********************48* GLOBAL PROTOTYPES49**********************/5051/**52* Initialize the built-in fonts53*/54void lv_font_builtin_init(void);5556/**********************57* MACROS58**********************/5960/**********************61* FONT DECLARATIONS62**********************/6364/*20 px */65#if USE_INTERUI_2066LV_FONT_DECLARE(interui_20);67#endif6869#if USE_HEKATE_SYMBOL_2070LV_FONT_DECLARE(hekate_symbol_20);71#endif7273/*30 px */74#if USE_INTERUI_3075LV_FONT_DECLARE(interui_30);76#endif7778#if USE_HEKATE_SYMBOL_3079LV_FONT_DECLARE(hekate_symbol_30);80#endif8182#if USE_UBUNTU_MONO83LV_FONT_DECLARE(ubuntu_mono);84#endif8586#if USE_HEKATE_SYMBOL_12087LV_FONT_DECLARE(hekate_symbol_120);88#endif8990#ifdef __cplusplus91} /* extern "C" */92#endif9394#endif /*LV_FONT_BUILTIN_H*/959697