mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 12:08:16 +08:00
6.8 KiB
6.8 KiB
emitter_t
概述
事件分发器, 用于实现观察者模式。
函数
函数名称 | 说明 |
---|---|
emitter_create | 创建emitter对象。 |
emitter_deinit | 析构。 |
emitter_destroy | 销毁。 |
emitter_disable | 禁用。禁用后emitter_dispatch无效,但可以注册和注销。 |
emitter_dispatch | 分发事件。如果当前分发的回调函数返回RET_REMOVE,该回调函数将被移出。 |
emitter_enable | 启用。 |
emitter_find | 通过ID查找emitter_item_t,主要用于辅助测试。 |
emitter_init | 初始化emitter对象。 |
emitter_off | 注销指定事件的处理函数。 |
emitter_off_by_func | 注销指定事件的处理函数。 |
emitter_on | 注册指定事件的处理函数。 |
emitter_set_on_destroy | 设置一个回调函数,在emitter被销毁时调用(方便脚本语言去释放回调函数)。 |
emitter_size | 获取注册的回调函数个数,主要用于辅助测试。 |
属性
名属性称 | 类型 | 说明 |
---|---|---|
enable | bool_t | 禁用标志。禁用时dispatch无效。 |
事件
事件名称 | 类型 | 说明 |
---|
emitter_create 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | emitter_t* | 对象。 |
创建emitter对象。
emitter_deinit 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
emitter | emitter_t* | emitter对象。 |
析构。
emitter_destroy 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
emitter | emitter_t* | emitter对象。 |
销毁。
emitter_disable 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
emitter | emitter_t* | emitter对象。 |
禁用。禁用后emitter_dispatch无效,但可以注册和注销。
emitter_dispatch 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | |
emitter | emitter_t* | emitter对象。 |
e | event_t* | 事件对象。 |
分发事件。如果当前分发的回调函数返回RET_REMOVE,该回调函数将被移出。 禁用状态下,本函数不做任何事情。
如果当前分发的回调函数返回RET_STOP,dispatch中断分发,并返回RET_STOP,否则返回RET_OK。
emitter_enable 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
emitter | emitter_t* | emitter对象。 |
启用。
emitter_find 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
emitter | emitter_t* | emitter对象。 |
id | uint32_t | emitter_on返回的ID。 |
通过ID查找emitter_item_t,主要用于辅助测试。
emitter_init 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | emitter_t* | 对象。 |
emitter | emitter_t* | emitter对象。 |
初始化emitter对象。
emitter_off 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
emitter | emitter_t* | emitter对象。 |
id | uint32_t | emitter_on返回的ID。 |
注销指定事件的处理函数。
emitter_off_by_func 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
emitter | emitter_t* | emitter对象。 |
type | event_type_t | 事件类型。 |
on_event | event_func_t | 事件处理函数。 |
ctx | void* | 事件处理函数上下文。 |
注销指定事件的处理函数。
emitter_on 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | uint32_t | 返回id,用于emitter_off。 |
emitter | emitter_t* | emitter对象。 |
type | event_type_t | 事件类型。 |
on_event | event_func_t | 事件处理函数。 |
ctx | void* | 事件处理函数上下文。 |
注册指定事件的处理函数。
emitter_set_on_destroy 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
emitter | emitter_t* | emitter对象。 |
id | uint32_t | emitter_on返回的ID。 |
on_destroy | tk_destroy_t | 回调函数。 |
on_destroy_ctx | void* | 回调函数上下文。 |
设置一个回调函数,在emitter被销毁时调用(方便脚本语言去释放回调函数)。
emitter_size 函数
参数 | 类型 | 说明 |
---|---|---|
返回值 | uint32_t | 回调函数个数。 |
emitter | emitter_t* | emitter对象。 |
获取注册的回调函数个数,主要用于辅助测试。
enable 属性
禁用标志。禁用时dispatch无效。
- 类型:bool_t
特性 | 是否支持 |
---|---|
可直接读取 | 是 |
可直接修改 | 否 |
可持久化 | 否 |
可脚本化 | 否 |
可在IDE中设置 | 否 |
可在XML中设置 | 否 |
支通过widget_get_prop读取 | 否 |
支通过widget_set_prop修改 | 否 |