# font_managers_t
# 概述
在某些情况下,需要多个资源管理器。比如在手表系统里,每个应用或表盘,可能放在独立的资源包中, 此时优先加载应用自己的资源,如果没有就加载系统的资源。
# 函数
函数名称 | 说明 |
---|---|
font_manager_fallback_get_font_default | |
font_managers_ref | 获取指定小应用程序(applet)的字体管理器。 |
font_managers_unload_all | 卸载全部字体。 |
font_managers_unref | 释放指定小应用程序(applet)的字体管理器。 |
# font_manager_fallback_get_font_default 函数
函数功能:
函数原型:
font_t* font_manager_fallback_get_font_default (void* ctx, const char* name, font_size_t size);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | font_t* | 返回字体对象。 |
ctx | void* | 上下文。 |
name | const char* | 名称。 |
size | font_size_t | 大小。 |
# font_managers_ref 函数
- 函数功能:
获取指定小应用程序(applet)的字体管理器。
- 函数原型:
font_manager_t* font_managers_ref (const char* name);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | font_manager_t* | 返回asset manager对象。 |
name | const char* | 小应用程序(applet)的名称。 |
# font_managers_unload_all 函数
- 函数功能:
卸载全部字体。
- 函数原型:
ret_t font_managers_unload_all ();
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
# font_managers_unref 函数
- 函数功能:
释放指定小应用程序(applet)的字体管理器。
- 函数原型:
ret_t font_managers_unref (font_manager_t* imm);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
imm | font_manager_t* | 字体管理器对象。 |