mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 11:08:34 +08:00
1.4 KiB
1.4 KiB
input_method_sdl_t
概述
SDL输入法实现。
SDL输入法使用平台自身的输入法引擎,一般在桌面Linux、MacOS、Windows、Android和iOS上使用。
函数
函数名称 | 说明 |
---|---|
children_layouter_register_builtins | 注册内置的子控件布局算法。 |
input_method_sdl_create |
children_layouter_register_builtins 函数
- 函数功能:
注册内置的子控件布局算法。
- 函数原型:
ret_t children_layouter_register_builtins ();
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
input_method_sdl_create 函数
- 函数功能:
创建SDL输入法对象。
- 函数原型:
input_method_t* input_method_sdl_create ();
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | input_method_t* | 返回输入法对象。 |