mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 12:08:16 +08:00
2.0 KiB
2.0 KiB
candidates_t
概述
输入法候选字词控件。
如果希望启用用数字选择对应的候选字,请设置属性grab_keys="true"。如:
<candidates x="0" y="0" w="100%" h="30" grab_keys="true"/>
相关文件: assets/default/raw/ui/kb_default.xml
如果希望通过左右键切换不同的候选字,除了设置属性grab_keys="true",还需要设置按钮的focused状态的style。
<style name="candidates" text_color="black">
<normal />
<pressed bg_color="#c0c0c0" border_color="#a0a0a0"/>
<over bg_color="#e0e0e0" border_color="#a0a0a0"/>
<focused border_color="#a0a0a0"/>
</style>
相关文件:assets/default/raw/styles/keyboard.xml
函数
函数名称 | 说明 |
---|---|
candidates_cast | 转换为candidates对象(供脚本语言使用)。 |
candidates_create | 创建candidates对象 |
candidates_cast 函数
- 函数功能:
转换为candidates对象(供脚本语言使用)。
- 函数原型:
widget_t* candidates_cast (widget_t* widget);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | widget_t* | candidates对象。 |
widget | widget_t* | candidates对象。 |
candidates_create 函数
- 函数功能:
创建candidates对象
- 函数原型:
widget_t* candidates_create (widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | widget_t* | 对象。 |
parent | widget_t* | 父控件 |
x | xy_t | x坐标 |
y | xy_t | y坐标 |
w | wh_t | 宽度 |
h | wh_t | 高度 |