mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-01 11:39:01 +08:00
10 KiB
10 KiB
image_animation_t
概述
图片动画控件,指定一个图片前缀,依次显示指定序列的图片,从而形成动画效果。
函数
函数名称 | 说明 |
---|---|
image_animation_cast | 转换为image_animation对象(供脚本语言使用)。 |
image_animation_create | 创建image_animation对象 |
image_animation_pause | 暂停。 |
image_animation_play | 播放。 |
image_animation_set_auto_play | 设置是否自动播放。 |
image_animation_set_delay | 设置延迟播放时间(仅适用于自动播放)。 |
image_animation_set_image | 设置图片前缀。 |
image_animation_set_interval | 设置播放间隔时间。 |
image_animation_set_loop | 设置是否循环播放。 |
image_animation_set_sequence | 设置播放序列。比如image为"fire",sequence为"123", 将依次播放"fire1", "fire2", "fire3"。 |
image_animation_stop | 停止(并重置index为0)。 |
属性
名属性称 | 类型 | 说明 |
---|---|---|
auto_play | bool_t | 是否自动播放。 |
delay | uint32_t | 自动播放时延迟播放的时间(毫秒)。 |
image | char* | 图片名称的前缀。 |
interval | uint32_t | 每张图片播放的时间(毫秒)。 |
loop | bool_t | 是否循环播放。 |
sequence | char* | 播放的序列,字符可选值为:0-9,a-z,A-Z。 |
事件
事件名称 | 类型 | 说明 |
---|
image_animation_cast 函数
- 函数功能:
转换为image_animation对象(供脚本语言使用)。
- 函数原型:
widget_t* image_animation_cast (widget_t* widget);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | widget_t* | image_animation对象。 |
widget | widget_t* | image_animation对象。 |
image_animation_create 函数
- 函数功能:
创建image_animation对象
- 函数原型:
widget_t* image_animation_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 | 高度 |
image_animation_pause 函数
- 函数功能:
暂停。
- 函数原型:
ret_t image_animation_pause (widget_t* widget);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
image_animation_play 函数
- 函数功能:
播放。
- 函数原型:
ret_t image_animation_play (widget_t* widget);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
image_animation_set_auto_play 函数
- 函数功能:
设置是否自动播放。
- 函数原型:
ret_t image_animation_set_auto_play (widget_t* widget, bool_t auto_play);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
auto_play | bool_t | 是否自动播放。 |
image_animation_set_delay 函数
- 函数功能:
设置延迟播放时间(仅适用于自动播放)。
- 函数原型:
ret_t image_animation_set_delay (widget_t* widget, uint32_t delay);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
delay | uint32_t | 延迟播放时间(毫秒)。 |
image_animation_set_image 函数
- 函数功能:
设置图片前缀。
- 函数原型:
ret_t image_animation_set_image (widget_t* widget, const char* image);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
image | const char* | 图片前缀。 |
image_animation_set_interval 函数
- 函数功能:
设置播放间隔时间。
- 函数原型:
ret_t image_animation_set_interval (widget_t* widget, uint32_t interval);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
interval | uint32_t | 间隔时间(毫秒)。 |
image_animation_set_loop 函数
- 函数功能:
设置是否循环播放。
- 函数原型:
ret_t image_animation_set_loop (widget_t* widget, bool_t loop);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
loop | bool_t | 是否循环播放。 |
image_animation_set_sequence 函数
- 函数功能:
设置播放序列。比如image为"fire",sequence为"123", 将依次播放"fire1", "fire2", "fire3"。
- 函数原型:
ret_t image_animation_set_sequence (widget_t* widget, const char* sequence);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
sequence | const char* | 播放序列。 |
image_animation_stop 函数
- 函数功能:
停止(并重置index为0)。
- 函数原型:
ret_t image_animation_stop (widget_t* widget);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
widget | widget_t* | image_animation对象。 |
auto_play 属性
是否自动播放。
- 类型:bool_t
特性 | 是否支持 |
---|---|
可直接读取 | 是 |
可直接修改 | 否 |
可持久化 | 是 |
可脚本化 | 是 |
可在IDE中设置 | 是 |
可在XML中设置 | 是 |
支通过widget_get_prop读取 | 是 |
支通过widget_set_prop修改 | 是 |
delay 属性
自动播放时延迟播放的时间(毫秒)。
- 类型:uint32_t
特性 | 是否支持 |
---|---|
可直接读取 | 是 |
可直接修改 | 否 |
可持久化 | 是 |
可脚本化 | 是 |
可在IDE中设置 | 是 |
可在XML中设置 | 是 |
支通过widget_get_prop读取 | 是 |
支通过widget_set_prop修改 | 是 |
image 属性
图片名称的前缀。
- 类型:char*
特性 | 是否支持 |
---|---|
可直接读取 | 是 |
可直接修改 | 否 |
可持久化 | 是 |
可脚本化 | 是 |
可在IDE中设置 | 是 |
可在XML中设置 | 是 |
支通过widget_get_prop读取 | 是 |
支通过widget_set_prop修改 | 是 |
interval 属性
每张图片播放的时间(毫秒)。
- 类型:uint32_t
特性 | 是否支持 |
---|---|
可直接读取 | 是 |
可直接修改 | 否 |
可持久化 | 是 |
可脚本化 | 是 |
可在IDE中设置 | 是 |
可在XML中设置 | 是 |
支通过widget_get_prop读取 | 是 |
支通过widget_set_prop修改 | 是 |
loop 属性
是否循环播放。
- 类型:bool_t
特性 | 是否支持 |
---|---|
可直接读取 | 是 |
可直接修改 | 否 |
可持久化 | 是 |
可脚本化 | 是 |
可在IDE中设置 | 是 |
可在XML中设置 | 是 |
支通过widget_get_prop读取 | 是 |
支通过widget_set_prop修改 | 是 |
sequence 属性
播放的序列,字符可选值为:0-9,a-z,A-Z。
- 类型:char*
特性 | 是否支持 |
---|---|
可直接读取 | 是 |
可直接修改 | 否 |
可持久化 | 是 |
可脚本化 | 是 |
可在IDE中设置 | 是 |
可在XML中设置 | 是 |
支通过widget_get_prop读取 | 是 |
支通过widget_set_prop修改 | 是 |