mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-03 12:37:43 +08:00
1.5 KiB
1.5 KiB
children_layouter_default_t
概述
缺省的子控件布局算法实现。
用法请参考:缺省子控件布局算法
函数
函数名称 | 说明 |
---|---|
children_layouter_default_create | |
self_layouter_register_builtins | 注册内置的控件自身布局算法。 |
children_layouter_default_create 函数
- 函数功能:
创建子控件布局对象。
- 函数原型:
children_layouter_t* children_layouter_default_create ();
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | children_layouter_t* | 返回创建子控件布局对象。 |
self_layouter_register_builtins 函数
- 函数功能:
注册内置的控件自身布局算法。
- 函数原型:
ret_t self_layouter_register_builtins ();
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |