lvgl_bitmap_font.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #ifndef _LV_FONT_BITMAP_H
  2. #define _LV_FONT_BITMAP_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /*********************
  7. * INCLUDES
  8. *********************/
  9. #include <lvgl/lvgl.h>
  10. #include <bitmap_font_api.h>
  11. /*********************
  12. * DEFINES
  13. *********************/
  14. /**********************
  15. * TYPEDEFS
  16. **********************/
  17. typedef struct {
  18. bitmap_font_t* font; /* handle to face object */
  19. bitmap_cache_t* cache;
  20. bitmap_emoji_font_t* emoji_font;
  21. }lv_font_fmt_bitmap_dsc_t;
  22. /**********************
  23. * GLOBAL PROTOTYPES
  24. **********************/
  25. int lvgl_bitmap_font_init(const char *def_font_path);
  26. int lvgl_bitmap_font_deinit(void);
  27. int lvgl_bitmap_font_open(lv_font_t* font, const char * font_path);
  28. void lvgl_bitmap_font_close(lv_font_t* font);
  29. int lvgl_bitmap_font_set_emoji_font(lv_font_t* lv_font, const char* emoji_font_path);
  30. int lvgl_bitmap_font_get_emoji_dsc(const lv_font_t* lv_font, uint32_t unicode, lv_img_dsc_t* dsc, lv_point_t* pos, bool force_retrieve);
  31. /**
  32. * @brief set default code point for bitmap font
  33. *
  34. * @param font pointer to font data
  35. * @param word_code default code for unicode basic plane(0x0-0xffff)
  36. * @param emoji_code default code for emoji (>= 0x1f300)
  37. *
  38. * @return 0 if invoked succsess.
  39. */
  40. int lvgl_bitmap_font_set_default_code(lv_font_t* font, uint32_t word_code, uint32_t emoji_code);
  41. /**
  42. * @brief preset cache size for each font
  43. *
  44. * @param preset pointer to preset data list
  45. * @param count item num in preset list
  46. *
  47. * @return 0 if invoked succsess.
  48. */
  49. int lvgl_bitmap_font_cache_preset(bitmap_font_cache_preset_t* preset, int count);
  50. /**********************
  51. * MACROS
  52. **********************/
  53. #ifdef __cplusplus
  54. } /* extern "C" */
  55. #endif
  56. #endif /*LV_FONT_BITMAP_H*/